/* ==========================================================================
   EntreÁguas Milagres — Landing Page Premium
   Design system: luxo litorâneo contemporâneo (Aman / Four Seasons tier)
   ========================================================================== */

@font-face {
  font-family: 'Canela';
  src: local('Georgia');
  font-display: swap;
}

:root {
  /* Paleta: areia, petróleo profundo, turquesa de piscina natural, preto quente */
  --sand-50: #faf7f1;
  --sand-100: #f3ece0;
  --sand-200: #e8dcc8;
  --sand-300: #d8c6a8;
  --stone-600: #6b6154;
  --stone-800: #362f26;
  --ink-900: #16181a;
  --ink-950: #0c0e0f;
  --teal-400: #4fb8ac;
  --teal-500: #2e8f88;
  --teal-600: #1f6b68;
  --teal-900: #0f2e2c;
  --gold-400: #c9a45c;
  --gold-500: #b08a3e;
  --white: #ffffff;

  --font-display: 'Canela', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-body: 'Neue Montreal', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1360px;
  --gutter: clamp(24px, 5vw, 80px);

  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-slow: 900ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--sand-50);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  flex-shrink: 0;
}
@media (max-width: 480px) { .eyebrow { font-size: 10.5px; letter-spacing: 0.16em; white-space: normal; } }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(34px, 4.6vw, 58px); }
h3 { font-size: clamp(24px, 2.6vw, 32px); }
p { line-height: 1.65; color: var(--stone-600); }

.section { padding: clamp(72px, 11vw, 148px) 0; position: relative; }
.section-dark { background: var(--ink-950); color: var(--sand-100); }
.section-dark p { color: #a8a39a; }
.section-dark .eyebrow { color: var(--teal-400); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all .45s var(--ease-out);
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 480px) {
  .btn { white-space: normal; letter-spacing: 0.08em; padding: 16px 20px; font-size: 12.5px; }
}
.btn-primary {
  background: var(--teal-600);
  color: var(--white);
  border-color: var(--teal-600);
}
.btn-primary:hover { background: var(--teal-900); border-color: var(--teal-900); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(15,46,44,.5); }
.btn-outline {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-dark-outline {
  border-color: var(--ink-900);
  color: var(--ink-900);
}
.btn-dark-outline:hover { background: var(--ink-900); color: var(--white); }
.btn-arrow { transition: transform .35s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background .4s var(--ease-out), padding .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12,14,15,.86);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 14px 0;
  border-color: rgba(255,255,255,.08);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); color: var(--white); font-size: 20px; letter-spacing: 0.06em; }
.logo span { color: var(--teal-400); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.82); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after { content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--teal-400); transition: width .35s var(--ease-out); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display:none; }
@media (min-width: 1040px) { .nav-cta { display:flex; } }
.nav-toggle { display: none; background: none; border: none; color: var(--white); }
@media (max-width: 1039px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  background: var(--ink-950);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.06); animation: heroZoom 16s var(--ease-out) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(12,14,15,.82) 0%, rgba(12,14,15,.6) 34%, rgba(12,14,15,.15) 58%, transparent 70%),
    linear-gradient(180deg, rgba(12,14,15,.25) 0%, rgba(12,14,15,.08) 24%, rgba(12,14,15,.55) 74%, rgba(12,14,15,.9) 100%);
}
@media (max-width: 640px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(12,14,15,.55) 0%, rgba(12,14,15,.35) 34%, rgba(12,14,15,.65) 74%, rgba(12,14,15,.92) 100%);
  }
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: 0 0 clamp(56px, 8vw, 96px);
  color: var(--white);
}
.hero-eyebrow { color: var(--teal-400); }
.hero-eyebrow::before { background: var(--teal-400); }
.hero h1 {
  font-size: clamp(36px, 9vw, 92px);
  margin: 22px 0 20px;
  max-width: 16ch;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
}
.hero h1 em { font-style: italic; color: var(--teal-300, #7ecdc3); }
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,.82);
  max-width: 46ch;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust-item { display: flex; flex-direction: column; gap: 4px; }
.hero-trust-item strong { font-family: var(--font-display); font-size: 26px; color: var(--white); }
.hero-trust-item span { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.scroll-cue {
  position: absolute; right: var(--gutter); bottom: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.65); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
}
@media (max-width: 640px) { .scroll-cue { display: none; } }
.scroll-cue .line { width: 1px; height: 46px; background: rgba(255,255,255,.35); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background: var(--teal-400); animation: scrollLine 2.4s ease-in-out infinite; }
@keyframes scrollLine { 0% { top: -100%; } 60%,100% { top: 100%; } }

/* sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(12,14,15,.94); backdrop-filter: blur(10px);
  padding: 14px var(--gutter); display: flex; align-items: center; justify-content: center; gap: 16px;
  transform: translateY(110%); transition: transform .45s var(--ease-out);
  border-top: 1px solid rgba(255,255,255,.1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta span { color: var(--sand-100); font-size: 13px; white-space: nowrap; }
.sticky-cta .btn { padding: 13px 22px; white-space: nowrap; }
@media (max-width: 480px) { .sticky-cta span { display: none; } .sticky-cta .btn { width: 100%; justify-content: center; } }
@media (min-width: 860px) { .sticky-cta { display: none; } }

/* ---------- Benefícios ---------- */
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--sand-200); margin-top: 64px; border: 1px solid var(--sand-200);
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: minmax(0, 1fr); } }
.benefit-card {
  background: var(--sand-50); padding: 44px 32px; transition: background .4s var(--ease-out);
}
.benefit-card:hover { background: var(--white); }
.benefit-num { font-family: var(--font-display); font-size: 13px; color: var(--gold-500); margin-bottom: 22px; letter-spacing: .1em; }
.benefit-card h3 { font-size: 21px; margin-bottom: 12px; }
.benefit-card p { font-size: 14.5px; }

