@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,300&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --c-navy: #1B3C53;
  --c-mid: #234C6A;
  --c-steel: #456882;
  --c-blush: #D2C1B6;
  --c-white: #F9F6F4;
  --c-dark: #0f2330;
  --c-accent: #c4a992;
  --c-text: #2a3d4a;
  --c-muted: #7a9aab;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --fs-xs: 0.75rem;
  --fs-sm: 0.85rem;
  --fs-base: 1rem;
  --fs-md: 1.1rem;
  --fs-lg: 1.35rem;
  --fs-xl: 1.7rem;
  --fs-2xl: 2.2rem;
  --fs-3xl: 3rem;
  --fs-4xl: 4rem;

  --space-xs: 0.4rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 6rem;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(27,60,83,0.10);
  --shadow-md: 0 6px 28px rgba(27,60,83,0.15);
  --shadow-lg: 0 16px 60px rgba(27,60,83,0.18);

  --trans-fast: 0.18s ease;
  --trans-mid: 0.32s cubic-bezier(0.4,0,0.2,1);
  --trans-slow: 0.55s cubic-bezier(0.4,0,0.2,1);

  --container: 1180px;
  --header-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.65;
  overflow-x: hidden;
  min-width: 0;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }

.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
  max-width: 100%;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ===================== HEADER ===================== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-md) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.2rem, 5vw, 1.7rem);
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1;
  flex-shrink: 0;
}

.logo span {
  color: var(--c-blush);
}

.main-nav { display: flex; align-items: center; gap: var(--space-lg); }

.main-nav a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(249,246,244,0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--trans-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--c-blush);
  transition: width var(--trans-mid);
}

.main-nav a:hover { color: var(--c-blush); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-navy) !important;
  background: var(--c-blush);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  transition: background var(--trans-fast), transform var(--trans-fast) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--c-accent) !important; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  z-index: 200;
}

.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--trans-mid), opacity var(--trans-fast);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-navy) 45%, var(--c-mid) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
}

.hero-eyebrow {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-blush);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  word-break: break-word;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--c-blush);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 6vw, 4.8rem);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  word-break: break-word;
}

.hero h1 em {
  font-style: italic;
  color: var(--c-blush);
  font-weight: var(--fw-light);
}

.hero-sub {
  font-size: var(--fs-base);
  color: rgba(249,246,244,0.75);
  max-width: 480px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--c-blush);
  color: var(--c-navy);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  max-width: 100%;
}

.btn-primary:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  border: 1.5px solid rgba(210,193,182,0.5);
  color: var(--c-blush);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: border-color var(--trans-fast), color var(--trans-fast), background var(--trans-fast);
  white-space: nowrap;
  max-width: 100%;
}

.btn-outline:hover {
  border-color: var(--c-blush);
  background: rgba(210,193,182,0.08);
  color: var(--c-white);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(249,246,244,0.5);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
  z-index: 2;
}

.hero-scroll i { font-size: 1.1rem; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: clamp(200px, 50vw, 500px);
  height: clamp(200px, 50vw, 500px);
  background: rgba(69,104,130,0.35);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: clamp(150px, 30vw, 300px);
  height: clamp(150px, 30vw, 300px);
  background: rgba(210,193,182,0.12);
  bottom: 80px; right: 30%;
  animation: orbFloat 11s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.06); }
}

/* ===================== SECTIONS ===================== */
.section { padding: var(--space-2xl) 0; }
.section-alt { background: linear-gradient(160deg, #eae4df 0%, #f5f0ec 100%); }
.section-dark { background: var(--c-navy); color: var(--c-white); }

.section-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-steel);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
}

.section-dark .section-label { color: var(--c-blush); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  word-break: break-word;
}

.section-dark .section-title { color: var(--c-white); }
.section-dark .section-title em { color: var(--c-blush); }

.section-title em {
  font-style: italic;
  font-weight: var(--fw-light);
  color: var(--c-steel);
}

.section-desc {
  font-size: var(--fs-base);
  color: var(--c-muted);
  max-width: 540px;
  width: 100%;
  line-height: 1.75;
}

.section-dark .section-desc { color: rgba(210,193,182,0.7); }

