:root {
  --forest-950: #0a2117;
  --forest-900: #0d3825;
  --forest-800: #173f2b;
  --forest-700: #235b3d;
  --forest-600: #2f7450;
  --sage-500: #7b9d72;
  --sage-200: #dce7d7;
  --sage-100: #edf4e9;
  --gold-700: #a96f20;
  --gold-600: #c9933a;
  --gold-500: #ddb460;
  --gold-300: #f4d58d;
  --cream-100: #fffaf0;
  --cream-200: #fbf3df;
  --paper: #fdfcf8;
  --white: #ffffff;
  --ink: #1b2a22;
  --muted: #68746d;
  --line: rgba(23, 63, 43, .12);
  --line-strong: rgba(23, 63, 43, .22);
  --shadow-sm: 0 14px 34px rgba(13, 56, 37, .08);
  --shadow-md: 0 24px 60px rgba(13, 56, 37, .12);
  --shadow-lg: 0 34px 90px rgba(13, 56, 37, .17);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold-300); color: var(--forest-950); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  border-radius: 999px;
  background: var(--forest-900);
  color: white;
  padding: .8rem 1rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 74px 0; }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.split { max-width: none; display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: end; }
.section-head h2, .display-title, .page-title, .card-title {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--forest-900);
}
.section-head h2 { margin: 12px 0 0; font-size: clamp(2.3rem, 5vw, 4.7rem); line-height: .99; letter-spacing: -.04em; }
.section-head p { margin: 20px 0 0; color: var(--muted); line-height: 1.85; font-size: 1.04rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--gold-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--gold-300); }
.lead { color: var(--muted); font-size: 1.1rem; line-height: 1.9; }
.muted { color: var(--muted); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .9rem 1.25rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--forest-700), var(--forest-900)); color: white; box-shadow: 0 16px 34px rgba(13,56,37,.18); }
.button-primary:hover { box-shadow: 0 20px 44px rgba(13,56,37,.24); }
.button-secondary { background: rgba(255,255,255,.82); border-color: var(--line-strong); color: var(--forest-900); }
.button-secondary:hover { border-color: var(--gold-500); background: var(--cream-100); }
.button-gold { background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); color: var(--forest-950); box-shadow: 0 16px 34px rgba(201,147,58,.24); }
.button-whatsapp { background: #1fa855; color: white; }
.text-link { display: inline-flex; align-items: center; gap: .6rem; color: var(--forest-800); font-weight: 700; }
.text-link i { color: var(--gold-600); transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }

.page-progress { position: fixed; inset: 0 0 auto; z-index: 1000; height: 3px; pointer-events: none; }
.page-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-500), var(--forest-600)); }

