:root {
  --ink: #0f0b0a;
  --umber: #1a1411;
  --umber-2: #241b17;
  --bone: #f1eadf;
  --sand: #dccfbd;
  --copper: #c58a5b;
  --copper-deep: #8a5228;
  --wine: #4b1a20;
  --muted: #b9ab9a;
  --ink-soft: #4a3f38;
  --line-dark: rgba(197, 138, 91, .32);
  --line-light: rgba(15, 11, 10, .16);
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 2px; }
[id] { scroll-margin-top: 84px; }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--copper); color: var(--ink); padding: 10px 16px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* Tipografia base */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: .78rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--copper);
}
.eyebrow::before { content: ''; width: 42px; height: 1.5px; background: currentColor; flex: none; }
.on-bone .eyebrow { color: var(--copper-deep); }
.on-sand .eyebrow { color: #6f3f1b; }
h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.7rem, 6.2vw, 5rem); line-height: .96; letter-spacing: -.015em;
}
h2 em, h1 em { font-style: italic; color: var(--copper); }
.on-bone h2 em, .on-sand h2 em { color: var(--copper-deep); }
h3 { font-family: var(--sans); font-size: 1.12rem; font-weight: 700; line-height: 1.3; letter-spacing: .005em; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); line-height: 1.55; color: var(--sand); max-width: 34em; }
.on-bone .lead, .on-bone p, .on-sand .lead, .on-sand p { color: var(--ink-soft); }

/* Botoes */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 28px;
  font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  border: 1.5px solid transparent; border-radius: 999px; cursor: pointer; background: transparent; font-family: inherit;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-copper { background: var(--copper); color: var(--ink); }
.btn-copper:hover { background: #d99b6b; }
.btn-ghost { border-color: rgba(241, 234, 223, .5); color: var(--bone); }
.btn-ghost:hover { border-color: var(--copper); color: var(--copper); }
.btn-dark { background: var(--ink); color: var(--bone); }
.btn-dark:hover { background: var(--umber-2); }
.btn-line-dark { border-color: var(--ink); color: var(--ink); }
.btn-line-dark:hover { background: var(--ink); color: var(--bone); }

/* Cabecalho */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 12px max(24px, calc((100vw - 1240px) / 2));
  background: rgba(15, 11, 10, .88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--serif); font-size: 1.55rem; line-height: 1; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--copper); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sand); transition: color .2s; }
.nav-links a:hover { color: var(--copper); }
.nav-links .nav-cta { color: var(--ink); background: var(--copper); padding: 11px 20px; border-radius: 999px; }
.nav-links .nav-cta:hover { color: var(--ink); background: #d99b6b; }
.menu-button {
  display: none; background: none; border: 1.5px solid var(--line-dark); border-radius: 999px; padding: 9px 18px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; color: var(--bone);
}

/* Hero */
.hero { position: relative; padding: clamp(28px, 5vw, 60px) 0 0; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(900px 520px at 78% 30%, rgba(75, 26, 32, .55), transparent 70%), radial-gradient(700px 480px at 8% 0%, rgba(197, 138, 91, .12), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 5vw, 72px); align-items: center; padding-bottom: clamp(40px, 6vw, 84px); }
.hero-copy { display: grid; gap: clamp(20px, 2.4vw, 30px); align-content: center; position: relative; z-index: 2; }
h1 {
  font-family: var(--serif); font-weight: 400; color: var(--bone);
  font-size: clamp(4.3rem, 12.5vw, 11rem); line-height: .82; letter-spacing: -.028em;
}
h1 em { display: block; margin-left: clamp(18px, 5vw, 72px); }
.hero .lead { max-width: 30em; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 4px; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hero-tags li { display: flex; align-items: center; gap: 22px; }
.hero-tags li + li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--copper); }
.hero-photo { position: relative; justify-self: end; width: min(100%, 520px); margin-right: 14px; }
.hero-photo .frame { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--umber); }
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
.hero-photo::before {
  content: ''; position: absolute; inset: 16px -16px -16px 16px; border: 1.5px solid var(--copper); pointer-events: none; z-index: 0;
}
.hero-photo .frame { z-index: 1; }
.badge {
  position: absolute; z-index: 3; left: -26px; bottom: 36px;
  background: var(--bone); color: var(--ink); padding: 16px 22px 14px; border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.badge b { display: block; font-family: var(--serif); font-weight: 400; font-size: 2.6rem; line-height: 1; }
.badge span { display: block; margin-top: 4px; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--copper-deep); }

