@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand — warmer, softer rose for inviting feel */
  --rose-500: #E61F7A;
  --rose-600: #CF1A6D;
  --rose-700: #A91458;
  --rose-100: #FFE6F2;
  --rose-50:  #FFF3F8;

  /* Warm gold — deeper, richer */
  --gold-500: #C9A86A;
  --gold-600: #A88847;
  --gold-400: #DDC089;
  --gold-100: #F8EFD9;

  /* Sage — new tertiary accent for calm, caring, nature */
  --sage-500: #9DB4A0;
  --sage-600: #7A9580;
  --sage-100: #E8F0E9;

  /* Peachy coral — adds warmth and softness */
  --peach-500: #E8B8A8;
  --peach-400: #F0CCBE;
  --peach-100: #FBEEE7;

  /* Trust slate — soft, dependable */
  --slate-500: #6B8999;
  --slate-100: #E4ECEF;

  /* Warm neutrals — slightly warmer than before */
  --cream-50:  #FEF9F5;
  --cream-100: #FAF2E8;
  --cream-200: #F1E5D3;
  --charcoal:  #261F1A;
  --warm-900:  #3A332A;
  --warm-800:  #4A3F35;
  --warm-700:  #66554A;
  --warm-600:  #82705F;
  --warm-500:  #998677;
  --warm-300:  #CCBFB5;
  --warm-100:  #EFE8E1;

  /* System */
  --surface-0: #FFFFFF;
  --line:      #E5DBCF;
  --line-soft: #EFE5D6;
  --ok:        #2A8557;
  --danger:    #B32033;

  /* Typography */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Inter", "Segoe UI", Arial, sans-serif;

  /* Layout */
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1220px;

  /* Shadows — softer, warmer */
  --shadow-soft: 0 28px 70px rgba(80, 50, 30, 0.10);
  --shadow-card: 0 6px 24px rgba(80, 50, 30, 0.07);
  --shadow-gold: 0 14px 36px rgba(201, 168, 106, 0.30);
  --shadow-rose: 0 14px 36px rgba(230, 31, 122, 0.32);
  --shadow-peach: 0 14px 36px rgba(232, 184, 168, 0.34);
  --shadow-sage: 0 14px 36px rgba(157, 180, 160, 0.28);

  /* Easing for warm, smooth animations */
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-soft: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--warm-700);
  line-height: 1.72;
  letter-spacing: 0.005em;
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(201, 168, 106, 0.08), transparent 42%),
    radial-gradient(circle at 92% 8%,  rgba(230, 31, 122, 0.08), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(157, 180, 160, 0.06), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

a    { color: inherit; text-decoration: none; }
img  { max-width: 100%; display: block; }
p    { margin: 0 0 1rem; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(230, 31, 122, 0.38);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  margin: 0 0 0.85rem;
  color: var(--warm-900);
  line-height: 1.15;
}

h1, h2 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  font-weight: 600;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  line-height: 1.05;
  letter-spacing: -0.018em;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 600;
  font-variation-settings: 'opsz' 72, 'SOFT' 60;
  letter-spacing: -0.012em;
  line-height: 1.12;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  font-variation-settings: 'opsz' 36;
  letter-spacing: -0.005em;
}

em {
  font-style: italic;
  color: var(--rose-600);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

/* Decorative highlight for emotional words in headlines */
.highlight {
  position: relative;
  display: inline-block;
  color: var(--rose-600);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.highlight::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.32em;
  background: linear-gradient(120deg, rgba(232, 184, 168, 0.55), rgba(230, 31, 122, 0.35));
  border-radius: 999px;
  z-index: -1;
}

/* ─── ACCESSIBILITY ──────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -64px;
  left: 16px;
  z-index: 1000;
  background: var(--warm-900);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }

/* ─── CONTAINER ──────────────────────────────────────────────── */

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* ─── TOPBAR ─────────────────────────────────────────────────── */

.topbar {
  background: linear-gradient(120deg, var(--warm-900), var(--warm-800));
  color: #F5EDE4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-feature-settings: 'liga', 'kern';
}

.topbar a {
  color: var(--peach-400) !important;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.88rem;
}

.topbar__inner a {
  text-decoration: underline;
  text-underline-offset: 0.22em;
  font-weight: 700;
  color: var(--peach-400);
}

/* ─── HEADER ─────────────────────────────────────────────────── */

.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(253, 251, 247, 0.93);
  border-bottom: 1px solid rgba(221, 214, 207, 0.9);
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.85rem 0;
  transition: border-radius 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, padding 0.35s ease;
}

