/* ============================================================================
   PADMAVATI VENTURES — luxury real-estate theme
   Brand palette pulled from the logo: charcoal + antique gold + warm neutrals.
   ============================================================================ */
:root {
  --ink:      #1A181B;   /* charcoal (logo background) */
  --ink-2:    #221F20;   /* raised dark surface */
  --ink-3:    #2C2827;
  --gold:     #AE8217;   /* brand gold (fills, buttons) */
  --gold-2:   #C6A15B;   /* lighter gold (text on dark) */
  --red:      #DE000F;   /* signature accent (used sparingly) */
  --paper:    #F6F4EF;   /* warm off-white */
  --paper-2:  #EFEBE3;
  --text:     #262321;   /* body text on light */
  --muted:    #6E675E;   /* muted text on light */
  --muted-d:  rgba(255,255,255,0.66); /* muted on dark */
  --line:     #E4DFD5;
  --line-d:   rgba(255,255,255,0.14);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1180px, 90%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--sans); font-weight: 500; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 3.5px; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--gold-2); }

.section { padding: 110px 0; }
.section-dark { background: var(--ink); color: var(--muted-d); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head h2, .section h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.section-intro { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
.section-dark .section-intro { color: var(--muted-d); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px; border: 1px solid transparent; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #916b12; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-full { width: 100%; border: none; }

.text-link {
  display: inline-block; margin-top: 20px; color: var(--gold);
  font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid var(--gold); padding-bottom: 4px;
}

/* ============================= HEADER ============================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: background 0.4s ease, padding 0.4s ease;
}
.site-header.scrolled { background: var(--ink); padding: 14px 0; box-shadow: 0 6px 24px rgba(0,0,0,0.28); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; flex-direction: column; align-items: center; gap: 9px; }
.brand-logo { height: 32px; width: auto; transition: height 0.4s ease; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5)); }
.site-header.scrolled .brand-logo { height: 27px; }
.brand-tagline {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 500; font-size: 0.6rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-2); white-space: nowrap;
}
.brand-tagline::before, .brand-tagline::after { content: ""; width: 16px; height: 1px; background: var(--gold-2); opacity: 0.75; }
.site-header.scrolled .brand-tagline { font-size: 0.55rem; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  color: #fff; font-size: 0.82rem; letter-spacing: 1.8px; text-transform: uppercase;
  font-weight: 400; transition: color 0.25s;
}
.main-nav a:hover { color: var(--gold-2); }
.main-nav .nav-cta { border: 1px solid var(--gold); color: var(--gold-2); padding: 9px 24px; }
.main-nav .nav-cta:hover { background: var(--gold); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: 0.3s; }

/* ============================= HERO ============================= */
.hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; animation: heroZoom 7s ease forwards; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(26,24,27,0.80) 0%, rgba(26,24,27,0.42) 45%, rgba(26,24,27,0.12) 100%),
    linear-gradient(180deg, rgba(26,24,27,0.20) 0%, rgba(26,24,27,0.25) 45%, rgba(26,24,27,0.80) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 760px; }
.hero-content h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.9rem); color: #fff; font-weight: 500;
  line-height: 1.16; letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero-sub { max-width: 540px; color: rgba(255,255,255,0.85); font-size: 1.08rem; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 12px; }
.hero-dots button { width: 34px; height: 3px; border: none; padding: 0; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s ease; }
.hero-dots button.active { background: var(--gold); }

/* ============================= STATS ============================= */
.stats { background: var(--ink-2); border-top: 1px solid rgba(174,130,23,0.35); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 46px 12px; border-right: 1px solid var(--line-d); }
.stat:last-child { border-right: none; }
.stat-num { display: block; font-family: var(--serif); font-size: 3rem; color: var(--gold-2); line-height: 1; }
.stat-num .plus { color: var(--gold); font-size: 1.8rem; }
.stat-label { display: block; margin-top: 10px; font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-d); }