.announcement-bar { background: var(--forest-950); color: rgba(255,255,255,.82); font-size: .78rem; }
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement-inner p { margin: 0; }
.announcement-inner p i { color: var(--gold-300); margin-right: .45rem; }
.announcement-inner a { color: var(--gold-300); font-weight: 700; white-space: nowrap; }
.announcement-inner a i { margin-left: .4rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(23,63,43,.08);
  background: rgba(253,252,248,.88);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 14px 40px rgba(13,56,37,.09); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo {
  display: block;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}
.brand-copy { display: block; line-height: 1; }
.brand-copy strong { display: block; font-family: "Playfair Display", Georgia, serif; color: var(--forest-900); font-size: 1.27rem; letter-spacing: .04em; }
.brand-copy small { display: block; margin-top: 7px; color: var(--gold-700); font-size: .56rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 5px; margin-left: auto; }
.nav-link { position: relative; display: inline-flex; align-items: center; gap: .42rem; border-radius: 999px; padding: .72rem .82rem; color: #5b6b62; font-size: .71rem; font-weight: 700; white-space: nowrap; transition: background .2s ease, color .2s ease; }
.nav-link i { color: var(--sage-500); font-size: .72rem; }
.nav-link:hover, .nav-link.is-active { color: var(--forest-900); background: var(--sage-100); }
.nav-link.is-active i { color: var(--gold-700); }
.header-actions { display: flex; align-items: center; gap: 9px; margin-left: 8px; }
.icon-button { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--forest-800); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: white; padding: 0; place-items: center; }
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 3px auto; border-radius: 20px; background: var(--forest-900); transition: transform .25s ease, opacity .25s ease; }
.nav-open .menu-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.mobile-menu { display: none; position: absolute; left: 0; right: 0; top: 100%; max-height: calc(100vh - 82px); overflow: auto; opacity: 0; pointer-events: none; transform: translateY(-10px); background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); transition: opacity .25s ease, transform .25s ease; }
.nav-open .mobile-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav { display: grid; gap: 8px; padding-top: 18px; padding-bottom: 24px; }
.mobile-nav-link { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; border: 1px solid var(--line); border-radius: 18px; padding: 12px; color: var(--forest-900); font-weight: 700; }
.mobile-nav-link.is-active { background: var(--sage-100); border-color: rgba(35,91,61,.18); }
.mobile-nav-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--cream-200); color: var(--gold-700); }
.mobile-nav-link > i:last-child { color: var(--sage-500); font-size: .8rem; }
.mobile-quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  padding: 76px 0 88px;
  background:
    radial-gradient(circle at 15% 15%, rgba(244,213,141,.43), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(123,157,114,.2), transparent 25%),
    linear-gradient(135deg, #fffdf8 0%, #f8f3e8 52%, #edf4e9 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(23,63,43,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(23,63,43,.05) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(90deg, black, transparent 82%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
.hero-copy { max-width: 720px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(169,111,32,.22); border-radius: 999px; background: rgba(255,255,255,.72); padding: .65rem .9rem; color: var(--gold-700); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; box-shadow: var(--shadow-sm); }
.hero-kicker i { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--cream-200); }
.display-title { margin: 24px 0 0; font-size: clamp(3.25rem, 6.6vw, 6.5rem); line-height: .91; letter-spacing: -.055em; }
.display-title em { color: var(--gold-700); font-style: normal; }
.hero-copy .lead { max-width: 650px; margin: 28px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 42px; }
.proof-card { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.7); padding: 16px; box-shadow: 0 10px 26px rgba(13,56,37,.06); backdrop-filter: blur(8px); }
.proof-card i { color: var(--gold-700); }
.proof-card strong { display: block; margin-top: 12px; color: var(--forest-900); font-family: "Playfair Display", Georgia, serif; font-size: 1.55rem; }
.proof-card span { display: block; margin-top: 6px; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.hero-visual { position: relative; min-height: 620px; }
.hero-image-frame { position: absolute; inset: 0 28px 54px 48px; overflow: hidden; border-radius: 44px 44px 170px 44px; background: var(--sage-100); box-shadow: var(--shadow-lg); }
.hero-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,33,23,.42)); }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity .9s ease, transform 4s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-badge { position: absolute; left: 0; bottom: 0; z-index: 2; max-width: 300px; border: 1px solid rgba(255,255,255,.7); border-radius: 24px; background: rgba(255,255,255,.9); padding: 20px; box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }
.hero-badge-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); color: var(--forest-950); }
.hero-badge h2 { margin: 14px 0 0; color: var(--forest-900); font-family: "Playfair Display", Georgia, serif; font-size: 1.55rem; }
.hero-badge p { margin: 9px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.hero-dots { position: absolute; right: 0; top: 42%; z-index: 3; display: grid; gap: 9px; }
.hero-dot { width: 13px; height: 13px; border: 2px solid white; border-radius: 50%; background: rgba(255,255,255,.35); box-shadow: 0 3px 10px rgba(0,0,0,.15); }
.hero-dot.is-active { background: var(--gold-500); transform: scale(1.2); }
.hero-leaf { position: absolute; z-index: 2; width: 118px; height: 118px; right: -18px; bottom: 28px; border-radius: 70% 0 70% 0; background: linear-gradient(135deg, var(--forest-600), var(--forest-900)); transform: rotate(14deg); box-shadow: var(--shadow-md); }
.hero-leaf::after { content: ""; position: absolute; width: 64px; height: 2px; left: 21px; top: 59px; background: var(--gold-300); transform: rotate(-44deg); transform-origin: left; }

.trust-strip { border-block: 1px solid var(--line); background: white; }
.trust-grid { min-height: 98px; display: grid; grid-template-columns: repeat(5,1fr); align-items: center; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 58px; padding: 0 16px; border-right: 1px solid var(--line); color: var(--forest-800); font-size: .82rem; font-weight: 700; text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-item i { color: var(--gold-700); }

.intro-section { background: white; }
.intro-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 76px; align-items: center; }
.image-stack { position: relative; min-height: 560px; }
.image-stack-main { position: absolute; inset: 0 80px 48px 0; overflow: hidden; border-radius: 34px 140px 34px 34px; box-shadow: var(--shadow-lg); }
.image-stack-main img { width: 100%; height: 100%; object-fit: cover; }
.image-stack-small { position: absolute; width: 230px; height: 245px; right: 0; bottom: 0; overflow: hidden; border: 10px solid white; border-radius: 30px; box-shadow: var(--shadow-md); }
.image-stack-small img { width: 100%; height: 100%; object-fit: cover; }
.experience-badge { position: absolute; top: 32px; right: 16px; width: 138px; height: 138px; display: grid; place-items: center; border-radius: 50%; background: var(--forest-900); color: white; text-align: center; box-shadow: var(--shadow-md); }
.experience-badge strong { font-family: "Playfair Display", Georgia, serif; font-size: 2.3rem; line-height: 1; }
.experience-badge span { display: block; margin-top: 5px; color: var(--gold-300); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.feature-list { display: grid; gap: 15px; margin-top: 30px; }
.feature-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); padding: 16px; }
.feature-row i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--cream-200); color: var(--gold-700); }
.feature-row h3 { margin: 1px 0 0; color: var(--forest-900); font-family: "Playfair Display", Georgia, serif; font-size: 1.16rem; }
.feature-row p { margin: 6px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }

.services-preview { background: linear-gradient(180deg, var(--cream-100), #fff 100%); overflow: hidden; }
.card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.service-card { position: relative; min-height: 360px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.service-card-media { position: absolute; inset: 0; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.service-card:hover img { transform: scale(1.05); }
.service-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,33,23,.04), rgba(10,33,23,.88)); }
.service-card-content { position: absolute; inset: auto 0 0; z-index: 1; padding: 25px; color: white; }
.service-card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,.92); color: var(--gold-700); }
.service-card h3 { margin: 18px 0 0; font-family: "Playfair Display", Georgia, serif; font-size: 1.75rem; }
.service-card p { margin: 10px 0 0; color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.65; }
.service-card a { margin-top: 17px; color: var(--gold-300); }

