:root {
  --navy-950: #fffaf1;
  --navy-900: #fff3d8;
  --navy-800: #f2dfad;
  --teal-600: #1d9e75;
  --teal-700: #0f6e56;
  --teal-100: #e1f5ee;
  --mist: #ffffff;
  --stone: #5f5748;
  --muted: #7d725d;
  --gold: #d6aa58;
  --coral: #e07a5f;
  --ink: #201b13;
  --line: rgba(82,62,25,0.16);
  --shadow: 0 24px 70px rgba(82,62,25,0.18);
  --paper: #ffffff;
  --cream: #fffaf1;
  --gold-soft: #fff3d8;
  --heading: #17130d;
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5%;
  background: rgba(255,250,241,0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-mark {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark span { color: var(--gold); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active { color: var(--heading); }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--heading);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  border: 0;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  font: 700 14px "DM Sans", Arial, sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 160ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: var(--heading); }
.btn-primary:hover { background: #c99a43; }
.btn-secondary { background: transparent; color: var(--heading); border: 1px solid var(--line); }
.btn-secondary:hover { border-color: var(--gold); color: var(--heading); background: var(--gold-soft); }
.btn-light { background: var(--paper); color: var(--heading); border: 1px solid var(--line); }
.btn-gold { background: var(--gold); color: var(--heading); }

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 18px 46px rgba(29,158,117,0.36);
  text-decoration: none;
  animation: waPulse 2s infinite;
}

.whatsapp-float svg { width: 28px; height: 28px; }

@keyframes waPulse {
  0%   { box-shadow: 0 18px 46px rgba(29,158,117,0.36), 0 0 0 0   rgba(29,158,117,0.4); }
  70%  { box-shadow: 0 18px 46px rgba(29,158,117,0.22), 0 0 0 18px rgba(29,158,117,0); }
  100% { box-shadow: 0 18px 46px rgba(29,158,117,0.36), 0 0 0 0   rgba(29,158,117,0); }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.3fr);
  gap: 44px;
  align-items: center;
  padding: 60px 5% 60px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,250,241,0.98), rgba(255,243,216,0.84)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,170,88,0.28), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a77925;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 850px;
  font-size: clamp(1.6rem, 3.6vw, 2.9rem);
  color: var(--heading);
}

h1 em,
h2 em {
  color: #a77925;
  font-style: italic;
}

.hero-copy p,
.page-hero p,
.section-head p {
  color: var(--stone);
  font-size: 15px;
  max-width: 680px;
}

.hero-actions,
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-visual {
    min-height: 580px;
  }
}

@media (min-width: 1024px) {
  .hero-visual {
    min-height: 660px;
  }
}

.network-hero {
  isolation: isolate;
}

.web-spoke {
  stroke: rgba(214,170,88,0.14);
  stroke-width: 0.65;
}

.web-ring {
  stroke: rgba(214,170,88,0.11);
  stroke-width: 0.65;
}

.network-svg {
  width: min(480px, 90%);
  filter: drop-shadow(0 8px 18px rgba(82,62,25,0.13));
  position: relative;
  z-index: 2;
  transition: width 0.3s ease;
  overflow: visible;
}

@media (min-width: 768px) {
  .network-svg {
    width: min(580px, 95%);
  }
}

@media (min-width: 1024px) {
  .network-svg {
    width: min(640px, 85%);
  }
}

.network-svg .flow-line {
  fill: none;
  stroke: url(#flowGradient);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 12 14;
  animation: flowPulse 2.7s linear infinite;
}

.network-svg .hub-line {
  opacity: 0.85;
}

.network-svg .loop-line {
  stroke-width: 1.5;
  opacity: 0.44;
  stroke-dasharray: 6 12;
}

.network-svg .flow-line:nth-child(1) { animation-delay: 0s; }
.network-svg .flow-line:nth-child(2) { animation-delay: 0.3s; }
.network-svg .flow-line:nth-child(3) { animation-delay: 0.6s; }
.network-svg .flow-line:nth-child(4) { animation-delay: 0.9s; }
.network-svg .flow-line:nth-child(5) { animation-delay: 1.2s; }
.network-svg .flow-line:nth-child(6) { animation-delay: 1.5s; }

@keyframes flowPulse {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -104; }
}

.network-svg .center-ring {
  animation: centerGlow 2.5s ease-in-out infinite;
}

@keyframes centerGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}

