/* === Tokens === */
:root {
  --ink: #0B1B2C;
  --ink-2: #14283D;
  --ink-soft: #2A3B50;
  --paper: #F6F2EA;
  --paper-2: #ECE4D2;
  --paper-3: #E2D9C3;
  --sand: #C9A973;
  --sand-deep: #A7864E;
  --sand-soft: rgba(201, 169, 115, 0.18);
  --muted: #6B6F75;
  --line: rgba(11, 27, 44, 0.12);
  --line-ink: rgba(246, 242, 234, 0.18);

  --display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --body: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* === Typography === */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sand-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--sand-deep);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--sand); }
.eyebrow.on-dark::before { background: var(--sand); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 7.4vw, 116px); line-height: 0.98; font-weight: 300; }
h2 { font-size: clamp(36px, 4.8vw, 72px); line-height: 1.02; }
h3 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; }
.serif-it { font-style: italic; font-family: var(--display); }

p { margin: 0 0 1.1em; }
.lede { font-size: clamp(16px, 1.25vw, 19px); line-height: 1.65; color: var(--ink-soft); max-width: 60ch; text-wrap: pretty; }

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(80px, 11vw, 160px) 0; position: relative; }
section.tight { padding: clamp(60px, 8vw, 110px) 0; }

/* === Header === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 350ms ease, padding 350ms ease, border-color 350ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.site-header.scrolled .nav-links a,
.site-header.scrolled .brand { color: var(--ink); }
.site-header.scrolled .nav-cta {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
  text-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.scrolled .nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.site-header.scrolled .menu-toggle { color: var(--ink); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex; align-items: center;
  color: var(--paper);
  transition: color 350ms ease;
  text-decoration: none;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}
.brand-text .name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.005em;
  color: var(--paper);
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
  transition: color 350ms ease, text-shadow 350ms ease;
}
.brand-text .role {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  transition: color 350ms ease;
}
.site-header.scrolled .brand-text .name {
  color: var(--ink);
  text-shadow: none;
}
.site-header.scrolled .brand-text .role {
  color: var(--sand-deep);
}
@media (max-width: 540px) {
  .brand-text .name { font-size: 24px; }
  .brand-text .role { font-size: 8.5px; letter-spacing: 0.28em; }
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav-links {
  display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--paper);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  font-weight: 500;
  position: relative;
  transition: color 350ms ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--paper);
  color: var(--paper);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 350ms ease;
}
.nav-cta:hover { background: var(--sand); border-color: var(--sand); color: var(--ink); }

.nav-guide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease;
}
.nav-guide:hover { color: var(--sand); }
.site-header.scrolled .nav-guide { color: var(--ink); }
.site-header.scrolled .nav-guide:hover { color: var(--sand-deep); }
@media (max-width: 1080px) { .nav-guide { display: none; } }
.menu-toggle { display: none; background: none; border: 0; color: var(--paper); padding: 8px; }
.site-header.scrolled .menu-toggle { color: var(--ink); }

/* Strengthen header text contrast over hero */
.site-header:not(.scrolled) .brand,
.site-header:not(.scrolled) .nav-links a,
.site-header:not(.scrolled) .nav-cta {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.site-header:not(.scrolled) .nav-links a {
  color: #FFFDF7;
  font-weight: 500;
}
.site-header:not(.scrolled) .nav-cta {
  background: rgba(8, 18, 30, 0.45);
  border-color: rgba(246, 242, 234, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header:not(.scrolled) .brand-mark {
  background: rgba(8, 18, 30, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 115%;
  object-fit: cover; object-position: center 60%;
  transform: scale(1.08);
  animation: heroZoom 24s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.18) translateY(-2%); }
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,18,30,0.78) 0%, rgba(11,27,44,0.40) 30%, rgba(11,27,44,0.55) 62%, rgba(8,18,30,0.96) 100%),
    linear-gradient(90deg, rgba(8,18,30,0.55) 0%, rgba(11,27,44,0) 60%);
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-inner {
  padding-bottom: clamp(72px, 9vw, 130px);
  padding-top: 200px;
  width: 100%;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.hero-badges span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 15px;
  border: 1px solid rgba(246, 242, 234, 0.42);
  background: rgba(8, 18, 30, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--paper);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.hero h1 {
  max-width: 16ch;
  margin-bottom: 32px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-family: var(--display);
  font-style: italic;
  color: var(--sand);
  font-weight: 300;
}
.hero-sub {
  max-width: 56ch;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: rgba(246, 242, 234, 0.92);
  margin-bottom: 44px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.4);
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 400ms cubic-bezier(0.2,0.8,0.2,1), background 350ms ease, color 350ms ease, border-color 350ms ease;
  cursor: pointer;
  background: var(--ink);
  color: var(--paper);
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform 400ms cubic-bezier(0.2,0.8,0.2,1); }
.btn:hover .arrow { transform: translateX(6px); }
.btn--sand { background: var(--sand); color: var(--ink); }
.btn--sand:hover { background: #d6b885; }
.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(246,242,234,0.45); }
.btn--ghost:hover { background: rgba(246,242,234,0.08); border-color: var(--paper); }
.btn--ink-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ink-ghost:hover { background: var(--ink); color: var(--paper); }

.hero-scroll {
  position: absolute;
  bottom: 30px; right: var(--gutter);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.7);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 18px;
}
.hero-scroll .line {
  width: 1px; height: 60px; background: rgba(246,242,234,0.5);
  position: relative; overflow: hidden;
}
.hero-scroll .line::after {
  content: ""; position: absolute; left: 0; right: 0; top: -60px; height: 60px;
  background: var(--sand);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -60px; }
  100% { top: 100%; }
}