.site-header.is-floating {
  background: rgba(253, 251, 247, 0.97);
  border-bottom-color: rgba(216, 206, 194, 0.95);
  padding-top: 0;
}

.site-header.is-floating .site-header__inner {
  border: 1px solid rgba(221, 214, 207, 0.9);
  border-radius: 999px;
  background: rgba(253, 251, 247, 0.97);
  box-shadow: 0 14px 40px rgba(60, 35, 20, 0.12);
  padding: 0.6rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 195px;
}

.brand img {
  width: 170px;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--warm-900);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
}

.site-nav__links::-webkit-scrollbar { display: none; }

.site-nav__links a {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--warm-700);
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  transition: background 0.18s, color 0.18s;
}

.site-nav__links a[aria-current="page"],
.site-nav__links a:hover {
  background: var(--cream-100);
  color: var(--warm-900);
}

.nav-actions {
  display: flex;
  gap: 0.42rem;
  flex-shrink: 0;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.82rem 1.3rem;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--rose-500), var(--peach-500));
  color: #fff;
  box-shadow: var(--shadow-rose);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--rose-600), var(--rose-500));
  box-shadow: 0 18px 44px rgba(230, 31, 122, 0.42);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 18px 44px rgba(201, 168, 106, 0.42); }

.btn--sage {
  background: linear-gradient(135deg, var(--sage-500), var(--sage-600));
  color: #fff;
  box-shadow: var(--shadow-sage);
}
.btn--sage:hover { box-shadow: 0 18px 44px rgba(157, 180, 160, 0.42); }

.btn--secondary {
  background: #fff;
  color: var(--warm-900);
  border-color: var(--line);
}

.btn--dark {
  background: var(--warm-900);
  color: #fff;
  box-shadow: 0 10px 28px rgba(28, 23, 20, 0.28);
}

.btn--light {
  background: #fff;
  color: var(--rose-600);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ─── HERO ───────────────────────────────────────────────────── */

.hero {
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 184, 168, 0.18) 0%, transparent 70%);
  top: -220px;
  right: -100px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 180, 160, 0.14) 0%, transparent 70%);
  bottom: -120px;
  left: -80px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  background: linear-gradient(135deg, var(--peach-100), var(--gold-100));
  color: var(--gold-600);
  border: 1px solid rgba(201, 168, 106, 0.28);
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(201, 168, 106, 0.12);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 0 3px rgba(230, 31, 122, 0.2);
}

.eyebrow--sage {
  background: linear-gradient(135deg, var(--sage-100), var(--cream-100));
  color: var(--sage-600);
  border-color: rgba(157, 180, 160, 0.32);
}

.eyebrow--sage::before { background: var(--sage-500); box-shadow: 0 0 0 3px rgba(157, 180, 160, 0.25); }

.hero p {
  font-size: 1.1rem;
  max-width: 58ch;
  color: var(--warm-600);
  line-height: 1.7;
}

.hero h1 {
  color: var(--warm-900);
  margin-bottom: 0.55rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
  margin-bottom: 0;
  font-size: 0.88rem;
  color: var(--warm-500);
  font-weight: 700;
}

.hero-trust .stars {
  color: #F0A500;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-metrics {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric {
  background: linear-gradient(140deg, #fff, var(--cream-50));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out-soft), box-shadow 0.3s ease, border-color 0.3s ease;
}

.metric:hover {
  transform: translateY(-3px);
  border-color: var(--peach-400);
  box-shadow: 0 18px 42px rgba(230, 31, 122, 0.16);
}

.metric strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--warm-900);
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 72, 'SOFT' 60;
  letter-spacing: -0.01em;
}

.metric > span {
  font-size: 0.82rem;
  color: var(--warm-600);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-card {
  position: relative;
  background: linear-gradient(155deg, #fff, var(--cream-50));
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 184, 168, 0.32), transparent 72%);
  top: -100px;
  right: -80px;
  pointer-events: none;
  z-index: 0;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 180, 160, 0.22), transparent 72%);
  bottom: -80px;
  left: -60px;
  pointer-events: none;
  z-index: 0;
}

.hero-card > * { position: relative; z-index: 1; }

.hero-media {
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
  border: 1px solid var(--cream-200);
}

