/* ============================================================
   Life Line Heal — styles.css
   Theme: Dark Botanical Editorial
   Palette: Deep Forest Green · Warm Amber · Off-White Cream
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ─── GOOGLE FONTS (loaded in HTML) ─── */

/* ─── DESIGN TOKENS ─── */
:root {
  --forest: #1c3f7c;
  --forest-m: #1454b0;
  --forest-l: #3a6fcf;
  --moss: #66b0ff;
  --sage: #a3d1ff;
  --leaf: #d4ebff;

  --amber: #6f91b3;
  --amber-l: #9cb7d4;
  --amber-d: #4a6b8c;
  --gold: #cce6ff;

  --cream: #f5ede0;
  --cream-d: #ede0cc;
  --parchment: #faf5ed;

  --ink: #1c1c1c;
  --ink-m: #3a3a3a;
  --mist: #8a9a9a;

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --sh-soft: 0 4px 20px rgba(11, 61, 145, .12);
  --sh-card: 0 8px 40px rgba(11, 61, 145, .18);
  --sh-lift: 0 20px 60px rgba(11, 61, 145, .28);

  --ease: all .3s cubic-bezier(.4, 0, .2, 1);

  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'DM Sans', sans-serif;
}
/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-display);
}

em {
  font-style: italic;
  color: var(--amber);
}

a {
  text-decoration: none;
  transition: var(--ease);
}

section {
  scroll-margin-top: 24px;
}

img {
  max-width: 100%;
}

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--forest);
}

::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 3px;
}

/* ═══════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════ */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: var(--forest);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  border-right: 1px solid rgba(180, 213, 180, .08);
}

/* decorative top accent line */
#sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--gold), var(--amber));
}

/* ── Brand ── */
.sb-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 28px 22px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-decoration: none;
}

.sb-logo-mark {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  box-shadow: 0 4px 16px rgba(212, 135, 63, .4);
}

.sb-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sb-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .01em;
}

.sb-bloom {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--amber);
}

/* ── Nav ── */
.sb-nav {
  flex: 1;
  padding: 20px 14px;
  overflow-y: auto;
}

.sb-nav::-webkit-scrollbar {
  width: 2px;
}

.sb-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .1);
}

.sb-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sb-nav li {
  margin-bottom: 2px;
}

.sb-section-label {
  font-family: var(--ff-body);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .2);
  padding: 16px 12px 6px;
  display: block;
}

.sb-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: rgba(255, 255, 255, .5);
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 400;
  text-decoration: none;
  transition: var(--ease);
  position: relative;
}

.sb-num {
  font-family: var(--ff-display);
  font-size: .72rem;
  color: rgba(255, 255, 255, .2);
  min-width: 20px;
  font-style: italic;
  transition: var(--ease);
}

.sb-link:hover {
  background: rgba(255, 255, 255, .05);
  color: var(--cream);
}

.sb-link:hover .sb-num {
  color: var(--amber);
}

.sb-link.active {
  background: rgba(212, 135, 63, .14);
  color: var(--cream);
  font-weight: 600;
}

.sb-link.active .sb-num {
  color: var(--amber);
}

.sb-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 3px;
  background: var(--amber);
  border-radius: 0 3px 3px 0;
}

/* ── Sidebar Bottom ── */
.sb-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.sb-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--r);
}

.sbsr-item {
  text-align: center;
}

.sbsr-val {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
}

.sbsr-lbl {
  display: block;
  font-size: .62rem;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sbsr-div {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, .1);
}

.sb-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: white;
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: .83rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--ease);
  margin-bottom: 12px;
  box-shadow: 0 4px 18px rgba(212, 135, 63, .4);
}

.sb-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(212, 135, 63, .55);
  color: white;
}

.sb-copy {
  font-size: .6rem;
  color: rgba(255, 255, 255, .2);
  text-align: center;
  margin: 0;
}

/* ── Mobile Toggle ── */
#sidebarToggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1200;
  width: 44px;
  height: 44px;
  background: var(--forest);
  border: 1px solid rgba(212, 135, 63, .3);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .35);
}

#sidebarToggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: var(--ease);
}

#sidebarToggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#sidebarToggle.open span:nth-child(2) {
  opacity: 0;
}

#sidebarToggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#sidebarBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 1090;
}

#sidebarBackdrop.show {
  display: block;
}

/* ── Layout ── */
#mainContent {
  margin-left: 260px;
}

@media (max-width: 991px) {
  #sidebar {
    transform: translateX(-260px);
  }

  #sidebar.open {
    transform: translateX(0);
  }

  #sidebarToggle {
    display: flex;
  }

  #mainContent {
    margin-left: 0;
  }
}

/* ═══════════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════════ */
.section-kicker {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212, 135, 63, .1);
  border: 1px solid rgba(212, 135, 63, .25);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.light-kicker {
  color: var(--gold);
  background: rgba(242, 199, 110, .12);
  border-color: rgba(242, 199, 110, .25);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
}

.light-title {
  color: var(--cream) !important;
}

.section-body {
  font-size: .95rem;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Buttons */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: white;
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: var(--ease);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 135, 63, .38);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 135, 63, .5);
  color: white;
}

.btn-ghost-custom {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  padding: 12px 26px;
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .9rem;
  text-decoration: none;
  transition: var(--ease);
}

.btn-ghost-custom:hover {
  background: var(--forest);
  color: var(--cream);
}

/* Forms */
.field-wrap {
  margin-bottom: 18px;
}

.field-wrap label {
  display: block;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 7px;
}

.f-input {
  width: 100%;
  background: var(--parchment);
  border: 1.5px solid rgba(26, 46, 26, .12);
  border-radius: var(--r-sm);
  padding: 12px 15px;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--ink);
  outline: none;
  transition: var(--ease);
}

.f-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 135, 63, .12);
}

.f-input::placeholder {
  color: #b8a89a;
}

.f-input.is-invalid {
  border-color: #c0392b;
}

.f-input.is-valid {
  border-color: var(--moss);
}

.f-err {
  display: none;
  font-size: .73rem;
  color: #c0392b;
  margin-top: 5px;
}

.f-input.is-invalid~.f-err {
  display: block;
}

textarea.f-input {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--forest-l), var(--forest));
  color: var(--cream);
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: .92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--ease);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--moss), var(--forest-l));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 46, 26, .3);
}

.check-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .83rem;
  color: var(--mist);
  cursor: pointer;
}

/* Scroll reveal */
.reveal-section {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Organic blob background */
.hero-canvas {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 110% 60%, rgba(74, 124, 89, .25) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at -10% 30%, rgba(212, 135, 63, .12) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 50% 110%, rgba(138, 173, 138, .08) 0%, transparent 50%);
}

/* Cross-hatch grid texture overlay */
.hero-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0, rgba(255, 255, 255, .025) 1px, transparent 0, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0, rgba(255, 255, 255, .025) 1px, transparent 0, transparent 60px);
}

/* Corner botanical decorative */
.hero-canvas::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(212, 135, 63, .1);
  box-shadow: inset 0 0 0 40px rgba(212, 135, 63, .04), inset 0 0 0 80px rgba(212, 135, 63, .03);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ── Hero Left ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(245, 237, 224, .5);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ey-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 135, 63, .5);
  }

  50% {
    opacity: .8;
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(212, 135, 63, 0);
  }
}

.hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-heading em {
  font-style: italic;
  color: var(--amber);
  display: block;
}

.hero-subtext {
  font-size: 1rem;
  color: rgba(245, 237, 224, .6);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hchip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(245, 237, 224, .7);
  font-size: .77rem;
  padding: 7px 14px;
  border-radius: 40px;
}

.hchip i {
  color: var(--amber);
  font-size: .8rem;
}

/* ── Hero Cards ── */
.hero-cards-area {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-main {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 32px;
  width: 240px;
  box-shadow: var(--sh-lift);
  position: relative;
  z-index: 2;
}

.hc-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.hc-dot {
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulseGlow 2s infinite;
}

.hc-bignum {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.hc-bignum sup {
  font-size: 1.4rem;
}

.hc-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px;
}

.hc-bar {
  height: 5px;
  background: rgba(255, 255, 255, .1);
  border-radius: 5px;
  overflow: hidden;
}

.hc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  border-radius: 5px;
}

/* Float cards */
.hc-float {
  position: absolute;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  min-width: 170px;
}