/* === Marquee Ticker === */
.ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  border-block: 1px solid var(--line-ink);
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 38s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.005em;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 60px; }
.ticker-track .dot {
  width: 6px; height: 6px; background: var(--sand); border-radius: 50%;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === Problem / Opportunity === */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 7vw, 110px);
  margin-bottom: clamp(50px, 7vw, 96px);
  align-items: start;
}
.section-head .lede { margin-top: 14px; }
.section-head h2 em {
  font-family: var(--display);
  font-style: italic;
  color: var(--sand-deep);
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }

.figure-frame {
  position: relative;
  overflow: hidden;
}
.figure-frame .parallax {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
}
.figure-frame.in-view .parallax { transform: scale(1); }
.figure-frame::after {
  content: attr(data-cap);
  position: absolute; left: 16px; bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.figure-tall { aspect-ratio: 4 / 5; }
.figure-wide { aspect-ratio: 16 / 10; }
.figure-square { aspect-ratio: 1 / 1; }

/* === Services === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--paper);
  padding: clamp(34px, 4vw, 56px);
  display: flex; flex-direction: column;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  transition: background 400ms ease, color 400ms ease;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 700ms cubic-bezier(0.7, 0, 0.2, 1);
  z-index: 0;
}
.service:hover::before { transform: translateY(0); }
.service:hover { color: var(--paper); }
.service:hover .service-num { color: var(--sand); border-color: var(--sand); }
.service:hover .service-arrow { color: var(--sand); transform: translate(4px, -4px); }
.service > * { position: relative; z-index: 1; }
.service-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  padding: 6px 10px;
  border: 1px solid var(--line);
  transition: color 400ms ease, border-color 400ms ease;
}
.service-arrow {
  font-family: var(--display);
  font-size: 28px;
  color: var(--ink);
  transition: transform 500ms ease, color 400ms ease;
}
.service h3 { margin-bottom: 18px; }
.service h3 em { font-style: italic; color: var(--sand-deep); }
.service:hover h3 em { color: var(--sand); }
.service-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 42ch;
}
.service:hover .service-body { color: rgba(246,242,234,0.78); }
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .service { min-height: 280px; }
}

/* === Why Batumi (dark slab) === */
.why {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/batumi-skyline-mountains.jpg");
  background-size: cover; background-position: center;
  opacity: 0.18;
  filter: saturate(0.6);
}
.why::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,27,44,0.65) 0%, rgba(11,27,44,0.92) 60%, var(--ink) 100%);
}
.why > .container { position: relative; z-index: 2; }
.why h2 em { color: var(--sand); font-style: italic; }
.why .lede { color: rgba(246,242,234,0.8); }
.why .eyebrow { color: var(--sand); }
.why .eyebrow::before { background: var(--sand); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-ink);
  border-block: 1px solid var(--line-ink);
  margin-top: clamp(60px, 7vw, 90px);
}
.why-tile {
  background: var(--ink);
  padding: clamp(34px, 3.4vw, 52px);
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.why-tile .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 12px;
}
.why-tile h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 8px;
}
.why-tile p {
  font-size: 14px;
  color: rgba(246,242,234,0.7);
  margin: 0;
  max-width: 36ch;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-note {
  margin-top: clamp(50px, 6vw, 80px);
  max-width: 70ch;
  padding: 28px 32px;
  border-left: 2px solid var(--sand);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(246,242,234,0.85);
}

/* === Investitori (business quality) === */
.investors { background: var(--paper); }

/* New editorial intro: 2-col text rhythm */
.investors-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  margin-bottom: clamp(50px, 5vw, 80px);
  align-items: start;
}
.investors-intro .lede { margin: 0; max-width: 52ch; }
.investors-intro .lede + .lede { margin-top: 0; }
@media (max-width: 880px) {
  .investors-intro { grid-template-columns: 1fr; gap: 24px; }
}