.process-section { background: var(--forest-950); color: white; overflow: hidden; }
.process-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 5%, rgba(244,213,141,.14), transparent 30%), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: auto, 44px 44px, 44px 44px; }
.process-section .section-head h2 { color: white; }
.process-section .section-head p { color: rgba(255,255,255,.7); }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-card { position: relative; border: 1px solid rgba(255,255,255,.11); border-radius: 24px; background: rgba(255,255,255,.055); padding: 24px; backdrop-filter: blur(10px); }
.process-number { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold-500); color: var(--forest-950); font-weight: 800; }
.process-card h3 { margin: 20px 0 0; font-family: "Playfair Display", Georgia, serif; font-size: 1.4rem; }
.process-card p { margin: 10px 0 0; color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.7; }
.process-card:not(:last-child)::after { content: ""; position: absolute; width: 34px; height: 1px; top: 45px; right: -27px; background: rgba(244,213,141,.5); }

.digital-section { background: white; }
.digital-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 36px; background: var(--cream-100); box-shadow: var(--shadow-md); }
.digital-copy { padding: clamp(34px,5vw,70px); }
.digital-copy h2 { margin: 13px 0 0; font-family: "Playfair Display", Georgia, serif; color: var(--forest-900); font-size: clamp(2.4rem,4.2vw,4.1rem); line-height: 1; letter-spacing: -.04em; }
.digital-copy p { margin: 22px 0 0; color: var(--muted); line-height: 1.85; }
.digital-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.digital-list span { display: flex; align-items: center; gap: 10px; border: 1px solid rgba(23,63,43,.09); border-radius: 15px; background: rgba(255,255,255,.72); padding: 12px; color: var(--forest-800); font-size: .86rem; font-weight: 700; }
.digital-list i { color: var(--gold-700); }
.digital-visual { position: relative; min-height: 540px; overflow: hidden; background: linear-gradient(150deg,var(--forest-700),var(--forest-950)); }
.digital-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 35% 25%, rgba(244,213,141,.26), transparent 22%), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, 42px 42px, 42px 42px; }
.phone-mockup { position: absolute; width: 270px; height: 500px; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(4deg); border: 9px solid #0b1510; border-radius: 42px; background: #fff; box-shadow: 0 40px 90px rgba(0,0,0,.38); overflow: hidden; }
.phone-notch { width: 100px; height: 24px; margin: 8px auto 0; border-radius: 0 0 16px 16px; background: #0b1510; }
.phone-screen { padding: 22px 17px; }
.phone-screen-header { display: flex; align-items: center; gap: 10px; }
.phone-screen-header img {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  padding: 3px;
  background: #ffffff;
  border: 1px solid rgba(23, 63, 43, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(23, 63, 43, 0.12);
}
.phone-screen-header strong { color: var(--forest-900); font-family: "Playfair Display", Georgia, serif; }
.phone-screen small { color: var(--muted); }
.phone-appointment { margin-top: 24px; border-radius: 22px; background: var(--forest-900); color: white; padding: 19px; }
.phone-appointment span { color: var(--gold-300); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.phone-appointment h3 { margin: 12px 0 0; font-family: "Playfair Display", Georgia, serif; }
.phone-rows { display: grid; gap: 10px; margin-top: 16px; }
.phone-row { border: 1px solid var(--line); border-radius: 14px; background: var(--cream-100); padding: 12px; color: var(--forest-800); font-size: .78rem; }

.audience-section { background: linear-gradient(180deg,#fff,var(--sage-100)); }
.audience-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.audience-card { border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.82); padding: 22px 18px; text-align: center; transition: transform .25s ease, background .25s ease; }
.audience-card:hover { transform: translateY(-5px); background: white; }
.audience-card i { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto; border-radius: 18px; background: var(--cream-200); color: var(--gold-700); font-size: 1.15rem; }
.audience-card h3 { margin: 16px 0 0; font-family: "Playfair Display", Georgia, serif; color: var(--forest-900); font-size: 1.14rem; }
.audience-card p { margin: 8px 0 0; color: var(--muted); font-size: .83rem; line-height: 1.6; }

.cta-section { padding: 70px 0 100px; background: var(--sage-100); }
.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 40px; border-radius: 34px; background: linear-gradient(135deg,var(--forest-800),var(--forest-950)); padding: clamp(34px,5vw,70px); color: white; box-shadow: var(--shadow-lg); }
.cta-panel::before { content: ""; position: absolute; width: 420px; height: 420px; right: -170px; top: -180px; border-radius: 50%; border: 70px solid rgba(244,213,141,.09); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { margin: 12px 0 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.3rem,4vw,4rem); line-height: 1; }
.cta-panel p { margin: 18px 0 0; color: rgba(255,255,255,.68); line-height: 1.8; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.cta-actions .button-secondary { background: transparent; border-color: rgba(255,255,255,.26); color: white; }

.page-hero { position: relative; overflow: hidden; padding: 112px 0 88px; background: linear-gradient(135deg,#fffdf8,#eef4e9); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 20%, rgba(244,213,141,.36), transparent 24%), linear-gradient(rgba(23,63,43,.045) 1px,transparent 1px), linear-gradient(90deg,rgba(23,63,43,.045) 1px,transparent 1px); background-size: auto,44px 44px,44px 44px; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.page-title { margin: 16px 0 0; font-size: clamp(3.2rem,6vw,6rem); line-height: .94; letter-spacing: -.05em; }
.page-hero p { max-width: 670px; margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.85; }
.page-hero-card { border: 1px solid rgba(23,63,43,.12); border-radius: 30px; background: rgba(255,255,255,.82); padding: 30px; box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.page-hero-card .icon-box { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: var(--cream-200); color: var(--gold-700); font-size: 1.2rem; }
.page-hero-card h2 { margin: 18px 0 0; font-family: "Playfair Display",Georgia,serif; color: var(--forest-900); font-size: 2rem; line-height: 1.1; }
.page-hero-card p { margin-top: 12px; font-size: .96rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-top: 24px; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { color: var(--forest-800); font-weight: 700; }
.breadcrumbs i { font-size: .65rem; color: var(--gold-700); }

.content-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 72px; align-items: start; }
.sticky-copy { position: sticky; top: 130px; }
.prose-card { border: 1px solid var(--line); border-radius: 28px; background: white; padding: clamp(26px,4vw,46px); box-shadow: var(--shadow-sm); }
.prose-card p { color: var(--muted); line-height: 1.9; }
.prose-card p:first-child { margin-top: 0; }
.prose-card p:last-child { margin-bottom: 0; }
.reason-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.reason-card { border: 1px solid var(--line); border-radius: 22px; background: white; padding: 22px; box-shadow: 0 12px 28px rgba(13,56,37,.05); }
.reason-card i { color: var(--gold-700); font-size: 1.1rem; }
.reason-card h3 { margin: 16px 0 0; color: var(--forest-900); font-family: "Playfair Display",Georgia,serif; font-size: 1.18rem; }
.reason-card p { margin: 9px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vision-card { position: relative; overflow: hidden; min-height: 340px; border-radius: 28px; padding: 34px; color: white; }
.vision-card.vision { background: linear-gradient(145deg,var(--forest-600),var(--forest-950)); }
.vision-card.mission { background: linear-gradient(145deg,#b47b2d,#7f5115); }
.vision-card::before { content: ""; position: absolute; width: 230px; height: 230px; right: -90px; top: -90px; border: 45px solid rgba(255,255,255,.08); border-radius: 50%; }
.vision-card > * { position: relative; z-index: 1; }
.vision-card i { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: rgba(255,255,255,.13); color: var(--gold-300); font-size: 1.25rem; }
.vision-card h3 { margin: 32px 0 0; font-family: "Playfair Display",Georgia,serif; font-size: 2.2rem; }
.vision-card p { margin: 18px 0 0; color: rgba(255,255,255,.78); line-height: 1.85; }
.objective-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.objective-card { border: 1px solid var(--line); border-radius: 22px; background: white; padding: 24px; }
.objective-card span { color: var(--gold-700); font-weight: 800; font-size: .72rem; letter-spacing: .12em; }
.objective-card h3 { margin: 14px 0 0; font-family: "Playfair Display",Georgia,serif; color: var(--forest-900); font-size: 1.26rem; }
.objective-card p { margin: 10px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.7; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-button { border: 1px solid var(--line); border-radius: 999px; background: white; padding: .8rem 1rem; color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.filter-button.is-active, .filter-button:hover { background: var(--forest-900); color: white; border-color: var(--forest-900); }
.service-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-detail-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: white; padding: 25px; box-shadow: 0 13px 30px rgba(13,56,37,.05); transition: transform .25s ease, box-shadow .25s ease; }
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-detail-card.is-hidden { display: none; }
.service-detail-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--cream-200); color: var(--gold-700); font-size: 1.1rem; }
.service-detail-card h3 { margin: 18px 0 0; font-family: "Playfair Display",Georgia,serif; color: var(--forest-900); font-size: 1.4rem; }
.service-detail-card p { margin: 10px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.service-detail-card .service-category { margin-top: auto; padding-top: 18px; color: var(--forest-600); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.notice-panel { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 34px; border: 1px solid rgba(169,111,32,.2); border-radius: 24px; background: var(--cream-100); padding: 24px; }
.notice-panel h3 { margin: 0; font-family: "Playfair Display",Georgia,serif; color: var(--forest-900); }
.notice-panel p { margin: 7px 0 0; color: var(--muted); }

.facility-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.facility-card { position: relative; overflow: hidden; min-height: 250px; border: 1px solid var(--line); border-radius: 26px; background: white; padding: 26px; box-shadow: var(--shadow-sm); }
.facility-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -50px; bottom: -50px; border-radius: 50%; background: var(--sage-100); }
.facility-card > * { position: relative; z-index: 1; }
.facility-card i { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--forest-900); color: var(--gold-300); }
.facility-card h3 { margin: 18px 0 0; font-family: "Playfair Display",Georgia,serif; color: var(--forest-900); font-size: 1.35rem; }
.facility-card p { margin: 10px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.team-role-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.team-role-card { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: start; border: 1px solid var(--line); border-radius: 22px; background: white; padding: 21px; }
.team-role-card i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: var(--cream-200); color: var(--gold-700); }
.team-role-card h3 { margin: 1px 0 0; font-family: "Playfair Display",Georgia,serif; color: var(--forest-900); font-size: 1.14rem; }
.team-role-card p { margin: 7px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }

.booking-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 34px; align-items: start; }
.booking-info { position: sticky; top: 126px; }
.info-card { border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(145deg,var(--forest-800),var(--forest-950)); color: white; padding: 30px; box-shadow: var(--shadow-md); }
.info-card h2 { margin: 13px 0 0; font-family: "Playfair Display",Georgia,serif; font-size: 2.2rem; }
.info-card p { color: rgba(255,255,255,.68); line-height: 1.8; }
.info-list { display: grid; gap: 13px; margin-top: 25px; }
.info-list div { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; }
.info-list i { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,255,255,.1); color: var(--gold-300); }
.booking-note { margin-top: 18px; border: 1px solid var(--line); border-radius: 22px; background: white; padding: 22px; color: var(--muted); line-height: 1.7; }
.booking-form { border: 1px solid var(--line); border-radius: 30px; background: white; padding: clamp(24px,4vw,42px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { color: var(--forest-900); font-size: .82rem; font-weight: 700; }
.form-control { width: 100%; min-height: 52px; border: 1px solid var(--line-strong); border-radius: 15px; background: #fffefb; color: var(--ink); padding: .85rem .95rem; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-control:focus { border-color: var(--gold-600); box-shadow: 0 0 0 4px rgba(201,147,58,.13); }
.form-help { color: var(--muted); font-size: .75rem; line-height: 1.5; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.form-status { display: none; margin-top: 16px; border-radius: 14px; background: var(--sage-100); color: var(--forest-800); padding: 13px; font-size: .85rem; }
.form-status.is-visible { display: block; }

.contact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.contact-card { border: 1px solid var(--line); border-radius: 24px; background: white; padding: 26px; box-shadow: var(--shadow-sm); }
.contact-card i { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; background: var(--cream-200); color: var(--gold-700); }
.contact-card h3 { margin: 18px 0 0; font-family: "Playfair Display",Georgia,serif; color: var(--forest-900); font-size: 1.3rem; }
.contact-card p { margin: 9px 0 0; color: var(--muted); line-height: 1.65; }
.contact-card a { display: inline-flex; margin-top: 14px; color: var(--forest-700); font-weight: 700; }
.faq-list { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; border: 0; background: transparent; padding: 20px; color: var(--forest-900); text-align: left; font-weight: 700; }
.faq-question i { transition: transform .25s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 20px 20px; color: var(--muted); line-height: 1.75; }
.faq-item.is-open .faq-question i { transform: rotate(45deg); }

.site-footer { position: relative; overflow: hidden; background: var(--forest-950); color: white; padding: 78px 0 0; }
.footer-orb { position: absolute; border-radius: 50%; border: 70px solid rgba(244,213,141,.05); }
.footer-orb-one { width: 440px; height: 440px; right: -180px; top: -200px; }
.footer-orb-two { width: 320px; height: 320px; left: -180px; bottom: -200px; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .7fr .8fr 1.15fr; gap: 40px; }
.footer-brand-card p { max-width: 350px; color: rgba(255,255,255,.62); font-size: .9rem; line-height: 1.8; }
.footer-brand .brand-copy strong { color: white; }
.footer-brand .brand-copy small { color: var(--gold-300); }
.footer-socials { display: flex; gap: 9px; margin-top: 21px; }
.footer-socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; color: var(--gold-300); transition: background .2s ease; }
.footer-socials a:hover { background: rgba(255,255,255,.1); }
.footer-column { display: grid; align-content: start; gap: 12px; }
.footer-column h2 { margin: 0 0 10px; color: var(--gold-300); font-size: .74rem; letter-spacing: .17em; text-transform: uppercase; }
.footer-column a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.67); font-size: .86rem; transition: color .2s ease, transform .2s ease; }
.footer-column a i { color: var(--gold-500); font-size: .58rem; }
.footer-column a:hover { color: white; transform: translateX(4px); }
.footer-contact-card { border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.06); padding: 25px; backdrop-filter: blur(8px); }
.footer-contact-card h2 { margin: 11px 0 0; font-family: "Playfair Display",Georgia,serif; font-size: 1.75rem; }
.footer-contact-card p { color: rgba(255,255,255,.62); font-size: .86rem; line-height: 1.7; }
.footer-phone { display: flex; align-items: center; gap: 9px; margin-top: 16px; color: var(--gold-300); font-weight: 700; }
.footer-bottom { position: relative; z-index: 1; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 58px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.52); font-size: .8rem; }
.floating-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 800; display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; background: #1fa855; color: white; padding: 13px 17px; box-shadow: 0 18px 45px rgba(31,168,85,.32); font-size: .8rem; font-weight: 700; }
.floating-whatsapp i { font-size: 1.2rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.footer-logo {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  padding: 4px;

  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(7, 30, 18, 0.2);
}

@media (max-width: 640px) {
  .footer-logo {
    width: 54px;
    height: 54px;
  }
}


@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .mobile-menu { display: block; }
  .header-book { display: none; }
  .reason-grid, .audience-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .9fr; }
  .footer-contact-card { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 18px; align-items: center; }
  .footer-contact-card p { margin: 0; }
  .footer-contact-card .button { justify-self: end; }
  .footer-phone { grid-column: 3; margin-top: -5px; justify-self: end; }
}

@media (max-width: 960px) {
  .section { padding: 82px 0; }
  .section-head.split, .hero-grid, .intro-grid, .page-hero-grid, .content-grid, .digital-panel, .cta-panel, .booking-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 60px; }
  .hero-visual { min-height: 580px; }
  .hero-image-frame { inset: 0 45px 54px 45px; }
  .intro-grid { gap: 48px; }
  .image-stack { min-height: 530px; }
  .card-grid, .service-detail-grid, .facility-grid, .team-role-grid, .objective-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-card::after { display: none; }
  .digital-visual { min-height: 500px; }
  .audience-grid, .reason-grid { grid-template-columns: repeat(2,1fr); }
  .cta-actions { justify-content: flex-start; }
  .page-hero { padding-top: 84px; }
  .sticky-copy, .booking-info { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-card { grid-column: 1 / -1; }
  .footer-contact-card { grid-column: 1 / -1; display: block; }
  .footer-contact-card .button { margin-top: 12px; }
  .footer-phone { margin-top: 16px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .announcement-inner { min-height: 34px; justify-content: center; text-align: center; }
  .announcement-inner p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .announcement-inner a { display: none; }
  .header-inner { min-height: 72px; }
  .brand-logo {
    width: 52px;
    height: 52px;
  }
  .brand-copy strong { font-size: 1.05rem; }
  .brand-copy small { font-size: .48rem; letter-spacing: .13em; }
  .phone-button { display: none; }
  .display-title, .page-title { font-size: clamp(2.9rem,15vw,4.2rem); }
  .hero { padding: 46px 0 62px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 480px; }
  .hero-image-frame { inset: 0 8px 65px; border-radius: 30px 30px 110px 30px; }
  .hero-badge { left: 0; right: 28px; max-width: none; }
  .hero-dots, .hero-leaf { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding-block: 12px; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .image-stack { min-height: 420px; }
  .image-stack-main { inset: 0 35px 36px 0; }
  .image-stack-small { width: 150px; height: 175px; border-width: 7px; }
  .experience-badge { width: 108px; height: 108px; top: 18px; right: 0; }
  .experience-badge strong { font-size: 1.8rem; }
  .card-grid, .process-grid, .service-detail-grid, .facility-grid, .team-role-grid, .objective-grid, .contact-grid, .vision-grid, .reason-grid, .audience-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .digital-list, .form-grid { grid-template-columns: 1fr; }
  .phone-mockup { width: 240px; height: 455px; }
  .form-group.full { grid-column: auto; }
  .notice-panel { align-items: flex-start; flex-direction: column; }
  .cta-panel { padding: 34px 22px; }
  .page-hero { padding: 68px 0 60px; }
  .page-hero-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-card { grid-column: auto; }
  .footer-contact-card { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 54px; height: 54px; justify-content: center; border-radius: 50%; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* About Us page and Kandy location enhancements */
.about-page-hero { background: linear-gradient(135deg,#fffdf8 0%,#eef4e9 62%,#f8edcf 100%); }
.about-hero-image { position: relative; min-height: 470px; overflow: hidden; border: 1px solid var(--line); border-radius: 34px 34px 130px 34px; background: var(--sage-100); box-shadow: var(--shadow-lg); }
.about-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 48%,rgba(10,33,23,.52)); }
.about-hero-image img { width: 100%; height: 100%; min-height: 470px; display: block; object-fit: cover; }
.about-location-badge { position: absolute; left: 24px; bottom: 24px; z-index: 2; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.35); border-radius: 18px; background: rgba(255,255,255,.9); padding: 13px 16px; box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.about-location-badge > i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--cream-200); color: var(--gold-700); }
.about-location-badge span, .about-location-badge strong { display: block; }
.about-location-badge strong { color: var(--forest-900); font-family: "Playfair Display",Georgia,serif; font-size: 1.2rem; }
.about-location-badge span { color: var(--muted); font-size: .78rem; line-height: 1.25; }
.footer-location { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: rgba(255,255,255,.82); font-weight: 700; }
.footer-location:hover { color: var(--gold-300); }

@media (max-width: 1180px) {
  .contact-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .about-hero-image, .about-hero-image img { min-height: 360px; }
  .about-hero-image { border-radius: 28px 28px 90px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}



/* =========================================================
   SERVICE HIGHLIGHTS
========================================================= */

.service-highlights-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(201, 154, 55, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(40, 91, 59, 0.1),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #fffdf8 0%,
      #f8f4e9 50%,
      #ffffff 100%
    );
}

.service-highlights-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(
      rgba(35, 74, 48, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(35, 74, 48, 0.04) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
}

.service-highlights-section > .container {
  position: relative;
  z-index: 1;
}

.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.service-highlight-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(35, 74, 48, 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 22px 65px rgba(35, 74, 48, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-highlight-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 154, 55, 0.42);
  box-shadow: 0 32px 85px rgba(35, 74, 48, 0.16);
}

.service-highlight-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e9e4d7;
}

.service-highlight-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 38%,
    rgba(20, 46, 29, 0.58) 100%
  );
}

.service-highlight-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.service-highlight-card:hover .service-highlight-image img {
  transform: scale(1.055);
}

.service-highlight-number {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 30px rgba(17, 38, 24, 0.18);
  backdrop-filter: blur(10px);
}

.service-highlight-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.service-highlight-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  color: var(--forest-900);
  background: rgba(201, 154, 55, 0.13);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-highlight-label i {
  color: var(--gold-700);
}

.service-highlight-content h3 {
  margin-top: 1.15rem;
  color: var(--forest-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.05;
}

.service-highlight-content p {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.service-highlight-content .text-link {
  margin-top: auto;
  padding-top: 1.25rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .service-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-highlight-card:last-child {
    grid-column: 1 / -1;
    max-width: 620px;
    width: 100%;
    justify-self: center;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .service-highlight-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.75rem;
  }

  .service-highlight-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .service-highlight-card {
    border-radius: 1.15rem;
  }

  .service-highlight-content {
    padding: 1.2rem;
  }

  .service-highlight-number {
    width: 42px;
    height: 42px;
  }
}


/* =========================================================
   FACILITIES PAGE IMAGES
========================================================= */

.facility-hero-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(35, 74, 48, 0.14);
  border-radius: 1.75rem;
  background: var(--forest-900);
  box-shadow: 0 30px 90px rgba(26, 62, 40, 0.18);
}

.facility-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(14, 40, 25, 0.88) 100%
  );
}

.facility-hero-media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s ease;
}

.facility-hero-media:hover > img {
  transform: scale(1.035);
}

.facility-hero-caption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 2;
  color: #fff;
}

.facility-hero-caption > span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  color: var(--gold-300, #f2ce78);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.facility-hero-caption h2 {
  margin-top: 0.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.facility-hero-caption p {
  max-width: 34rem;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.facility-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
}

.facility-showcase-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 74, 48, 0.12);
  border-radius: 1.4rem;
  box-shadow: 0 20px 60px rgba(35, 74, 48, 0.09);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.facility-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 154, 55, 0.4);
  box-shadow: 0 30px 80px rgba(35, 74, 48, 0.15);
}

.facility-showcase-image {
  position: relative;
  aspect-ratio: 14 / 9;
  overflow: hidden;
  background: #eae5da;
}

.facility-showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(18, 50, 31, 0.45)
  );
}