/* ---------- Section header ---------- */
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 18px; }
.section-head p.lead { font-size: 18px; margin-top: 22px; }

/* ---------- Região (why here) ---------- */
.region {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; align-items: stretch;
  min-height: 640px;
}
@media (max-width: 940px) { .region { grid-template-columns: minmax(0, 1fr); min-height: 0; } }
.region-media { position: relative; min-height: 420px; overflow: hidden; }
.region-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
@media (max-width: 940px) { .region-media { min-height: 320px; } }
.region-copy { background: var(--ink-950); color: var(--sand-100); padding: clamp(48px, 5vw, 88px); display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.region-copy p { color: #b7b2a8; font-size: 16px; margin-bottom: 18px; }
.region-stats { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px; margin-top: 36px; }
.region-stat strong { font-family: var(--font-display); font-size: 30px; color: var(--teal-400); display: block; margin-bottom: 4px; word-break: break-word; }
.region-stat span { font-size: 12.5px; color: #a39d8f; letter-spacing: .04em; }
@media (max-width: 480px) {
  .region-stats { gap: 20px 16px; }
  .region-stat strong { font-size: 22px; }
}

/* ---------- Apresentação / diferenciais ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.feature-row.reverse .feature-media { order: 2; }
@media (max-width: 900px) {
  .feature-row, .feature-row.reverse { grid-template-columns: minmax(0, 1fr); }
  .feature-row.reverse .feature-media { order: 0; }
}
.feature-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.feature-media:hover img { transform: scale(1.045); }
.feature-tag { position: absolute; bottom: 22px; left: 22px; background: rgba(12,14,15,.72); backdrop-filter: blur(6px); color: var(--sand-50); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 10px 16px; }
.feature-copy .eyebrow { margin-bottom: 18px; }
.feature-copy h3 { margin-bottom: 20px; }
.feature-copy p { font-size: 16.5px; margin-bottom: 22px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.feature-list li { display: flex; gap: 14px; font-size: 15px; color: var(--stone-800); align-items: flex-start; }
.feature-list svg { flex-shrink: 0; margin-top: 3px; color: var(--teal-500); }
.feature-block + .feature-block { margin-top: clamp(72px, 9vw, 140px); }

/* ---------- Comparativo ---------- */
.compare-table-wrap { overflow-x: auto; margin-top: 56px; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--sand-200); font-size: 15px; }
.compare-table thead th { font-family: var(--font-display); font-size: 17px; font-weight: 400; padding-bottom: 24px; }
.compare-table thead th.col-them { color: var(--stone-600); }
.compare-table thead th.col-us { color: var(--teal-600); }
.compare-table tbody th { color: var(--stone-600); font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; width: 26%; }
.compare-table tbody td.col-us { background: rgba(46,143,136,.06); font-weight: 500; color: var(--ink-900); position: relative; }
.compare-table tbody td.col-us::before { content: ''; position: absolute; left:0; top:0; bottom:0; width: 3px; background: var(--teal-500); }
.compare-table td .no { color: #b8482f; }
.compare-table td .yes { color: var(--teal-600); }

@media (max-width: 760px) {
  .compare-table-wrap { overflow-x: visible; }
  .compare-table, .compare-table thead, .compare-table tbody, .compare-table tr, .compare-table th, .compare-table td { display: block; width: auto; min-width: 0; }
  .compare-table thead { display: none; }
  .compare-table tr { border: 1px solid var(--sand-200); margin-bottom: 20px; padding: 20px; background: var(--white); }
  .compare-table td { border: none; padding: 6px 0; }
  .compare-table tbody th { font-family: var(--font-display); font-size: 16px; text-transform: none; letter-spacing: 0; color: var(--ink-900); padding-bottom: 10px; width: auto; }
  .compare-table td:not(:first-child) { padding-left: 14px; margin-top: 6px; }
  .compare-table td:not(:first-child)::after { content: attr(data-label); display: block; order: -1; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone-600); margin-bottom: 3px; }
  .compare-table td:not(:first-child) { display: flex; flex-direction: column; }
  .compare-table td.col-us::before { content: ''; width: 3px; }
  .compare-table td.col-us::after { color: var(--teal-600); }
}

/* ---------- Estilo de vida ---------- */
.lifestyle { background: var(--ink-950); color: var(--sand-100); position: relative; }
.lifestyle-scenes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
@media (max-width: 860px) { .lifestyle-scenes { grid-template-columns: minmax(0, 1fr); } }
.scene { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.scene img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter .6s; filter: brightness(.82); }
.scene:hover img { transform: scale(1.06); filter: brightness(.92); }
.scene-copy { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 26px; background: linear-gradient(0deg, rgba(0,0,0,.75), transparent); }
.scene-copy .scene-time { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-400); margin-bottom: 8px; display:block; }
.scene-copy p { color: var(--white); font-family: var(--font-display); font-size: 21px; line-height: 1.35; }

/* ---------- Investimento ---------- */
.invest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--sand-200); margin-top: 56px; border: 1px solid var(--sand-200); }
@media (max-width: 860px) { .invest-grid { grid-template-columns: minmax(0, 1fr); } }
.invest-card { background: var(--white); padding: 42px 34px; }
.invest-card svg { color: var(--gold-500); margin-bottom: 22px; }
.invest-card h3 { font-size: 19px; margin-bottom: 12px; }
.invest-card p { font-size: 14.5px; }
.price-panel {
  margin-top: 64px; background: var(--ink-950); color: var(--sand-100);
  padding: clamp(36px, 5vw, 64px); display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 860px) { .price-panel { grid-template-columns: minmax(0, 1fr); } }