/* Wide pull-quote slab below pillars */
.investors-quote-wide {
  margin: clamp(40px, 5vw, 70px) 0 0;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(50px, 5vw, 80px) clamp(36px, 5vw, 80px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(30px, 4vw, 70px);
  align-items: start;
  position: relative;
  overflow: hidden;
}
.investors-quote-wide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--sand);
}
.investors-quote-wide .mark {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(90px, 11vw, 160px);
  color: var(--sand);
  line-height: 0.55;
  margin-top: 8px;
  font-weight: 300;
}
.investors-quote-wide blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.25;
  margin: 0 0 26px;
  max-width: 32ch;
  letter-spacing: -0.01em;
}
.investors-quote-wide blockquote em {
  color: var(--sand);
  font-style: italic;
}
.investors-quote-wide .by {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.65);
}
.investors-quote-wide .by strong { color: var(--paper); font-weight: 500; }
@media (max-width: 720px) {
  .investors-quote-wide { grid-template-columns: 1fr; gap: 18px; padding-left: clamp(28px, 6vw, 40px); }
  .investors-quote-wide .mark { font-size: 80px; line-height: 0.5; }
}

/* Legacy 2-col layout (kept for backwards-compat, not used) */
.investors-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: stretch;
  margin-bottom: clamp(40px, 5vw, 70px);
}
@media (max-width: 880px) { .investors-top { grid-template-columns: 1fr; } }
.investors-quote {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(36px, 4vw, 58px);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  min-height: 280px;
}
.investors-quote .mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 96px;
  color: var(--sand);
  line-height: 0.6;
  margin-bottom: 18px;
}
.investors-quote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.35;
  margin: 0 0 28px;
  font-weight: 400;
  max-width: 28ch;
}
.investors-quote blockquote em { color: var(--sand); }
.investors-quote .by {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.65);
}
.investors-quote .by strong { color: var(--paper); font-weight: 500; }
.investors-lede { display: flex; flex-direction: column; justify-content: center; }

.investors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.investor-pillar {
  background: var(--paper);
  padding: clamp(28px, 2.6vw, 40px) clamp(24px, 2.4vw, 36px);
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.investor-pillar .pn {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--sand-deep);
}
.investor-pillar h4 {
  font-family: var(--display);
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.15;
  margin: 22px 0 12px;
  font-weight: 400;
}
.investor-pillar h4 em { font-style: italic; color: var(--sand-deep); }
.investor-pillar p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 1000px) { .investors-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .investors-grid { grid-template-columns: 1fr; } }