.facility-showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s ease;
}

.facility-showcase-card:hover .facility-showcase-image img {
  transform: scale(1.05);
}

.facility-image-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(14, 40, 25, 0.2);
  backdrop-filter: blur(10px);
}

.facility-showcase-content {
  padding: 1.4rem;
}

.facility-label {
  display: inline-block;
  color: var(--gold-700);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.facility-showcase-content h3 {
  margin-top: 0.55rem;
  color: var(--forest-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.05;
}

.facility-showcase-content p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.facility-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.facility-support-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(245, 240, 227, 0.9)
  );
  border: 1px solid rgba(35, 74, 48, 0.12);
  border-radius: 1.2rem;
  box-shadow: 0 15px 45px rgba(35, 74, 48, 0.07);
}

.facility-support-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--forest-900);
  background: rgba(201, 154, 55, 0.16);
  border-radius: 50%;
}

.facility-support-card h3 {
  color: var(--forest-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.facility-support-card p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .facility-showcase-grid,
  .facility-support-grid {
    grid-template-columns: 1fr;
  }

  .facility-hero-media,
  .facility-hero-media > img {
    min-height: 390px;
  }
}

@media (max-width: 600px) {
  .facility-hero-media {
    min-height: 420px;
    border-radius: 1.25rem;
  }

  .facility-hero-media > img {
    min-height: 420px;
  }

  .facility-hero-caption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .facility-showcase-grid {
    gap: 1rem;
    margin-top: 1.8rem;
  }

  .facility-showcase-card {
    border-radius: 1.1rem;
  }

  .facility-showcase-content {
    padding: 1.15rem;
  }

  .facility-support-card {
    padding: 1.1rem;
  }
}


/* =========================================================
   APPOINTMENT HERO IMAGE
========================================================= */

.appointment-hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--forest-900);
  border: 1px solid rgba(35, 74, 48, 0.14);
  border-radius: 1.75rem;
  box-shadow: 0 30px 90px rgba(35, 74, 48, 0.18);
}

