:root {
  --ink: #17272a;
  --ink-soft: #415154;
  --teal: #164447;
  --teal-deep: #0d3437;
  --terracotta: #b86645;
  --terracotta-soft: #e7c2ad;
  --sage: #879684;
  --cream: #f7f1e8;
  --cream-2: #efe4d5;
  --paper: #fffdf9;
  --line: rgba(23, 39, 42, .14);
  --shadow: 0 24px 70px rgba(30, 45, 43, .13);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--terracotta-soft); color: var(--ink); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 9999;
  background: var(--teal); color: #fff; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-tight { padding: 72px 0; }
.bg-cream { background: var(--cream); }
.bg-teal { background: var(--teal); color: #fff; }
.bg-sage { background: #e8ede7; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: .76rem;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}
.bg-teal .eyebrow { color: #f4c8ad; }
.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
  font-size: clamp(3.45rem, 7.5vw, 7.7rem);
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; }
h2 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}
h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
p { margin: 0 0 1.2em; }
.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 760px;
}
.bg-teal .lead { color: rgba(255,255,255,.78); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,253,249,.94);
  backdrop-filter: blur(16px);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(20,34,36,.05);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal); color: var(--cream);
  font-family: var(--serif); font-size: 1.12rem;
}
.brand-name { display: grid; line-height: 1.05; }
.brand-name strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.brand-name small { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav > a, .nav-dropdown > button {
  border: 0; background: transparent;
  text-decoration: none;
  padding: 12px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .94rem;
  cursor: pointer;
}
.site-nav > a:hover, .site-nav > a[aria-current='page'], .nav-dropdown > button:hover { color: var(--teal); background: var(--cream); }
.nav-cta {
  background: var(--teal) !important; color: #fff !important;
  padding-inline: 19px !important;
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 265px; padding: 10px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: .2s ease;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.is-open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 11px 12px; border-radius: 11px; text-decoration: none;
  color: var(--ink-soft); font-size: .92rem;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--teal); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); }
.nav-toggle span:not(.sr-only) { display: block; width: 19px; height: 2px; background: var(--ink); margin: 4px auto; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 22px;
  border-radius: 999px;
  text-decoration: none; border: 1px solid transparent;
  font-weight: 750; font-size: .96rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--teal); color: #fff; box-shadow: 0 14px 30px rgba(22,68,71,.19); }
.button.primary:hover { background: var(--teal-deep); }
.button.secondary { background: var(--terracotta); color: #fff; }
.button.ghost { border-color: var(--line); background: rgba(255,255,255,.55); }
.button.ghost:hover { background: var(--cream); }
.bg-teal .button.primary { background: #fff; color: var(--teal); }
.bg-teal .button.ghost { border-color: rgba(255,255,255,.36); color: #fff; background: transparent; }
.text-link { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 4px; font-weight: 750; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero {
  min-height: calc(100vh - 82px);
  display: flex; align-items: center;
  padding: 56px 0 78px;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.03fr .97fr; gap: 70px; align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero .display { max-width: 820px; }
.hero-lead {
  max-width: 690px; margin: 30px 0 0;
  font-size: clamp(1.14rem, 1.8vw, 1.45rem); color: var(--ink-soft);
}
.hero-note {
  margin-top: 38px; display: flex; gap: 13px; align-items: center;
  color: var(--ink-soft); font-size: .9rem;
}
.hero-note::before { content: ''; width: 44px; height: 1px; background: var(--terracotta); }
.hero-media { position: relative; }
.hero-image-wrap {
  position: relative; border-radius: 44% 44% 28px 28px;
  overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow); background: var(--cream-2);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; }
.hero-orbit {
  position: absolute; width: 180px; height: 180px; right: -46px; top: 9%; border-radius: 50%;
  border: 1px solid rgba(184,102,69,.42);
}
.hero-orbit::after { content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--terracotta); left: 8px; top: 38px; }
.hero-tag {
  position: absolute; left: -36px; bottom: 50px; max-width: 240px;
  padding: 18px 20px; background: rgba(255,253,249,.94); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 16px 38px rgba(24,45,46,.12); backdrop-filter: blur(14px);
  font-family: var(--serif); font-size: 1.1rem; line-height: 1.28;
}

.page-hero { padding: 86px 0 78px; overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.page-hero .display { font-size: clamp(3.25rem, 6.5vw, 6.5rem); }
.page-hero-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 25px; color: var(--ink-soft); font-size: .88rem; }
.breadcrumbs a { text-underline-offset: 3px; }

.statement {
  padding: 50px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.statement-inner { display: grid; grid-template-columns: .45fr 1.55fr; gap: 60px; align-items: start; }
.statement blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3.7vw, 3.55rem); line-height: 1.12; letter-spacing: -.03em; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-head > div:first-child { max-width: 800px; }
.section-head p:last-child { max-width: 440px; color: var(--ink-soft); }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-card {
  display: flex; flex-direction: column; min-height: 100%;
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius-md); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.035); }
.service-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.service-card-body p { color: var(--ink-soft); }
.service-card-body .text-link { margin-top: auto; }
.card-kicker { font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--terracotta); margin-bottom: 12px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.photo-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--cream-2); }
.photo-frame.tall { aspect-ratio: 4/5; }
.photo-frame.wide { aspect-ratio: 6/5; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.pill-list li { padding: 10px 14px; border-radius: 999px; background: var(--cream); border: 1px solid var(--line); font-size: .88rem; }

.number-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.number-item { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.number-item .num { color: var(--terracotta); font-family: var(--serif); font-size: 1.6rem; }
.number-item p { margin-bottom: 0; color: var(--ink-soft); }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
/* Dedicated Values layout: never allows a 3+1 arrangement. */
.values-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature {
  padding: 30px; border-radius: var(--radius-md); background: var(--cream); border: 1px solid rgba(23,39,42,.07);
}
.feature-icon { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); color: var(--teal); margin-bottom: 26px; font-family: var(--serif); font-size: 1.25rem; }
.feature p { color: var(--ink-soft); margin-bottom: 0; }

.path-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 20px; }
.path-card {
  min-height: 360px; border-radius: var(--radius-lg); padding: 42px; display: flex; flex-direction: column; justify-content: end; position: relative; overflow: hidden;
  background: var(--teal); color: #fff;
}
.path-card.secondary { background: #dce6dc; color: var(--ink); }
.path-card.secondary h2 {
  font-size: clamp(2.35rem, 3.8vw, 4.15rem);
  line-height: .95;
  letter-spacing: -.04em;
  max-width: 7.6ch;
  text-wrap: balance;
}
.path-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.16), transparent 36%); }
.path-card > * { position: relative; z-index: 1; }
.path-card p { max-width: 650px; color: rgba(255,255,255,.76); }
.path-card.secondary p { color: var(--ink-soft); }