/* === Errori tipici === */
.mistakes { background: var(--paper-3); position: relative; }
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .mistakes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .mistakes-grid { grid-template-columns: 1fr; } }

.mistake {
  background: var(--paper);
  padding: clamp(26px, 2.6vw, 36px);
  border-top: 2px solid var(--ink);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 500ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 400ms ease;
}
.mistake:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -22px rgba(11,27,44,0.3);
}
.mistake-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mistake-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink);
}
.mistake-x {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}
.mistake h4 {
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 14px;
}
.mistake h4 em { font-style: italic; color: var(--sand-deep); }
.mistake p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.mistakes-callout {
  margin-top: clamp(40px, 4vw, 60px);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 880px) { .mistakes-callout { grid-template-columns: 1fr; } }
.mistakes-callout h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  margin: 14px 0 16px;
  color: var(--paper);
}
.mistakes-callout h3 em { font-style: italic; color: var(--sand); }
.mistakes-callout p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(246,242,234,0.8);
  margin: 0;
}
.callout-network {
  display: flex; flex-direction: column; gap: 14px;
  padding-left: clamp(0px, 2vw, 28px);
  border-left: 1px solid var(--line-ink);
}
@media (max-width: 880px) {
  .callout-network { border-left: 0; border-top: 1px solid var(--line-ink); padding-left: 0; padding-top: 24px; }
}
.network-row {
  display: flex; align-items: baseline; gap: 14px;
}
.network-row .city {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--sand);
  min-width: 90px;
  font-weight: 400;
}
.network-row .desc {
  font-size: 14px;
  color: rgba(246,242,234,0.78);
  line-height: 1.5;
}

/* === Method === */
.method-list { display: flex; flex-direction: column; }
.method-step {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: clamp(20px, 4vw, 60px);
  align-items: baseline;
  padding: clamp(28px, 3.4vw, 44px) 0;
  border-top: 1px solid var(--line);
  transition: padding 400ms ease;
  position: relative;
}
.method-step:last-child { border-bottom: 1px solid var(--line); }
.method-step:hover { padding-left: 14px; }
.method-num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--sand-deep);
}
.method-body h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: 10px;
  font-weight: 400;
}
.method-body p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}
.method-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .method-step { grid-template-columns: 60px 1fr; }
  .method-tag { grid-column: 2; padding-top: 8px; }
}

/* === Stats / I numeri === */
.stats { background: var(--paper); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.stat {
  background: var(--paper);
  padding: clamp(36px, 4vw, 60px) clamp(28px, 3vw, 44px);
  min-height: 300px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 400ms ease;
}
.stat:hover { background: #FBF7EE; }
.stat .figure {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(60px, 6.8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 28px;
}
.stat .figure .lead {
  font-size: 0.42em;
  font-style: italic;
  color: var(--sand-deep);
  font-weight: 400;
  margin-right: 4px;
  line-height: 1;
  position: relative;
  top: -0.45em;
}
.stat .figure .accent { color: var(--sand-deep); }
.stat .figure .sub {
  font-size: 0.32em;
  font-style: italic;
  color: var(--ink-soft);
  margin-left: 4px;
}
.stat .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.stat .desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 34ch;
}
.stat .source {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (max-width: 980px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; } }

.stats-cta {
  margin-top: clamp(50px, 5vw, 70px);
  padding: clamp(36px, 4vw, 56px);
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.stats-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/batumi-aerial-night.jpg");
  background-size: cover; background-position: center;
  opacity: 0.10;
  filter: saturate(0.5);
}
.stats-cta > * { position: relative; z-index: 1; }
@media (max-width: 760px) { .stats-cta { grid-template-columns: 1fr; } }
.stats-cta h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.25;
  margin: 14px 0 14px;
  color: var(--paper);
  max-width: 24ch;
}
.stats-cta h3 em { font-style: italic; color: var(--sand); }
.stats-cta p {
  margin: 0;
  color: rgba(246,242,234,0.78);
  font-size: 15px;
  line-height: 1.6;
  max-width: 56ch;
}

/* === Listings (legacy, kept for backwards-compat if reverted) === */
.listings {
  background: var(--paper-2);
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.listing {
  background: var(--paper);
  display: flex; flex-direction: column;
  transition: transform 600ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 400ms ease;
  cursor: pointer;
}
.listing:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -20px rgba(11,27,44,0.25);
}
.listing-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.listing-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
}
.listing:hover .listing-media img { transform: scale(1.06); }
.listing-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 7px 11px;
  background: var(--paper);
  color: var(--ink);
}
.listing-tag.sand { background: var(--sand); color: var(--ink); }
.listing-body {
  padding: 26px 24px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.listing-zone {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-deep);
}
.listing h3 {
  font-size: 25px;
  margin: 0;
  font-weight: 400;
}
.listing-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}
.listing-price {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}
.listing-price small {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.listing-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
}
.listing-cta::after {
  content: "→";
  transition: transform 350ms ease;
}
.listing:hover .listing-cta::after { transform: translateX(4px); }
@media (max-width: 980px) { .listings-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .listings-grid { grid-template-columns: 1fr; } }

