/* =========================================================================
   malagaguide.info + marbellaguide.eu — editorial / conversion-focused UI
   Serif display (Fraunces) + clean sans (Inter) + mono accent (JetBrains)
   ========================================================================= */

:root {
  --bg:          #fbf7f0;
  --bg-soft:     #f3ece0;
  --bg-alt:      #efe7d7;
  --paper:       #ffffff;
  --ink:         #1a120c;
  --ink-soft:    #534740;
  --muted:       #8a7f73;
  --line:        #e5dbc9;
  --line-soft:   #efe6d5;

  --accent:      #b8572b;   /* Málaga terracotta */
  --accent-2:    #e08f50;
  --accent-soft: #f3c2a0;
  --accent-wash: #fbe9dc;

  --good:        #2f6f4e;
  --ok:          #3f8b5f;

  --shadow-sm:   0 1px 2px rgba(30,18,10,0.05);
  --shadow-md:   0 10px 30px -14px rgba(30,18,10,0.18);
  --shadow-lg:   0 30px 60px -24px rgba(30,18,10,0.28);
  --shadow-btn:  0 10px 22px -10px rgba(184,87,43,0.55);

  --radius:      8px;
  --radius-lg:   14px;
  --maxw:        1160px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

body[data-site="marbella"] {
  --bg:          #f6f7f9;
  --bg-soft:     #e9eef2;
  --bg-alt:      #dfe6ec;
  --line:        #d8dee5;
  --line-soft:   #e9eef2;
  --accent:      #1f3a4d;
  --accent-2:    #3b6a8a;
  --accent-soft: #a9c8dc;
  --accent-wash: #e6eef4;
  --shadow-btn:  0 10px 22px -10px rgba(31,58,77,0.55);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 84px;
  overflow-x: hidden;
}
@media (min-width: 720px) { body { padding-bottom: 0; } }

img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 720px) { .container { padding: 0 28px; } }

/* ----- Decorative wedge between sections ----- */
.wedge {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* =================== TOP BAR =================== */
.topbar {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251, 247, 240, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
body[data-site="marbella"] .topbar { background: rgba(246,247,249,0.88); }
.topbar .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.3px;
  text-decoration: none;
  color: var(--ink);
}
@media (min-width: 720px) { .brand { font-size: 20px; } }
.brand em { font-style: italic; color: var(--accent); font-weight: 400; }

.top-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--ink);
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}
@media (min-width: 720px) { .top-cta { font-size: 13px; padding: 10px 18px; } }
.top-cta:hover { background: var(--accent); transform: translateY(-1px); }
.top-cta .dot { width:6px; height:6px; border-radius:50%; background: var(--accent-soft); }

/* =================== HERO =================== */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.02);
}
.hero-media::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 10% 20%, rgba(0,0,0,0) 0%, rgba(10,6,4,0.15) 50%, rgba(10,6,4,0.55) 100%),
    linear-gradient(180deg, rgba(10,6,4,0.20) 0%, rgba(10,6,4,0.65) 65%, rgba(10,6,4,0.85) 100%);
}
.hero-inner {
  position: relative;
  padding: clamp(80px, 13vw, 170px) 0 clamp(64px, 11vw, 130px);
  color: #fff;
  max-width: 820px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--accent-soft);
}
@media (min-width: 720px) { .eyebrow { font-size: 12px; } }
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 6.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-soft);
  font-variation-settings: "opsz" 144;
}
.hero p.lead {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.58;
  max-width: 640px;
  margin: 0 0 30px;
  color: rgba(255,255,255,0.93);
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  cursor: pointer;
  min-height: 52px;
  position: relative;
}
.btn .arrow {
  width: 18px; height: 18px; transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 14px 28px -10px rgba(0,0,0,0.35); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.32);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.hero-foot {
  display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center;
  margin-top: 22px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.hero-foot span { display: inline-flex; align-items: center; gap: 8px; }
.hero-foot .stars { color: #ffce6a; letter-spacing: 2px; }

/* ---- Instagram pill (verified) ---- */
.ig-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px 6px 9px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.ig-pill:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.4);
}
.ig-pill .ig-icon { width: 15px; height: 15px; }
.ig-pill .verified { width: 14px; height: 14px; }
.ig-pill--light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.ig-pill--light:hover {
  background: var(--bg-soft);
  border-color: var(--accent-soft);
}

