:root {
  --ink: #20201f;
  --ink-soft: #30302e;
  --paper: #f5f0ea;
  --white: #fffdf9;
  --rose: #d7a0a0;
  --rose-pale: #ead0cd;
  --clay: #c86432;
  --sun: #f2903d;
  --sage: #7c8575;
  --line: rgba(32, 32, 31, 0.18);
  --max: 1220px;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  background: var(--sun);
  color: var(--ink);
  padding: .75rem 1rem;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(32, 32, 31, .94);
  color: var(--white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav-wrap {
  max-width: var(--max);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  text-decoration: none;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.brand span { display: block; color: var(--rose-pale); }
.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a {
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--sun); }
.nav-cta {
  border: 1px solid rgba(255,255,255,.7);
  padding: .7rem 1rem;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--sun); color: var(--ink) !important; border-color: var(--sun); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s, opacity .25s;
}
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25,25,24,.92) 0%, rgba(25,25,24,.68) 34%, rgba(25,25,24,.24) 56%, rgba(25,25,24,.06) 76%), url("assets/natalia-07.jpeg") center 44% / cover no-repeat;
  transform: scale(1.09);
  transform-origin: left center;
}
.hero::after {
  content: "";
  position: absolute;
  right: 7vw;
  top: 7vh;
  width: clamp(90px, 12vw, 170px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 12vh 0 11vh;
  color: var(--white);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.4rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--sun); }
.hero h1, .page-hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.1vw, 6rem);
  line-height: .9;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero-copy {
  max-width: 570px;
  margin: 2rem 0 2.4rem;
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  line-height: 1.3;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 54px;
  padding: .9rem 1.35rem;
  border: 1px solid var(--sun);
  background: var(--sun);
  color: var(--ink);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.button::after { content: "↗"; font-size: 1.1rem; }
.button:hover, .button:focus-visible { background: transparent; color: currentColor; transform: translateY(-2px); }
.button-dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button-dark:hover, .button-dark:focus-visible { color: var(--ink); }
.button-ghost { background: transparent; border-color: currentColor; color: inherit; }
.button-ghost:hover, .button-ghost:focus-visible { background: var(--ink); color: var(--white); }

.section { padding: clamp(80px, 11vw, 150px) 28px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-dark { background: var(--ink); color: var(--white); }
.section-rose { background: var(--rose-pale); }
.section-sage { background: var(--sage); color: var(--white); }
.section-kicker {
  margin: 0 0 1rem;
  color: var(--clay);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-dark .section-kicker, .section-sage .section-kicker { color: var(--sun); }
.display {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.8vw, 6.8rem);
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.display em { color: var(--rose); font-style: normal; }
.lead { font-size: clamp(1.35rem, 2.8vw, 2.2rem); line-height: 1.2; letter-spacing: -.025em; }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}
.intro-side { border-left: 1px solid rgba(255,255,255,.25); padding-left: 2rem; }
.stack-lines { margin: 0; font-size: clamp(1.25rem, 2.5vw, 2rem); line-height: 1.35; }
.stack-lines span { display: block; }

.image-copy {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(340px, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.image-frame { position: relative; }
.image-frame::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--clay);
  pointer-events: none;
}
.image-frame img { aspect-ratio: 4 / 5; object-fit: cover; }
.copy-block { max-width: 650px; }
.copy-block h2 {
  margin: 0 0 1.6rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.8vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.2rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.principles li { padding: 1.2rem .8rem 1.2rem 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.principles li + li { padding-left: 1rem; border-left: 1px solid var(--line); }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; }
.fit-panel { padding: clamp(70px, 9vw, 130px) clamp(28px, 7vw, 100px); }
.fit-panel:first-child { background: var(--rose-pale); }
.fit-panel:last-child { background: var(--ink-soft); color: var(--white); }
.fit-panel h2 {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.clean-list { margin: 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 1rem 0 1rem 2rem; border-top: 1px solid currentColor; }
.clean-list li::before { content: "—"; position: absolute; left: 0; color: var(--clay); font-weight: 900; }
.fit-panel:last-child .clean-list li::before { color: var(--sun); }

.about-grid { display: grid; grid-template-columns: minmax(320px, 1fr) minmax(300px, .8fr); gap: 0; align-items: stretch; }
.about-grid img { height: 100%; min-height: 620px; object-fit: cover; object-position: center 25%; }
.about-copy { padding: clamp(70px, 9vw, 130px) clamp(28px, 7vw, 100px); background: var(--clay); color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.about-copy h2 { margin: 0 0 1.4rem; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); line-height: .9; text-transform: uppercase; letter-spacing: -.05em; }
.about-copy p { max-width: 520px; font-size: 1.16rem; }

.offer-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 4rem; }
.offer-head p { max-width: 390px; margin: 0; }
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.offer-card {
  position: relative;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
}
.offer-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); z-index: -2; }
.offer-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 25%, rgba(20,20,19,.92) 100%); }
.offer-card:hover img, .offer-card:focus-visible img { transform: scale(1.045); }
.offer-card-copy { padding: 2rem; }
.offer-number { display: block; margin-bottom: 1.3rem; font-size: .72rem; font-weight: 900; letter-spacing: .18em; color: var(--sun); }
.offer-card h3 { margin: 0 0 .5rem; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.3rem); line-height: .95; text-transform: uppercase; }
.offer-card p { margin: 0; }
.offer-arrow { position: absolute; top: 1.3rem; right: 1.3rem; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); font-size: 1.25rem; }