.listings-note {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 28px; flex-wrap: wrap;
}
.listings-note p {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* === About === */
.about {
  background: var(--paper);
}
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
@media (max-width: 880px) { .about-inner { grid-template-columns: 1fr; } }
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s cubic-bezier(0.2,0.8,0.2,1);
}
.about-photo:hover img { transform: scale(1.1); }
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,27,44,0.4) 100%);
}
.about-photo .sig {
  position: absolute; bottom: 24px; left: 24px;
  color: var(--paper);
  z-index: 2;
}
.about-photo .sig h4 {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}
.about-photo .sig p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 4px 0 0;
  color: var(--sand);
}
.about-body h2 { margin-bottom: 30px; }
.about-body h2 em { font-style: italic; color: var(--sand-deep); }
.about-body p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 60ch; }
.about-body p strong { color: var(--ink); font-weight: 600; }
.about-stats {
  display: flex; gap: 36px;
  padding: 28px 0; margin: 36px 0;
  border-block: 1px solid var(--line);
}
.about-stat .v {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.about-stat .v em { color: var(--sand-deep); font-style: italic; }
.about-stat .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* === Audience columns === */
.audience {
  background: var(--paper-2);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(50px, 5vw, 70px);
}
.audience-card {
  background: var(--paper);
  padding: clamp(34px, 4vw, 56px);
  min-height: 360px;
  display: flex; flex-direction: column;
}
.audience-card .icon {
  width: 48px; height: 48px;
  margin-bottom: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.audience-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 400;
}
.audience-card h3 em { font-style: italic; color: var(--sand-deep); }
.audience-card p {
  font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0;
}
@media (max-width: 880px) { .audience-grid { grid-template-columns: 1fr; } }

/* === Disclaimer === */
.disclaimer { background: var(--paper-3); }
.disclaimer-inner {
  max-width: 920px; margin: 0 auto;
  text-align: center;
}
.disclaimer h2 { margin: 20px auto 28px; max-width: 18ch; }
.disclaimer h2 em { font-style: italic; color: var(--sand-deep); }
.disclaimer p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 64ch;
  margin-left: auto; margin-right: auto;
}
.disclaimer .divider {
  width: 60px; height: 1px; background: var(--sand);
  margin: 36px auto 0;
}