.appointment-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(13, 39, 24, 0.88) 100%
  );
}

.appointment-hero-media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s ease;
}

.appointment-hero-media:hover > img {
  transform: scale(1.035);
}

.appointment-hero-overlay {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 2;
  color: #ffffff;
}

.appointment-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  color: #ffffff;
  background: rgba(37, 211, 102, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.appointment-hero-overlay h2 {
  max-width: 30rem;
  margin-top: 0.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.appointment-hero-overlay p {
  max-width: 34rem;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .appointment-hero-media,
  .appointment-hero-media > img {
    min-height: 470px;
  }
}

@media (max-width: 600px) {
  .appointment-hero-media {
    min-height: 430px;
    border-radius: 1.25rem;
  }

  .appointment-hero-media > img {
    min-height: 430px;
  }

  .appointment-hero-overlay {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .appointment-hero-overlay h2 {
    font-size: 2rem;
  }
}



/* =========================================================
   CONTACT KANDY LOCATION BANNER
========================================================= */

.contact-location-section {
  position: relative;
  padding: clamp(1.2rem, 3vw, 2.4rem) 0
    clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(
      180deg,
      var(--paper, #fffdf8) 0%,
      #ffffff 100%
    );
}

.contact-location-banner {
  position: relative;
  min-height: clamp(500px, 60vw, 680px);
  overflow: hidden;
  background: var(--forest-900);
  border: 1px solid rgba(35, 74, 48, 0.14);
  border-radius: 2rem;
  box-shadow: 0 34px 100px rgba(27, 64, 41, 0.2);
}

.contact-location-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(11, 35, 21, 0.88) 0%,
      rgba(11, 35, 21, 0.63) 43%,
      rgba(11, 35, 21, 0.08) 78%
    ),
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(10, 30, 18, 0.55) 100%
    );
}

.contact-location-banner > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s ease;
}