.references-section { background: var(--ink); color: var(--white); overflow: hidden; }
.references-head {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 8vw, 7rem);
}
.references-head p:last-child { max-width: 350px; margin: 0 0 .7rem; color: rgba(255,255,255,.72); }
.references-section .section-kicker { color: var(--sun); }
.references-section .display em { color: var(--rose-pale); }
.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  justify-content: space-between;
}
.reference-card { margin: 0; }
.reference-card-lower { margin-top: clamp(2rem, 9vw, 8rem); }
.reference-video {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.22);
}
.reference-video::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  border: 10px solid rgba(242,144,61,.16);
  pointer-events: none;
}
.reference-video video { display: block; width: 100%; height: 100%; object-fit: contain; background: #000; }
.reference-card p {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1.2rem 0 0;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.reference-card p span { color: var(--sun); font-size: 1.25rem; letter-spacing: 0; }

.apply-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.apply-intro img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.apply-copy p { max-width: 650px; }
.apply-copy .lead { margin-top: 0; }
.commitment { margin: 2.2rem 0 0; padding: 1.4rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-weight: 800; }

.form-section { background: var(--ink); color: var(--white); }
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.form-layout h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 7vw, 7rem); line-height: .9; letter-spacing: -.05em; text-transform: uppercase; }
.form-layout h2 em { display: block; color: var(--sun); font-style: normal; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .5rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.field input, .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.45);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: .85rem 0;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--sun); }
.field textarea { min-height: 120px; resize: vertical; }
.consent { grid-column: 1 / -1; display: flex; gap: .8rem; align-items: flex-start; font-size: .86rem; color: rgba(255,255,255,.72); }
.consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: .2rem; accent-color: var(--sun); }
.contact-form .button { justify-self: start; }
.form-note { grid-column: 1 / -1; margin: 0; min-height: 1.5rem; font-size: .9rem; color: var(--rose-pale); }

