:root {
  --bg: #f8f2e8;
  --bg-soft: #fbf7f1;
  --card: rgba(255,255,255,0.78);
  --card-strong: #fffdf9;
  --line: rgba(93, 68, 38, 0.12);
  --text: #2d241b;
  --muted: #6d5a45;
  --accent: #7b5b35;
  --accent-dark: #5e4324;
  --accent-soft: #e7d6bc;
  --shadow: 0 24px 60px rgba(58, 42, 24, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  /* background:
    radial-gradient(circle at top left, rgba(255,255,255,0.8), transparent 34%),
    linear-gradient(180deg, #f5ecdf 0%, #f8f2e8 42%, #fbf8f3 100%); */
    background: linear-gradient(180deg, #e3d0af 0%, #ead8ba 100%);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  /* background: rgba(248, 242, 232, 0.8); */
  background: rgba(227, 208, 175, 0.94);
  border-bottom: 1px solid rgba(93, 68, 38, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #8d6a3b, #b8915f);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  box-shadow: 0 12px 30px rgba(123, 91, 53, 0.22);
}

.brand-text {
  font-size: 1rem;
  color: var(--accent-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #9c7643);
  color: #fff;
  box-shadow: 0 16px 36px rgba(123, 91, 53, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.6);
  border-color: rgba(123, 91, 53, 0.18);
  color: var(--accent-dark);
}

.hero {
  padding: 0px;
}
.nav a {
  color:#4f3b2c;
}
section#services-page {
  padding: 0;
}
section.section {
  padding: 110px 0 0;
}
.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  padding: 64px;
  background:
    linear-gradient(135deg, rgba(65, 49, 30, 0.82), rgba(105, 80, 46, 0.64)),
    url('../../../images/banr02.jpg') center/cover;
  box-shadow: var(--shadow);
  min-height: 720px;
  display: grid;
  align-items: end;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(10px);
}

.hero-shell::before {
  width: 340px;
  height: 340px;
  top: -80px;
  right: -40px;
}

.hero-shell::after {
  width: 260px;
  height: 260px;
  bottom: -100px;
  left: -40px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.06;
}

.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  color: #fff;
  max-width: 760px;
  margin-bottom: 20px;
}

.hero-copy p {
  max-width: 680px;
  color: rgba(255,255,255,0.86);
  font-size: 1.06rem;
  margin: 0 0 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.glass-panel {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 16px 40px rgba(27, 19, 11, 0.18);
}

.booking-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.booking-card p {
  color: rgba(255,255,255,0.82);
  margin: 0 0 18px;
  font-size: 0.96rem;
}

.form-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.field {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.96rem;
}

.field::placeholder { color: rgba(255,255,255,0.66); }

.note-row {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.note-row .mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 18px;
  color: #fff;
}

.stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 4px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--primary);
  flex-shrink: 0;
}
section {
  padding: 42px 0;
}

.section-head {
  max-width: 1000px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 8px;
  color: var(--accent-dark);
}

.section-head p {
  max-width: 1000px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.68), rgba(240, 225, 198, 0.96));
    border: 1px solid rgba(95, 72, 53, 0.10);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 18px 44px rgba(63, 47, 36, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  padding: 26px;
}

.image-card {
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(39,28,16,0.06), rgba(39,28,16,0.28)),
    url('../../../images/treatment-showcase/image-12-370x370.jpg') center/cover;
  position: relative;
}

.image-card .floating-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255,255,255,0.88);
  color: var(--accent-dark);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 16px 32px rgba(53, 38, 22, 0.16);
  max-width: 280px;
  font-size: 0.95rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: start;
}

.benefit {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
}

.benefit .icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0e0c8, #fff5e6);
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.benefit h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--accent-dark);
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.programs-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.programs-main,
.programs-side {
  padding: 28px;
}

.programs-main {
  display: grid;
  gap: 24px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.program-card {
  position: relative;
  min-height: 250px;
  border-radius: 24px;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,18,10,0.08), rgba(27,18,10,0.82));
  z-index: -1;
}

.program-card span {
  display: inline-flex;
  align-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.82rem;
  margin-bottom: auto;
}

.program-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.program-card p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 0.94rem;
}

.glance-card {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(123, 91, 53, 0.92), rgba(86, 63, 37, 0.98)),
    url('https://images.unsplash.com/photo-1545389336-cf090694435e?auto=format&fit=crop&w=1200&q=80') center/cover;
  color: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 100%;
}

.glance-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
}

.checklist div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
}

.metrics {
  display: grid;
  gap: 14px;
}

.metric {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}

.metric strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 2px;
}

.cta-band {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, #fff9f0, #f2e1c9);
}

.cta-band h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
}

@media (max-width: 1100px) {
  .hero-shell { padding: 42px 28px; min-height: auto; }
  .hero-grid,
  .split,
  .programs-wrap,
  .cta-band { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav { flex-wrap: wrap; padding: 14px 0; }
  .nav-links { display: none; }
  .display { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-stats,
  .benefits-grid,
  .program-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; }
  .cta-band { padding: 26px; }
  .footer-card { flex-direction: column; align-items: start; }
}