.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.floating-note {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.4rem;
  background: linear-gradient(130deg, var(--cream-100), #fff);
  border-radius: var(--radius-md);
  padding: 0.88rem 1rem;
  border: 1px solid var(--cream-200);
  transition: background 0.2s;
}

.floating-note:hover { background: var(--cream-100); }

.floating-note strong {
  color: var(--warm-900);
  font-size: 0.95rem;
}

.floating-note span {
  font-size: 0.84rem;
  color: var(--warm-500);
}

/* ─── STATS BAR ──────────────────────────────────────────────── */

section.stats-bar {
  background: var(--warm-900);
  padding: 2.2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.stat-item > span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(253, 251, 247, 0.6);
  margin-top: 0.38rem;
}

/* ─── MAIN SECTIONS ──────────────────────────────────────────── */

main section { padding: 4.2rem 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 58ch;
  color: var(--warm-600);
}

/* ─── GRIDS ──────────────────────────────────────────────────── */

.grid-3, .grid-4, .grid-2 { display: grid; gap: 1.2rem; }

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ─── CARDS ──────────────────────────────────────────────────── */

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out-soft), box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(230, 31, 122, 0), rgba(232, 184, 168, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--peach-400);
  box-shadow: 0 28px 60px rgba(230, 31, 122, 0.14);
}

.card:hover::after {
  opacity: 1;
  background: linear-gradient(135deg, rgba(230, 31, 122, 0.04), rgba(232, 184, 168, 0.06));
}

.card > * { position: relative; z-index: 1; }

.card h3 {
  margin-bottom: 0.6rem;
  color: var(--warm-900);
}

.card--split {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.card-accent {
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose-500), var(--peach-500));
  margin-bottom: 1.2rem;
}

.card--sage .card-accent { background: linear-gradient(90deg, var(--sage-500), var(--sage-600)); }
.card--gold .card-accent { background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); }

/* ─── PILLS ──────────────────────────────────────────────────── */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.pill {
  border: 1px solid var(--cream-200);
  background: var(--cream-100);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  color: var(--warm-700);
  font-weight: 700;
}

/* ─── BAND (dark section) ────────────────────────────────────── */

.band {
  background: linear-gradient(135deg, var(--warm-900) 0%, var(--warm-800) 100%);
  color: #EDE5D8;
  border-top:    1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.band h2, .band h3 { color: #fff; }

.band .card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
  color: #EDE5D8;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.band .card,
.band .card:hover {
  background: #fff;
  border-color: #d8cec2;
  color: var(--warm-700);
}

.band .card h3 {
  color: var(--warm-900);
}

.band .card p {
  color: var(--warm-700);
}

.band .pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* ─── SPLIT ──────────────────────────────────────────────────── */

.split {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
}

/* ─── GALLERY ────────────────────────────────────────────────── */

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(28, 23, 20, 0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
}

/* ─── REVIEWS ────────────────────────────────────────────────── */

.reviews {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.reviews__status { font-weight: 600; font-size: 0.95rem; color: var(--warm-700); }
.reviews__status.is-error   { color: var(--danger); }
.reviews__status.is-success { color: var(--ok); }

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

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  background: var(--cream-50);
  transition: box-shadow 0.2s;
}

.review-card:hover { box-shadow: var(--shadow-card); }

.review-card h4 {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--warm-900);
}

.review-stars {
  color: #F0A500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

/* ─── CONTACT FORM ───────────────────────────────────────────── */

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.2rem;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.form-grid { display: grid; gap: 1rem; }

.form-row {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--warm-900);
  margin-bottom: 0.35rem;
}

input, select, textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font: inherit;
  font-size: 0.92rem;
  color: var(--warm-900);
  background: var(--cream-50);
  padding: 0.78rem 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}

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

input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(230, 31, 122, 0.25);
  outline-offset: 1px;
  border-color: var(--rose-500);
  background: #fff;
}

.consent {
  font-size: 0.78rem;
  background: var(--cream-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 0.75rem;
}

.consent label {
  display: grid;
  gap: 0.62rem;
  grid-template-columns: auto 1fr;
  margin: 0;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--warm-600);
}

.consent input[type="checkbox"] {
  width: auto;
  margin-top: 0.15rem;
  accent-color: var(--rose-500);
}