/* === Contact === */
.contact {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/batumi-aerial-night.jpg");
  background-size: cover; background-position: center;
  opacity: 0.12;
  filter: saturate(0.5);
}
.contact > .container { position: relative; z-index: 2; }
.contact h2 em { font-style: italic; color: var(--sand); }
.contact .eyebrow { color: var(--sand); }
.contact .eyebrow::before { background: var(--sand); }
/* === CTA pairing (primary + secondary download link) === */
.cta-row {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  flex-wrap: wrap;
}
.cta-row.center { justify-content: center; }
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 0;
  position: relative;
  transition: color 300ms ease;
}
.cta-secondary .dl {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  transition: transform 400ms cubic-bezier(0.2,0.8,0.2,1), background 300ms ease, color 300ms ease;
}
.cta-secondary:hover .dl {
  transform: translateY(3px);
  background: var(--sand);
  border-color: var(--sand);
  color: var(--ink);
}
.cta-secondary::after {
  content: "";
  position: absolute; left: 34px; right: 0; bottom: 8px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms cubic-bezier(0.2,0.8,0.2,1);
}
.cta-secondary:hover::after { transform: scaleX(1); }
.cta-secondary.on-dark { color: var(--paper); }
.cta-secondary.on-dark:hover { color: var(--sand); }
.cta-secondary.on-dark .dl { border-color: rgba(246,242,234,0.5); color: var(--paper); }
.cta-secondary.on-dark:hover .dl {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--ink);
}
.cta-secondary.sm {
  font-size: 11.5px;
  padding: 8px 0;
  letter-spacing: 0.08em;
}
.cta-secondary.sm .dl { width: 20px; height: 20px; }

/* === Guide section (lead magnet) === */
.guide {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  position: relative;
  overflow: hidden;
}
.guide::before {
  content: "";
  position: absolute;
  top: -10%; right: -8%;
  width: 520px; height: 520px;
  background: radial-gradient(closest-side, var(--sand-soft), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.guide > .container { position: relative; z-index: 1; }
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) {
  .guide-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* Cover mockup */
.guide-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 480px;
}
.guide-cover {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4.2;
  background: var(--ink);
  color: var(--paper);
  padding: 40px 36px;
  box-shadow:
    0 30px 60px -25px rgba(11,27,44,0.55),
    0 1px 0 rgba(255,255,255,0.04) inset;
  transform: rotate(-2.5deg);
  transition: transform 800ms cubic-bezier(0.2,0.8,0.2,1);
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}
.guide-cover:hover { transform: rotate(-1deg) translateY(-6px); }
.guide-cover::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/batumi-skyline-twilight.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: -2;
  filter: saturate(0.7);
}
.guide-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,27,44,0.4) 0%, rgba(11,27,44,0.92) 100%);
  z-index: -1;
}
.guide-cover .gc-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(246,242,234,0.2);
  display: block;
}
.guide-cover .gc-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: auto 0;
}
.guide-cover .gc-title em {
  font-style: italic;
  color: var(--sand);
  display: block;
  font-size: 1.4em;
  font-weight: 300;
}
.guide-cover .gc-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: rgba(246,242,234,0.85);
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
}
.guide-cover .gc-by {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.55);
  padding-top: 18px;
  border-top: 1px solid rgba(246,242,234,0.15);
  margin-top: 16px;
}
/* Floating PDF badge */
.guide-badge {
  position: absolute;
  top: -18px; right: -18px;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  font-weight: 600;
  transform: rotate(8deg);
  box-shadow: 0 12px 24px -8px rgba(201,169,115,0.5);
  z-index: 2;
}
.guide-badge strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 2px;
}

/* Body copy & form */
.guide-body { display: flex; flex-direction: column; }
.guide-body .eyebrow { margin-bottom: 26px; }
.guide-body h2 {
  margin-bottom: 24px;
}
.guide-body h2 em {
  font-style: italic;
  color: var(--sand-deep);
}
.guide-body .lede {
  margin-bottom: 36px;
  max-width: 54ch;
}
.guide-points {
  counter-reset: gpoint;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.guide-points li {
  counter-increment: gpoint;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: clamp(16px, 2vw, 28px);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.guide-points li::before {
  content: counter(gpoint, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--sand-deep);
  line-height: inherit;
  padding-top: 2px;
}
.guide-points li strong {
  color: var(--ink);
  font-weight: 600;
}

.guide-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--paper);
  max-width: 520px;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}