.network-svg .center-accent {
  animation: accentPulse 2.5s ease-in-out infinite;
}

@keyframes accentPulse {
  0%, 100% { r: 5; opacity: 1; }
  50% { r: 8; opacity: 0.55; }
}

.network-cards {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 90px;
  padding: 16px;
  pointer-events: none;
  z-index: 3;
}

@media (min-width: 768px) {
  .network-cards {
    gap: 120px;
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .network-cards {
    gap: 150px;
    padding: 28px;
  }
}

.network-card {
  position: relative;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(214,170,88,0.32);
  border-radius: 6px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(82,62,25,0.16);
  opacity: 0;
  animation: cardFadeInUp 0.6s ease-out forwards;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

@media (min-width: 768px) {
  .network-card {
    padding: 16px;
  }
}

@media (min-width: 1024px) {
  .network-card {
    padding: 20px;
  }
}

.network-card:hover {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 48px rgba(82,62,25,0.18);
  transform: translateY(-4px);
}

.card-model   { grid-column: 1; grid-row: 1; align-self: end;   justify-self: end;   animation-delay: 0.1s; border-top: 3px solid #d6aa58; }
.card-finance { grid-column: 2; grid-row: 1; align-self: end;   justify-self: start; animation-delay: 0.2s; border-top: 3px solid #1d9e75; }
.card-sales   { grid-column: 2; grid-row: 2; align-self: start; justify-self: start; animation-delay: 0.3s; border-bottom: 3px solid #d6aa58; }
.card-legal   { grid-column: 1; grid-row: 2; align-self: start; justify-self: end;   animation-delay: 0.4s; border-bottom: 3px solid #1d9e75; }

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

.network-card .card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .network-card .card-label {
    font-size: 10px;
    margin-bottom: 6px;
  }
}

.network-card strong {
  display: block;
  font-size: 18px;
  color: var(--heading);
  margin-bottom: 4px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .network-card strong {
    font-size: 20px;
    margin-bottom: 6px;
  }
}

@media (min-width: 1024px) {
  .network-card strong {
    font-size: 22px;
    margin-bottom: 8px;
  }
}

.network-card p {
  font-size: 11px;
  color: var(--stone);
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .network-card p {
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (min-width: 1024px) {
  .network-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.system-svg {
  width: min(430px, 100%);
  filter: drop-shadow(0 32px 60px rgba(0,0,0,0.35));
}

.system-svg .ring {
  transform-origin: center;
  animation: rotateRing 18s linear infinite;
}

.system-svg .node {
  animation: nodeGlow 2.2s ease-in-out infinite;
}

.system-svg .node:nth-child(2n) { animation-delay: 0.5s; }

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

@keyframes nodeGlow {
  50% { opacity: 0.45; transform: scale(0.96); }
}

.section {
  padding: 86px 5%;
  border-top: 1px solid var(--line);
}

.section.alt { background: var(--gold-soft); }

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  color: var(--heading);
}

.metric-grid,
.card-grid,
.solution-grid,
.values-grid,
.contact-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric-grid { grid-template-columns: repeat(4, 1fr); }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.solution-grid { grid-template-columns: repeat(2, 1fr); }
.values-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: 0.8fr 1.2fr; }

.metric,
.card,
.solution-card,
.value-card,
.contact-panel {
  background: var(--paper);
  padding: 28px;
}

.alt .metric,
.alt .card,
.alt .solution-card,
.alt .value-card,
.alt .contact-panel {
  background: var(--navy-900);
}

.metric strong {
  display: block;
  color: #a77925;
  font: 700 42px "Playfair Display", Georgia, serif;
  line-height: 1;
}

.metric span,
.card p,
.solution-card p,
.value-card p,
.contact-panel p,
.download-panel p {
  color: var(--stone);
  font-size: 14px;
}

.card,
.solution-card,
.value-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.card:hover,
.solution-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: #fff7e6;
}

.card::before,
.solution-card::before,
.value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
}

.card-number {
  color: #a77925;
  font: 700 42px "Playfair Display", Georgia, serif;
  line-height: 1;
}

.card h3,
.solution-card h3,
.value-card h3 {
  color: var(--heading);
  font-size: 22px;
  margin-top: 26px;
}

.parallax-band {
  min-height: 460px;
  display: grid;
  align-items: end;
  padding: 70px 5%;
  background:
    linear-gradient(180deg, rgba(255,250,241,0.34), rgba(255,250,241,0.96)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}

.parallax-band .content {
  max-width: 760px;
}

.parallax-band p { color: var(--stone); }

.download-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--paper), var(--gold-soft));
}

.download-icon {
  width: 86px;
  height: 112px;
  border: 1px solid var(--gold);
  background: rgba(214,170,88,0.18);
  position: relative;
  display: grid;
  place-items: center;
  color: #a77925;
  animation: documentFloat 3s ease-in-out infinite;
}

.download-icon::before {
  content: "PDF";
  font-weight: 800;
  letter-spacing: 0.08em;
}

@keyframes documentFloat {
  50% { transform: translateY(-8px); }
}

.slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 34%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
}

.auto-slider {
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 0 18px;
  scroll-snap-type: none;
  scrollbar-width: none;
  cursor: grab;
}

.auto-slider::-webkit-scrollbar {
  display: none;
}

.auto-slider .slider-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: deliverablesMarquee 39.9s linear infinite;
}