.form-status {
  border-radius: var(--radius-sm);
  padding: 0.68rem 0.78rem;
  margin-bottom: 0.7rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status--success {
  background: rgba(27, 122, 69, 0.1);
  color: var(--ok);
  border: 1px solid rgba(27, 122, 69, 0.25);
}

.form-status--error {
  background: rgba(179, 32, 51, 0.08);
  color: var(--danger);
  border: 1px solid rgba(179, 32, 51, 0.24);
}

.small-note { font-size: 0.8rem; color: var(--warm-500); }

.info-stack { display: grid; gap: 0.85rem; }

.info-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */

section.process-section {
  background: var(--cream-100);
  border-top:    1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
  padding: 4.5rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-400), var(--rose-500), var(--gold-400));
  opacity: 0.32;
}

.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.process-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--rose-600);
  line-height: 1;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-100), var(--rose-50));
  border: 2px solid rgba(230, 31, 122, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 22px rgba(230, 31, 122, 0.18), inset 0 0 0 4px rgba(255, 255, 255, 0.6);
  font-variation-settings: 'opsz' 72, 'SOFT' 60;
  transition: transform 0.4s var(--ease-out-soft);
}

.process-step:hover .process-num {
  transform: scale(1.06) rotate(-3deg);
}

.process-step h3 {
  font-size: 1.15rem;
  color: var(--warm-900);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--warm-600);
  margin: 0;
  line-height: 1.65;
}

.process-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─── TESTIMONIAL ────────────────────────────────────────────── */

section.testimonial-feature {
  background:
    radial-gradient(circle at 12% 20%, rgba(232, 184, 168, 0.45), transparent 55%),
    radial-gradient(circle at 88% 88%, rgba(201, 168, 106, 0.35), transparent 55%),
    linear-gradient(135deg, var(--rose-500) 0%, var(--rose-700) 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

section.testimonial-feature::before {
  content: "\201C";
  position: absolute;
  top: -0.15em;
  left: 1%;
  font-family: var(--font-display);
  font-size: 22rem;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

.testimonial-quote .review-stars {
  color: #FFD166;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.testimonial-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-style: italic;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

.testimonial-quote cite {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.68);
}

/* ─── CTA BAND ───────────────────────────────────────────────── */

section.cta-band {
  background: linear-gradient(135deg, var(--warm-900) 0%, var(--warm-800) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

section.cta-band::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 184, 168, 0.20) 0%, transparent 70%);
  top: -240px;
  right: -120px;
  pointer-events: none;
}

section.cta-band::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 31, 122, 0.16) 0%, transparent 70%);
  bottom: -160px;
  left: -80px;
  pointer-events: none;
}

section.cta-band h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

section.cta-band .highlight {
  color: var(--peach-400);
}

section.cta-band .highlight::after {
  background: linear-gradient(120deg, rgba(232, 184, 168, 0.28), rgba(230, 31, 122, 0.18));
}

section.cta-band p {
  color: rgba(253, 247, 240, 0.82);
  max-width: 52ch;
  margin: 0;
}

section.cta-band .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--peach-400);
  border-color: rgba(232, 184, 168, 0.32);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-band__inner h2 {
  color: #fff;
  margin-bottom: 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.cta-band__inner p {
  color: rgba(237, 229, 216, 0.82);
  margin: 0;
  font-size: 1.05rem;
}

.cta-band__actions {
  display: flex;
  gap: 0.85rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─── AFL ────────────────────────────────────────────────────── */

.afl-qualify-banner {
  background: linear-gradient(135deg, var(--gold-100), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(184, 136, 42, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.afl-qualify-banner__copy strong {
  display: block;
  font-size: 1.45rem;
  color: var(--warm-900);
  line-height: 1.15;
  font-family: var(--font-display);
}

.afl-qualify-banner .small-note { margin-top: 0.22rem; }

.afl-eligibility-panel {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  background: #fff;
}

.afl-eligibility-panel h4 {
  margin-bottom: 0.6rem;
  color: var(--warm-900);
}

.afl-eligibility-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.afl-eligibility-list li {
  margin-bottom: 0.45rem;
  color: var(--warm-700);
}

/* ─── SERVICE LIST ───────────────────────────────────────────── */

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.service-list li {
  padding: 0.75rem 0.85rem 0.75rem 1rem;
  background: linear-gradient(95deg, var(--cream-100), var(--cream-50));
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--rose-500);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--warm-800);
  transition: transform 0.25s var(--ease-out-soft), border-color 0.25s ease, background 0.25s ease;
}

.service-list li:hover {
  transform: translateX(4px);
  border-left-color: var(--peach-500);
  background: linear-gradient(95deg, var(--peach-100), var(--cream-50));
}

/* ─── FOOTER ─────────────────────────────────────────────────── */

.site-footer {
  margin-top: 0;
  background: var(--charcoal);
  color: #C4B8B2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  padding: 2.5rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.9fr);
  gap: 1rem;
}

.site-footer img.logo {
  width: 190px;
  border-radius: 8px;
  margin-bottom: 0.85rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer ul li { font-size: 0.9rem; line-height: 1.6; }

.site-footer a:hover { color: var(--peach-500); }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--peach-500);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  font-variation-settings: 'opsz' 72, 'SOFT' 100;
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem 0 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(196, 184, 178, 0.55);
}

.footer-base a:hover { color: var(--gold-400); }

/* ─── REVEAL ANIMATION (rich, multi-direction) ───────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out-soft), transform 0.85s var(--ease-out-soft);
  will-change: opacity, transform;
}

[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Staggered entrance for grids of cards */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out-soft), transform 0.75s var(--ease-out-soft);
}

