/* =========================================================
   CELVIX PARTNERS — Real Estate SMMA
   Design system: warm dark theme · gold #C9A96E · Playfair + Sora + Inter
   ========================================================= */

:root {
  /* Color tokens */
  --bg:            #06050A;
  --bg-elev:       #0C0A12;
  --bg-card:       #120F1A;
  --surface:       #16121F;
  --line:          rgba(201,169,110,.10);
  --line-strong:   rgba(201,169,110,.18);

  --gold:          #C9A96E;
  --gold-600:      #B8955A;   /* hover */
  --gold-mid:      #D4BA88;
  --gold-soft:     #E8D5A3;   /* light gold — text / eyebrows */
  --gold-tint:     rgba(201,169,110,.14);  /* translucent fill */
  --gold-glow:     rgba(201,169,110,.20);  /* glow / shadow */

  --text:          #F5F0E8;
  --muted:         #A89880;
  --muted-2:       #7A7060;

  /* Type */
  --font-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-display:  'Sora', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* Spacing / radius */
  --radius:        18px;
  --radius-sm:     12px;
  --container:     1240px;

  /* Motion */
  --ease:          cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 880px){ body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--gold); color: #06050A; }

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(201,169,110,.14), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(201,169,110,.07), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
section { position: relative; z-index: 1; }
.eyebrow {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.accent { color: var(--gold); }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
/* Editorial luxury headings in Playfair serif */
h1, h2, .about-claim, .svc-name { font-family: var(--font-serif); letter-spacing: -.01em; }
.section-title { font-size: clamp(2rem, 5vw, 3.4rem); margin: 18px 0 0; }
.section-lead { color: var(--muted); max-width: 620px; margin-top: 18px; font-size: 1.05rem; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%,-50%); mix-blend-mode: difference;
}
.cursor-dot  { width: 7px; height: 7px; background: var(--gold); }
.cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid var(--gold-mid);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.cursor-ring.is-hover { width: 64px; height: 64px; background: var(--gold-tint); border-color: var(--gold); }
@media (max-width: 880px){ .cursor-dot,.cursor-ring { display:none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 15px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: none;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.btn-primary { background: var(--gold); color: #06050A; box-shadow: 0 10px 30px -10px var(--gold-glow); }
.btn-primary:hover { transform: translateY(-3px); background: var(--gold-600); box-shadow: 0 18px 40px -12px var(--gold-glow); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 18px 0 auto; z-index: 100;
  display: flex; justify-content: center; pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: min(var(--container), calc(100% - 40px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12,10,18,.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled .nav-inner { background: rgba(8,7,12,.82); box-shadow: 0 14px 40px -20px rgba(0,0,0,.8); border-color: var(--line-strong); }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; display:flex; align-items:center; gap:.55rem; }
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px var(--gold-glow); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 9px 14px; border-radius: 999px; font-size: .92rem; color: var(--muted); transition: color .25s, background .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(201,169,110,.07); }
.nav-cta { margin-left: 8px; padding: 11px 20px; font-size: .9rem; }
.hamburger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: transparent; cursor: none; position: relative; }
.hamburger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--text); transition: transform .3s var(--ease), opacity .2s; }
.hamburger span:nth-child(1){ top: 15px; } .hamburger span:nth-child(2){ top: 21px; } .hamburger span:nth-child(3){ top: 27px; }
.hamburger.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(6,5,10,.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 12px;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--muted); transition: color .25s; }
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 880px){
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
}

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 160px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); margin: 22px 0 0; }
.hero-sub { color: var(--muted); font-size: 1.15rem; max-width: 540px; margin-top: 26px; }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust { margin-top: 42px; display: flex; gap: 34px; flex-wrap: wrap; }
.hero-trust .t-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; }
.hero-trust .t-lab { color: var(--muted-2); font-size: .85rem; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); }
.hero-visual .float-card {
  position: absolute; left: -28px; bottom: 34px;
  background: rgba(18,15,26,.82); backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong); border-radius: 16px; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: 0 20px 50px -20px rgba(0,0,0,.7);
}
.float-card .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--gold-tint); display:grid; place-items:center; color: var(--gold); }
.float-card .v { font-family: var(--font-display); font-weight: 700; }
.float-card .l { color: var(--muted-2); font-size: .78rem; }
@media (max-width: 880px){ .hero-grid { grid-template-columns: 1fr; } .hero-visual { display:none; } }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; overflow: hidden; background: var(--bg-elev); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--muted); padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; white-space: nowrap; }
.marquee-track span::after { content: "•"; color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section shell ---------- */
.block { padding: 120px 0; }
.block-head { max-width: var(--container); margin-bottom: 56px; }

/* ---------- Services hover rows ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 70px 1fr auto; gap: 28px; align-items: center;
  padding: 36px 18px; border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden; transition: padding .35s var(--ease);
}
.svc-row::before { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateY(101%); transition: transform .45s var(--ease); z-index: 0; }
.svc-row:hover::before { transform: translateY(0); }
.svc-row > * { position: relative; z-index: 1; transition: color .35s var(--ease); }
.svc-row:hover { padding-left: 34px; }
.svc-row:hover, .svc-row:hover .svc-desc, .svc-row:hover .svc-num { color: #06050A; }
.svc-num { font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 1.1rem; }
.svc-name { font-weight: 700; font-size: clamp(1.4rem, 3vw, 2.2rem); }
.svc-desc { color: var(--muted); max-width: 560px; margin-top: 8px; font-size: 1rem; }
.svc-arrow { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; transition: transform .35s var(--ease), border-color .35s, color .35s; }
.svc-row:hover .svc-arrow { transform: rotate(-45deg); border-color: #06050A; color: #06050A; }
@media (max-width: 720px){
  .svc-row { grid-template-columns: 1fr; gap: 8px; }
  .svc-arrow { display: none; }
}

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split img { border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 1/1; object-fit: cover; }
.about-claim { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.08; }
.about-body { color: var(--muted); margin-top: 22px; font-size: 1.08rem; }
.about-body strong { color: var(--text); }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 64px; }
.stat { padding: 30px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); transition: border-color .3s, transform .3s var(--ease); }
.stat:hover { border-color: var(--gold); transform: translateY(-5px); }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold); }
.stat .lab { color: var(--muted); margin-top: 6px; font-size: .95rem; }
@media (max-width: 720px){ .stats { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.step { padding: 32px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); position: relative; transition: border-color .3s, transform .3s var(--ease), background .3s; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; border-radius: var(--radius) var(--radius) 0 0; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); opacity: 0; transition: opacity .3s var(--ease); }
.step:hover::before { opacity: 1; }
.step:hover { border-color: var(--gold); transform: translateY(-6px); background: var(--surface); }
.step .step-n { font-family: var(--font-display); font-weight: 700; font-size: 3.2rem; color: var(--gold-tint); -webkit-text-stroke: 1px var(--gold); }
.step h3 { font-size: 1.25rem; margin: 10px 0 12px; letter-spacing: .04em; }
.step p { color: var(--muted); font-size: .96rem; }
@media (max-width: 880px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .steps { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tcard { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); display: flex; flex-direction: column; gap: 22px; transition: border-color .3s, transform .3s var(--ease); }
.tcard:hover { border-color: var(--gold); transform: translateY(-6px); }
.tcard .quote { font-size: 1.05rem; color: var(--text); line-height: 1.6; }
.tcard .quote::before { content: "“"; font-family: var(--font-serif); color: var(--gold); font-size: 2.4rem; line-height: 0; display: block; margin-bottom: 14px; }
.tcard .stars { color: var(--gold); letter-spacing: 3px; }
.tperson { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tperson img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); }
.tperson .nm { font-family: var(--font-display); font-weight: 600; }
.tperson .rl { color: var(--muted); font-size: .85rem; }
@media (max-width: 880px){ .tcards { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { padding: 110px 0; text-align: center; }
.cta-card {
  border: 1px solid var(--line-strong); border-radius: 28px; padding: 80px 40px;
  background:
    radial-gradient(700px 320px at 50% 0%, var(--gold-tint), transparent 70%),
    var(--bg-card);
  position: relative; overflow: hidden;
}
.cta-card h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.cta-card p { color: var(--muted); max-width: 560px; margin: 18px auto 0; font-size: 1.1rem; }
.cta-card .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 70px 0 36px; background: var(--bg-elev); position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer p.note { color: var(--muted); max-width: 360px; font-size: .95rem; }
.footer h4 { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--muted); transition: color .25s; }
.footer ul a:hover { color: var(--gold); }
.footer-commission {
  margin-top: 54px; padding: 22px 26px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--bg-card); color: var(--muted);
  display: flex; align-items: center; gap: 16px; font-size: .98rem;
}
.footer-commission strong { color: var(--text); }
.footer-bottom { margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .86rem; }
.footer-bottom a { color: var(--muted); }
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; } .marquee-track { animation: none; } }

/* ---------- Inner page hero ---------- */
.page-hero { padding: 180px 0 70px; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); margin-top: 18px; }
.page-hero p { color: var(--muted); max-width: 600px; margin-top: 22px; font-size: 1.12rem; }

