:root {
  --ink: #080808;
  --ink-soft: #111111;
  --paper: #f1efe9;
  --paper-deep: #dedbd3;
  --muted: #999999;
  --line: rgba(255, 255, 255, 0.17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--paper); color: var(--ink); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 120px clamp(24px, 7vw, 110px);
}

.section-index {
  margin-bottom: 70px;
  color: #555;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-index-dark { color: #767676; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 0 4.5vw;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; width: max-content; }
.brand-logo {
  display: block;
  width: clamp(132px, 11vw, 172px);
  height: auto;
}
.footer-logo {
  display: block;
  width: 112px;
  height: auto;
}
.brand-number {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  transform: rotate(-7deg);
}
.brand-copy { display: flex; flex-direction: column; text-transform: uppercase; }
.brand-copy strong { font-size: 1rem; letter-spacing: 0.16em; }
.brand-copy small { margin-top: 3px; color: #bcbcbc; font-size: 0.58rem; letter-spacing: 0.18em; }

.main-nav {
  display: flex;
  gap: clamp(22px, 2.6vw, 46px);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.main-nav a, .header-instagram { position: relative; }
.main-nav a::after, .header-instagram::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.main-nav a:hover::after, .header-instagram:hover::after { transform: scaleX(1); transform-origin: left; }
.header-instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: end;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.header-instagram svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.header-instagram .icon-dot { fill: currentColor; stroke: none; }

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 55%;
  min-height: 100svh;
  padding: 150px 3vw 90px 7vw;
  background: linear-gradient(90deg, #080808 0%, #080808 73%, rgba(8, 8, 8, 0) 100%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: #cfcfcf;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.eyebrow::before { width: 38px; height: 1px; background: currentColor; content: ""; }
.eyebrow-dark { color: #585858; }

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.4rem, 8.1vw, 9.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.84;
  text-transform: uppercase;
}
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 1.5px var(--paper); }
.hero-description { max-width: 500px; margin: 34px 0 0; color: #c7c7c7; font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.button-light { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.button-dark { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.button:hover { transform: translateY(-2px); }
.button-light:hover { background: transparent; color: var(--paper); }
.button-dark:hover { background: transparent; color: var(--ink); }

.text-link { font-size: 0.71rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.text-link span { display: inline-block; margin-left: 8px; transition: transform 180ms ease; }
.text-link:hover span { transform: translateY(4px); }

.hero-photo { position: absolute; z-index: 1; inset: 0 0 0 43%; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; filter: grayscale(100%) contrast(1.08); }
.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.3) 29%, rgba(8, 8, 8, 0.04) 72%), linear-gradient(0deg, rgba(8, 8, 8, 0.5), transparent 40%);
}
.hero-tag { position: absolute; z-index: 3; right: 4.5vw; bottom: 34px; margin: 0; color: #d1d1d1; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.21em; text-transform: uppercase; }

.manifesto { background: var(--paper); color: var(--ink); }
.manifesto-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); gap: 10vw; align-items: start; }
.manifesto h2, .location h2, .join h2, .principles-heading h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.4rem, 6.5vw, 7.7rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}
.manifesto h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px var(--ink); }
.manifesto-copy { padding-top: 12px; color: #3f3f3f; font-size: 1rem; line-height: 1.75; }
.manifesto-copy .lead { margin-top: 0; color: var(--ink); font-size: clamp(1.15rem, 1.55vw, 1.45rem); font-weight: 700; line-height: 1.48; }

.territory-strip { display: grid; grid-template-columns: 0.8fr 2fr; gap: 30px; align-items: center; margin-top: 110px; padding: 30px 0; border-top: 1px solid #bdbab2; border-bottom: 1px solid #bdbab2; }
.territory-strip > span { color: #666; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.territory-strip ul { display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: flex-end; margin: 0; padding: 0; list-style: none; }
.territory-strip li { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(1.25rem, 2vw, 2rem); letter-spacing: 0.02em; text-transform: uppercase; }
.territory-strip li:not(:last-child)::after { margin-left: 30px; color: #aaa; content: "•"; }

.principles { background: var(--ink); }
.principles-heading { display: flex; justify-content: space-between; gap: 50px; align-items: flex-end; }
.principles-heading h2 { max-width: 800px; }
.principles-heading p { max-width: 360px; margin: 0 0 5px; color: #aaa; font-size: 1rem; line-height: 1.6; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principles-grid article { min-height: 320px; padding: 32px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles-grid article > span { color: #666; font-family: monospace; font-size: 0.7rem; }
.principles-grid h3 { margin: 100px 0 16px; font-size: 1.25rem; letter-spacing: 0.03em; text-transform: uppercase; }
.principles-grid p { margin: 0; color: #969696; font-size: 0.93rem; line-height: 1.7; }

.road-quote { display: grid; place-items: center; min-height: 68vh; padding: 90px 7vw; background: #151515; text-align: center; }
.road-quote p { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(3.8rem, 8vw, 9rem); letter-spacing: -0.02em; line-height: 0.9; text-transform: uppercase; }
.road-quote span { display: block; color: transparent; -webkit-text-stroke: 1.4px var(--paper); }

.location { background: var(--paper); color: var(--ink); }
.location-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 7vw; align-items: stretch; }
.location-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.location h2 { font-size: clamp(3.2rem, 5.3vw, 6.2rem); }
.location address { margin: 38px 0 30px; color: #555; font-size: 1rem; font-style: normal; line-height: 1.7; }
.map-frame { min-height: 540px; overflow: hidden; border: 1px solid #bdbab2; background: #d7d4cd; filter: grayscale(1) contrast(1.05); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.join { background: var(--ink); }
.join-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 9vw; }
.join-copy h2 { font-size: clamp(3.5rem, 6vw, 7rem); }
.join-copy > p:not(.eyebrow) { max-width: 520px; margin: 35px 0; color: #aaa; line-height: 1.75; }
.inline-contact { display: inline-flex; align-items: center; gap: 16px; margin-top: 15px; }
.inline-contact svg { width: 34px; fill: currentColor; }
.inline-contact span { display: flex; flex-direction: column; color: #888; font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; }
.inline-contact strong { margin-top: 5px; color: var(--paper); font-size: 0.9rem; letter-spacing: 0.06em; }

.join-form { display: flex; flex-direction: column; gap: 25px; padding-top: 6px; }
.form-alert { padding: 15px 18px; border: 1px solid currentColor; font-size: 0.82rem; font-weight: 700; line-height: 1.5; }
.form-alert-success { color: #f1efe9; }
.form-alert-error { color: #d4d0c8; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.join-form label { display: flex; flex-direction: column; gap: 10px; }
.join-form label > span { color: #aaa; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.join-form input, .join-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #505050;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--paper);
  font-size: 1rem;
  transition: border-color 160ms ease;
}
.join-form input { height: 48px; }
.join-form textarea { min-height: 130px; padding: 12px 0; resize: vertical; }
.join-form input:focus, .join-form textarea:focus { border-color: var(--paper); }
.join-form input::placeholder, .join-form textarea::placeholder { color: #5d5d5d; }
.consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 12px !important; align-items: start; }
.consent input { width: 17px; height: 17px; margin: 0; accent-color: var(--paper); }
.consent span { color: #858585 !important; font-size: 0.68rem !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.form-submit { align-self: flex-start; margin-top: 5px; }
.form-note { margin: -12px 0 0; color: #626262; font-size: 0.67rem; line-height: 1.45; }
.honey-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 45px 4.5vw; border-top: 1px solid var(--line); background: var(--ink); color: #888; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-brand { color: var(--paper); }
.footer p { margin: 0; }
.footer > a:hover { color: var(--paper); }

.whatsapp-float {
  position: fixed;
  z-index: 20;
  right: 28px;
  bottom: 28px;
  display: flex;
  width: 61px;
  height: 61px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.whatsapp-float > svg {
  position: relative;
  z-index: 2;
  display: block;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin: 0;
  fill: currentColor;
}
.whatsapp-pulse { position: absolute; inset: 0; border: 1px solid var(--paper); border-radius: inherit; animation: whatsapp-ring 1.8s ease-out infinite; }
.whatsapp-label { position: absolute; right: 72px; width: max-content; padding: 9px 12px; background: var(--paper); color: var(--ink); font-size: 0.64rem; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; opacity: 0; transform: translateX(7px); transition: opacity 160ms ease, transform 160ms ease; pointer-events: none; }
.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }
@keyframes whatsapp-ring { 0% { opacity: 0.65; transform: scale(1); } 75%, 100% { opacity: 0; transform: scale(1.65); } }

@media (max-width: 1050px) {
  .main-nav { display: none; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .join-grid, .location-grid { gap: 5vw; }
}

@media (max-width: 820px) {
  .section-shell { padding: 90px 24px; }
  .section-index { margin-bottom: 48px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 78px; padding: 0 20px; }
  .hero-photo { inset: 0; }
  .hero-photo img { object-position: 56% center; }
  .photo-shade { background: linear-gradient(0deg, rgba(8, 8, 8, 0.97) 2%, rgba(8, 8, 8, 0.57) 58%, rgba(8, 8, 8, 0.35) 100%); }
  .hero-copy { justify-content: flex-end; width: 100%; padding: 122px 22px 92px; background: none; }
  .hero h1 { font-size: clamp(4.15rem, 20vw, 7rem); }
  .manifesto-grid, .location-grid, .join-grid { grid-template-columns: 1fr; }
  .manifesto-grid, .join-grid { gap: 55px; }
  .territory-strip { grid-template-columns: 1fr; margin-top: 75px; }
  .territory-strip ul { justify-content: flex-start; }
  .principles-heading { display: block; }
  .principles-heading p { margin-top: 30px; }
  .map-frame { min-height: 430px; }
  .location-copy { margin-bottom: 25px; }
}

@media (max-width: 560px) {
  .brand-logo { width: 126px; }
  .header-instagram span { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-actions .button { width: 100%; }
  .hero-tag { display: none; }
  .manifesto h2, .location h2, .join h2, .principles-heading h2 { font-size: clamp(3rem, 15vw, 5rem); }
  .territory-strip li { width: 100%; }
  .territory-strip li::after { display: none; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid article { min-height: 250px; }
  .principles-grid h3 { margin-top: 70px; }
  .road-quote { min-height: 58vh; }
  .field-row { grid-template-columns: 1fr; gap: 25px; }
  .form-submit { width: 100%; }
  .footer { align-items: flex-start; flex-direction: column; }
  .footer > p { display: none; }
  .whatsapp-float { right: 18px; bottom: 18px; width: 57px; height: 57px; }
  .whatsapp-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