/* Faixa de numeros */
.stats-band { background: var(--umber-2); border-block: 1px solid var(--line-dark); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 26px; border-left: 1px solid var(--line-dark); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(2.5rem, 4.4vw, 3.8rem); line-height: 1; color: var(--bone); }
.stat span { display: block; margin-top: 10px; font-size: .92rem; line-height: 1.4; color: var(--muted); max-width: 20ch; }

/* Secoes */
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.on-bone { background: var(--bone); color: var(--ink); }
.on-sand { background: var(--sand); color: var(--ink); }
.on-umber { background: var(--umber); }
.section-head { display: grid; gap: 20px; margin-bottom: clamp(36px, 5vw, 64px); max-width: 780px; }

/* Sobre */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 7vw, 110px); align-items: center; }
.about-photos { position: relative; padding-bottom: 90px; padding-right: 60px; }
.about-photos .main { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); }
.about-photos .main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.about-photos .inset {
  position: absolute; right: 0; bottom: 0; width: 44%; aspect-ratio: 3 / 4; overflow: hidden;
  border: 8px solid var(--bone); background: var(--sand); box-shadow: 0 20px 44px rgba(15, 11, 10, .25);
}
.about-photos .inset img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.about-copy { display: grid; gap: 24px; }
.about-copy p { font-size: 1.12rem; }
.pull {
  font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.16; letter-spacing: -.01em; color: var(--ink);
  padding: 8px 0 8px 26px; border-left: 2px solid var(--copper-deep);
}
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-light); margin-top: 8px; }
.pillar { padding: 22px 20px 0 0; }
.pillar + .pillar { padding-left: 20px; border-left: 1px solid var(--line-light); }
.pillar b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.6rem; line-height: 1.1; color: var(--ink); }
.pillar p { margin-top: 8px; font-size: .95rem; line-height: 1.5; }

/* Trajetoria */
.path-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 6vw, 96px); align-items: start; }
.path-photo { position: sticky; top: 110px; }
.path-photo .frame { aspect-ratio: 1 / 1; overflow: hidden; background: var(--umber-2); }
.path-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 30%; }
.path-photo .frame-wrap { position: relative; }
.path-photo .frame-wrap::before { content: ''; position: absolute; inset: 14px -14px -14px 14px; border: 1.5px solid var(--copper); z-index: 0; pointer-events: none; }
.path-photo .frame { position: relative; z-index: 1; }
.path-photo figcaption { position: relative; z-index: 1; margin-top: 32px; font-size: .88rem; color: var(--muted); letter-spacing: .04em; }
.timeline { display: grid; }
.step { display: grid; grid-template-columns: 132px 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid var(--line-dark); }
.step:last-child { border-bottom: 1px solid var(--line-dark); }
.step .year { font-family: var(--serif); font-size: 2.7rem; line-height: 1; color: var(--copper); }
.step h3 { color: var(--bone); margin-bottom: 8px; font-size: 1.2rem; }
.step p { color: var(--muted); font-size: 1rem; line-height: 1.55; }

