*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #FFFFFF;
  --off-white: #F9F8F6;
  --dark: #1C1C1C;
  --mid: #888888;
  --light: #E8E4DE;
  --gold: #9C8660;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--light);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; letter-spacing: 0.06em;
  color: var(--white); text-decoration: none;
  transition: color 0.4s;
}
.nav-logo span { font-weight: 300; opacity: 0.75; }
.nav.scrolled .nav-logo { color: var(--dark); }
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,0.75); transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--mid); }
.nav.scrolled .nav-links a:hover { color: var(--dark); }

.lang-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.22);
  transition: border-color 0.4s;
}
.nav.scrolled .lang-toggle { border-color: var(--light); }
.lang-btn {
  font-size: 11px; letter-spacing: 0.16em; font-weight: 400;
  padding: 5px 11px; cursor: pointer; background: none;
  color: rgba(255,255,255,0.45); transition: all 0.25s;
  font-family: 'Inter', sans-serif;
  text-decoration: none; display: inline-block;
}
.lang-btn.active { background: rgba(255,255,255,0.15); color: var(--white); }
.nav.scrolled .lang-btn { color: var(--mid); }
.nav.scrolled .lang-btn.active { background: var(--gold); color: var(--white); }

.nav-whatsapp {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-decoration: none; font-weight: 400;
  padding-left: 28px; border-left: 1px solid rgba(255,255,255,0.18);
  transition: color 0.3s;
}
.nav.scrolled .nav-whatsapp { color: var(--gold); border-left-color: var(--light); }
.nav-whatsapp:hover { color: var(--white) !important; }

/* ─── HERO ─── */
.hero {
  height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,17,17,0.90) 0%,
    rgba(17,17,17,0.48) 55%,
    rgba(17,17,17,0.18) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 56px 80px;
  max-width: 860px;
}
.hero-tag {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 20px; font-weight: 400;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.1;
  color: var(--white); letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero-name em { font-style: italic; }
.hero-sub {
  font-size: 15px; line-height: 1.75; font-weight: 300;
  color: rgba(255,255,255,0.92); max-width: 580px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--white); color: var(--dark);
  padding: 15px 36px; text-decoration: none;
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: background 0.3s, color 0.3s;
  border: 1px solid var(--white);
}
.btn-primary:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-outline {
  display: inline-block;
  background: none; color: var(--white);
  padding: 15px 36px; text-decoration: none;
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }
.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  position: absolute; bottom: 32px; right: 56px;
  z-index: 2; color: rgba(255,255,255,0.35);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 400;
}
.hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,0.25);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── TYPOGRAPHY UTILITIES ─── */
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 20px;
  display: block;
}
h2.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300; line-height: 1.12; letter-spacing: 0.01em;
  color: var(--dark);
}
h2.display em { font-style: italic; }
.body-text { font-size: 15px; line-height: 1.85; color: #666; font-weight: 300; }

/* ─── PHILOSOPHY ─── */
.philosophy {
  padding: 100px 48px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; background: var(--white);
}
.philosophy blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 300; font-style: italic;
  line-height: 1.4; max-width: 820px; color: var(--dark);
}
.philosophy-rule { width: 48px; height: 1px; background: var(--gold); margin: 40px auto; }
.philosophy-attr {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid); font-weight: 400;
}

/* ─── MARKET COVERAGE ─── */
.coverage { position: relative; }
.coverage-eyebrow {
  position: absolute; top: 24px; left: 48px; z-index: 500;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.90); font-weight: 400;
  background: rgba(18,18,18,0.72);
  padding: 6px 14px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
#coverage-map {
  height: 600px;
  width: 100%;
}
.map-marker {
  width: 12px; height: 12px;
  background: #C13030;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.95);
  box-shadow: 0 0 0 3px rgba(193,48,48,0.22), 0 2px 8px rgba(0,0,0,0.40);
  cursor: pointer;
  transition: transform 0.2s;
}
.map-marker:hover { transform: scale(1.45); }
.leaflet-tooltip.map-label {
  background: rgba(18,18,18,0.86);
  border: none;
  color: rgba(255,255,255,0.92);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.28);
  white-space: nowrap;
}
.leaflet-tooltip-top.map-label::before    { border-top-color:    rgba(18,18,18,0.86); }
.leaflet-tooltip-bottom.map-label::before { border-bottom-color: rgba(18,18,18,0.86); }
.leaflet-tooltip-left.map-label::before   { border-left-color:   rgba(18,18,18,0.86); }
.leaflet-tooltip-right.map-label::before  { border-right-color:  rgba(18,18,18,0.86); }
.leaflet-container { outline: none; }
.leaflet-control-attribution { font-size: 9px !important; opacity: 0.45; }

