:root {
  --cream: #FEFAE0;
  --cream-soft: #fffdf1;
  --cream-deep: #f6edcf;
  --forest: #023618;
  --forest-2: #064f27;
  --taupe: #937B63;
  --ink: #14080E;
  --jade: #32A287;
  --line: rgba(2, 54, 24, 0.16);
  --line-dark: rgba(254, 250, 224, 0.18);
  --shadow-soft: 0 28px 86px rgba(20, 8, 14, 0.12);
  --shadow-deep: 0 42px 110px rgba(20, 8, 14, 0.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --container: 1180px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(50, 162, 135, .10), transparent 28rem),
    radial-gradient(circle at 94% 12%, rgba(147, 123, 99, .14), transparent 26rem),
    linear-gradient(180deg, var(--cream-soft), var(--cream));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: -6rem;
  left: 1rem;
  z-index: 2000;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(254, 250, 224, 0.84);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand img {
  width: 168px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.site-nav a {
  padding: .72rem .9rem;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(20, 8, 14, .72);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.site-nav a:hover {
  color: var(--forest);
  background: rgba(2, 54, 24, .06);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding-inline: 1.15rem;
}

.site-nav .nav-cta:hover {
  color: var(--cream);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(254, 250, 224, .9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--forest);
  border-radius: 99px;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(96px, 10vw, 142px) 0 clamp(82px, 8vw, 120px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .78fr);
  gap: clamp(46px, 6.5vw, 86px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.2rem;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.centered-eye {
  justify-content: center;
}

.hero h1,
.section-head h2,
.about-copy h2,
.contact-layout h2,
.booking-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--forest);
  line-height: .94;
  letter-spacing: -.045em;
}

.hero h1 {
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  max-width: 640px;
  line-height: .96;
  letter-spacing: -.052em;
}

.hero-lead,
.section-head p,
.booking-intro p,
.about-copy p,
.contact-layout p {
  color: rgba(20, 8, 14, .72);
  font-size: 1.04rem;
}

.hero-lead {
  max-width: 620px;
  margin: 1.8rem 0 0;
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  line-height: 1.78;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.button {
  border: 1px solid transparent;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .95rem 1.25rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 18px 50px rgba(2, 54, 24, .24);
}

.button.primary:hover {
  background: var(--ink);
}

.button.ghost {
  border-color: var(--line);
  color: var(--forest);
  background: rgba(254, 250, 224, .62);
}

.button.ghost:hover {
  border-color: rgba(50, 162, 135, .42);
  background: rgba(50, 162, 135, .1);
}

.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.text-button:focus-visible {
  outline: 3px solid rgba(50, 162, 135, .42);
  outline-offset: 4px;
}

.disabled-link {
  pointer-events: none;
  opacity: .5;
}

.trust-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .62rem .85rem;
  background: rgba(254, 250, 224, .58);
  color: var(--forest);
  font-weight: 800;
  font-size: .86rem;
}

.trust-row svg {
  color: var(--jade);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
}

.logo-stage {
  position: relative;
  min-height: clamp(430px, 48vw, 560px);
  border: 1px solid rgba(2, 54, 24, .12);
  border-radius: 48px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 44px);
}

.logo-stage::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(147, 123, 99, .2);
  border-radius: 36px;
  pointer-events: none;
}

.logo-stage::after {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(2, 54, 24, .07);
  background: radial-gradient(circle, rgba(50, 162, 135, .06), transparent 64%);
  pointer-events: none;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(450px, 94%);
  filter: drop-shadow(0 22px 42px rgba(20, 8, 14, .11));
}

.brand-strip {
  border-block: 1px solid var(--line);
  background: var(--forest);
  color: var(--cream);
}

.strip-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .78rem;
  font-weight: 800;
}

.strip-inner i {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--jade);
}

.section-head {
  max-width: 780px;
  margin-bottom: 3.2rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head.compact {
  margin-bottom: 0;
}

.section-head h2,
.booking-intro h2,
.about-copy h2,
.contact-layout h2 {
  font-size: clamp(3.4rem, 7vw, 6.2rem);
}

.section-head p {
  margin: 1.2rem 0 0;
  max-width: 650px;
}

.section-head.centered p {
  margin-inline: auto;
}

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

.service-card,
.price-card,
.booking-form,
.contact-form,
.app-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(20, 8, 14, .08);
}

.service-card {
  padding: 26px;
  background: rgba(254, 250, 224, .66);
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 162, 135, .36);
  background: rgba(254, 250, 224, .9);
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--jade);
  background: rgba(2, 54, 24, .06);
  border: 1px solid rgba(2, 54, 24, .12);
  font-size: 1.45rem;
}

.icon-box.small {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  flex: 0 0 auto;
}

.service-card h3 {
  margin: 1.4rem 0 .65rem;
  font-family: var(--serif);
  color: var(--forest);
  font-size: 2.35rem;
  line-height: .95;
}

.service-card p {
  margin: 0;
  color: rgba(20, 8, 14, .68);
}

.prices {
  background: rgba(2, 54, 24, .035);
}

.price-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.price-card {
  background: var(--cream-soft);
  padding: 18px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(20, 8, 14, .78);
  font-weight: 800;
}

.price-row svg {
  color: var(--jade);
  font-size: 1.05rem;
}