/* Treino */
.train-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 6vw, 90px); align-items: end; margin-bottom: clamp(36px, 5vw, 60px); }
.train-head .btn-row { margin-top: 26px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 28px); align-items: end; }
.gallery figure { position: relative; overflow: hidden; background: var(--umber); aspect-ratio: 3 / 4; }
.gallery figure:nth-child(1) { margin-bottom: 44px; }
.gallery figure:nth-child(3) { margin-bottom: 20px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figure:nth-child(1) img { object-position: 50% 20%; }
.gallery figure:nth-child(2) img { object-position: 50% 24%; }
.gallery figure:nth-child(3) img { object-position: 50% 16%; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 18px 16px; color: var(--bone);
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(0deg, rgba(15, 11, 10, .82), transparent);
}
.place {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
  margin-top: clamp(36px, 5vw, 60px); padding: 28px 32px; background: var(--ink); color: var(--bone); border-radius: var(--radius);
}
.place .pin { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--wine); color: var(--copper); }
.place h3 { font-family: var(--serif); font-weight: 400; font-size: 1.9rem; line-height: 1.1; }
.place p { color: var(--muted); font-size: .98rem; margin-top: 4px; }
.place .links { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.place .links a { font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; color: var(--copper); border-bottom: 1.5px solid currentColor; padding-bottom: 3px; }
.place .links a:hover { color: #d99b6b; }

/* Marcas */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-dark); }
.territory { padding: 34px 30px 36px 0; }
.territory + .territory { padding-left: 30px; border-left: 1px solid var(--line-dark); }
.territory .num { font-family: var(--serif); font-size: 1.1rem; color: var(--copper); letter-spacing: .1em; }
.territory h3 { font-family: var(--serif); font-weight: 400; font-size: 2.3rem; line-height: 1; margin: 14px 0 12px; color: var(--bone); }
.territory p { color: var(--muted); font-size: 1rem; }
.brand-foot { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 90px); margin-top: clamp(40px, 6vw, 72px); align-items: start; }
.brand-foot h3 { font-size: .82rem; letter-spacing: .22em; text-transform: uppercase; color: var(--copper); margin-bottom: 18px; }
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 14px; align-items: baseline; color: var(--sand); }
.checklist li::before { content: ''; width: 8px; height: 8px; background: var(--copper); border-radius: 50%; flex: none; transform: translateY(-2px); }
.cta-panel { margin-top: clamp(40px, 6vw, 72px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(28px, 4vw, 44px); background: var(--wine); border-radius: var(--radius); }
.cta-panel h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.05; max-width: 15em; color: var(--bone); }

/* Fecho */
.closing-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 7vw, 110px); align-items: center; }
.closing-photo .frame { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--umber); }
.closing-photo { position: relative; max-width: 500px; }
.closing-photo::before { content: ''; position: absolute; inset: 14px -14px -14px 14px; border: 1.5px solid var(--copper); pointer-events: none; }
.closing-photo .frame { z-index: 1; }
.closing-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.closing-copy { display: grid; gap: 26px; }
.closing-copy h2 { font-size: clamp(3.2rem, 8vw, 7rem); line-height: .88; }
.contacts { display: grid; gap: 14px; margin-top: 8px; }
.contact {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 18px; align-items: center; text-decoration: none;
  padding: 18px 22px; border: 1.5px solid var(--line-dark); border-radius: var(--radius); transition: border-color .2s, background .2s;
}
.contact:hover { border-color: var(--copper); background: rgba(197, 138, 91, .07); }
.contact .ico { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--copper); color: var(--ink); }
.contact small { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.7rem; line-height: 1.15; }
.contact .go { color: var(--copper); font-size: 1.4rem; }

