/* ========================================
   DISTINCT DETAILS
   GLOBAL
========================================= */

:root {
  --black: #080808;
  --black-soft: #0d0d0e;
  --graphite: #151517;

  --white: #f6f5f2;
  --text: #c5c3bf;
  --muted: #777672;

  --silver: #b8b5ad;
  --champagne: #b9a98a;

  --line: rgba(255, 255, 255, 0.12);

  --container: 1320px;

  --font-main: Arial, Helvetica, sans-serif;
}


/* ========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: var(--font-main);

  color: var(--white);
  background: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}


/* ========================================
   GLOBAL
========================================= */

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}


/* ========================================
   HEADER
========================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 20;

  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.header-inner {
  min-height: 92px;

  display: flex;
  align-items: center;
  gap: 48px;
}

.brand {
  display: flex;
  flex-direction: column;

  margin-right: auto;

  line-height: 0.85;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.brand-sub {
  margin-top: 7px;

  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.52em;

  color: var(--champagne);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.72);

  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.header-cta {
  min-height: 44px;
  padding: 0 19px;

  display: inline-flex;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.42);

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--black);
}


/* ========================================
   HERO
========================================= */

.hero {
  position: relative;

  min-height: 860px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--black);

  background-image:
  linear-gradient(
    90deg,
    #050505 0%,
    #050505 38%,
    rgba(5, 5, 5, 0.88) 48%,
    rgba(5, 5, 5, 0.36) 68%,
    rgba(5, 5, 5, 0.08) 100%
  ),
  url("../assets/images/hero/detail-hero.png");

background-size: cover;
background-position: center right;
background-repeat: no-repeat;
}

.hero-image {
  position: absolute;
  inset: 0;

  background:
    url("../assets/images/hero/hero-detailing.png")
    center 60% / cover no-repeat;

  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.98) 0%,
      rgba(5, 5, 5, 0.88) 35%,
      rgba(5, 5, 5, 0.35) 68%,
      rgba(5, 5, 5, 0.16) 100%
    );
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(5, 5, 5, 0.72),
      transparent 40%
    );

  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;

  min-height: 860px;

  padding-top: 150px;
  padding-bottom: 54px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  max-width: 620px;
  transform: translateY(35px);
}

.hero-eyebrow {
  display: block;

  margin-bottom: 24px;

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;

  color: var(--champagne);
}

.hero h1 {
  margin: 0;

  max-width: 560px;

  font-size: clamp(4.4rem, 6vw, 6.4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;

  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--white);
}

.hero-content > p {
  max-width: 500px;

  margin: 32px 0 0;

  font-size: 0.95rem;
  line-height: 1.75;

  color: rgba(255, 255, 255, 0.64);
}

.hero-actions {
  margin-top: 36px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* ========================================
   BUTTONS
========================================= */

.button {
  min-height: 52px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--white);
  color: var(--black);
}

.button-primary:hover {
  background: var(--champagne);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}


/* ========================================
   HERO DETAILS
========================================= */

.hero-bottom {
  width: 100%;

  margin-top: auto;
  padding-top: 36px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;

  padding-right: 40px;
}

.hero-detail + .hero-detail {
  padding-left: 40px;

  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-detail span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: var(--champagne);
}

.hero-detail p {
  margin: 0;

  font-size: 0.63rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.62);
}


/* ========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    min-height: 760px;
  }

}


@media (max-width: 650px) {

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 78px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    padding-top: 130px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.2rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-bottom {
    display: none;
  }

}

/* ========================================
   SERVICES
========================================= */

.services {
  padding: 105px 4%;
  background: #f3f1ed;
  color: #0a0a0a;
}

.services-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;

  margin-bottom: 50px;
}

.section-eyebrow {
  display: block;

  margin-bottom: 16px;

  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;

  color: #aa8247;
}