/* ─── WHY ME ─── */
.why-me {
  padding: 100px 48px; background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.why-left h2 { margin-bottom: 36px; }
.why-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--light);
  padding-top: 32px; margin-top: 40px;
}
.why-stat {
  flex: 1; padding-right: 28px;
  border-right: 1px solid var(--light); margin-right: 28px;
}
.why-stat:last-child { border-right: none; margin-right: 0; }
.why-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px; font-weight: 300; color: var(--dark); line-height: 1;
  margin-bottom: 6px;
}
.why-stat-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid);
}
.why-stat-sub { font-size: 12px; color: #aaa; margin-top: 4px; font-weight: 300; }
.why-right { padding-top: 8px; }
.trust-list { display: flex; flex-direction: column; }
.trust-item {
  padding: 24px 0; border-bottom: 1px solid var(--light);
  display: grid; grid-template-columns: 20px 1fr; gap: 20px;
  align-items: start;
}
.trust-item:first-child { border-top: 1px solid var(--light); }
.trust-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-top: 7px;
}
.trust-text { font-size: 15px; line-height: 1.7; color: var(--dark); font-weight: 300; }
.trust-text em {
  font-style: normal; color: var(--mid); font-size: 13px;
  display: block; margin-top: 3px;
}

/* ─── BUYERS ─── */
.buyers { background: var(--off-white); padding: 100px 48px; }
.buyers-header { margin-bottom: 56px; }
.buyers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.buyer-card {
  background: var(--white); padding: 48px 44px;
  border-top: 2px solid var(--gold);
  display: flex; flex-direction: column;
}
.buyer-card .card-eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 12px; display: block;
}
.buyer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--dark);
  margin-bottom: 16px; letter-spacing: 0.01em; line-height: 1.2;
}
.buyer-card p {
  font-size: 14px; line-height: 1.85; color: #777; font-weight: 300;
  flex: 1; margin-bottom: 32px;
}
.btn-gold {
  display: inline-block; align-self: flex-start;
  background: var(--dark); color: var(--white);
  padding: 13px 32px; text-decoration: none;
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: background 0.3s; border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold); }
.insider-card {
  background: var(--dark); padding: 52px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.insider-card .section-eyebrow { color: rgba(255,255,255,0.35); }
.insider-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; color: var(--white);
  letter-spacing: 0.02em; line-height: 1.2; margin-bottom: 16px;
}
.insider-card p {
  font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.50);
  font-weight: 300; max-width: 520px;
}
.insider-right { flex-shrink: 0; }
.btn-outline-white {
  display: inline-block;
  background: none; color: rgba(255,255,255,0.7);
  padding: 13px 32px; text-decoration: none;
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.3s, color 0.3s; white-space: nowrap;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

/* ─── TRIPTYCH ─── */
.triptych { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 500px; }
.tri-item { position: relative; overflow: hidden; }
.tri-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease; filter: brightness(0.85);
}
.tri-item:hover img { transform: scale(1.05); filter: brightness(0.95); }
.tri-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 32px 28px;
  background: linear-gradient(to top, rgba(17,17,17,0.72), transparent);
  transform: translateY(4px); transition: transform 0.4s;
}
.tri-item:hover .tri-caption { transform: translateY(0); }
.tri-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.50); margin-bottom: 6px;
}
.tri-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; color: var(--white); letter-spacing: 0.02em;
}

/* ─── SELLERS ─── */
.sellers {
  padding: 100px 48px; background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.sellers-left h2 { margin-bottom: 20px; }
.sellers-sub {
  font-size: 15px; line-height: 1.8; color: #777; font-weight: 300;
  margin-top: 20px; max-width: 400px;
}
.form { display: flex; flex-direction: column; }
.field { margin-bottom: 28px; }
.field label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 8px; display: block;
}
.field input, .field textarea, .field select {
  background: none; border: none; border-bottom: 1px solid var(--light);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--dark); padding: 10px 0; outline: none; width: 100%;
  transition: border-color 0.3s; -webkit-appearance: none; appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: #ccc; }