/* ---------- Rich service detail ---------- */
.svc-detail { padding: 40px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 90px 1fr 1.1fr; gap: 30px; }
.svc-detail .sd-num { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: var(--gold); }
.svc-detail h3 { font-size: 1.8rem; }
.svc-detail .sd-intro { color: var(--muted); margin-top: 12px; }
.svc-detail ul.deliver li { padding: 12px 0 12px 30px; position: relative; border-bottom: 1px dashed var(--line); color: var(--text); }
.svc-detail ul.deliver li:last-child { border-bottom: 0; }
.svc-detail ul.deliver li::before { content: ""; position: absolute; left: 0; top: 18px; width: 14px; height: 14px; border-radius: 4px; background: var(--gold-tint); border: 1px solid var(--gold); }
@media (max-width: 880px){ .svc-detail { grid-template-columns: 1fr; gap: 16px; } }

/* Commission callout */
.commission-box {
  margin-top: 70px; padding: 48px 44px; border-radius: 24px;
  border: 1px solid var(--gold); background: radial-gradient(600px 300px at 0% 0%, var(--gold-tint), transparent 70%), var(--bg-card);
}
.commission-box h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.commission-box p { color: var(--muted); margin-top: 16px; font-size: 1.08rem; max-width: 760px; }
.commission-box .rate { font-family: var(--font-display); font-weight: 700; font-size: 3.4rem; color: var(--gold); margin-top: 24px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); text-align: center; transition: border-color .3s, transform .3s var(--ease); }
.team-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.team-card img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; border: 2px solid var(--line-strong); }
.team-card .nm { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.team-card .rl { color: var(--gold); font-size: .9rem; margin-top: 4px; }
.team-card p { color: var(--muted); font-size: .92rem; margin-top: 12px; }
@media (max-width: 880px){ .team-grid { grid-template-columns: 1fr; } }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); }
.value .vic { width: 48px; height: 48px; border-radius: 14px; background: var(--gold-tint); color: var(--gold); display: grid; place-items: center; margin-bottom: 18px; }
.value h3 { font-size: 1.3rem; margin-bottom: 10px; }
.value p { color: var(--muted); }
@media (max-width: 880px){ .values { grid-template-columns: 1fr; } }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.7rem; margin: 48px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--text); }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul { margin: 8px 0 18px; }
.prose ul li { color: var(--muted); padding: 7px 0 7px 26px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.prose .updated { color: var(--muted-2); font-size: .9rem; }
.legal-highlight { padding: 24px; border-left: 3px solid var(--gold); background: var(--bg-card); border-radius: 0 12px 12px 0; margin: 22px 0; }
.legal-highlight p { color: var(--text); margin: 0; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-aside h2 { font-size: clamp(2rem, 4vw, 3rem); }
.contact-aside p { color: var(--muted); margin-top: 18px; }
.contact-points { margin-top: 32px; display: grid; gap: 16px; }
.contact-points li { display: flex; gap: 12px; align-items: center; color: var(--muted); }
.contact-points .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--gold-tint); color: var(--gold); display: grid; place-items: center; flex: none; }
.form { padding: 36px; border: 1px solid var(--line); border-radius: 22px; background: var(--bg-card); }
.field { margin-bottom: 18px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
  font-family: var(--font-body); font-size: .98rem; cursor: none;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-tint); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23A89880' stroke-width='2'%3E%3Cpath d='M2 4l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-success { display: none; padding: 16px; border-radius: 12px; background: var(--gold-tint); border: 1px solid var(--gold); color: var(--text); margin-top: 16px; text-align: center; }
.form-success.show { display: block; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; gap: 36px; } .field.row { grid-template-columns: 1fr; } }