.auto-slider:hover .slider-track {
  animation-play-state: paused;
}

.auto-slider .slide {
  width: min(340px, 82vw);
  flex: 0 0 auto;
}

.deliverables-carousel {
  display: block !important;
  width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 6px 0 18px;
  scrollbar-width: none;
  cursor: grab;
}

.deliverables-carousel:active {
  cursor: grabbing;
}

.deliverables-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-shell {
  position: relative;
  padding: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(214,170,88,0.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  color: var(--heading);
  box-shadow: none;
  backdrop-filter: blur(4px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.carousel-arrow:hover {
  background: rgba(214,170,88,0.18);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow-left {
  left: 12px;
}

.carousel-arrow-right {
  right: 12px;
}

.deliverables-carousel .slider-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  width: max-content;
  gap: 18px;
  animation: deliverablesMarquee 39.9s linear infinite;
  will-change: transform;
}

.deliverables-carousel:hover .slider-track {
  animation-play-state: paused;
}

.deliverables-carousel .slide {
  display: block;
  width: min(340px, 82vw) !important;
  min-width: min(340px, 82vw) !important;
  max-width: min(340px, 82vw) !important;
  flex: 0 0 min(340px, 82vw) !important;
}

@keyframes deliverablesMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-33.333% - 6px)); }
}

.slide {
  position: relative;
  min-height: 230px;
  scroll-snap-align: start;
  padding: 28px 26px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--paper), var(--gold-soft));
  transition: border-color 180ms ease, transform 180ms ease;
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 54px;
  border: 1px solid rgba(214,170,88,0.42);
  background:
    linear-gradient(135deg, rgba(255,255,255,0) 0 72%, rgba(214,170,88,0.22) 73%),
    rgba(255,255,255,0.56);
  box-shadow: 0 10px 24px rgba(82,62,25,0.1);
}

.slide::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 44px;
  width: 18px;
  height: 2px;
  background: rgba(138,100,31,0.36);
  box-shadow: 0 7px 0 rgba(138,100,31,0.26), 0 14px 0 rgba(138,100,31,0.18);
}

.slide:hover {
  border-color: var(--gold);
  transform: translateY(-6px) scale(0.985);
  box-shadow: var(--shadow);
}

.slide span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(214,170,88,0.34);
  background: rgba(255,255,255,0.72);
  color: #a77925;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.slide strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--heading);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  margin-top: 42px;
  max-width: 250px;
}

.slide p {
  position: relative;
  z-index: 1;
  padding-top: 16px;
  border-top: 1px solid rgba(82,62,25,0.12);
  color: var(--stone);
  font-size: 14px;
  line-height: 1.55;
}

.slide p::before {
  content: "Preview";
  display: block;
  margin-bottom: 7px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 54vh;
  display: grid;
  align-items: end;
  padding: 100px 5% 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,250,241,0.98), rgba(255,243,216,0.82)),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}

.page-hero-inner { max-width: 900px; }

.story-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-founder {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(82,62,25,0.08);
}

.about-founder-visual {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(214,170,88,0.1), rgba(255,250,241,0.54)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.about-founder-stat {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: 230px;
  padding: 22px;
  border: 1px solid rgba(214,170,88,0.4);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow);
}

.about-founder-stat strong {
  display: block;
  color: var(--heading);
  font: 700 62px "Playfair Display", Georgia, serif;
  line-height: 1;
}