[data-stagger].is-visible > *           { opacity: 1; transform: translateY(0); }
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.15s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.25s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.35s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.45s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.55s; }
[data-stagger].is-visible > *:nth-child(7) { transition-delay: 0.65s; }
[data-stagger].is-visible > *:nth-child(8) { transition-delay: 0.75s; }

/* Counter animation target */
[data-counter] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-stagger] > *,
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ─── KEYFRAMES ──────────────────────────────────────────────── */

@keyframes subtleRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@keyframes warmPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 31, 122, 0.35); }
  50%      { box-shadow: 0 0 0 14px rgba(230, 31, 122, 0); }
}

@keyframes heroShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -20% 0; }
}

@keyframes parallaxFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -10px, 0); }
}

.hero .eyebrow { animation: subtleRise 0.7s var(--ease-out-soft) both; }
.hero h1       { animation: subtleRise 0.95s var(--ease-out-soft) 0.1s both; }
.hero p        { animation: subtleRise 1.1s var(--ease-out-soft) 0.2s both; }
.hero-actions  { animation: subtleRise 1.1s var(--ease-out-soft) 0.35s both; }
.hero-metrics  { animation: subtleRise 1.1s var(--ease-out-soft) 0.5s both; }

.hero-card { animation: subtleRise 1.2s var(--ease-out-soft) 0.25s both; }
.hero-card::before { animation: parallaxFloat 8s ease-in-out infinite; }

/* Subtle pulse on primary CTAs to draw eye gently */
.btn--primary.is-pulse { animation: warmPulse 2.4s ease-out infinite; }

.hero-actions .btn { position: relative; overflow: hidden; }

.hero-actions .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease-out-soft);
  pointer-events: none;
}

.hero-actions .btn:hover::before { transform: translateX(130%); }

/* Hero parallax-ready image wrapper */
.hero-media img { transition: transform 1.2s var(--ease-out-soft); }
.hero-card:hover .hero-media img { transform: scale(1.03); }

/* ─── PROMISE SECTION ────────────────────────────────────────── */

section.promise-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(232, 184, 168, 0.18), transparent 50%),
    radial-gradient(circle at 5% 90%,  rgba(157, 180, 160, 0.18), transparent 55%),
    var(--cream-50);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.promise-grid .lead {
  font-size: 1.15rem;
  color: var(--warm-700);
  max-width: 56ch;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.promise-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  gap: 0.8rem;
}

.promise-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.85rem;
  align-items: center;
  font-size: 0.98rem;
  color: var(--warm-800);
  font-weight: 500;
  line-height: 1.55;
}

.promise-check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-500), var(--sage-600));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(157, 180, 160, 0.3);
}

.promise-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.promise-visual img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 6px solid #fff;
  box-shadow: var(--shadow-soft);
}

.promise-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: linear-gradient(135deg, #fff, var(--cream-50));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  box-shadow: 0 18px 44px rgba(80, 50, 30, 0.18);
  display: grid;
  gap: 0.2rem;
  min-width: 180px;
  animation: softFloat 5s ease-in-out infinite;
}

.promise-badge__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--rose-600);
  font-variation-settings: 'opsz' 72, 'SOFT' 80;
  line-height: 1;
  letter-spacing: -0.015em;
}