.price-row strong {
  font-family: var(--serif);
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  border: 1px solid rgba(2, 54, 24, .12);
  box-shadow: 0 22px 55px rgba(20, 8, 14, .08);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.1) saturate(.76) contrast(1.08) brightness(.9);
  transform: scale(1.02);
  transition: transform .6s var(--ease), filter .6s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(20, 8, 14, .7));
  opacity: .9;
}

.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--cream);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: sepia(.04) saturate(.92) contrast(1.08) brightness(.98);
}

.booking-section {
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 10%, rgba(50, 162, 135, .18), transparent 30rem),
    radial-gradient(circle at 80% 30%, rgba(147, 123, 99, .14), transparent 28rem),
    linear-gradient(145deg, var(--forest), var(--ink));
}

.booking-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.booking-intro h2,
.booking-intro .eyebrow {
  color: var(--cream);
}

.booking-intro p {
  color: rgba(254, 250, 224, .72);
}

.booking-facts {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.booking-facts div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(254, 250, 224, .055);
}

.booking-facts svg {
  grid-row: 1 / 3;
  color: var(--jade);
  font-size: 1.35rem;
}

.booking-facts strong {
  line-height: 1.1;
}

.booking-facts span {
  color: rgba(254, 250, 224, .64);
  font-size: .88rem;
}

.app-panel {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  padding: 18px;
  background: rgba(254, 250, 224, .07);
  border-color: var(--line-dark);
}

.app-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
}

.app-panel p {
  margin: 0;
  font-size: .92rem;
}

.text-button {
  margin-top: .75rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--jade);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
}

.booking-form {
  padding: 28px;
  background: rgba(254, 250, 224, .96);
  color: var(--ink);
}

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

label {
  display: grid;
  gap: .48rem;
  color: var(--forest);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .11em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(2, 54, 24, .2);
  border-radius: 14px;
  background: rgba(254, 250, 224, .75);
  color: var(--ink);
  padding: .92rem 1rem;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

textarea {
  resize: vertical;
  min-height: 124px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 4px rgba(50, 162, 135, .14);
  background: #fffef3;
}

.toggle-line {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-size: .95rem;
  font-weight: 700;
}

.toggle-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.after-time {
  margin-bottom: 14px;
}

.is-hidden {
  display: none;
}

.booking-summary {
  margin: 16px 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(2, 54, 24, .07);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(20, 8, 14, .72);
}

.booking-summary strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.form-note {
  margin: 16px 0 0;
  color: rgba(20, 8, 14, .58);
  font-size: .9rem;
}

.success-panel {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  color: var(--forest);
  background: rgba(50, 162, 135, .13);
  border: 1px solid rgba(50, 162, 135, .28);
  font-size: .94rem;
}

.success-panel.is-pending {
  color: var(--ink);
  background: rgba(147, 123, 99, .14);
  border-color: rgba(147, 123, 99, .28);
}

.success-panel.is-error {
  color: #6f180b;
  background: rgba(167, 38, 8, .10);
  border-color: rgba(167, 38, 8, .24);
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 580px;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  filter: sepia(.08) saturate(.82) contrast(1.05);
}

.value-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.value-list div,
.contact-mini span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 800;
}

.value-list svg,
.contact-mini svg {
  color: var(--jade);
}

.contact-section {
  background: rgba(2, 54, 24, .035);
}

.contact-mini {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 26px;
}

.contact-mini span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .65rem .9rem;
  background: rgba(254, 250, 224, .62);
  font-size: .88rem;
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 14px;
  background: rgba(254, 250, 224, .7);
}

.site-footer {
  padding: 46px 0;
  background: var(--forest);
  color: rgba(254, 250, 224, .7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand img {
  width: 150px;
  filter: brightness(0) invert(1) sepia(1) saturate(.2);
  opacity: .9;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cream);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero-grid,
  .price-layout,
  .booking-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 82px 14px auto 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 14px;
    background: rgba(254, 250, 224, .97);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem;
  }

  .section-pad {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .logo-stage {
    min-height: 430px;
    padding: 24px 18px;
  }

  .brand img {
    width: 142px;
  }

  .strip-inner {
    flex-wrap: wrap;
    min-height: 96px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .section-head h2,
  .booking-intro h2,
  .about-copy h2,
  .contact-layout h2 {
    font-size: 3rem;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
  }

  .booking-form,
  .contact-form {
    padding: 20px;
  }

  .logo-stage {
    min-height: 360px;
    padding: 18px 12px;
    border-radius: 30px;
  }

  .logo-stage::before {
    inset: 14px;
    border-radius: 22px;
  }

  .hero-logo {
    width: min(420px, 100%);
  }
}


/* V5 refinement: hero overlap fix and richer luxury copy rhythm */
.about-copy p + p {
  margin-top: 1rem;
}

.price-card,
.booking-form,
.contact-form {
  background: rgba(254, 250, 224, .82);
}

.logo-stage img {
  mix-blend-mode: normal;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero h1 {
    max-width: 820px;
  }

  .hero-visual {
    justify-self: start;
    width: min(100%, 620px);
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    gap: 36px;
  }

  .logo-stage {
    min-height: 410px;
  }
}

@media (max-width: 540px) {
  .hero h1 {
    font-size: clamp(3.1rem, 15.5vw, 4.6rem);
    line-height: 1;
  }

  .hero-lead {
    line-height: 1.68;
  }

  .logo-stage {
    min-height: 330px;
    border-radius: 30px;
  }

  .hero-logo {
    width: min(370px, 100%);
  }
}