.guide-form:focus-within {
  border-color: var(--sand-deep);
  box-shadow: 0 6px 24px -12px rgba(167,134,78,0.4);
}
.guide-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 18px 22px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.guide-form input::placeholder { color: var(--muted); }
.guide-form button {
  border: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0 26px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 300ms ease;
}
.guide-form button:hover { background: var(--sand-deep); }
.guide-form button .arrow { transition: transform 300ms ease; }
.guide-form button:hover .arrow { transform: translateY(2px); }
.guide-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}
@media (max-width: 560px) {
  .guide-form { flex-direction: column; }
  .guide-form input { border-bottom: 1px solid var(--line); }
  .guide-form button { padding: 18px; justify-content: center; }
}

/* === END Guide === */
.contact.contact--minimal {
  padding: clamp(100px, 12vw, 180px) 0;
}
.contact-minimal-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.contact-minimal-inner .eyebrow {
  margin-bottom: 28px;
}
.contact-minimal-inner h2 {
  color: var(--paper);
  margin-bottom: 28px;
  font-weight: 300;
}
.contact-minimal-inner h2 em {
  font-style: italic;
  color: var(--sand);
}
.contact-lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.55;
  color: rgba(246,242,234,0.85);
  max-width: 56ch;
  margin: 0 auto 44px;
  font-weight: 400;
}
.contact-cta-row {
  display: flex; justify-content: center;
  margin-bottom: 32px;
}
.contact-cta-row .btn {
  padding: 20px 36px;
  font-size: 14px;
}
.contact-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.45);
}

/* === Contact (legacy grid) === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(50px, 6vw, 100px);
  margin-top: clamp(60px, 7vw, 90px);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-aside h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--paper);
}
.contact-aside .lede { color: rgba(246,242,234,0.78); margin-bottom: 36px; }
.contact-channels { display: flex; flex-direction: column; gap: 18px; }
.contact-channel {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line-ink);
  background: rgba(246,242,234,0.04);
  transition: background 350ms ease, transform 400ms ease;
}
.contact-channel:hover { background: rgba(246,242,234,0.08); transform: translateX(4px); }
.contact-channel .ic {
  width: 36px; height: 36px;
  border: 1px solid var(--sand);
  color: var(--sand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-channel .lbl {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(246,242,234,0.5);
  margin-bottom: 4px;
}
.contact-channel .val { font-size: 16px; font-weight: 500; }

/* form */
.form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { position: relative; }
.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.6);
  display: block; margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 15.5px;
  padding: 10px 0 14px;
  outline: none;
  transition: border-color 350ms ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(246,242,234,0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--sand);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23C9A973' stroke-width='1.4'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
.field select option { background: var(--ink); color: var(--paper); }
.field textarea { resize: vertical; min-height: 90px; }
.form-cta {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px;
  align-items: center;
}
.form-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.5);
}

/* === Footer === */
.site-footer {
  background: #07121E;
  color: rgba(246,242,234,0.6);
  padding: 60px 0 32px;
  border-top: 1px solid var(--line-ink);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-brand h4 {
  font-family: var(--display);
  font-size: 26px;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 12px;
  font-weight: 400;
}
.footer-brand p { font-size: 14px; max-width: 38ch; }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(246,242,234,0.7);
  transition: color 300ms ease;
}
.footer-col a:hover { color: var(--sand); }
.footer-legal {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line-ink);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-legal a:hover { color: var(--sand); }
@media (max-width: 640px) { .footer-legal { flex-direction: column; align-items: flex-start; } }

/* === Floating WhatsApp === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 18px;
  background: #25D366;
  color: #06281A;
  border-radius: 999px;
  box-shadow: 0 18px 40px -16px rgba(37, 211, 102, 0.55);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 400ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 350ms ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -16px rgba(37, 211, 102, 0.7); }
.whatsapp-float .wa-ic {
  width: 24px; height: 24px;
  display: grid; place-items: center;
}
.whatsapp-float .wa-label { display: inline; }
@media (max-width: 540px) {
  .whatsapp-float { padding: 14px; }
  .whatsapp-float .wa-label { display: none; }
}

/* === Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.2,0.8,0.2,1), transform 1.1s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* === Mobile nav drawer === */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav { gap: 12px; }
  .nav-cta { display: none; }
  .hero-scroll { display: none; }
}