.promise-badge__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm-600);
}

/* ─── FLOATING NOTE (hero card overlay) ──────────────────────── */

.hero-card .floating-note {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.3rem;
  background: linear-gradient(135deg, var(--peach-100), #fff);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--peach-400);
  box-shadow: 0 8px 22px rgba(230, 31, 122, 0.12);
}

.hero-card .floating-note strong {
  color: var(--rose-700);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-variation-settings: 'opsz' 72, 'SOFT' 100;
}

.hero-card .floating-note span {
  font-size: 0.82rem;
  color: var(--warm-600);
  font-weight: 600;
}

/* ─── ENHANCED STATS BAR ─────────────────────────────────────── */

.stat-item {
  transition: transform 0.3s var(--ease-out-soft);
}

.stat-item:hover { transform: translateY(-3px); }

.stat-item strong {
  background: linear-gradient(135deg, var(--gold-400), var(--peach-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 1220px) {
  .nav-actions .btn--secondary { display: none; }
}

@media (max-width: 1100px) {
  .hero-grid,
  .contact-shell,
  .split,
  .promise-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .promise-visual img { height: 380px; }
  .promise-badge { left: 16px; bottom: -22px; }

  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-steps::before { display: none; }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

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

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

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    padding: 1rem;
    background: rgba(253, 251, 247, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 120;
    flex: none;
  }

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

  .site-nav__links,
  .nav-actions { flex-direction: column; align-items: stretch; }

  .site-nav__links a { padding: 0.75rem 0.9rem; }

  .hero { padding-top: 3.5rem; }

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

  .grid-2, .grid-3, .grid-4, .form-row { grid-template-columns: 1fr; }

  .afl-qualify-banner { flex-direction: column; align-items: flex-start; }

  .brand img { width: 158px; }

  .footer-base { flex-direction: column; }

  .cta-band__actions { justify-content: center; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  body { font-size: 0.98rem; }

  main section { padding: 3rem 0; }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-header__inner {
    gap: 0.5rem;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    padding: 0.62rem 0.78rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero p,
  .cta-band__inner p {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-band__actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .btn,
  .cta-band__actions .btn,
  .nav-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .hero-media img {
    height: 340px;
  }

  .section-head {
    display: grid;
    gap: 0.75rem;
  }

  .card,
  .contact-form,
  .info-box {
    padding: 1.2rem;
  }

  .promise-badge {
    position: static;
    margin-top: 0.75rem;
    min-width: 0;
  }

  .promise-visual img {
    height: 320px;
  }

  .footer-base {
    align-items: flex-start;
  }
}

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

  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .hero-media,
  .promise-visual img {
    box-shadow: none;
  }

  .stat-item {
    border-left: 0;
    padding-left: 0;
  }
}

/* Grounded identity pass: remove common AI-site tropes */
body {
  background: #fbfaf6;
  color: #5f554b;
}

body::before,
.hero::before,
.hero::after,
.hero-card::before,
.hero-card::after,
section.cta-band::before,
section.cta-band::after,
section.promise-section {
  background-image: none;
}

.site-header.is-floating .site-header__inner {
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(48, 42, 36, 0.08);
}

.btn,
.pill,
.skip-link,
.nav-toggle,
.site-nav__links a,
.afl-qualify-banner,
.consent,
.form-status,
.info-box,
.service-list li {
  border-radius: 2px;
}

.btn {
  box-shadow: none;
  letter-spacing: 0;
  transform: none;
}

.btn:hover,
.metric:hover,
.card:hover,
.process-step:hover,
.hero-card:hover .hero-media img {
  transform: none;
}

.btn--primary,
.btn--gold,
.btn--sage,
.topbar,
.band,
section.cta-band {
  background: #302a24;
}

.btn--primary:hover,
.btn--gold:hover,
.btn--sage:hover {
  background: #1f1a16;
  box-shadow: none;
}

.btn--secondary {
  background: transparent;
  border-color: #8d7f6f;
}

.hero {
  padding: 5rem 0 4.5rem;
  background:
    linear-gradient(90deg, rgba(48, 42, 36, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #f7f3eb 0%, #fbfaf6 100%);
  background-size: 56px 56px, auto;
}

.eyebrow {
  display: block;
  width: fit-content;
  max-width: 100%;
  border: 0;
  border-left: 4px solid var(--rose-500);
  border-radius: 0;
  padding: 0.08rem 0 0.08rem 0.8rem;
  background: transparent;
  box-shadow: none;
  color: #6a4130;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: none;
}

.eyebrow::before,
.eyebrow--sage::before {
  display: none;
}

.eyebrow--sage {
  background: transparent;
  color: #4f654f;
  border-color: #4f654f;
}

.highlight {
  color: inherit;
  font-style: normal;
}

.highlight::after,
.hero-actions .btn::before {
  display: none;
}

.hero-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.hero-media {
  border-radius: 0;
  border: 8px solid #fff;
  box-shadow: 14px 14px 0 #ded4c8;
}

.hero-media img {
  border-radius: 0;
  filter: saturate(0.92) contrast(1.03);
}

.metric,
.card,
.process-step,
.contact-form,
.info-box {
  background: #fff;
  border: 1px solid #d8cec2;
  border-radius: 0;
  box-shadow: none;
}

.metric {
  border-top: 4px solid #302a24;
}

.card {
  padding: 1.55rem 1.45rem;
}

.card::after {
  display: none;
}

.card:hover {
  border-color: #8d7f6f;
  box-shadow: none;
}

.gallery-card {
  border-radius: 0;
  box-shadow: none;
}

.gallery-card:hover,
.gallery-card:hover img {
  transform: none;
  box-shadow: none;
}

.gallery-caption {
  border-radius: 0;
  background: rgba(48, 42, 36, 0.86);
}

.card-accent {
  width: 100%;
  height: 1px;
  border-radius: 0;
  background: #d8cec2;
  margin-bottom: 1rem;
}

.grid-3,
.grid-4,
.grid-2 {
  gap: 1px;
  background: #d8cec2;
  border: 1px solid #d8cec2;
}

.grid-3 > *,
.grid-4 > *,
.grid-2 > * {
  border: 0;
}

.section-head {
  border-bottom: 1px solid #d8cec2;
  padding-bottom: 1.15rem;
  align-items: flex-start;
}

.stats-grid {
  text-align: left;
}

.stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 1rem;
}

.stat-item strong {
  color: #f1e5d3;
}

.process-steps {
  gap: 1px;
  background: #d8cec2;
  border: 1px solid #d8cec2;
}

.process-steps::before {
  display: none;
}

.process-step {
  text-align: left;
  border: 0;
}

.process-num {
  width: auto;
  height: auto;
  display: block;
  margin: 0 0 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--rose-500);
}

section.testimonial-feature {
  background: var(--rose-600);
}

.btn--primary {
  background: var(--rose-500);
  color: #fff;
}

.btn--primary:hover {
  background: var(--rose-600);
}

.promise-visual img {
  border-radius: 0;
  border: 8px solid #fff;
  box-shadow: 14px 14px 0 #ded4c8;
}

.promise-badge,
.hero-card .floating-note,
.floating-note {
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  border: 1px solid #d8cec2;
  animation: none;
}

.btn--primary.is-pulse {
  animation: none;
}

@media (max-width: 1080px) {
  .grid-3,
  .grid-4,
  .grid-2,
  .process-steps {
    gap: 1px;
  }

  .hero-media,
  .promise-visual img {
    box-shadow: 8px 8px 0 #ded4c8;
  }
}

/* Brand pink boost pass */
.topbar,
.band,
section.cta-band {
  background: linear-gradient(135deg, #3b2a33 0%, #5a2f46 60%, #7a2f59 100%);
}

.site-nav__links a[aria-current="page"],
.site-nav__links a:hover {
  background: var(--rose-100);
  color: var(--rose-700);
}

.btn--secondary {
  border-color: rgba(230, 31, 122, 0.45);
  color: var(--rose-700);
}

.btn--secondary:hover {
  background: var(--rose-50);
}

.metric {
  border-top: 4px solid var(--rose-500);
}

.card-accent {
  background: linear-gradient(90deg, var(--rose-500), #f3a3c7);
}

.section-head {
  border-bottom-color: rgba(230, 31, 122, 0.25);
}

.section-head p {
  color: #7f5d67;
}

.stat-item strong {
  background: linear-gradient(135deg, var(--rose-100), #ffd3e8, var(--rose-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.process-num {
  color: var(--rose-600);
}

.footer-tagline,
.footer-base a:hover {
  color: var(--rose-500);
}