.hc-float i {
  font-size: 1.5rem;
  color: var(--amber);
  flex-shrink: 0;
}

.hc-float strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
}

.hc-float small {
  display: block;
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
}

.hcf-1 {
  top: 40px;
  left: -60px;
  animation: floatUp 6s ease-in-out infinite;
}

.hcf-2 {
  top: 40px;
  right: -40px;
  animation: floatUp 6s ease-in-out infinite 2s;
}

.hcf-3 {
  bottom: 50px;
  left: -30px;
  animation: floatUp 6s ease-in-out infinite 4s;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.about-section {
  padding: 100px 0;
  background: var(--parchment);
}

.about-visual {
  background: linear-gradient(155deg, var(--forest) 0%, var(--forest-l) 100%);
  border-radius: var(--r-xl);
  padding: 48px 36px;
  text-align: center;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lift);
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(212, 135, 63, .18) 0%, transparent 60%);
}

.av-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212, 135, 63, .18);
  border: 1px solid rgba(212, 135, 63, .3);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  position: relative;
}

.av-icon-ring {
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(212, 135, 63, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--amber);
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 0 0 16px rgba(212, 135, 63, .06);
}

.av-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  position: relative;
}

.av-sub {
  font-size: .82rem;
  color: rgba(245, 237, 224, .5);
  margin-bottom: 28px;
  position: relative;
}

.av-stats {
  display: flex;
  gap: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.avs-i {
  flex: 1;
  padding: 14px 0;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.avs-i:last-child {
  border-right: none;
}

.avs-n {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber);
}

.avs-l {
  display: block;
  font-size: .65rem;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.av-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.av-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(245, 237, 224, .7);
  font-size: .72rem;
  padding: 6px 12px;
  border-radius: 30px;
}

.av-tag i {
  color: var(--amber);
}

.about-text {
  padding: 20px 0 20px 40px;
}

.about-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.amg-card {
  background: white;
  border: 1px solid rgba(26, 46, 26, .08);
  border-radius: var(--r);
  padding: 20px 16px;
  transition: var(--ease);
}

.amg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card);
}

.amg-ico {
  width: 42px;
  height: 42px;
  background: var(--b);
  color: var(--c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.amg-card h6 {
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.amg-card p {
  font-size: .77rem;
  color: var(--mist);
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services-section {
  padding: 100px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber-d), var(--gold), var(--amber-d));
}

.svc-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.svc-sub-text {
  font-size: .9rem;
  color: rgba(245, 237, 224, .35);
  margin: 0;
}

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

.svc-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
  cursor: pointer;
}

.svc-card::before {
  content: attr(data-n);
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
}

.svc-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(212, 135, 63, .3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.svc-card.sc-featured {
  background: rgba(212, 135, 63, .1);
  border-color: rgba(212, 135, 63, .2);
  grid-row: span 1;
}

.svc-ico {
  width: 50px;
  height: 50px;
  background: rgba(212, 135, 63, .12);
  border: 1px solid rgba(212, 135, 63, .2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--amber);
  margin-bottom: 18px;
  transition: var(--ease);
}

.svc-card:hover .svc-ico {
  background: var(--amber);
  color: white;
}

.svc-card h5 {
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.svc-card p {
  font-size: .8rem;
  color: rgba(245, 237, 224, .45);
  line-height: 1.6;
  margin-bottom: 16px;
}

.svc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .35);
  font-size: 1rem;
  transition: var(--ease);
}

.svc-card:hover .svc-cta {
  background: var(--amber);
  color: white;
}

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.whyus-section {
  padding: 100px 0;
  background: var(--cream-d);
}

.why-bignum {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(26, 46, 26, .08);
  margin-top: 20px;
  letter-spacing: .02em;
}

.why-bignum sup {
  font-size: 4rem;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: white;
  border: 1px solid rgba(26, 46, 26, .07);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card);
}

.wc-1 {
  border-left: 4px solid var(--amber);
}

.wc-2 {
  border-left: 4px solid var(--moss);
}

.wc-3 {
  border-left: 4px solid var(--amber-d);
}

.wc-4 {
  border-left: 4px solid var(--sage);
}

.wc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.wc-ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--forest);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.wc-2 .wc-ico {
  background: #e8f5e9;
  color: #2e7d32;
}