/* ===================== INTRO / PILLARS ===================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  min-width: 0;
}

.intro-visual {
  position: relative;
}

.intro-img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.intro-badge {
  position: absolute;
  background: var(--c-blush);
  color: var(--c-navy);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  box-shadow: var(--shadow-md);
  bottom: var(--space-md);
  right: var(--space-sm);
}

.intro-badge span {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  min-width: 0;
}

.pillar-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(210,193,182,0.3);
  transition: transform var(--trans-mid), box-shadow var(--trans-mid);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--c-navy), var(--c-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blush);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.pillar-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--c-navy);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.pillar-card p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.7;
}

/* ===================== STATS ===================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
  min-width: 0;
}

.stat-item { padding: var(--space-lg) var(--space-md); }

.stat-num {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--c-blush);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--fs-sm);
  color: rgba(210,193,182,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================== PHOTO FEATURE ===================== */
.photo-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  min-height: 520px;
  max-width: 100%;
  overflow: hidden;
}

.photo-feature-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.photo-feature-content {
  background: var(--c-navy);
  color: var(--c-white);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-list { margin-top: var(--space-lg); }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(210,193,182,0.12);
  font-size: var(--fs-sm);
  color: rgba(249,246,244,0.8);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list i {
  color: var(--c-blush);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  min-width: 0;
}

.testi-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(210,193,182,0.3);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-mid);
}

.testi-card:hover { transform: translateY(-3px); }

.testi-stars {
  color: var(--c-blush);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testi-text {
  font-size: var(--fs-sm);
  color: var(--c-text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-steel), var(--c-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  flex-shrink: 0;
}

.testi-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-navy);
}

.testi-loc {
  font-size: var(--fs-xs);
  color: var(--c-muted);
}

/* ===================== CONTACT ===================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
  min-width: 0;
}

.contact-info-card {
  background: linear-gradient(160deg, var(--c-navy), var(--c-mid));
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(210,193,182,0.07);
  border-radius: 50%;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: rgba(69,104,130,0.2);
  border-radius: 50%;
}

.contact-brand {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--c-blush);
  margin-bottom: var(--space-sm);
  position: relative; z-index: 1;
}

.contact-tagline {
  font-size: var(--fs-sm);
  color: rgba(249,246,244,0.7);
  margin-bottom: var(--space-xl);
  position: relative; z-index: 1;
}

.contact-details { position: relative; z-index: 1; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-row-icon {
  width: 38px; height: 38px;
  background: rgba(210,193,182,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blush);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-row-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(210,193,182,0.5);
  margin-bottom: 2px;
}

.contact-row-val {
  font-size: var(--fs-sm);
  color: rgba(249,246,244,0.9);
  line-height: 1.5;
  word-break: break-word;
  min-width: 0;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative; z-index: 1;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
}

.contact-form-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(210,193,182,0.25);
  min-width: 0;
}

.form-heading {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--space-xs);
}

.form-subheading {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin-bottom: var(--space-lg);
}

.form-group { margin-bottom: var(--space-md); }

.form-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-steel);
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  padding: 0.7rem var(--space-md);
  border: 1.5px solid rgba(210,193,182,0.4);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--c-steel);
  box-shadow: 0 0 0 3px rgba(69,104,130,0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--c-muted);
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--c-steel);
  flex-shrink: 0;
}

.form-check a { color: var(--c-steel); text-decoration: underline; }

.btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--c-navy), var(--c-mid));
  color: var(--c-white);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
  margin-top: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--c-dark);
  color: rgba(249,246,244,0.6);
  padding: var(--space-lg) 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-blush);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer-links a {
  font-size: var(--fs-xs);
  color: rgba(249,246,244,0.5);
  transition: color var(--trans-fast);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-links a:hover { color: var(--c-blush); }

.footer-copy {
  font-size: var(--fs-xs);
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(249,246,244,0.07);
  padding-top: var(--space-md);
  margin-top: var(--space-sm);
}

/* ===================== COOKIE POPUP ===================== */
.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: min(560px, calc(100vw - 1.5rem));
  background: var(--c-dark);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-mid), transform var(--trans-mid);
  border: 1px solid rgba(210,193,182,0.1);
}