.contact-location-banner:hover > img {
  transform: scale(1.025);
}

.contact-location-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(500px, 60vw, 680px);
  max-width: 760px;
  padding: clamp(2rem, 7vw, 5.5rem);
  color: #ffffff;
}

.contact-location-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 35px rgba(7, 27, 15, 0.2);
  backdrop-filter: blur(12px);
}

.contact-location-label i {
  color: var(--gold-700);
}

.contact-location-overlay h2 {
  max-width: 700px;
  margin-top: 1.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.contact-location-overlay p {
  max-width: 620px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  line-height: 1.8;
}

.contact-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button-light-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
}

.button-light-outline:hover {
  color: var(--forest-900);
  background: #ffffff;
  border-color: #ffffff;
}

.contact-location-facts {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 3;
  display: grid;
  gap: 0.65rem;
  width: min(340px, calc(100% - 2.8rem));
}

.contact-location-facts > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 1rem;
  box-shadow: 0 16px 45px rgba(12, 38, 23, 0.2);
  backdrop-filter: blur(12px);
}

.contact-location-facts i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--forest-900);
  background: rgba(201, 154, 55, 0.18);
  border-radius: 50%;
}

.contact-location-facts span,
.contact-location-facts strong {
  display: block;
}

.contact-location-facts strong {
  color: var(--forest-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1;
}

.contact-location-facts span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .contact-location-banner::before {
    background:
      linear-gradient(
        180deg,
        rgba(11, 35, 21, 0.38) 0%,
        rgba(11, 35, 21, 0.84) 100%
      );
  }

  .contact-location-overlay {
    justify-content: flex-start;
    min-height: 680px;
    max-width: none;
    padding: 3rem 2rem 230px;
  }

  .contact-location-facts {
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-location-facts > div {
    grid-template-columns: 1fr;
    align-content: start;
  }
}

@media (max-width: 680px) {
  .contact-location-banner {
    min-height: 760px;
    border-radius: 1.3rem;
  }

  .contact-location-overlay {
    min-height: 760px;
    padding: 2rem 1.25rem 330px;
  }

  .contact-location-overlay h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .contact-location-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contact-location-actions .button {
    width: 100%;
    justify-content: center;
  }

  .contact-location-facts {
    grid-template-columns: 1fr;
  }

  .contact-location-facts > div {
    grid-template-columns: auto 1fr;
  }
}



/* =========================================================
   PREMIUM PATIENT JOURNEY SECTION
========================================================= */

.patient-journey-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(201, 154, 55, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(39, 92, 58, 0.13),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fffdf8 0%,
      #f4f0e4 50%,
      #ffffff 100%
    );
}