/* Rodape */
.site-footer { background: var(--ink); border-top: 1px solid var(--line-dark); padding: 44px 0 52px; }
.foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 40px; }
.foot .brand { font-size: 1.7rem; }
.foot nav { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.foot nav a { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; color: var(--muted); font-weight: 600; }
.foot nav a:hover { color: var(--copper); }
.foot small { width: 100%; color: var(--muted); font-size: .85rem; }

/* Revelar ao rolar */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Redirecionamento */
.redirect { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 24px; }
.redirect h1 { font-size: clamp(3rem, 12vw, 6rem); margin-bottom: 14px; }
.redirect p { color: var(--muted); margin-bottom: 26px; }

/* Midia kit */
.kit-bar { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px max(24px, calc((100vw - 1240px) / 2)); background: rgba(15, 11, 10, .9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-dark); }
.kit-bar .btn { min-height: 44px; padding: 0 20px; font-size: .78rem; }
.kit-bar .btn-row { gap: 10px; }
.cover { position: relative; overflow: hidden; padding: clamp(36px, 6vw, 80px) 0 0; }
.cover::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px 500px at 85% 20%, rgba(75, 26, 32, .6), transparent 70%); pointer-events: none; }
.cover-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 6vw, 84px); align-items: end; }
.cover-copy { display: grid; gap: 24px; padding-bottom: clamp(36px, 5vw, 70px); }
.cover h1 { font-size: clamp(4rem, 11vw, 9.5rem); }
.cover-meta { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.cover-photo { position: relative; justify-self: end; width: min(100%, 470px); aspect-ratio: 3 / 4; overflow: hidden; background: var(--umber); border-top-left-radius: 220px; border-top-right-radius: 220px; }
.cover-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.kit-section { padding: clamp(56px, 8vw, 100px) 0; }
.kit-cols { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 6vw, 90px); align-items: start; }
.kit-cols > .side { display: grid; gap: 18px; align-content: start; position: sticky; top: 96px; }
.kit-cols h2 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.kit-cols .body { display: grid; gap: 22px; font-size: 1.1rem; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line-light); }
.fact { padding: 24px 20px 24px 0; border-bottom: 1px solid var(--line-light); }
.fact:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line-light); }
.fact b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: var(--ink); }
.fact span { display: block; margin-top: 8px; font-size: .95rem; line-height: 1.4; color: var(--ink-soft); }
.source-note { font-size: .86rem; color: var(--ink-soft); }
.on-umber .source-note, .on-dark .source-note { color: var(--muted); }
.format-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line-dark); }
.format { padding: 26px 24px 26px 0; border-bottom: 1px solid var(--line-dark); }
.format:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line-dark); }
.format h3 { color: var(--bone); margin-bottom: 6px; }
.format p { color: var(--muted); font-size: .98rem; line-height: 1.5; }
.history { display: grid; }
.history li { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-light); }
.history li:last-child { border-bottom: 1px solid var(--line-light); }
.history .when { font-family: var(--serif); font-size: 1.7rem; line-height: 1.05; color: var(--copper-deep); }
.history h3 { margin-bottom: 4px; }
.history p { font-size: .98rem; line-height: 1.5; }
.kit-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.6vw, 20px); align-items: end; }
.kit-gallery figure { aspect-ratio: 3 / 4; overflow: hidden; background: var(--umber); }
.kit-gallery figure:nth-child(2) { margin-bottom: 32px; }
.kit-gallery figure:nth-child(3) { aspect-ratio: 1 / 1; }
.kit-gallery figure:nth-child(4) { margin-bottom: 18px; }
.kit-gallery img { width: 100%; height: 100%; object-fit: cover; }
.kit-gallery figure:nth-child(1) img { object-position: 50% 30%; }
.kit-gallery figure:nth-child(2) img { object-position: 50% 26%; }
.kit-gallery figure:nth-child(3) img { object-position: 50% 50%; }
.kit-gallery figure:nth-child(4) img { object-position: 50% 12%; }
.proposal { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.proposal-copy { display: grid; gap: 22px; position: sticky; top: 96px; }
.proposal-copy h2 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); }
.direct { display: grid; gap: 12px; margin-top: 6px; }
.direct .contact { padding: 14px 18px; }
.direct .contact b { font-size: 1.4rem; }
.form { display: grid; gap: 18px; padding: clamp(24px, 3.4vw, 40px); background: var(--umber); border: 1px solid var(--line-dark); border-radius: var(--radius); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--copper); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 16px; background: var(--ink); border: 1.5px solid rgba(241, 234, 223, .22); border-radius: var(--radius); color: var(--bone);
}
.field textarea { min-height: 130px; resize: vertical; }
.field ::placeholder { color: #a3968a; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--copper); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--copper) 50%), linear-gradient(135deg, var(--copper) 50%, transparent 50%); background-position: calc(100% - 22px) 22px, calc(100% - 16px) 22px; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.form-note { font-size: .9rem; color: var(--muted); line-height: 1.5; }
.form-status { min-height: 1.4em; font-size: .95rem; color: var(--sand); }
.form-status a { color: var(--copper); font-weight: 700; }
.print-contact { display: none; }

@media (max-width: 1020px) {
  .nav-links { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink); border-bottom: 1px solid var(--line-dark); padding: 8px 24px 20px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
  .nav-links .nav-cta { margin-top: 14px; text-align: center; border-bottom: 0; padding: 15px 20px; }
  .menu-button { display: inline-block; }
  .hero-grid, .about-grid, .path-grid, .closing-grid, .train-head, .brand-foot, .proposal, .kit-cols, .cover-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; justify-self: center; width: min(100%, 460px); margin: 0 14px 0 0; }
  .hero-copy { margin-top: 40px; }
  .path-photo, .kit-cols > .side, .proposal-copy { position: static; }
  .path-photo { max-width: 460px; }
  .about-photos { max-width: 520px; }
  .cover-photo { order: -1; justify-self: center; width: min(100%, 420px); }
  .cover-copy { padding-bottom: 48px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .place { grid-template-columns: auto 1fr; }
  .place .links { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  :root { --shell: min(100% - 32px, 1240px); }
  body { font-size: 1rem; }
  .site-header, .kit-bar { padding-inline: 16px; }
  .brand { font-size: 1.35rem; }
  .brand img { width: 40px; height: 40px; }
  .hero { padding-top: 20px; }
  h1 { font-size: clamp(4rem, 21vw, 6.4rem); }
  .badge { left: -8px; bottom: 22px; padding: 12px 16px 10px; }
  .badge b { font-size: 2.1rem; }
  .hero-photo { margin-right: 12px; }
  .hero-photo::before { inset: 12px -12px -12px 12px; }
  .btn-row .btn { flex: 1 1 100%; }
  .stat { padding: 26px 16px 26px 18px; }
  .stat:first-child, .stat:nth-child(3) { padding-left: 0; }
  .pillars { grid-template-columns: 1fr; }
  .pillar, .pillar + .pillar { padding: 20px 0; border-left: 0; border-bottom: 1px solid var(--line-light); }
  .about-photos { padding-right: 34px; padding-bottom: 64px; }
  .step { grid-template-columns: 1fr; gap: 6px; padding: 26px 0; }
  .step .year { font-size: 2.3rem; }
  .gallery { display: flex; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; padding-bottom: 8px; margin-inline: -16px; padding-inline: 16px; align-items: stretch; -webkit-overflow-scrolling: touch; }
  .gallery figure { flex: 0 0 74%; margin-bottom: 0 !important; scroll-snap-align: center; }
  .place { grid-template-columns: 1fr; padding: 24px 22px; gap: 16px; }
  .brand-grid { grid-template-columns: 1fr; }
  .territory, .territory + .territory { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line-dark); }
  .brand-foot { gap: 34px; }
  .cta-panel .btn { width: 100%; }
  .contact { grid-template-columns: 46px 1fr auto; padding: 14px 16px; gap: 14px; }
  .contact .ico { width: 46px; height: 46px; }
  .contact b { font-size: 1.4rem; }
  .facts, .format-list { grid-template-columns: 1fr; }
  .fact:nth-child(even), .format:nth-child(even) { padding-left: 0; border-left: 0; }
  .history li { grid-template-columns: 1fr; gap: 4px; }
  .kit-gallery { grid-template-columns: repeat(2, 1fr); }
  .kit-gallery figure:nth-child(n) { margin-bottom: 0; }
  .form .row { grid-template-columns: 1fr; }
  .kit-bar .btn-ghost { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .gallery img { transition: none; }
}

@media print {
  @page { size: A4; margin: 12mm; }
  html { scroll-behavior: auto; }
  body { background: #fff; color: #0f0b0a; font-size: 10.5pt; line-height: 1.5; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .kit-bar, .form, .direct, .no-print, .skip-link, .btn-row { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .cover, .on-umber, .on-dark { background: #0f0b0a !important; color: #f1eadf !important; }
  .kit-section, .cover { break-inside: avoid; page-break-inside: avoid; padding: 8mm 0; }
  .cover-grid, .kit-cols, .proposal { gap: 8mm; }
  .cover h1 { font-size: 64pt; }
  h2 { font-size: 30pt; }
  .kit-cols > .side, .proposal-copy { position: static; }
  .kit-gallery { grid-template-columns: repeat(4, 1fr); }
  .print-contact { display: grid; gap: 6px; margin-top: 12px; font-size: 12pt; }
  a { text-decoration: none; }
}