.cookie-popup.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.cookie-icon { color: var(--c-blush); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.cookie-text {
  font-size: var(--fs-xs);
  color: rgba(249,246,244,0.75);
  line-height: 1.6;
  flex: 1;
}

.cookie-text a { color: var(--c-blush); text-decoration: underline; }

.cookie-btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.cookie-accept {
  padding: 0.5rem 1.1rem;
  background: var(--c-blush);
  color: var(--c-navy);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  transition: background var(--trans-fast);
  white-space: nowrap;
}

.cookie-accept:hover { background: var(--c-accent); }

.cookie-decline {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(210,193,182,0.25);
  color: rgba(249,246,244,0.5);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  transition: color var(--trans-fast), border-color var(--trans-fast);
  white-space: nowrap;
}

.cookie-decline:hover { color: var(--c-white); border-color: rgba(210,193,182,0.5); }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-navy) 60%, var(--c-mid) 100%);
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero-eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--c-blush);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 5vw, 3.8rem);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  word-break: break-word;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--c-blush);
  font-weight: var(--fw-light);
}

.page-hero p {
  font-size: var(--fs-base);
  color: rgba(249,246,244,0.7);
  max-width: 520px;
  width: 100%;
}

/* ===================== SUBPAGE ASYMMETRIC LAYOUTS ===================== */
.asym-section {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
  max-width: 100%;
}

.asym-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(160deg, #eae4df 0%, #f5f0ec 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.asym-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  min-width: 0;
}

.overlap-card {
  position: relative;
  margin-top: var(--space-xl);
}

.overlap-card-img {
  border-radius: var(--radius-lg);
  width: 75%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.overlap-card-box {
  position: absolute;
  right: 0;
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md);
  width: 55%;
  box-shadow: var(--shadow-md);
  bottom: calc(-1 * var(--space-md));
}

.overlap-card-box h4 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
  color: var(--c-blush);
}

.overlap-card-box p {
  font-size: var(--fs-xs);
  color: rgba(249,246,244,0.7);
  line-height: 1.6;
}

.angled-row {
  position: relative;
  padding: var(--space-2xl) 0;
  background: var(--c-navy);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  margin: var(--space-xl) 0;
  overflow: hidden;
}

.angled-row .container {
  color: var(--c-white);
}

.steps-list { counter-reset: step; margin-top: var(--space-xl); }

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  counter-increment: step;
  position: relative;
}

.step-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  color: rgba(210,193,182,0.18);
  line-height: 1;
  min-width: 48px;
  text-align: right;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: var(--fs-sm);
  color: rgba(249,246,244,0.65);
  line-height: 1.7;
}

/* ===================== PRODUCTS ===================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  min-width: 0;
}

.product-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(210,193,182,0.25);
  transition: transform var(--trans-mid), box-shadow var(--trans-mid);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  display: inline-block;
  background: var(--c-navy);
  color: var(--c-blush);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.product-img-wrap {
  background: linear-gradient(135deg, var(--c-navy), var(--c-mid));
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.product-icon-lg {
  font-size: 4rem;
  color: var(--c-blush);
  opacity: 0.85;
}

.product-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-name {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
  word-break: break-word;
}

.product-desc {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-md);
}

.product-features {
  margin-bottom: var(--space-md);
}

.product-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--c-text);
  padding: 4px 0;
}

.product-features li i {
  color: var(--c-steel);
  font-size: 0.75rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  border-top: 1px solid rgba(210,193,182,0.25);
  padding-top: var(--space-md);
  margin-top: auto;
}

.product-price {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
}

.product-price sup {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  vertical-align: super;
}

.product-price sub {
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  color: var(--c-muted);
  vertical-align: baseline;
}

.btn-product {
  padding: 0.55rem 1.2rem;
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--trans-fast), transform var(--trans-fast);
}

.btn-product:hover {
  background: var(--c-mid);
  transform: translateY(-1px);
}

/* ===================== FAQ ===================== */
.faq-list { margin-top: var(--space-xl); max-width: 720px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid rgba(210,193,182,0.3);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--c-navy);
  transition: color var(--trans-fast);
}

.faq-q:hover { color: var(--c-steel); }

.faq-q i { font-size: var(--fs-sm); transition: transform var(--trans-mid); color: var(--c-steel); flex-shrink: 0; }

.faq-item.open .faq-q i { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-slow), padding var(--trans-mid);
}

.faq-a-inner {
  padding-bottom: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.75;
}

.faq-item.open .faq-a { max-height: 300px; }

/* ===================== LEGAL PAGES ===================== */
.legal-wrap {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  overflow-wrap: break-word;
  word-break: break-word;
}

.legal-wrap h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.legal-wrap h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--c-mid);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-wrap p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-wrap ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-wrap ul li {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xs);
}