.services-heading h2 {
  margin: 0;

  font-size: clamp(3rem, 4.2vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;

  text-transform: uppercase;
}

.services-heading-right {
  display: grid;
  justify-items: end;
  gap: 24px;
}

.services-heading-right p {
  max-width: 500px;
  margin: 0;

  font-size: 0.95rem;
  line-height: 1.7;

  color: #66625d;
}

.services-view-all {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;

  color: #111;
}


/* ========================================
   SERVICE CARDS
========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid #d8d4cd;

  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.08);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;

  background: #111;
}

.service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.025);
}

.service-card-content {
  position: relative;

  min-height: 165px;
  padding: 22px 48px 22px 20px;
}

.service-card-content h3 {
  margin: 0;

  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-card-content p {
  margin: 12px 0 0;

  font-size: 0.78rem;
  line-height: 1.55;

  color: #77716a;
}

.service-card-content > a {
  position: absolute;
  top: 22px;
  right: 20px;

  font-size: 1rem;
  color: #111;

  transition: transform 0.2s ease;
}

.service-card-content > a:hover {
  transform: translateX(3px);
}


/* ========================================
   SERVICES MOBILE
========================================= */

@media (max-width: 900px) {

  .services-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .services-heading-right {
    justify-items: start;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 600px) {

  .services {
    padding: 80px 6%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

}


/* ========================================
   SERVICES — MOBILE
========================================= */

@media (max-width: 800px) {

  .services {
    padding: 85px 6%;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 55px;
  }

  .services-heading h2 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .service-row {
    grid-template-columns: 45px 1fr auto;
    gap: 12px;
    min-height: 145px;
  }

  .service-name h3 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

}




/* ========================================
   RESULTS — MOBILE
========================================= */

@media (max-width: 800px) {

  .results {
    padding: 85px 6%;

    .result-feature {
  grid-template-columns: 1fr;
  gap: 30px;
}
  }

  .results-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 55px;
  }

  .results-heading h2 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .result-large,
  .result-small,
  .result-wide {
    grid-column: 1;
    width: 100%;
    margin: 0;
  }

  .result-small .result-image {
    aspect-ratio: 4 / 3;
  }

  .result-wide .result-image {
    aspect-ratio: 16 / 10;
  }

}

/* ========================================
   OUR STANDARD
========================================= */

.standard-section {
  padding: 110px 4% 0;
  background: #080808;
  color: #f5f3ef;
}

.standard-inner {
  max-width: 1320px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;

  align-items: center;
}

.standard-copy {
  padding-bottom: 20px;
}

.standard-eyebrow {
  display: block;

  margin-bottom: 22px;

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;

  color: #b58a4a;
}

.standard-copy h2 {
  margin: 0;

  font-size: clamp(3.6rem, 5vw, 5.6rem);
  line-height: 0.88;
  letter-spacing: -0.045em;

  text-transform: uppercase;
}

.standard-copy h2 span {
  display: block;
  color: #b58a4a;
}

.standard-copy > p {
  max-width: 480px;
  margin: 30px 0 0;

  font-size: 0.92rem;
  line-height: 1.75;

  color: #9d9a94;
}

.standard-link {
  display: inline-block;

  margin-top: 30px;

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: #f5f3ef;
}


/* IMAGE */

.standard-visual {
  position: relative;
  margin-top: 18px;
}

.standard-image {
  height: 500px;
  overflow: hidden;

  background: #111;
}

.standard-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.standard-image-label {
  position: absolute;
  right: 0;
  bottom: -26px;

  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;

  color: #77736d;
}


/* PROOF POINTS */

.standard-points {
  max-width: 1320px;
  margin: 95px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.standard-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;

  min-height: 180px;
  padding: 34px 32px 34px 0;

  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.standard-point + .standard-point {
  padding-left: 32px;
}

.standard-point:last-child {
  border-right: 0;
}

.standard-point > span {
  padding-top: 3px;

  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;

  color: #b58a4a;
}

.standard-point h3 {
  margin: 0;

  font-size: 0.78rem;
  letter-spacing: 0.04em;

  color: #f5f3ef;
}

.standard-point p {
  max-width: 290px;
  margin: 10px 0 0;

  font-size: 0.72rem;
  line-height: 1.6;

  color: #77736d;
}


/* ========================================
   OUR STANDARD RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .standard-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .standard-image {
    height: 430px;
  }

  .standard-points {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .standard-point,
  .standard-point + .standard-point {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

}


@media (max-width: 600px) {

  .standard-section {
    padding: 80px 6% 0;
  }

  .standard-copy h2 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .standard-image {
    height: 340px;
  }

}

/* ========================================
   RESULTS
========================================= */

.results-section {
  padding: 120px 4%;
  background: #f3f1ed;
  color: #080808;
}

.results-inner {
  max-width: 1320px;
  margin: 0 auto;
}


/* HEADING */

.results-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;

  align-items: end;

  margin-bottom: 65px;
}

.results-eyebrow {
  display: block;

  margin-bottom: 18px;

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;

  color: #b58a4a;
}

.results-heading h2 {
  margin: 0;

  font-size: clamp(3.8rem, 5.8vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: -0.05em;

  text-transform: uppercase;
}

.results-heading h2 span {
  display: block;
}

.results-heading > p {
  max-width: 470px;
  margin: 0 0 8px;

  font-size: 0.92rem;
  line-height: 1.7;

  color: #625f5a;
}


/* BEFORE / AFTER */

.results-comparison {
  width: 100%;
  overflow: hidden;
  background: #080808;
}

.results-comparison-image {
  display: block;
  width: 100%;
  height: auto;
}

.result-before,
.result-after {
  position: relative;

  height: 500px;

  overflow: hidden;
  background: #111;
}

.result-before img,
.result-after img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.result-label {
  position: absolute;
  top: 22px;
  left: 22px;

  z-index: 2;

  padding: 10px 14px;

  background: #080808;
  color: #fff;

  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}


/* PROJECT INFO */

.result-info {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 32px;

  align-items: center;

  padding: 32px 0;

  border-bottom: 1px solid #c9c5bf;
}

.result-number {
  font-size: 0.62rem;
  font-weight: 800;

  color: #b58a4a;
}

.result-type {
  display: block;

  margin-bottom: 5px;

  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;

  color: #8c6834;
}

.result-info h3 {
  margin: 0;

  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.result-info p {
  max-width: 390px;
  margin: 0;

  font-size: 0.78rem;
  line-height: 1.6;

  color: #625f5a;
}

.result-link {
  white-space: nowrap;

  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  color: #080808;
}


/* ========================================
   RESULTS RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .results-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .result-info {
    grid-template-columns: auto 1fr;
  }

  .result-info p,
  .result-link {
    grid-column: 2;
  }

}


@media (max-width: 650px) {

  .results-section {
    padding: 85px 6%;
  }

  .results-heading h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .results-comparison {
    grid-template-columns: 1fr;
  }

  .result-before,
  .result-after {
    height: 340px;
  }

}

/* ========================================
   PACKAGES
========================================= */

.packages-section {
  padding: 120px 4%;
  background: #f3f1ed;
  color: #080808;
}

.packages-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.packages-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 60px;
  align-items: end;

  margin-bottom: 55px;
}

.packages-heading h2 {
  margin: 0;

  font-size: clamp(3.6rem, 5vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;

  text-transform: uppercase;
}

.packages-heading h2 span {
  display: block;
  color: #b58a4a;
}

.packages-heading > p {
  max-width: 470px;
  margin: 0 0 8px;

  font-size: 0.92rem;
  line-height: 1.7;

  color: #625f5a;
}


/* ========================================
   PACKAGE CARDS
========================================= */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  position: relative;

  min-height: 610px;
  padding: 32px;

  display: flex;
  flex-direction: column;

  background: #fff;
  border: 1px solid #d8d4cd;
}

.package-featured {
  border: 1px solid #b58a4a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.package-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  padding: 8px 14px;

  background: #080808;
  color: #d8b16e;

  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
}

.package-featured {
  padding-top: 52px;
}

.package-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.package-number,
.package-type {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.package-number {
  color: #b58a4a;
}

.package-type {
  color: #80786e;
}

.package-card h3 {
  margin: 34px 0 0;

  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.package-description {
  margin: 18px 0 0;

  font-size: 0.84rem;
  line-height: 1.65;

  color: #6b665f;
}

.package-price {
  margin-top: 32px;
  padding-top: 25px;

  border-top: 1px solid #ddd8d1;
}

.package-price span {
  display: block;

  margin-bottom: 3px;

  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: #8c8378;
}

.package-price strong {
  font-size: 3.2rem;
  line-height: 1;

  color: #b58a4a;
}

.package-list {
  margin: 30px 0 0;
  padding: 0;

  list-style: none;
}

.package-list li {
  position: relative;

  padding: 10px 0 10px 22px;

  border-bottom: 1px solid #ece8e2;

  font-size: 0.78rem;
  color: #4e4a45;
}

.package-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #b58a4a;
  font-weight: 800;
}

.package-button {
  min-height: 48px;
  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #080808;

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.package-button:hover {
  background: #080808;
  color: #fff;
}

.package-button-featured {
  border-color: #b58a4a;
  background: #b58a4a;
  color: #080808;
}

.package-button-featured:hover {
  background: #080808;
  color: #fff;
}


/* ========================================
   PACKAGES RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .packages-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

}

/* ========================================
   REVIEWS
========================================= */

.reviews-section {
  padding: 120px 4%;
  background: #080808;
  color: #f5f3ef;
}

.reviews-inner {
  max-width: 1320px;
  margin: 0 auto;
}


/* HEADING */

.reviews-heading {
  display: grid;
  grid-template-columns: 1.6fr 0.4fr;
  gap: 50px;
  align-items: end;

  padding-bottom: 60px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.reviews-eyebrow {
  display: block;

  margin-bottom: 20px;

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;

  color: #b58a4a;
}

.reviews-heading h2 {
  margin: 0;

  font-size: clamp(3.5rem, 5vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;

  text-transform: uppercase;
}

.reviews-heading h2 span {
  display: block;
  color: #b58a4a;
}


/* RATING */

.reviews-rating {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;

  padding-bottom: 5px;
}

.reviews-rating > strong {
  font-size: 4.4rem;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.reviews-stars {
  display: block;

  margin-bottom: 7px;

  font-size: 0.8rem;
  letter-spacing: 0.16em;

  color: #b58a4a;
}

.reviews-rating p {
  margin: 0;

  font-size: 0.7rem;
  color: #77736d;
}


/* FEATURED REVIEW */

.featured-review {
  position: relative;

  max-width: 1080px;

  padding: 90px 0 90px 100px;
}

.review-mark {
  position: absolute;
  top: 65px;
  left: 0;

  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;

  color: #b58a4a;
}

.featured-review blockquote {
  max-width: 1050px;
  margin: 0;

  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #f5f3ef;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 30px;
}

.review-author strong {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.review-author span {
  font-size: 0.58rem;
  letter-spacing: 0.1em;

  color: #77736d;
}


/* SMALL REVIEWS */

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.review-small {
  min-height: 230px;

  padding: 38px 45px 20px 0;
}

.review-small + .review-small {
  padding-left: 45px;

  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.review-number {
  display: block;

  margin-bottom: 24px;

  font-size: 0.58rem;
  font-weight: 800;

  color: #b58a4a;
}

.review-small > p {
  max-width: 500px;
  margin: 0;

  font-size: 1rem;
  line-height: 1.65;

  color: #b4afa7;
}


/* ========================================
   REVIEWS RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .reviews-rating {
    justify-content: flex-start;
  }

  .featured-review {
    padding-left: 75px;
  }

}


@media (max-width: 650px) {

  .reviews-section {
    padding: 85px 6%;
  }

  .reviews-heading h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .featured-review {
    padding: 70px 0;
  }

  .review-mark {
    position: static;
    display: block;

    height: 65px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-small,
  .review-small + .review-small {
    padding: 32px 0;

    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

}

/* ========================================
   BOOKING CTA
========================================= */

.booking-section {
  padding: 120px 4% 0;
  background: #f3f1ed;
  color: #080808;
}

.booking-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.booking-eyebrow {
  display: block;

  margin-bottom: 28px;

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;

  color: #b58a4a;
}


/* MAIN CTA */

.booking-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 70px;

  align-items: end;

  padding-bottom: 90px;
}

.booking-layout h2 {
  margin: 0;

  font-size: clamp(4.5rem, 7vw, 7.5rem);
  line-height: 0.86;
  letter-spacing: -0.055em;

  text-transform: uppercase;
}

.booking-layout h2 span {
  display: block;

  color: #b58a4a;
}

.booking-content {
  padding-bottom: 8px;
}

.booking-content > p {
  max-width: 390px;
  margin: 0;

  font-size: 0.9rem;
  line-height: 1.7;

  color: #625f5a;
}

.booking-button {
  width: 100%;
  min-height: 64px;

  margin-top: 32px;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #080808;
  color: #fff;

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.booking-button span {
  font-size: 1rem;
}

.booking-button:hover {
  background: #b58a4a;
  color: #080808;
}


/* STEPS */

.booking-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #c9c5bf;
}

.booking-meta > div {
  min-height: 120px;

  display: flex;
  align-items: center;
  gap: 18px;

  padding-right: 30px;

  border-right: 1px solid #c9c5bf;
}

.booking-meta > div + div {
  padding-left: 30px;
}

.booking-meta > div:last-child {
  border-right: 0;
}

.booking-meta span {
  font-size: 0.58rem;
  font-weight: 800;

  color: #b58a4a;
}

.booking-meta p {
  margin: 0;

  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}


/* ========================================
   BOOKING RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-content {
    max-width: 500px;
  }

}


@media (max-width: 650px) {

  .booking-section {
    padding: 85px 6% 0;
  }

  .booking-layout {
    padding-bottom: 65px;
  }

  .booking-layout h2 {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .booking-meta {
    grid-template-columns: 1fr;
  }

  .booking-meta > div,
  .booking-meta > div + div {
    min-height: 85px;
    padding: 0;

    border-right: 0;
    border-bottom: 1px solid #c9c5bf;
  }

}

/* ========================================
   FOOTER
========================================= */

.site-footer {
  padding: 85px 4% 0;

  background: #080808;
  color: #f5f3ef;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}


/* MAIN */

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 100px;

  padding-bottom: 80px;
}

.footer-brand {
  align-self: start;

  display: inline-flex;
  flex-direction: column;

  width: fit-content;
}

.footer-brand strong {
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.16em;

  color: #f5f3ef;
}

.footer-brand span {
  margin-top: 8px;

  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.42em;

  color: #b58a4a;
}


/* COLUMNS */

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-label {
  margin-bottom: 22px;

  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;

  color: #b58a4a;
}

.footer-column a,
.footer-column p {
  margin: 0 0 11px;

  font-size: 0.75rem;
  line-height: 1.5;

  color: #8e8981;
}

.footer-column a {
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #f5f3ef;
}


/* BOTTOM */

.footer-bottom {
  min-height: 80px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;

  align-items: center;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;

  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: #5f5b56;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom p:last-child {
  text-align: right;
}


/* ========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .footer-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }

}


@media (max-width: 650px) {

  .site-footer {
    padding: 70px 6% 0;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-main {
    padding-bottom: 60px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;

    padding: 25px 0;
  }

  .footer-bottom p,
  .footer-bottom p:nth-child(2),
  .footer-bottom p:last-child {
    text-align: left;
  }

}