:root {
  --ink: #09202b;
  --petrol: #06363d;
  --petrol-deep: #041f28;
  --gold: #c9972c;
  --gold-soft: #e0c16e;
  --paper: #fbf7f0;
  --cream: #f3eadf;
  --blush: #e8b39f;
  --mauve: #d8c2cf;
  --sage: #cbd5c3;
  --line: rgba(9, 32, 43, 0.12);
  --shadow: 0 24px 70px rgba(13, 33, 35, 0.12);
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(circle at 8% 18%, rgba(232, 179, 159, 0.32), transparent 25rem),
    radial-gradient(circle at 92% 6%, rgba(201, 151, 44, 0.12), transparent 24rem),
    var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(251, 247, 240, 0.84);
  box-shadow: 0 18px 45px rgba(6, 31, 40, 0.09);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 151, 44, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1;
  background: rgba(255, 255, 255, 0.72);
}

.brand-text {
  display: grid;
  gap: 3px;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 14px;
  letter-spacing: 0.16em;
}

.brand-text span {
  font-size: 11px;
  letter-spacing: 0.34em;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.nav-cta {
  color: #fff9ee;
  background: linear-gradient(135deg, var(--gold), #d8a83c);
  box-shadow: 0 12px 28px rgba(201, 151, 44, 0.28);
}

.button svg,
.nav-cta svg,
.site-header svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 6vw, 78px);
  padding: clamp(26px, 4.4vw, 46px) 0 clamp(18px, 3vw, 30px);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.booking h2,
.testimonials h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(50px, 6.2vw, 78px);
}

.hero-lede {
  margin: 20px 0 0;
  color: var(--petrol);
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(9, 32, 43, 0.76);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-primary {
  color: #fff;
  background: var(--petrol);
  box-shadow: 0 18px 36px rgba(6, 54, 61, 0.24);
}

.button-ghost {
  color: var(--petrol);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button-dark {
  color: #fff;
  background: var(--petrol-deep);
}

.button-light {
  color: var(--petrol-deep);
  background: rgba(255, 255, 255, 0.88);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4, 31, 40, 0.26));
}

.hero-visual::after {
  right: -60px;
  bottom: -44px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 151, 44, 0.58);
  border-radius: 50%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: min(260px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  color: #fff;
  background: rgba(4, 31, 40, 0.82);
  backdrop-filter: blur(14px);
}

.hero-badge span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--petrol);
  color: #fff;
}

.value-item {
  display: grid;
  gap: 13px;
  justify-items: center;
  min-height: 210px;
  padding: 34px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.value-item:last-child {
  border-right: 0;
}

.value-item svg {
  width: 44px;
  height: 44px;
  color: var(--gold-soft);
  stroke-width: 1.3;
}

.value-item h2 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.value-item p {
  max-width: 240px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.services,
.process {
  padding: clamp(74px, 8vw, 110px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading h2,
.about-copy h2,
.booking h2,
.testimonials h2 {
  font-size: clamp(34px, 4.8vw, 56px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.process-grid article,
.testimonial-row figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 14px 42px rgba(26, 46, 49, 0.06);
}

.service-card {
  min-height: 300px;
  padding: 30px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border-radius: 50%;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--petrol);
  stroke-width: 1.4;
}

.sage {
  background: var(--sage);
}

.blush {
  background: var(--blush);
}

.mauve {
  background: var(--mauve);
}

.service-card h3,
.process-grid h3 {
  margin: 0 0 12px;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p,
.process-grid p,
.about-copy p {
  color: rgba(9, 32, 43, 0.72);
  line-height: 1.75;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card a svg {
  width: 15px;
  height: 15px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: stretch;
  background: #fffaf3;
}

.about-image {
  min-height: 470px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 470px;
  padding: clamp(50px, 8vw, 104px);
  overflow: hidden;
}

.about-copy::after {
  position: absolute;
  right: -74px;
  bottom: -88px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(6, 54, 61, 0.28);
  border-radius: 50%;
  background: rgba(201, 151, 44, 0.2);
}

.about-copy p,
.about-copy .button {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-bottom: 22px;
}

.about-copy .button {
  width: fit-content;
  margin-top: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-grid article {
  min-height: 236px;
  padding: 26px;
}

.process-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.testimonials {
  padding: clamp(70px, 8vw, 100px) max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #fffaf3, var(--cream));
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.testimonial-row figure {
  margin: 0;
  min-height: 190px;
  padding: 28px;
}

.testimonial-row blockquote {
  position: relative;
  margin: 0;
  color: rgba(9, 32, 43, 0.78);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
}

.testimonial-row blockquote::before {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  content: "“";
  font-family: var(--serif);
  font-size: 44px;
  line-height: 0.6;
}

.testimonial-row figcaption {
  margin-top: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(38px, 6vw, 62px) max(16px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 151, 44, 0.96), rgba(217, 168, 60, 0.9)),
    var(--gold);
}

.booking .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.booking p {
  margin: 14px 0 0;
  font-size: 18px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(2, minmax(160px, 0.6fr));
  gap: 34px;
  padding: 54px max(16px, calc((100vw - 1180px) / 2)) 28px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--petrol-deep);
}

.site-footer img {
  width: 170px;
  border-radius: 8px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 9px 0;
  font-size: 14px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 18px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--petrol);
    background: rgba(255, 255, 255, 0.72);
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-header.is-open {
    grid-template-columns: auto auto;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .site-nav a {
    padding: 14px 0;
  }

  .site-header.is-open .nav-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: fit-content;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .value-band,
  .service-grid,
  .process-grid,
  .testimonial-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .booking,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding-inline: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .brand-text span {
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .section-shell {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 30px;
  }

  .hero {
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .hero-text {
    margin-top: 18px;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions,
  .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .nav-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-visual {
    align-self: auto;
    height: 104px;
    min-height: 0;
  }

  .hero-badge {
    display: none;
  }

  .value-band,
  .service-grid,
  .process-grid,
  .testimonial-row {
    grid-template-columns: 1fr;
  }

  .value-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .about-copy,
  .services,
  .process,
  .testimonials {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}