.tool-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tool-card { padding: 22px; border-radius: 18px; background: var(--paper); border: 1px solid var(--line); }
.tool-card h3 { font-family: var(--sans); font-size: 1rem; font-weight: 800; letter-spacing: 0; }
.tool-card p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

.quote-band { padding: 86px 0; background: var(--teal); color: #fff; }
.quote-band blockquote { margin: 0; max-width: 920px; font-family: var(--serif); font-size: clamp(2.1rem, 4.6vw, 4.5rem); line-height: 1.08; letter-spacing: -.035em; }
.quote-band p { margin-top: 26px; color: rgba(255,255,255,.7); }

.faq { max-width: 900px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 24px 0; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 20px; text-align: left; font-weight: 800; color: var(--ink); cursor: pointer; }
.faq-question::after { content: '+'; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.faq-item.is-open .faq-question::after { content: '–'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { color: var(--ink-soft); padding: 0 0 24px; margin: 0; }

.cta-panel {
  padding: 64px; border-radius: var(--radius-lg); background: var(--teal); color: #fff; position: relative; overflow: hidden;
}
.cta-panel::before { content: ''; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; right: -120px; top: -170px; }
.cta-panel h2 { max-width: 820px; }
.cta-panel p { max-width: 690px; color: rgba(255,255,255,.75); }
.cta-panel > * { position: relative; z-index: 1; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact-options { display: grid; gap: 14px; }
.contact-option { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; text-decoration: none; background: var(--paper); }
.contact-option:hover { background: var(--cream); }
.contact-option strong { display: block; }
.contact-option small { color: var(--ink-soft); }
.contact-option .arrow { font-size: 1.35rem; color: var(--terracotta); }

.site-footer { padding: 62px 0 28px; background: #102e31; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 56px; padding-bottom: 48px; }
.footer-brand { max-width: 480px; }
.footer-brand p { color: rgba(255,255,255,.65); }
.footer-heading { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: #eab89c; font-weight: 800; margin-bottom: 16px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-bottom a { color: inherit; }

.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #1f9d68; color: #fff; text-decoration: none; box-shadow: 0 16px 35px rgba(20,70,55,.25);
  font-size: 1.15rem; font-weight: 900;
}
.whatsapp-float:hover { transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1050px) {
  .hero-grid, .page-hero-grid, .split, .contact-grid { gap: 42px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tool-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-tag { left: -16px; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 28px, 720px); }
  .section { padding: 82px 0; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 82px 14px auto 14px;
    display: none; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a, .nav-dropdown > button { width: 100%; text-align: left; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu { position: static; display: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin-top: 4px; }
  .nav-dropdown.is-open .dropdown-menu { display: block; }
  .hero { min-height: auto; padding-top: 38px; }
  .hero-grid, .page-hero-grid, .split, .statement-inner, .contact-grid, .path-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; max-width: 650px; }
  .hero-tag { left: 12px; bottom: 20px; }
  .page-hero-media { max-height: 620px; }
  .split.reverse > :first-child { order: initial; }
  .section-head { align-items: start; flex-direction: column; }
  .feature-grid:not(.values-grid), .feature-grid.four { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --container: calc(100vw - 24px); --radius-lg: 26px; }
  .header-inner { min-height: 72px; }
  .site-nav { top: 72px; }
  .brand-name small { display: none; }
  .display { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-image-wrap { border-radius: 36% 36% 22px 22px; }
  .hero-tag { position: static; max-width: none; margin-top: 12px; }
  .hero-orbit { display: none; }
  .card-grid, .card-grid.three, .tool-grid, .values-grid { grid-template-columns: 1fr; }
  .service-card-media { aspect-ratio: 5/4; }
  .number-item { grid-template-columns: 48px 1fr; }
  .cta-panel { padding: 38px 24px; }
  .path-card { padding: 30px; min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
