@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400 900;
  src: url("./assets/fonts/jost-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400 900;
  src: url("./assets/fonts/jost-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-display: swap;
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 900;
  src: url("./assets/fonts/fraunces-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-display: swap;
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 900;
  src: url("./assets/fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --background: #f5f6ef;
  --foreground: #121a10;
  --deep: #1f3518;
  --green: #6fa72b;
  --mint: #e8f2dc;
  --sage: #a8be8d;
  --ivory: #fffdf7;
  --gold: #c39b5f;
  --rose: #b86f60;
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --line: rgba(31, 53, 24, 0.16);
  --shadow: 0 24px 70px rgba(28, 45, 22, 0.18);
  --font-jost: "Jost";
  --font-display: "Fraunces";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(120deg, rgba(245, 246, 239, 0.94), rgba(232, 242, 220, 0.86)),
    #f5f6ef;
  color: var(--foreground);
  font-family: var(--font-jost), Arial, Helvetica, sans-serif;
  line-height: 1.5;
  margin: 0;
}

img {
  max-width: 100%;
}

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

main {
  overflow: hidden;
}

.hero {
  isolation: isolate;
  min-height: 94svh;
  padding: max(16px, env(safe-area-inset-top)) clamp(14px, 4vw, 58px) 46px;
  position: relative;
}

.scene-layer {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.forest-band {
  background:
    linear-gradient(180deg, rgba(18, 26, 16, 0) 0%, rgba(18, 26, 16, 0.18) 100%),
    linear-gradient(105deg, rgba(111, 167, 43, 0.22), rgba(195, 155, 95, 0.13));
  bottom: -12vh;
  height: 48vh;
  left: -6vw;
  position: absolute;
  right: -6vw;
  transform: skewY(-4deg);
}

.nav {
  align-items: center;
  backdrop-filter: blur(28px) saturate(180%);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: 0 12px 38px rgba(31, 53, 24, 0.12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 10px 12px;
  position: sticky;
  top: 12px;
  z-index: 5;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.brand img {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  height: 58px;
  object-fit: contain;
  padding: 0;
  width: 58px;
}

.brand span {
  color: var(--deep);
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  align-items: center;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  display: flex;
  gap: 4px;
  padding: 5px;
}

.nav-links a {
  border-radius: 14px;
  color: rgba(31, 53, 24, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  min-height: 38px;
  padding: 10px 13px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.72);
}

.mobile-bottom-nav {
  display: none;
}


.hero-showcase {
  border-radius: 34px;
  box-shadow: var(--shadow);
  margin: 34px auto 0;
  max-width: 1180px;
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.hero-showcase::after {
  background: linear-gradient(90deg, rgba(18, 26, 16, 0.82) 0%, rgba(18, 26, 16, 0.54) 42%, rgba(18, 26, 16, 0.1) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-showcase img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  align-content: center;
  color: #fff;
  display: grid;
  min-height: 660px;
  padding: clamp(34px, 6vw, 76px);
  position: relative;
  width: min(720px, 100%);
  z-index: 2;
}

.hero-overlay .eyebrow {
  color: #f1d9ad;
}

.hero-overlay h1 {
  color: #fff;
  max-width: 680px;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.hero-overlay .lead {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 6px solid var(--gold);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: var(--deep);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.6;
  max-width: 650px;
  padding: 22px 24px;
}

.hero-overlay .button.secondary {
  background: rgba(255, 255, 255, 0.86);
}



.eyebrow {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  color: var(--deep);
  font-family: var(--font-display), Georgia, serif;
  font-size: 7.1rem;
  font-weight: 800;
  line-height: 0.88;
  margin-bottom: 24px;
  max-width: 820px;
}

h2 {
  color: var(--deep);
  font-family: var(--font-display), Georgia, serif;
  font-size: 4.1rem;
  font-weight: 800;
  line-height: 0.98;
  margin-bottom: 18px;
}

h3 {
  color: var(--deep);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 10px;
}

.lead {
  color: #304429;
  font-size: 1.28rem;
  line-height: 1.62;
  max-width: 690px;
}



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

.button {
  align-items: center;
  border-radius: 18px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
}

.button.primary {
  background: rgba(31, 53, 24, 0.92);
  box-shadow: 0 18px 34px rgba(31, 53, 24, 0.22);
  color: #fff;
}

.button.secondary {
  backdrop-filter: blur(20px) saturate(150%);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--deep);
}



.image-slot,
.video-slot {
  align-items: center;
  backdrop-filter: blur(18px) saturate(140%);
  background:
    linear-gradient(180deg, rgba(31, 53, 24, 0.04), rgba(31, 53, 24, 0.12)),
    linear-gradient(120deg, rgba(238, 242, 231, 0.94), rgba(232, 242, 220, 0.86)),
    repeating-linear-gradient(90deg, rgba(31, 53, 24, 0.05) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(31, 53, 24, 0.13);
  border-radius: 24px;
  color: rgba(31, 53, 24, 0.76);
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  text-align: center;
}

.photo-slot {
  background: #dfe8d4;
  color: #fff;
  padding: 0;
}

.photo-slot::after {
  background: linear-gradient(180deg, rgba(18, 26, 16, 0) 45%, rgba(18, 26, 16, 0.72) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.photo-slot img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.photo-slot span {
  align-self: end;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 900;
  justify-self: start;
  margin: 18px;
  padding: 10px 13px;
  position: relative;
  z-index: 2;
}

.image-slot.large {
  border-radius: 28px;
  height: 100%;
  min-height: 500px;
}

.cinematic {
  align-items: end;
  justify-content: start;
  padding: 28px;
}

.cinematic span {
  margin: 28px;
}





.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 76px clamp(14px, 4vw, 58px);
}



.section-heading {
  margin-bottom: 30px;
  max-width: 790px;
}

.gardens-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
  text-align: center;
}

.gardens-heading h2 {
  color: #1f1b17;
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  line-height: 1;
}

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

.garden-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 53, 24, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(31, 53, 24, 0.09);
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 10px;
}

.garden-card .image-slot {
  border-radius: 18px;
  min-height: 190px;
}

.garden-card div:last-child {
  padding: 0 10px 12px;
}

.garden-number {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.mood {
  color: var(--deep);
  font-weight: 900;
  margin-bottom: 8px;
}

.garden-card p,
.service-card p,
.menu-copy p,
.contact-copy p {
  color: #526048;
  line-height: 1.55;
}

.services {
  max-width: 1180px;
}

.services-heading {
  margin-bottom: 34px;
  text-align: center;
}

.services-heading h2 {
  color: #1f1b17;
  font-size: clamp(2.55rem, 6vw, 4.25rem);
  line-height: 1;
}

.services-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: #fff;
  border: 1px solid rgba(31, 53, 24, 0.12);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(31, 53, 24, 0.1);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.service-image {
  border: 0;
  border-radius: 0;
  min-height: 220px;
}

.service-card .photo-slot::after {
  display: none;
}

.service-content {
  display: flex;
  flex-direction: column;
  min-height: 172px;
  padding: 22px 22px 20px;
}

.service-content h3 {
  color: #1f1b17;
  font-size: 1.42rem;
  margin-bottom: 8px;
}

.service-content p {
  display: -webkit-box;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.packages {
  max-width: none;
}

.packages .section-heading,
.package-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.packages-heading {
  margin-bottom: 34px;
  text-align: center;
}

.packages-heading h2 {
  color: #1f1b17;
  font-size: clamp(2.35rem, 5.8vw, 4.05rem);
  line-height: 1;
}

.packages .section-heading p:not(.eyebrow) {
  color: #526048;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 640px;
}

.package-tabs {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.package-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-switch {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(31, 53, 24, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(31, 53, 24, 0.08);
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
  padding: 6px;
}

.package-switch label {
  border-radius: 999px;
  color: rgba(31, 53, 24, 0.62);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  min-height: 44px;
  padding: 12px 14px;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

#photo-packages:checked ~ .package-switch label[for="photo-packages"],
#henna-packages:checked ~ .package-switch label[for="henna-packages"] {
  background: var(--deep);
  box-shadow: 0 10px 22px rgba(31, 53, 24, 0.2);
  color: #fff;
}

.package-track {
  display: grid;
  overflow: hidden;
}

.package-grid {
  display: grid;
  gap: 12px;
  grid-area: 1 / 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.photo-grid {
  transform: translateX(-28px);
}

#photo-packages:checked ~ .package-track .photo-grid,
#henna-packages:checked ~ .package-track .henna-grid {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.package-card {
  background: #fff;
  border: 1px solid rgba(31, 53, 24, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(31, 53, 24, 0.07);
  display: grid;
  gap: 0;
  grid-template-columns: 170px minmax(0, 1fr);
  overflow: hidden;
}

.package-cover {
  aspect-ratio: auto;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.package-cover::after {
  background: linear-gradient(180deg, rgba(18, 26, 16, 0) 38%, rgba(18, 26, 16, 0.36) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.package-cover img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.package-cover span {
  background: rgba(184, 111, 96, 0.94);
  border-radius: 999px;
  color: #fff;
  font-size: 0.56rem;
  font-weight: 900;
  left: 10px;
  letter-spacing: 0;
  padding: 6px 8px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
  z-index: 1;
}

.package-body {
  padding: 16px 17px;
}

.package-type {
  color: var(--rose);
  font-size: 0.62rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.package-body h3 {
  font-size: 1.18rem;
  margin-bottom: 7px;
}

.package-body > p:not(.package-type) {
  color: #526048;
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 11px;
}

.package-body ul {
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.package-body li {
  color: var(--deep);
  display: grid;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 9px;
  grid-template-columns: auto 1fr;
  line-height: 1.35;
}

.package-body li::before {
  background: var(--green);
  border-radius: 999px;
  content: "";
  height: 7px;
  margin-top: 6px;
  width: 7px;
}

.package-body a {
  border-top: 1px solid rgba(31, 53, 24, 0.1);
  color: var(--rose);
  display: block;
  font-weight: 900;
  font-size: 0.88rem;
  padding-top: 12px;
}

.package-more {
  display: none;
}

.media-section,
.satisfaction {
  max-width: none;
}

.media-section .section-heading,
.media-grid,
.satisfaction .section-heading,
.satisfaction-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

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

.image-slot.wide {
  grid-column: span 2;
  min-height: 380px;
}

.video-slot {
  background:
    linear-gradient(145deg, rgba(31, 53, 24, 0.7), rgba(31, 53, 24, 0.42)),
    linear-gradient(120deg, rgba(111, 167, 43, 0.38), rgba(184, 111, 96, 0.26));
  color: #fff;
  flex-direction: column;
  min-height: 380px;
}

.play-mark {
  align-items: center;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  display: flex;
  height: 72px;
  justify-content: center;
  margin-bottom: 14px;
  width: 72px;
}

.play-mark::before {
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  content: "";
  margin-left: 5px;
}

.split {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1fr);
}

.menu-list {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--deep);
  display: grid;
  gap: 12px;
  overflow: visible;
}

.menu-row {
  backdrop-filter: blur(24px) saturate(150%);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(31, 53, 24, 0.12);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(31, 53, 24, 0.08);
  display: block;
  overflow: hidden;
}

.menu-row:last-child {
  border-bottom: 1px solid rgba(31, 53, 24, 0.12);
}

.menu-row summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: 64px 1fr auto;
  list-style: none;
  min-height: 92px;
  padding: 14px 18px;
}

.menu-row summary::-webkit-details-marker {
  display: none;
}

.menu-row summary > img {
  aspect-ratio: 1;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(31, 53, 24, 0.12);
  display: block;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.menu-row summary span {
  color: #073f24;
  display: grid;
  font-size: 1.52rem;
  font-weight: 800;
  gap: 5px;
  letter-spacing: 0;
  line-height: 1.06;
}

.menu-row summary small {
  color: var(--rose);
  font-family: var(--font-jost), Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-row summary b {
  align-items: center;
  background: rgba(184, 111, 96, 0.11);
  border-radius: 999px;
  color: var(--rose);
  display: flex;
  font-size: 1.55rem;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  line-height: 1;
  transition: transform 180ms ease;
  width: 36px;
}

.menu-row[open] summary b {
  transform: rotate(45deg);
}

.menu-row ul {
  color: #526048;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: -2px 22px 24px 96px;
  padding: 0;
}

.menu-row li {
  align-items: start;
  display: grid;
  font-size: 0.95rem;
  gap: 3px 10px;
  grid-template-columns: auto 1fr;
}

.menu-row li::before {
  background: var(--rose);
  border-radius: 999px;
  content: "";
  height: 7px;
  margin-top: 8px;
  width: 7px;
}

.menu-row li strong {
  color: var(--deep);
  font-size: 0.98rem;
  font-weight: 900;
}

.menu-row li em {
  color: rgba(31, 53, 24, 0.62);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  grid-column: 2;
  line-height: 1.42;
}

.satisfaction {
  background: #f4f4f4;
}

.satisfaction-grid {
  display: flex;
  gap: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  overflow-x: auto;
  padding: 4px clamp(14px, 4vw, 58px) 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.satisfaction-grid::-webkit-scrollbar {
  display: none;
}

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

.review-heading h2 {
  color: #1f1b17;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.review-heading h2 span {
  color: var(--rose);
}

.review-heading > p {
  color: rgba(18, 26, 16, 0.58);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
}

.review-heading a {
  border-bottom: 1px solid rgba(184, 111, 96, 0.28);
  color: var(--rose);
  display: inline-flex;
  font-weight: 900;
  margin-top: 4px;
  padding-bottom: 7px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(31, 53, 24, 0.1);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(31, 53, 24, 0.08);
  display: grid;
  flex: 0 0 min(430px, 82vw);
  gap: 18px;
  min-height: 220px;
  padding: 24px;
  scroll-snap-align: center;
}

.review-card-head {
  align-items: center;
  display: flex;
  gap: 14px;
}

.couple-photo {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(111, 167, 43, 0.82), rgba(195, 155, 95, 0.7)),
    #dfe8d4;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(31, 53, 24, 0.14);
  display: flex;
  height: 64px;
  justify-content: center;
  overflow: hidden;
  width: 64px;
}

.couple-photo span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.couple-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.garden-tag {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

blockquote {
  color: var(--deep);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
  margin: 0;
}

.couple-name {
  color: #1f1b17;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.stars {
  color: var(--rose);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.contact {
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px;
  box-shadow: 0 30px 80px rgba(18, 26, 16, 0.24);
  margin-bottom: 48px;
  margin-top: 22px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  position: relative;
}

.contact::before {
  background: radial-gradient(circle, rgba(168, 190, 141, 0.24) 0%, rgba(168, 190, 141, 0) 68%);
  content: "";
  height: 520px;
  pointer-events: none;
  position: absolute;
  right: -190px;
  top: -250px;
  width: 520px;
}

.contact-heading {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  margin-bottom: 34px;
  position: relative;
}

.contact-heading h2 {
  color: var(--ivory);
  font-size: clamp(2.7rem, 5vw, 4.45rem);
  margin-bottom: 0;
  max-width: 720px;
}

.contact-heading > p {
  color: rgba(255, 253, 247, 0.72);
  font-size: 1.04rem;
  line-height: 1.65;
}

.contact .eyebrow {
  color: #d9bc8e;
}

.contact-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  position: relative;
}

.contact-map {
  background: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.contact-map iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 440px;
  width: 100%;
}

.contact-map-bar {
  align-items: center;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(255, 253, 247, 0.93);
  border: 1px solid rgba(31, 53, 24, 0.12);
  border-radius: 18px;
  bottom: 14px;
  box-shadow: 0 16px 38px rgba(18, 26, 16, 0.16);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 14px;
  padding: 14px 16px;
  position: absolute;
  right: 14px;
}

.contact-map-bar div {
  display: grid;
  gap: 2px;
}

.contact-map-bar div span {
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-map-bar strong {
  color: var(--deep);
  font-size: 0.92rem;
}

.contact-map-bar a {
  align-items: center;
  background: var(--deep);
  border-radius: 14px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.88rem;
  font-weight: 900;
  gap: 8px;
  min-height: 44px;
  padding: 0 15px;
}

.contact-channels {
  display: grid;
  gap: 14px;
  grid-template-rows: 1fr 1fr auto;
}

.contact-channel {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  color: #fff;
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 150px;
  padding: 22px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-channel:hover {
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-3px);
}

.contact-channel-whatsapp {
  background: #2c6b43;
}

.contact-channel-instagram {
  background: #8e574f;
}

.contact-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.contact-icon svg {
  fill: currentColor;
  height: 28px;
  width: 28px;
}

.contact-channel-copy {
  display: grid;
}

.contact-channel-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.contact-channel-copy strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.34rem;
  line-height: 1.08;
}

.contact-channel-copy > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  margin-top: 5px;
}

.contact-arrow {
  font-size: 1.35rem;
}

.contact-phone {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  font-size: 0.82rem;
  justify-content: space-between;
  min-height: 58px;
  padding: 12px 16px;
}

.contact-phone strong {
  color: #fff;
  font-size: 0.94rem;
}

.faq {
  max-width: none;
  padding-bottom: 42px;
}

.faq-heading,
.faq-list {
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
}

.faq-heading {
  margin-bottom: 28px;
  text-align: center;
}

.faq-heading h2 {
  color: #1f1b17;
  font-size: clamp(2.6rem, 6vw, 4.35rem);
  line-height: 1.02;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  white-space: nowrap;
}

.faq-heading h2 span {
  color: var(--rose);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(31, 53, 24, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(31, 53, 24, 0.08);
  overflow: hidden;
}

.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  list-style: none;
  min-height: 78px;
  padding: 20px 26px 20px 28px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: #1f1b17;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.46rem;
  font-weight: 800;
  line-height: 1.15;
}

.faq-item summary b {
  color: var(--rose);
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary b {
  transform: rotate(45deg);
}

.faq-item p {
  color: #526048;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: -4px 28px 24px;
  max-width: 760px;
}

@media (max-width: 1080px) {
  .garden-grid,
  .services-grid,
  .satisfaction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) { .split { grid-template-columns: 1fr; } h1 { font-size: 5.2rem; } h2 { font-size: 3.3rem; } }

.hero-showcase {
  border-radius: 34px;
  box-shadow: var(--shadow);
  margin: 34px auto 0;
  max-width: 1180px;
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.hero-showcase::after {
  background: linear-gradient(90deg, rgba(18, 26, 16, 0.82) 0%, rgba(18, 26, 16, 0.54) 42%, rgba(18, 26, 16, 0.1) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-showcase img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  align-content: center;
  color: #fff;
  display: grid;
  min-height: 660px;
  padding: 76px;
  position: relative;
  width: min(720px, 100%);
  z-index: 2;
}

.hero-overlay .eyebrow {
  color: #f1d9ad;
}

.hero-overlay h1 {
  color: #fff;
  max-width: 680px;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.hero-overlay .lead {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 6px solid var(--gold);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: var(--deep);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.6;
  max-width: 650px;
  padding: 22px 24px;
}

.hero-overlay .button.secondary {
  background: rgba(255, 255, 255, 0.86);
}

@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3.3rem;
  }
}

@media (min-width: 721px) and (max-width: 920px) {
  .nav {
    gap: 8px;
  }

  .brand {
    gap: 6px;
  }

  .brand img {
    height: 48px;
    width: 48px;
  }

  .brand span {
    font-size: 0.72rem;
  }

  .nav-links {
    gap: 2px;
    padding: 3px;
  }

  .nav-links a {
    font-size: 0.76rem;
    min-height: 34px;
    padding: 8px 7px;
  }
}

@media (max-width: 720px) {
  body {
    background: linear-gradient(150deg, rgba(245, 246, 239, 0.98), rgba(232, 242, 220, 0.92)), #f5f6ef;
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav {
    border-radius: 24px;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    position: relative;
    top: auto;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .brand img {
    height: 54px;
    width: 54px;
  }

  .brand span {
    font-size: 0.82rem;
    white-space: normal;
  }

  .nav-links {
    display: none;
  }

  .mobile-bottom-nav {
    align-items: center;
    backdrop-filter: blur(20px) saturate(150%);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 18px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 10px 24px rgba(31, 53, 24, 0.12);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    left: 18px;
    overflow: visible;
    padding: 4px;
    position: fixed;
    right: 18px;
    width: auto;
    z-index: 20;
  }

  .mobile-bottom-nav a {
    align-items: center;
    border-radius: 16px;
    color: rgba(31, 53, 24, 0.84);
    display: flex;
    font-size: 0.62rem;
    font-weight: 800;
    justify-content: center;
    min-height: 34px;
    padding: 6px 2px;
    text-align: center;
  }

  .hero-showcase {
    border-radius: 26px;
    margin-top: 24px;
    min-height: 620px;
  }

  .hero-showcase::after {
    background: linear-gradient(180deg, rgba(18, 26, 16, 0.62) 0%, rgba(18, 26, 16, 0.22) 34%, rgba(18, 26, 16, 0.74) 100%);
  }

  .hero-overlay {
    align-content: end;
    min-height: 620px;
    padding: 24px;
    width: 100%;
  }

  h1 {
    font-size: 4.1rem;
    max-width: 10ch;
  }

  h2 {
    font-size: 2.65rem;
  }

  .lead,
  .hero-overlay .lead {
    font-size: 1.02rem;
    line-height: 1.58;
  }

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

  .button {
    min-height: 56px;
    width: 100%;
  }

  .section {
    padding: 58px 12px;
  }

  .gardens-heading h2 {
    font-size: clamp(1.95rem, 8vw, 2.75rem);
  }

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

  .satisfaction-grid {
    gap: 14px;
    margin-left: -12px;
    margin-right: -12px;
    padding: 4px 12px 18px;
  }

  .testimonial-card {
    border-radius: 18px;
    flex-basis: 78vw;
    gap: 16px;
    min-height: 214px;
    padding: 22px;
  }

  .couple-photo {
    height: 58px;
    width: 58px;
  }

  .review-heading {
    margin-bottom: 26px;
  }

  .review-heading h2 {
    font-size: 2.15rem;
  }

  .review-heading > p {
    font-size: 0.98rem;
  }

  .garden-tag {
    font-size: 0.62rem;
    margin-bottom: 7px;
  }

  blockquote {
    font-size: 1rem;
    line-height: 1.42;
  }

  .couple-name {
    font-size: 0.94rem;
  }

  .services-grid {
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-heading {
    margin-bottom: 24px;
  }

  .services-heading h2 {
    font-size: clamp(2.25rem, 9vw, 3rem);
  }

  .package-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .package-tabs {
    max-width: none;
  }

  .packages-heading {
    margin-bottom: 24px;
  }

  .packages-heading h2 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .package-card {
    border-radius: 18px;
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 172px;
  }

  .package-cover {
    aspect-ratio: auto;
  }

  .package-cover span {
    font-size: 0.5rem;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 5px 7px;
    top: 8px;
  }

  .package-body {
    padding: 15px 14px 16px;
  }

  .package-type {
    font-size: 0.54rem;
    margin-bottom: 5px;
  }

  .package-body h3 {
    font-size: 1.12rem;
    margin-bottom: 7px;
  }

  .package-body > p:not(.package-type) {
    font-size: 0.78rem;
    margin-bottom: 9px;
  }

  .package-body ul {
    gap: 6px;
  }

  .package-body li {
    font-size: 0.75rem;
    gap: 7px;
  }

  .henna-grid .package-feature-list:not(.is-expanded) li:nth-child(n + 6) {
    display: none;
  }

  .package-more {
    align-items: center;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(31, 53, 24, 0.1);
    color: var(--rose);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    justify-content: space-between;
    margin-top: 12px;
    padding: 12px 0 0;
    text-align: left;
    width: 100%;
  }

  .package-more-icon {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 180ms ease;
  }

  .package-more[aria-expanded="true"] .package-more-icon {
    transform: rotate(45deg);
  }

  .package-body a {
    font-size: 0.78rem;
    padding-top: 9px;
  }

  .package-switch label {
    font-size: 0.82rem;
    min-height: 42px;
    padding: 11px 10px;
  }

  .service-card {
    border-radius: 18px;
  }

  .service-image {
    min-height: 0;
    aspect-ratio: 1 / 1.12;
  }

  .service-content {
    min-height: 156px;
    padding: 16px 16px 15px;
  }

  .service-content h3 {
    font-size: 1.18rem;
    line-height: 1.08;
  }

  .service-content p {
    font-size: 0.92rem;
    -webkit-line-clamp: 3;
  }

  .garden-card {
    border-radius: 26px;
  }

  .garden-card .image-slot {
    min-height: 230px;
  }

  .menu-list {
    gap: 10px;
  }

  .menu-row {
    min-height: 0;
  }

  .menu-row summary {
    gap: 12px;
    grid-template-columns: 56px 1fr auto;
    min-height: 82px;
    padding: 13px 14px;
  }

  .menu-row summary > img {
    border-radius: 14px;
    height: 56px;
    width: 56px;
  }

  .menu-row summary span {
    font-size: 1.26rem;
  }

  .menu-row summary small {
    font-size: 0.58rem;
  }

  .menu-row summary b {
    font-size: 1.32rem;
    height: 32px;
    width: 32px;
  }

  .menu-row ul {
    margin: -2px 18px 20px 84px;
  }

  .menu-row li {
    font-size: 0.88rem;
  }

  .menu-row li strong {
    font-size: 0.9rem;
  }

  .menu-row li em {
    font-size: 0.82rem;
  }

  .contact {
    border-radius: 22px;
    margin-left: 8px;
    margin-right: 8px;
    padding: 22px 14px;
  }

  .contact-heading,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    gap: 10px;
    margin-bottom: 18px;
  }

  .contact-heading h2 {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
    line-height: 0.98;
  }

  .contact-heading > p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .contact .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 9px;
  }

  .contact-layout {
    gap: 12px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 238px;
  }

  .contact-map {
    border-radius: 18px;
  }

  .contact-map-bar {
    border-radius: 13px;
    bottom: 8px;
    gap: 8px;
    left: 8px;
    padding: 9px 10px;
    right: 8px;
  }

  .contact-map-bar a {
    border-radius: 10px;
    font-size: 0.74rem;
    min-height: 38px;
    padding: 0 10px;
  }

  .contact-map-bar div span {
    font-size: 0.58rem;
  }

  .contact-map-bar strong {
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .contact-channels {
    gap: 9px;
  }

  .contact-channel {
    border-radius: 17px;
    gap: 12px;
    min-height: 82px;
    padding: 12px 14px;
  }

  .contact-icon {
    border-radius: 13px;
    height: 44px;
    width: 44px;
  }

  .contact-icon svg {
    height: 23px;
    width: 23px;
  }

  .contact-channel-copy small {
    display: none;
  }

  .contact-channel-copy strong {
    font-size: 1.06rem;
  }

  .contact-channel-copy > span {
    font-size: 0.78rem;
    margin-top: 3px;
  }

  .contact-arrow {
    font-size: 1.1rem;
  }

  .contact-phone {
    border-radius: 13px;
    font-size: 0.72rem;
    min-height: 48px;
    padding: 9px 12px;
  }

  .contact-phone strong {
    font-size: 0.82rem;
  }

  .faq {
    padding-bottom: 34px;
  }

  .faq-heading {
    text-align: center;
  }

  .faq-heading .eyebrow {
    text-align: center;
  }

  .faq-heading h2 {
    font-size: clamp(2.05rem, 8.4vw, 2.85rem);
    line-height: 1.02;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    min-height: 72px;
    padding: 18px 18px 18px 20px;
  }

  .faq-item summary span {
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .faq-item summary b {
    font-size: 2.05rem;
  }

  .faq-item p {
    font-size: 0.92rem;
    margin: -2px 20px 20px;
  }
}

@media (max-width: 390px) {
  .nav-links a {
    font-size: 0.72rem;
  }

  h1 {
    font-size: 3.45rem;
  }

  .hero-showcase {
    min-height: 560px;
  }

  .hero-overlay {
    min-height: 560px;
  }
}

a:focus-visible,
summary:focus-visible,
.package-more:focus-visible,
.package-switch label:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

#photo-packages:focus-visible ~ .package-switch label[for="photo-packages"],
#henna-packages:focus-visible ~ .package-switch label[for="henna-packages"] {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