.patient-journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(
      rgba(35, 74, 48, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(35, 74, 48, 0.04) 1px,
      transparent 1px
    );
  background-size: 44px 44px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
}

.patient-journey-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(24, 64, 39, 0.98),
      rgba(34, 86, 52, 0.97)
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  box-shadow: 0 34px 100px rgba(25, 65, 40, 0.22);
}

.patient-journey-panel::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -180px;
  width: 430px;
  height: 430px;
  pointer-events: none;
  background: rgba(201, 154, 55, 0.16);
  border-radius: 50%;
  filter: blur(10px);
}

.patient-journey-panel::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.patient-journey-copy {
  position: relative;
  z-index: 2;
}

.patient-journey-copy .eyebrow {
  color: var(--gold-300, #f4cf76);
}

.patient-journey-copy h2 {
  margin-top: 1.1rem;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.patient-journey-copy h2 span {
  color: var(--gold-300, #f4cf76);
}

.patient-journey-copy > p {
  max-width: 580px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.journey-benefits {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.journey-benefits > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.91rem;
  font-weight: 700;
}

.journey-benefits i {
  color: var(--gold-300, #f4cf76);
}

.journey-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2rem;
}

.patient-journey-copy .text-link {
  color: #ffffff;
}

.patient-journey-copy .text-link i {
  color: var(--gold-300, #f4cf76);
}

/* Journey Flow */

.patient-journey-flow {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.8rem;
}

.journey-flow-line {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 28px;
  width: 2px;
  z-index: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(244, 207, 118, 0.8) 0,
      rgba(244, 207, 118, 0.8) 8px,
      transparent 8px,
      transparent 15px
    );
}

.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.15rem;
  box-shadow: 0 16px 45px rgba(10, 35, 20, 0.16);
  backdrop-filter: blur(12px);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.journey-step:hover {
  transform: translateX(7px);
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(10, 35, 20, 0.22);
}

.journey-step.is-featured {
  border-color: rgba(201, 154, 55, 0.65);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(249, 241, 217, 0.98)
    );
}

.journey-step-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--gold-700),
      #e5b84d
    );
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(26, 65, 40, 0.2);
}

