@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/inter-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-bg: #f8f6f1;
  --color-surface: #ffffff;
  --color-travertine: #e8e1d5;
  --color-linen: #dcceb9;
  --color-text: #2f3134;
  --color-accent: #b08a57;
  --color-olive: #6f7860;
  --color-muted: #646568;
  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(47, 49, 52, 0.032) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--color-bg);
  color: var(--color-text);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.625;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--color-text);
  color: var(--color-bg);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow-x: clip;
}

.site-header,
.site-main,
.site-footer {
  width: min(calc(100% - 128px), var(--container));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 116px;
  border-bottom: 1px solid rgba(47, 49, 52, 0.12);
  animation: reveal 760ms var(--ease) both;
}

.brand-logo {
  width: 148px;
  height: auto;
  opacity: 1;
  filter: none;
}

.domain-mark {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.site-main {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.transition-copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / span 7;
  max-width: 750px;
  padding-block: clamp(36px, 5.5vh, 64px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: reveal 700ms 80ms var(--ease) both;
}

.eyebrow span { width: 36px; height: 1px; background: var(--color-accent); }

h1, h2, p { text-wrap: pretty; }

h1 {
  max-width: 730px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(52px, 5.15vw, 76px);
  font-weight: 350;
  letter-spacing: -0.055em;
  line-height: 1.06;
  animation: reveal 780ms 150ms var(--ease) both;
}

h1 span { display: block; color: var(--color-olive); }

.lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--color-text);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.5;
  animation: reveal 760ms 230ms var(--ease) both;
}

.narrative {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.625;
  animation: reveal 760ms 290ms var(--ease) both;
}

.transition-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.82fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  max-width: 730px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(47, 49, 52, 0.18);
  animation: reveal 780ms 380ms var(--ease) both;
}

.coming-soon {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.coming-soon__index {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.8;
}

.coming-soon h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.coming-soon p { margin: 4px 0 0; color: var(--color-muted); font-size: 15px; }

.contact {
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid rgba(47, 49, 52, 0.13);
}

.contact h2 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.contact address {
  display: grid;
  gap: 2px;
  font-style: normal;
}

.contact a {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  min-height: 38px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.contact a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 68px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}

.contact a:hover::after,
.contact a:focus-visible::after {
  transform: scaleX(1);
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--color-olive);
}

.contact a:active {
  color: var(--color-text);
  transform: translateY(1px);
}

.contact a:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.contact__label {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__value {
  min-width: 0;
  color: inherit;
}

.contact__whatsapp .contact__value {
  font-weight: 500;
}

.contact__arrow {
  display: inline-block;
  margin-left: 0.18em;
  color: var(--color-accent);
  transition: transform 160ms ease;
}

.contact__whatsapp:hover .contact__arrow,
.contact__whatsapp:focus-visible .contact__arrow {
  transform: translateX(3px);
}

.resonance-field {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -260px;
  width: min(50vw, 720px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.72;
}

.resonance-field span {
  position: absolute;
  border: 1px solid rgba(176, 138, 87, 0.11);
  border-radius: 50%;
}

.resonance-field span:nth-child(1) {
  inset: 0;
  border-left-color: transparent;
  transform: rotate(-12deg);
}

.resonance-field span:nth-child(2) {
  inset: 13%;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(16deg);
}

.resonance-field span:nth-child(3) {
  inset: 26%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(44deg);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  border-top: 1px solid rgba(47, 49, 52, 0.12);
  color: var(--color-muted);
  font-size: 12px;
}

.site-footer p { margin: 0; }

.site-footer p:first-child {
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

@media (max-width: 1180px) {
  .site-header, .site-main, .site-footer { width: calc(100% - 96px); }
  .transition-copy { grid-column: 1 / span 8; }
  .resonance-field { right: -270px; width: 610px; opacity: 0.65; }
}

@media (max-width: 1023px) {
  body {
    background:
      linear-gradient(90deg, rgba(47, 49, 52, 0.03) 1px, transparent 1px) 0 0 / 25% 100%,
      var(--color-bg);
  }
  .site-header, .site-main, .site-footer { width: calc(100% - 64px); }
  .site-header { min-height: 104px; }
  .site-main { display: block; }
  .transition-copy { max-width: 650px; padding-block: 56px 72px; }
  .transition-actions { grid-template-columns: 1fr; gap: 26px; }
  .contact { padding: 24px 0 0; border-top: 1px solid rgba(47, 49, 52, 0.13); border-left: 0; }
  .contact address { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .contact a { grid-template-columns: 1fr; min-height: 54px; }
  .contact a::after { left: 0; }
  .resonance-field { top: auto; right: -260px; bottom: 30px; width: 520px; transform: none; opacity: 0.5; }
}

@media (max-width: 767px) {
  .site-header, .site-main, .site-footer { width: calc(100% - 40px); }
  .site-header { min-height: 88px; }
  .brand-logo { width: 116px; }
  .domain-mark { font-size: 11px; letter-spacing: 0.05em; }
  .transition-copy { padding-block: 48px 60px; }
  .eyebrow { gap: 10px; margin-bottom: 22px; font-size: 11px; letter-spacing: 0.1em; }
  .eyebrow span { width: 24px; }
  h1 { max-width: 100%; font-size: clamp(40px, 12.2vw, 48px); letter-spacing: -0.052em; line-height: 1.08; }
  .lead { margin-top: 26px; font-size: 18px; line-height: 1.55; }
  .narrative { margin-top: 14px; font-size: 15px; line-height: 1.65; }
  .transition-actions { gap: 28px; margin-top: 36px; padding-top: 20px; }
  .coming-soon { gap: 14px; }
  .coming-soon h2 { font-size: 18px; }
  .coming-soon p { font-size: 14px; }
  .contact { padding-top: 22px; }
  .contact h2 { margin-bottom: 8px; font-size: 16px; }
  .contact address { grid-template-columns: 1fr; gap: 4px; }
  .contact a { grid-template-columns: 80px minmax(0, 1fr); min-height: 52px; font-size: 15px; }
  .contact a::after { left: 80px; bottom: 7px; }
  .resonance-field { top: auto; right: -245px; bottom: 12px; width: 360px; opacity: 0.44; }
  .site-footer { align-items: flex-start; min-height: 80px; padding-block: 20px; }
  .site-footer p:last-child { max-width: 190px; text-align: right; }
}

@media (max-width: 370px) {
  .domain-mark { display: none; }
  h1 { font-size: 40px; }
}

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

@media (forced-colors: active) {
  .eyebrow span, .resonance-field span { border-color: CanvasText; }
}