.field textarea { resize: none; height: 72px; }
.field select { cursor: pointer; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit { margin-top: 8px; }
.form-submit button {
  background: var(--dark); color: var(--white);
  border: none; padding: 16px 40px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s;
}
.form-submit button:hover { background: var(--gold); }
.form-note {
  font-size: 11px; color: var(--mid); margin-top: 20px;
  letter-spacing: 0.04em; line-height: 1.6;
}

/* ─── ABOUT ─── */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.about-photo { position: relative; overflow: hidden; }
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; transition: transform 0.8s ease;
}
.about-photo:hover img { transform: scale(1.03); }
.about-body {
  padding: 100px 72px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--off-white);
}
.about-body h2 { margin-bottom: 32px; }
.about-body .body-text + .body-text { margin-top: 16px; }
.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-style: italic; font-weight: 300;
  color: var(--dark); margin-top: 44px; opacity: 0.8; letter-spacing: 0.02em;
}
.about-creds {
  display: flex; gap: 0; margin-top: 36px;
  border-top: 1px solid var(--light); padding-top: 28px;
}
.cred {
  flex: 1; padding-right: 24px; border-right: 1px solid var(--light); margin-right: 24px;
}
.cred:last-child { border-right: none; margin-right: 0; }
.cred-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--dark); line-height: 1;
}
.cred-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mid); margin-top: 4px;
}

/* ─── FULL-BLEED ─── */
.full-bleed {
  position: relative; height: 70vh; min-height: 460px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.full-bleed img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.full-bleed-overlay { position: absolute; inset: 0; background: rgba(17,17,17,0.44); }
.full-bleed-text { position: relative; z-index: 2; text-align: center; padding: 0 48px; }
.full-bleed-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 72px); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.1; letter-spacing: 0.02em;
  max-width: 860px; margin: 0 auto;
}
.full-bleed-rule { width: 48px; height: 1px; background: rgba(255,255,255,0.35); margin: 28px auto; }
.full-bleed-sub {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 400;
}

/* ─── TESTIMONIAL ─── */
.testimonial { padding: 100px 48px; background: var(--off-white); text-align: center; }
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 34px); font-weight: 300; font-style: italic;
  line-height: 1.55; max-width: 700px; margin: 0 auto 32px; color: var(--dark);
}
.testimonial-rule { width: 32px; height: 1px; background: var(--gold); margin: 0 auto 18px; }
.testimonial cite {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid); font-style: normal;
}

/* ─── CONTACT ─── */
.contact { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left {
  background: var(--dark); padding: 100px 72px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=900&q=60') center/cover;
  opacity: 0.10;
}
.contact-left-inner { position: relative; z-index: 1; }
.contact-left .section-eyebrow { color: rgba(255,255,255,0.40); }
.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.2vw, 48px); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.2;
}
.contact-details { margin-top: 56px; }
.contact-detail-row {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-detail-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.cd-label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.30); font-weight: 400;
}
.cd-val { font-size: 15px; color: rgba(255,255,255,0.70); font-weight: 300; }
.cd-val a { color: rgba(255,255,255,0.70); text-decoration: none; transition: color 0.3s; }
.cd-val a:hover { color: var(--white); }
.contact-langs { display: flex; gap: 10px; margin-top: 36px; flex-wrap: wrap; }
.lang-tag {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-weight: 400;
  padding: 5px 12px; border: 1px solid rgba(255,255,255,0.10);
}
.contact-right { background: var(--off-white); padding: 100px 72px; }
.contact-right h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--dark);
  margin-bottom: 44px; line-height: 1.3;
}

/* ─── FOOTER ─── */
footer { background: var(--dark); padding: 48px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.55); letter-spacing: 0.06em;
}
.footer-logo span { font-weight: 400; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.25s;
}
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 11px; letter-spacing: 0.10em; color: rgba(255,255,255,0.22); }
.footer-conf { font-size: 11px; letter-spacing: 0.10em; color: rgba(255,255,255,0.22); font-style: italic; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1020px) {
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .buyers-grid { grid-template-columns: 1fr; }
  .insider-card { flex-direction: column; gap: 32px; padding: 48px 36px; }
  .sellers { grid-template-columns: 1fr; gap: 56px; padding: 80px 28px; }
  .sellers-sub { max-width: 100%; }
}
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-whatsapp { display: none; }
  .hero-content { padding: 0 28px 56px; }
  .philosophy { padding: 72px 28px; }
  .coverage { padding: 64px 28px; }
  #coverage-map { height: 360px; }
  .why-me { grid-template-columns: 1fr; padding: 72px 28px; gap: 48px; }
  .buyers { padding: 72px 28px; }
  .triptych { grid-template-columns: 1fr; height: auto; }
  .triptych .tri-item { height: 60vw; }
  .about { grid-template-columns: 1fr; }
  .about-photo { height: 65vw; }
  .about-body { padding: 64px 28px; }
  .contact { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 72px 28px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .full-bleed-text h2 { font-size: 30px; }
}

/* ─── FORM FEEDBACK ─── */
.form-feedback { margin-top: 24px; }
.form-success {
  font-size: 15px; color: var(--gold); line-height: 1.7;
  letter-spacing: 0.03em;
}
.form-error {
  font-size: 14px; color: #C13030; line-height: 1.7;
}
.form-error a { color: #C13030; }