.journey-step-marker span {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--forest-900);
  background: #ffffff;
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 900;
  box-shadow: 0 5px 15px rgba(26, 65, 40, 0.18);
}

.journey-step-marker i {
  font-size: 1.1rem;
}

.journey-step-content {
  min-width: 0;
}

.journey-step-label {
  display: block;
  color: var(--gold-700);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-step-content h3 {
  margin-top: 0.25rem;
  color: var(--forest-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.journey-step-content p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Tablet */

@media (max-width: 1050px) {
  .patient-journey-panel {
    grid-template-columns: 1fr;
  }

  .patient-journey-copy {
    max-width: 720px;
  }
}

/* Mobile */

@media (max-width: 680px) {
  .patient-journey-panel {
    gap: 2.2rem;
    padding: 1.35rem;
    border-radius: 1.35rem;
  }

  .patient-journey-copy h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

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

  .journey-actions .button {
    justify-content: center;
    width: 100%;
  }

  .journey-step {
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    padding: 0.85rem;
  }

  .journey-step:hover {
    transform: translateY(-3px);
  }

  .journey-step-marker {
    width: 48px;
    height: 48px;
  }

  .journey-flow-line {
    left: 24px;
  }

  .journey-step-content h3 {
    font-size: 1.25rem;
  }

  .journey-step-content p {
    font-size: 0.78rem;
  }
}