.price-panel h3 { color: var(--white); margin-bottom: 14px; }
.price-panel p { color: #b7b2a8; margin-bottom: 0; }
.price-types { display: flex; flex-direction: column; gap: 18px; }
.price-type { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.14); }
.price-type strong { font-family: var(--font-display); font-size: 20px; color: var(--white); }
.price-type span { font-size: 12.5px; color: #a39d8f; letter-spacing: .04em; }
.price-type .price-from { text-align: right; }
.price-type .price-from b { display: block; color: var(--teal-400); font-size: 17px; font-family: var(--font-display); }

/* ---------- Galeria ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
  margin-top: 56px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 200px; } }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-2-row { grid-row: span 2; }
.gallery-item::after { content: ''; position: absolute; inset:0; background: linear-gradient(0deg, rgba(0,0,0,.35), transparent 40%); opacity:0; transition: opacity .4s; }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Localização ---------- */
.location-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 940px) { .location-wrap { grid-template-columns: minmax(0, 1fr); } }
.location-media { position: relative; aspect-ratio: 1400/527; overflow: hidden; }
.location-media img { width: 100%; height: 100%; object-fit: cover; }
.location-list { display: flex; flex-direction: column; margin-top: 32px; }
.location-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--sand-200); font-size: 15px; }
.location-list li span:first-child { color: var(--ink-900); }
.location-list li span:last-child { color: var(--teal-600); font-weight: 600; white-space: nowrap; flex-shrink: 0; }
@media (max-width: 480px) {
  .location-list li { flex-wrap: wrap; }
  .location-list li span:last-child { margin-left: auto; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--sand-200); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 4px; background: none; border: none; text-align: left; font-family: var(--font-display); font-size: 18px; color: var(--ink-900); }
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content:''; position:absolute; background: var(--teal-600); transition: transform .4s var(--ease-out); }
.faq-q .plus::before { width: 100%; height: 1.5px; top: 50%; left:0; transform: translateY(-50%); }
.faq-q .plus::after { height: 100%; width: 1.5px; left: 50%; top:0; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out); }
.faq-a p { padding: 0 4px 26px; font-size: 15.5px; max-width: 74ch; }