.site-footer { padding: 48px 28px; background: #161615; color: var(--white); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.footer-links { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer-links a { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.footer-links a:hover { color: var(--sun); }
.copyright { margin: 1rem 0 0; font-size: .75rem; color: rgba(255,255,255,.6); }

.page-hero {
  position: relative;
  min-height: 72vh;
  padding: 9vw 28px 7vw;
  display: grid;
  align-items: end;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .42; }
.page-hero.one::before { background: url("assets/natalia-01.jpeg") center 42% / cover; }
.page-hero.retreat::before { background: url("assets/natalia-03.jpeg") center 48% / cover; }
.page-hero.why::before { background: url("assets/natalia-10.jpeg") center 33% / cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,19,.9), rgba(20,20,19,.22)); }
.page-hero-inner { position: relative; z-index: 1; width: min(var(--max), 100%); margin: 0 auto; }
.page-hero p { max-width: 690px; margin: 2rem 0 0; font-size: clamp(1.25rem, 2.5vw, 2rem); }
.article { max-width: 920px; margin: 0 auto; }
.article-section { padding: clamp(70px, 9vw, 120px) 28px; }
.article-section:nth-child(even) { background: var(--rose-pale); }
.article h2 { margin: 0 0 1.5rem; font-family: var(--display); font-size: clamp(2.5rem, 5vw, 5rem); line-height: .95; text-transform: uppercase; letter-spacing: -.04em; }
.article h3 { margin: 2.5rem 0 .7rem; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1; text-transform: uppercase; }
.article p { max-width: 720px; }
.article .lead { max-width: 820px; }
.article .clean-list { max-width: 720px; margin: 2rem 0; }
.steps { counter-reset: step; margin: 2rem 0; padding: 0; list-style: none; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 52px 1fr; gap: 1rem; align-items: baseline; padding: 1rem 0; border-top: 1px solid var(--line); }
.steps li::before { content: "0" counter(step); color: var(--clay); font-size: .8rem; font-weight: 900; letter-spacing: .1em; }
.quote-band { padding: clamp(65px, 9vw, 110px) 28px; background: var(--clay); color: var(--white); }
.quote-band p { max-width: var(--max); margin: 0 auto; font-family: var(--display); font-size: clamp(2.5rem, 6vw, 6rem); line-height: .95; letter-spacing: -.04em; text-transform: uppercase; }
.page-cta { padding: clamp(75px, 10vw, 130px) 28px; background: var(--ink); color: var(--white); text-align: center; }
.page-cta h2 { max-width: 840px; margin: 0 auto 2rem; font-family: var(--display); font-size: clamp(2.8rem, 6vw, 6.2rem); line-height: .92; text-transform: uppercase; letter-spacing: -.045em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 88px 0 auto 0;
    min-height: calc(100vh - 88px);
    padding: 3rem 28px;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .menu-open .main-nav { transform: none; }
  .main-nav a { width: 100%; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.18); font-size: 1.1rem; }
  .nav-cta { border-width: 0 0 1px; }
  .intro-grid, .image-copy, .about-grid, .apply-intro, .form-layout { grid-template-columns: 1fr; }
  .intro-side { padding: 2rem 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .image-frame { max-width: 580px; }
  .about-grid img { min-height: 560px; }
  .offers { grid-template-columns: 1fr; }
  .offer-card { min-height: 520px; }
  .offer-head, .references-head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-wrap { min-height: 76px; padding: 0 20px; }
  .main-nav { inset: 76px 0 auto; min-height: calc(100vh - 76px); }
  .hero { min-height: calc(100svh - 76px); }
  .hero::before {
    background: linear-gradient(180deg, rgba(25,25,24,.18) 0%, rgba(25,25,24,.8) 75%), url("assets/natalia-07.jpeg") 35% center / cover no-repeat;
    transform: scale(1.01);
    transform-origin: center;
  }
  .hero::after { display: none; }
  .hero-inner { width: calc(100% - 40px); padding: 26vh 0 8vh; }
  .hero h1 { max-width: 68vw; font-size: clamp(2.5rem, 10.4vw, 3.2rem); line-height: .92; }
  .page-hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .section, .article-section { padding-left: 20px; padding-right: 20px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-panel { padding-left: 20px; padding-right: 20px; }
  .principles { grid-template-columns: 1fr; }
  .principles li + li { padding-left: 0; border-left: 0; }
  .about-grid img { min-height: 450px; }
  .about-copy { padding-left: 20px; padding-right: 20px; }
  .contact-form { grid-template-columns: 1fr; }
  .field-full, .consent { grid-column: auto; }
  .reference-grid { grid-template-columns: 1fr; gap: 3rem; }
  .reference-card { width: min(100%, 420px); }
  .reference-card-lower { margin-top: 0; margin-left: auto; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: 68svh; padding-left: 20px; padding-right: 20px; }
}

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