.wc-4 .wc-ico {
  background: #e3f2fd;
  color: #1565c0;
}

.wc-n {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(0, 0, 0, .05);
  line-height: 1;
}

.why-card h5 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.why-card p {
  font-size: .82rem;
  color: var(--mist);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════
   SUBSCRIBE
═══════════════════════════════════════════ */
.subscribe-section {
  padding: 100px 0;
  background: var(--forest-m);
  position: relative;
  overflow: hidden;
}

.sub-blob {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 135, 63, .12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.sub-perks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.sub-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: rgba(245, 237, 224, .65);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.sub-perks li i {
  color: var(--amber);
  font-size: 1rem;
}

.sub-form-box {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  backdrop-filter: blur(12px);
}

.sub-lead {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 24px;
}

.sub-lead strong {
  color: var(--amber);
}

/* override f-input for dark bg */
.subscribe-section .f-input {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
  color: var(--cream);
}

.subscribe-section .f-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.subscribe-section .f-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 135, 63, .15);
}

.subscribe-section .field-wrap label {
  color: rgba(245, 237, 224, .5);
}

.subscribe-section .btn-submit {
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: white;
}

.subscribe-section .btn-submit:hover {
  box-shadow: 0 8px 24px rgba(212, 135, 63, .45);
}

.subscribe-section .check-label {
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
}

.unsub-link {
  display: block;
  text-align: center;
  font-size: .75rem;
  color: rgba(255, 255, 255, .25);
  margin-top: 12px;
}

.unsub-link:hover {
  color: rgba(255, 255, 255, .5);
}

/* Unsubscribe modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.show {
  display: flex;
}

.unsub-box {
  background: var(--parchment);
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 380px;
  width: 90%;
  text-align: center;
}

.unsub-box h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.unsub-box p {
  font-size: .88rem;
  color: var(--mist);
  margin-bottom: 20px;
}

.btn-cancel {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1.5px solid rgba(26, 46, 26, .2);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--mist);
  cursor: pointer;
  transition: var(--ease);
}

.btn-cancel:hover {
  border-color: var(--forest);
  color: var(--forest);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--parchment);
}

.faq-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream-d);
  border: 1px solid rgba(26, 46, 26, .1);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-top: 28px;
  cursor: pointer;
  transition: var(--ease);
  font-size: .84rem;
  color: var(--mist);
}

.faq-contact-card:hover {
  border-color: var(--amber);
  box-shadow: var(--sh-soft);
}

.faq-contact-card i {
  font-size: 1.4rem;
  color: var(--amber);
}

.faq-contact-card strong {
  color: var(--ink);
}

.faq-acc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fq-item {
  background: white !important;
  border: 1.5px solid rgba(26, 46, 26, .08) !important;
  border-radius: var(--r) !important;
  overflow: hidden;
  transition: var(--ease);
}

.fq-item:hover {
  border-color: rgba(212, 135, 63, .3) !important;
}

.fq-btn {
  background: white !important;
  color: var(--ink) !important;
  font-family: var(--ff-body) !important;
  font-weight: 600 !important;
  font-size: .92rem !important;
  padding: 18px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px;
  box-shadow: none !important;
  border: none !important;
}

.fq-ico {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  background: rgba(212, 135, 63, .1);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  transition: var(--ease);
}

.fq-btn:not(.collapsed) .fq-ico {
  background: var(--amber);
  color: white;
  transform: rotate(45deg);
}

.fq-btn:not(.collapsed) {
  color: var(--amber) !important;
}

.fq-body {
  font-size: .88rem !important;
  color: var(--mist) !important;
  line-height: 1.8 !important;
  padding: 4px 20px 20px 64px !important;
  background: white !important;
}

/* ═══════════════════════════════════════════
   POLICY SECTIONS
═══════════════════════════════════════════ */
.policy-section {
  padding: 100px 0;
  background: var(--cream);
}

.alt-policy {
  background: var(--parchment);
}

.policy-block {
  background: white;
  border: 1px solid rgba(26, 46, 26, .08);
  border-radius: var(--r-xl);
  padding: 48px;
  margin-top: 28px;
  box-shadow: var(--sh-soft);
  border-top: 4px solid var(--amber);
}