.about-founder-stat span {
  color: var(--stone);
  font-size: 13px;
}

.about-founder-copy {
  padding: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-founder-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.about-founder-copy p {
  color: var(--stone);
  max-width: 620px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--line);
}

.principle-mini {
  background: var(--gold-soft);
  padding: 22px;
}

.principle-mini strong {
  display: block;
  color: #8a641f;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.principle-mini span {
  display: block;
  margin-top: 8px;
  color: var(--stone);
  font-size: 14px;
}

.about-process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: stretch;
}

.about-process-copy {
  padding: 42px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-process-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.about-process-copy p {
  color: var(--stone);
  max-width: 620px;
}

.about-process-visual {
  min-height: 620px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 42px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,243,216,0.88)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: 0 18px 60px rgba(82,62,25,0.08);
}

.process-step-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(214,170,88,0.34);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 16px 42px rgba(82,62,25,0.12);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.process-step-card:hover {
  transform: translateX(-10px);
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.process-step-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--heading);
  font-weight: 900;
}

.process-step-card strong {
  display: block;
  color: var(--heading);
  font-size: 16px;
}

.process-step-card span {
  display: block;
  color: var(--stone);
  font-size: 14px;
  margin-top: 3px;
}

.portrait-panel {
  min-height: 430px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(214,170,88,0.18), rgba(255,250,241,0.42)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1100&q=80") center/cover;
  position: relative;
  overflow: hidden;
}

.portrait-panel::after {
  content: "17+";
  position: absolute;
  left: 26px;
  bottom: 18px;
  color: var(--heading);
  font: 700 68px "Playfair Display", Georgia, serif;
}

.story-copy p { color: var(--stone); }

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--heading);
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--heading);
  padding: 12px 14px;
  font: 400 14px "DM Sans", Arial, sans-serif;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,170,88,0.2);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.contact-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-item strong {
  color: var(--heading);
  display: block;
}

.contact-item span { color: var(--stone); }

/* FAQ page */
.faq-grid {
  display: grid;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--heading);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}

.faq-group {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq-item:hover {
  border-color: rgba(214,170,88,0.55);
}

.faq-item[open] {
  border-color: rgba(214,170,88,0.55);
  box-shadow: 0 6px 28px rgba(82,62,25,0.07);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  color: var(--heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(214,170,88,0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform 200ms ease, background 200ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(214,170,88,0.12);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--stone);
  font-size: 14.5px;
  line-height: 1.72;
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding-top: 18px;
}

.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-cta-band {
  background: linear-gradient(135deg, var(--navy-900), #1a120a);
  padding: 80px 5%;
  text-align: center;
}

.faq-cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}

.faq-cta-band p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 32px;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(214,170,88,0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,250,241,1)),
    var(--paper);
  color: var(--muted);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(214,170,88,0.08));
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.75fr));
  gap: 38px;
  padding: 58px 5% 34px;
}

.footer-brand p {
  max-width: 420px;
  margin: 15px 0 20px;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(214,170,88,0.34);
  background: rgba(214,170,88,0.08);
  color: #7f5b18;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col {
  padding-top: 2px;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  color: var(--stone);
  text-decoration: none;
  font-size: 14px;
  margin: 8px 0;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: #8a641f;
  transform: translateX(4px);
}

.footer-cta {
  margin-top: 16px;
  width: fit-content;
  box-shadow: 0 12px 28px rgba(214,170,88,0.2);
}

.footer-col a.footer-cta {
  display: inline-flex;
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--heading);
}

.footer-col a.footer-cta:hover {
  color: var(--heading);
  transform: translateY(-2px);
  background: #c99a43;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 17px 5% 20px;
  border-top: 1px solid rgba(82,62,25,0.12);
  background: rgba(255,243,216,0.46);
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .section-head,
  .story-block,
  .about-founder,
  .about-process,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .card-grid,
  .solution-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual { min-height: 420px; }
}

@media (max-width: 720px) {
  .menu-button { display: block; }

  .site-nav {
    position: fixed;
    inset: 79px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 5% 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .site-nav { display: flex; }

  .site-nav a { padding: 12px 0; }

  .hero,
  .page-hero {
    background-attachment: scroll;
  }

  .metric-grid,
  .card-grid,
  .solution-grid,
  .values-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .download-panel {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .slider { grid-auto-columns: 86%; }

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
  }
}