/* ---------- CTA final ---------- */
.final-cta { position: relative; min-height: 78vh; display: flex; align-items: center; background: var(--ink-950); overflow: hidden; }
.final-cta-media { position: absolute; inset: 0; }
.final-cta-media img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(12,14,15,.55), rgba(12,14,15,.92)); }
.final-cta-content { position: relative; z-index: 2; text-align: center; width: 100%; color: var(--white); }
.final-cta h2 { max-width: 18ch; margin: 20px auto 24px; }
.final-cta p.lead { max-width: 56ch; margin: 0 auto 44px; color: rgba(255,255,255,.8); font-size: 18px; }
.final-cta .btn { padding: 20px 44px; font-size: 14px; }
.final-cta-badges { display: flex; justify-content: center; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.final-cta-badges div { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ---------- Form ---------- */
.form-section { background: var(--sand-100); }
.form-wrap { max-width: 620px; margin: 0 auto; background: var(--white); padding: clamp(32px, 5vw, 56px); box-shadow: 0 40px 90px -40px rgba(22,24,26,.25); }
.form-wrap h3 { text-align: center; margin-bottom: 10px; }
.form-wrap p.sub { text-align: center; margin-bottom: 34px; font-size: 15px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone-600); margin-bottom: 8px; font-weight: 600; }
.form-field input {
  width: 100%; padding: 15px 16px; border: 1px solid var(--sand-300); background: var(--sand-50);
  font-family: inherit; font-size: 15px; color: var(--ink-900); transition: border-color .3s, background .3s;
}
.form-field input:focus { outline: none; border-color: var(--teal-500); background: var(--white); }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-privacy { font-size: 12px; color: var(--stone-600); text-align: center; margin-top: 18px; line-height: 1.5; }
.form-success { display:none; text-align:center; padding: 20px 0; }
.form-success.show { display:block; }
.form-success h3 { margin-bottom: 10px; }

/* ---------- Footer ---------- */
footer { background: var(--ink-950); color: #a39d8f; padding: 56px 0 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-family: var(--font-display); color: var(--white); font-size: 22px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--sand-100); margin-bottom: 16px; font-weight: 600; font-family: var(--font-body); }
.footer-col a, .footer-col p { display: block; font-size: 14px; margin-bottom: 10px; color: #a39d8f; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 28px; font-size: 12.5px; flex-wrap: wrap; gap: 12px; }
@media (max-width: 640px) {
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-cols { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; width: 100%; }
}

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(12,14,15,.96); z-index: 200; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .35s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 84vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 28px; right: var(--gutter); color: var(--white); background: none; border: none; font-size: 32px; line-height: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--white); font-size: 40px; padding: 20px; }
.lightbox-prev { left: 12px; } .lightbox-next { right: 12px; }

/* utility */
.text-center { text-align: center; }
.mt-lg { margin-top: 64px; }
@media (max-width: 640px) {
  .hero-content { padding-bottom: 32px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero h1 { margin: 14px 0 14px; max-width: none; text-align: left; }
  .hero-sub { font-size: 15px; margin: 0 auto 28px; line-height: 1.55; }
  .hero-actions { gap: 12px; margin-bottom: 32px; justify-content: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px 16px; padding-top: 20px; text-align: center; }
  .hero-trust-item { align-items: center; }
  .hero-trust-item strong { font-size: 19px; }
  .hero-trust-item span { font-size: 10.5px; }
}