.legal-date {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================== THANK YOU / 404 ===================== */
.fullpage-center {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-navy) 60%, var(--c-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
}

.fullpage-center::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(69,104,130,0.25);
  top: -100px; right: -100px;
  filter: blur(80px);
}

.fullpage-icon {
  font-size: 4rem;
  color: var(--c-blush);
  margin-bottom: var(--space-lg);
  animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.fullpage-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  word-break: break-word;
  padding: 0 var(--space-sm);
}

.fullpage-sub {
  font-size: var(--fs-base);
  color: rgba(249,246,244,0.65);
  max-width: 480px;
  width: 100%;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.fullpage-num {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: var(--fw-bold);
  color: rgba(210,193,182,0.1);
  line-height: 1;
  position: absolute;
  user-select: none;
  pointer-events: none;
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ===================== MOBILE NAV ===================== */
@media (max-width: 768px) {
  .burger { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--c-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--trans-mid);
    z-index: 150;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .main-nav a {
    font-size: var(--fs-xl);
    color: var(--c-white);
  }

  .nav-cta {
    font-size: var(--fs-base) !important;
    padding: var(--space-sm) var(--space-lg) !important;
  }

  .intro-grid,
  .contact-wrap,
  .photo-feature,
  .asym-inner {
    grid-template-columns: 1fr;
  }

  .asym-section::before { display: none; }

  .photo-feature-img { min-height: 240px; height: 240px; }

  .photo-feature-content { padding: var(--space-lg) var(--space-md); }

  .pillars-grid,
  .testimonials-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .overlap-card-box {
    position: static;
    width: 100%;
    margin-top: var(--space-md);
  }

  .overlap-card-img { width: 100%; }

  .step-item { gap: var(--space-md); }

  .faq-list { max-width: 100%; }

  .contact-brand { font-size: var(--fs-xl); }
}

@media (max-width: 480px) {
  :root {
    --space-2xl: 3rem;
    --space-xl: 1.75rem;
    --space-lg: 1.5rem;
  }

  .hero h1 { font-size: 1.75rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }

  .cookie-popup {
    flex-direction: column;
    bottom: var(--space-sm);
    padding: var(--space-sm);
  }

  .cookie-btns { flex-direction: row; width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; gap: var(--space-sm); }

  .product-footer { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .btn-product { width: 100%; text-align: center; justify-content: center; display: flex; }

  .stat-item { padding: var(--space-md) var(--space-sm); }
  .stat-num { font-size: var(--fs-2xl); }

  .pillar-card { padding: var(--space-md); }
  .testi-card { padding: var(--space-md); }

  .form-heading { font-size: var(--fs-lg); }

  .angled-row { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }

  .fullpage-center { padding: var(--space-lg) var(--space-sm); }
}

@media (max-width: 360px) {
  :root {
    --space-2xl: 2.5rem;
    --space-xl: 1.5rem;
    --space-lg: 1.25rem;
    --space-md: 1rem;
  }

  .container { width: calc(100% - 1.25rem); }

  .logo { font-size: 1.2rem; }

  .hero h1 { font-size: 1.55rem; letter-spacing: -0.01em; }
  .hero-sub { font-size: var(--fs-sm); }

  .section-title { font-size: 1.4rem; }

  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.05em; }
  .hero-eyebrow::before { width: 16px; }

  .stat-num { font-size: var(--fs-xl); }
  .stat-label { font-size: 0.65rem; }

  .contact-row-val { font-size: var(--fs-xs); }

  .step-num { min-width: 36px; font-size: 1.6rem; }
  .step-item { gap: var(--space-sm); }

  .faq-q { font-size: var(--fs-sm); }

  .product-price { font-size: var(--fs-xl); }

  .cookie-popup { padding: var(--space-sm); gap: var(--space-xs); }
  .cookie-icon { font-size: 1.1rem; }
  .cookie-text { font-size: 0.7rem; }

  .fullpage-title { font-size: 1.4rem; }
  .fullpage-sub { font-size: var(--fs-sm); }

  .legal-wrap { padding: var(--space-lg) var(--space-sm); }
  .legal-wrap h2 { font-size: var(--fs-lg); }

  .intro-badge { font-size: var(--fs-base); padding: var(--space-sm) var(--space-md); }

  .photo-feature-img { min-height: 200px; height: 200px; }

  .angled-row { clip-path: none; border-radius: 0; }
}