/* ============================= LEGACY ============================= */
.legacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.legacy-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.legacy-text p { color: var(--muted); margin-bottom: 18px; }
.legacy-text em { font-style: italic; color: var(--text); }
.legacy-intro { max-width: 800px; margin: 0 auto; text-align: center; }
.legacy-intro h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 24px; }
.legacy-intro p { color: var(--muted); margin-bottom: 18px; }
.legacy-marks {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 34px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line);
}
.legacy-marks span { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.legacy-media { position: relative; }
.legacy-media img { width: 100%; height: 520px; object-fit: cover; }
.media-caption {
  position: absolute; top: 96px; left: 26px; z-index: 2;
  font-family: var(--serif); font-size: 1.45rem; color: #fff;
  padding-bottom: 6px; border-bottom: 2px solid var(--gold);
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.legacy-media::before {
  content: ""; position: absolute; top: 24px; left: 24px; right: -24px; bottom: -24px;
  border: 1px solid var(--gold); z-index: -1;
}
.legacy-badge {
  position: absolute; left: 24px; bottom: 24px; background: var(--ink); color: #fff;
  padding: 18px 26px; display: flex; flex-direction: column;
}
.legacy-badge-num { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-2); }
.legacy-badge-txt { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-d); }

/* ============================= PROJECTS ============================= */
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.project-card { background: var(--ink-2); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: border-color 0.3s; }
.project-card:hover { border-color: rgba(174,130,23,0.5); }
.project-media { overflow: hidden; height: 400px; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.project-media.fit { background: var(--ink-3); }
.project-media.fit img { object-fit: contain; }
.project-card:hover .project-media img { transform: scale(1.06); }
.project-info { padding: 26px 30px 30px; }
.tag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 12px; padding-bottom: 4px; border-bottom: 1px solid rgba(174,130,23,0.5);
}
.project-info h3 { font-size: 1.7rem; color: #fff; margin-bottom: 6px; }
.project-loc { font-size: 0.82rem; letter-spacing: 1px; color: rgba(255,255,255,0.55); }

/* upcoming projects */
.upcoming { margin-top: 88px; }
.upcoming-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.upcoming-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.upcoming-card { position: relative; background: var(--ink-2); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; }
.ribbon {
  position: absolute; top: 22px; right: -44px; transform: rotate(45deg); z-index: 3;
  background: var(--gold); color: #fff; padding: 7px 52px;
  font-size: 0.62rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.curtain {
  position: relative; aspect-ratio: 4 / 3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background:
    radial-gradient(circle at 50% 45%, rgba(174,130,23,0.14), transparent 55%),
    repeating-linear-gradient(90deg, #1c191a 0, #1c191a 15px, #262223 15px, #262223 30px);
}
.curtain::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--gold); }
.curtain-mark { font-size: 1.7rem; color: var(--gold-2); }
.curtain-label { font-family: var(--serif); font-size: 1.7rem; color: #fff; letter-spacing: 1px; }
.upcoming-info { padding: 24px 28px 28px; margin-top: auto; }
.reveal-name { font-family: var(--serif); font-size: 1.8rem; color: #fff; letter-spacing: 0.5px; line-height: 1.15; transition: color 0.25s; }
.rera { font-size: 0.66rem; letter-spacing: 0.8px; color: rgba(255,255,255,0.5); margin-top: 10px; }
.rera-label { color: var(--gold-2); font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase; }

/* --- featured upcoming project: image left, details right --- */
.feature-inner {
  display: grid; grid-template-columns: 1.15fr 1fr;
  grid-template-areas: "media head" "media info";
  align-content: center;
}
.proj-slider { grid-area: media; position: relative; aspect-ratio: 4 / 3; background: var(--ink-3); overflow: hidden; }
.feature-inner .reveal-head { grid-area: head; align-self: end; padding: 40px 44px 0; }
.feature-inner .upcoming-info { grid-area: info; align-self: start; margin-top: 0; padding: 22px 44px 40px; }

/* --- teaser (no imagery yet): slim band, no empty box --- */
.upcoming-card.teaser {
  background:
    radial-gradient(circle at 50% 50%, rgba(174,130,23,0.12), transparent 60%),
    repeating-linear-gradient(90deg, #1c191a 0, #1c191a 15px, #262223 15px, #262223 30px);
  border-top: 3px solid var(--gold);
}
.teaser-inner { padding: 106px 30px 100px; text-align: center; }
.teaser-inner .curtain-mark { display: block; font-size: 1.5rem; color: var(--gold-2); margin-bottom: 14px; }
.teaser-inner .upcoming-info { padding: 20px 0 0; margin-top: 18px; border-top: 1px solid rgba(255,255,255,0.09); display: inline-block; }
.proj-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.proj-slide.is-active { opacity: 1; }
.dl-hint {
  display: inline-block; margin-top: 22px; padding: 12px 26px;
  border: 1px solid var(--gold); color: var(--gold-2);
  font-size: 0.66rem; letter-spacing: 1.8px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: 0.25s;
}
.dl-hint:hover { background: var(--gold); color: #fff; }

/* ============================= VALUES ============================= */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.value { padding-top: 26px; border-top: 1px solid var(--line); }
.value-num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: 12px; }
.value h3 { font-size: 1.4rem; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 0.98rem; }

/* ============================= ABOUT / LEADERSHIP ============================= */
/* About — hidden by default, opens as a full-screen overlay on click */
.about-overlay { display: none; }
.about-overlay.open {
  display: block; position: fixed; inset: 0; z-index: 300;
  background: var(--paper); overflow-y: auto; animation: aboutIn 0.35s ease;
}
@keyframes aboutIn { from { opacity: 0; } to { opacity: 1; } }
.about-close {
  position: fixed; top: 22px; right: 26px; z-index: 310;
  width: 46px; height: 46px; border: 1px solid var(--line); background: #fff;
  font-size: 1.7rem; line-height: 1; color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: 0.25s;
}
.about-close:hover { background: var(--ink); color: #fff; }
.leadership { display: grid; gap: 72px; margin-top: 60px; }
.leader-profile { display: grid; grid-template-columns: 224px 1fr; gap: 48px; align-items: center; max-width: 860px; margin: 0 auto; }
.leader-profile.reverse { grid-template-columns: 1fr 224px; }
.leader-profile.reverse .leader-photo { order: 2; }
.leader-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top center;
  border: 1px solid var(--line); box-shadow: 0 22px 48px rgba(26,24,27,0.14);
}
.leader-text h3 { font-size: 2rem; margin-bottom: 4px; }
.leader-role { font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.leader-bio { color: var(--muted); font-size: 1rem; line-height: 1.85; }
.about-story { max-width: 760px; margin: 42px auto 0; text-align: center; }
.about-story p { color: var(--muted); font-size: 1.02rem; line-height: 1.9; margin-bottom: 18px; }
.about-story p:last-child { margin-bottom: 0; }
.leadership-head { text-align: center; max-width: 640px; margin: 76px auto 0; padding-top: 44px; position: relative; }
.leadership-head::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 56px; height: 2px; background: var(--gold); }
.leadership-title { font-size: 2rem; color: var(--ink); margin-bottom: 12px; }
.leadership-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.leadership-head + .leadership { margin-top: 40px; }
#about .eyebrow { font-size: 1.05rem; letter-spacing: 5px; margin-bottom: 22px; padding-left: 5px; }

/* ============================= CTA BAND ============================= */
.cta-band { background: var(--ink); color: #fff; text-align: center; padding: 82px 0 54px; border-top: 1px solid var(--line-d); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 30px; }

/* ============================= CONTACT ============================= */
#contact { padding-top: 46px; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.contact-lead { color: var(--muted-d); margin: 4px 0 30px; }
.contact-list { list-style: none; }
.contact-list li { padding: 16px 0; border-bottom: 1px solid var(--line-d); display: flex; flex-direction: column; gap: 4px; }
.contact-list span { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-2); }
.contact-list a { color: #fff; font-size: 1.05rem; }

/* form */
.enquiry-form { display: grid; gap: 26px; margin-top: 52px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-d);
  color: #fff; font-family: var(--sans); font-size: 1rem; font-weight: 300; padding: 14px 0 10px;
}
.field textarea { resize: vertical; }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C6A15B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center; padding-top: 22px; }
.field select option { color: #1A181B; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field label {
  position: absolute; left: 0; top: 14px; color: rgba(255,255,255,0.5);
  font-size: 1rem; pointer-events: none; transition: 0.25s ease;
}
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label, .field textarea:not(:placeholder-shown) ~ label {
  top: -6px; font-size: 0.7rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold-2);
}
.field .label-static { top: -6px; font-size: 0.7rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold-2); }
.hidden-field { display: none; }
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status.ok { color: var(--gold-2); }
.form-status.err { color: #ff8a8a; }

/* ============================= FOOTER ============================= */
.site-footer { background: var(--ink); color: var(--muted-d); padding-top: 72px; border-top: 1px solid rgba(174,130,23,0.3); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { display: inline-flex; flex-direction: column; align-items: center; justify-self: start; }
.footer-logo { height: 32px; margin-bottom: 14px; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4)); }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { color: var(--gold-2); font-family: var(--sans); font-weight: 500; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); margin-bottom: 10px; font-size: 0.92rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-col p { font-size: 0.92rem; }
.footer-col .fc-item { margin-bottom: 12px; color: rgba(255,255,255,0.72); }
.footer-col .fc-item span { display: block; font-size: 0.64rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-2); margin-bottom: 3px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; border-top: 1px solid var(--line-d); margin-top: 0; }
.footer-bottom p { font-size: 0.78rem; letter-spacing: 1px; color: rgba(255,255,255,0.45); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ink); color: #fff; border: 1px solid rgba(174,130,23,0.42);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4); transition: transform 0.25s, background 0.25s;
}
.wa-float:hover { background: #000; transform: translateY(-3px); }
.wa-float svg { width: 26px; height: 26px; }
.social-link {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.72); transition: 0.25s;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.social-link svg { width: 20px; height: 20px; }

/* ============================= RESPONSIVE ============================= */
@media (max-width: 980px) {
  .legacy-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .leadership { gap: 50px; }
  .leader-profile, .leader-profile.reverse {
    display: grid; grid-template-columns: 132px 1fr;
    grid-template-areas: "photo title" "bio bio";
    gap: 6px 22px; align-items: center; max-width: 520px; margin: 0 auto;
  }
  .leader-photo { grid-area: photo; }
  .leader-text { display: contents; }
  .leader-title { grid-area: title; }
  .leader-title .leader-role { margin-bottom: 0; }
  .leader-bio { grid-area: bio; margin-top: 20px; }
  .leader-text h3 { font-size: 1.5rem; }
  .enquiry-form { margin-top: 0; }
  .projects-grid, .upcoming-grid { grid-template-columns: 1fr; }
  .project-media { height: auto; }
  .project-media img { height: auto; }
  .feature-inner { grid-template-columns: 1fr; grid-template-areas: "media" "head" "info"; }
  .feature-inner .reveal-head { padding: 28px 26px 0; text-align: center; }
  .feature-inner .upcoming-info { padding: 18px 26px 30px; text-align: center; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legacy-media::before { display: none; }
}
@media (max-width: 780px) {
  .nav-toggle { display: flex; z-index: 101; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(80%, 320px);
    background: var(--ink); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 28px; padding: 40px; transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-d); }
  .section { padding: 74px 0; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}