.policy-date {
  font-size: .8rem;
  color: var(--mist);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pol-item {
  padding-left: 18px;
  border-left: 3px solid var(--cream-d);
  transition: var(--ease);
}

.pol-item:hover {
  border-left-color: var(--amber);
}

.pol-num {
  font-family: var(--ff-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-style: italic;
}

.pol-item h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.pol-item p {
  font-size: .84rem;
  color: var(--mist);
  line-height: 1.7;
  margin: 0;
}

.pol-link {
  color: var(--amber);
  font-weight: 500;
}

.pol-link:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 124, 89, .15) 0%, transparent 65%);
}

.contact-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}

.contact-sub-text {
  font-size: .9rem;
  color: rgba(245, 237, 224, .45);
  max-width: 250px;
  text-align: right;
}

.contact-cols {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-info-panel {
  flex: 0 0 290px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
}

.cip-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.cip-row:last-child {
  margin-bottom: 0;
}

.cip-ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(212, 135, 63, .15);
  border: 1px solid rgba(212, 135, 63, .2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--amber);
}

.cip-row strong {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 4px;
}

.cip-row p {
  font-size: .83rem;
  color: rgba(245, 237, 224, .7);
  margin: 0;
  line-height: 1.6;
}

.emerg-tag {
  background: rgba(212, 135, 63, .2);
  border: 1px solid rgba(212, 135, 63, .3);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--gold);
}

.contact-form-panel {
  flex: 1;
  min-width: 280px;
  background: white;
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--sh-lift);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  padding: 60px 0 28px;
  border-top: 3px solid var(--amber);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.fg-logo {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: white;
  margin-bottom: 12px;
}

.fg-logo i {
  color: var(--amber);
  margin-right: 6px;
}

.fg-brand p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fg-socials {
  display: flex;
  gap: 10px;
}

.fg-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  font-size: .95rem;
  transition: var(--ease);
}

.fg-socials a:hover {
  background: var(--amber);
  color: white;
  border-color: var(--amber);
}

.fg-col h6 {
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
}

.fg-col a {
  display: block;
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  padding: 4px 0;
  transition: var(--ease);
}

.fg-col a:hover {
  color: var(--amber);
}

.fg-col p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fg-col i {
  color: var(--amber);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: .75rem;
  color: rgba(255, 255, 255, .25);
}

/* ═══════════════════════════════════════════
   SUCCESS OVERLAY
═══════════════════════════════════════════ */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 46, 26, .8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.success-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-card {
  background: var(--parchment);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .4);
  border-top: 5px solid var(--amber);
  transform: scale(.85) translateY(20px);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.success-overlay.active .success-card {
  transform: scale(1) translateY(0);
}

.sc-ico {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 28px rgba(212, 135, 63, .45);
  animation: popIn .5s cubic-bezier(.4, 0, .2, 1) .1s both;
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  65% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-card h4 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.success-card p {
  font-size: .88rem;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 991px) {
  .hero-cards-area {
    height: 340px;
    margin-top: 40px;
  }

  .hcf-1,
  .hcf-2,
  .hcf-3 {
    min-width: 140px;
  }

  .hcf-1 {
    left: -20px;
    top: 20px;
  }

  .hcf-2 {
    right: -10px;
    top: 20px;
  }

  .hcf-3 {
    bottom: 20px;
    left: 10px;
  }

  .about-text {
    padding: 0;
  }

  .about-visual {
    min-height: 380px;
  }

  .contact-cols {
    flex-direction: column;
  }

  .contact-info-panel {
    flex: none;
    width: 100%;
  }

  .why-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {

  .hero-section,
  .about-section,
  .services-section,
  .whyus-section,
  .subscribe-section,
  .faq-section,
  .policy-section,
  .contact-section {
    padding: 70px 0;
  }

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

  .about-mini-grid {
    grid-template-columns: 1fr;
  }

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

  .why-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .policy-block {
    padding: 28px 20px;
  }

  .sub-form-box {
    padding: 28px 20px;
  }

  .contact-form-panel {
    padding: 28px 20px;
  }

  .why-bignum {
    font-size: 5rem;
  }
}

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

  .hero-heading {
    font-size: 3rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-ghost-custom,
  .btn-primary-custom {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}