/* =================== TRUST STRIP =================== */
.trust {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (min-width: 720px) { .trust-row { font-size: 12px; } }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before { content: "●"; color: var(--accent); font-size: 10px; }

/* =================== STATS =================== */
.stats-wrap {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  text-align: center;
}
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-num em { font-style: italic; font-weight: 300; }
.stat-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =================== SECTIONS =================== */
section { padding: clamp(64px, 9vw, 120px) 0; }
section + section:not(.cta-band):not(.quote-wrap):not(.gallery-wrap):not(.trust):not(.stats-wrap) {
  border-top: 1px solid var(--line);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ""; width: 24px; height: 1px; background: var(--accent); display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  max-width: 760px;
  font-variation-settings: "opsz" 144;
}
.section-title em { font-style: italic; color: var(--accent); font-weight: 300; }
.section-intro {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 0 44px;
  line-height: 1.65;
}

/* =================== FEATURE GRID =================== */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) { .features { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 960px) { .features { grid-template-columns: repeat(3, 1fr); gap: 20px 24px; } }

.feature {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 60%, transparent 100%);
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform .35s ease;
}
.feature:hover {
  border-color: var(--accent-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--accent-wash);
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}
.feature h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.22;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feature p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* =================== TEASER (phone / preview) =================== */
.teaser-wrap { background: var(--bg-soft); }
.teaser {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .teaser { grid-template-columns: 1fr 1fr; gap: 72px; } }
.teaser .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--line);
}
.teaser .frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.teaser .frame:hover img { transform: scale(1.04); }
.teaser .frame .badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.teaser ul {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.teaser ul li {
  padding: 16px 0 16px 36px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.teaser ul li strong { color: var(--ink); font-weight: 600; }
.teaser ul li::before {
  content: "";
  position: absolute; left: 0; top: 18px;
  width: 22px; height: 22px;
  background: var(--accent-wash);
  border-radius: 50%;
  display: grid; place-items: center;
}
.teaser ul li::after {
  content: "";
  position: absolute; left: 5px; top: 26px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* =================== GALLERY =================== */
.gallery-wrap { background: var(--bg-alt); }
.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 20px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .cap {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10,8,6,0.55);
  padding: 7px 11px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  width: fit-content;
}
@media (min-width: 720px) {
  .gallery {
    grid-auto-flow: row;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-auto-columns: unset;
    gap: 18px;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .gallery-item:first-child { grid-row: span 2; aspect-ratio: unset; min-height: 100%; }
  .gallery-item:not(:first-child) { aspect-ratio: 4/3; }
}

/* =================== COMPARE =================== */
.compare {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--line-soft);
}
.compare-row:first-child { border-top: none; }
.compare-row > div {
  padding: 14px 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
@media (min-width: 720px) {
  .compare-row > div { padding: 18px 22px; font-size: 15px; }
}
.compare-row > div:first-child {
  font-weight: 500;
  color: var(--ink);
}
.compare-row > div:not(:first-child) {
  border-left: 1px solid var(--line-soft);
  justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.compare-row.h > div {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  background: var(--bg-soft);
  padding-top: 16px; padding-bottom: 16px;
}
.compare-row.h > div:nth-child(2) { color: var(--accent); font-weight: 700; }
.compare-row > div:nth-child(2) { background: var(--accent-wash); color: var(--good); font-weight: 600; }

.check, .cross {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 14px;
  margin-right: 8px;
}
.check { background: var(--accent-wash); color: var(--good); }
.cross { background: #f7e4e0; color: #b44a3a; }

/* =================== CTA BAND =================== */
.cta-band {
  background: linear-gradient(160deg, #241b13 0%, #0e0906 100%);
  color: #fff;
  text-align: center;
  padding: clamp(60px, 9vw, 108px) 20px;
  position: relative;
  overflow: hidden;
}
body[data-site="marbella"] .cta-band {
  background: linear-gradient(160deg, #0f2130 0%, #050b12 100%);
}
.cta-band::before {
  content: "";
  position: absolute; inset: -40%;
  background: radial-gradient(50% 40% at 30% 20%, rgba(184,87,43,0.18), transparent 70%),
              radial-gradient(40% 40% at 80% 80%, rgba(224,143,80,0.12), transparent 70%);
  pointer-events: none;
}
body[data-site="marbella"] .cta-band::before {
  background: radial-gradient(50% 40% at 30% 20%, rgba(59,106,138,0.20), transparent 70%),
              radial-gradient(40% 40% at 80% 80%, rgba(169,200,220,0.12), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.18;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.cta-band h2 strong { font-style: normal; font-weight: 500; color: var(--accent-soft); }
.cta-band p {
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  font-size: 16px;
}
.cta-band .btn-primary { box-shadow: 0 16px 32px -12px rgba(184,87,43,0.6); }
.cta-band .guarantee {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =================== QUOTE =================== */
.quote-wrap {
  background: var(--bg-soft);
  position: relative;
}
.quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 140px;
  color: var(--accent);
  opacity: 0.18;
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.quote .stars {
  font-size: 19px;
  color: #e0a94a;
  letter-spacing: 5px;
  margin-bottom: 20px;
  display: inline-block;
}
.quote p {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.9vw, 34px);
  line-height: 1.34;
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: -0.015em;
}
.quote .author {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =================== FAQ =================== */
.faq { max-width: 820px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq details summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--ink);
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: "+";
  width: 30px; height: 30px;
  background: var(--accent-wash);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq details p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.68;
  margin: 14px 0 0;
}

/* =================== FOOTER =================== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  padding: 56px 0 40px;
}
footer .row {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;
}
footer a {
  color: rgba(255,255,255,0.88); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
footer a:hover { color: #fff; }
footer .fine {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 24px;
}

/* =================== MOBILE STICKY CTA =================== */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251,247,240,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px -20px rgba(0,0,0,0.3);
}
body[data-site="marbella"] .mobile-cta { background: rgba(246,247,249,0.96); }
.mobile-cta .btn { width: 100%; padding: 14px; min-height: 54px; font-size: 16px; }
@media (min-width: 720px) { .mobile-cta { display: none; } }

/* =================== SUCCESS PAGE =================== */
.success-wrap {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px;
}
.success-card {
  max-width: 580px;
  text-align: center;
}
.success-card h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.success-card h1 em { font-style: italic; color: var(--accent); }
.success-card p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.success-card .status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.success-card .error {
  color: #b33a3a;
  font-family: var(--font-mono);
  font-size: 13px;
}

/* =================== REDUCED MOTION =================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
