/* ============================================================
   WEDGEFIELD COUNTRY CLUB · main.css
   Lowcountry Heritage palette · Cormorant Garamond + Inter Tight
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter+Tight:wght@400;500&family=JetBrains+Mono:wght@400&display=swap');

:root {
  /* ── Lowcountry Heritage brand tokens ── */
  --moss:          #2C3E2D;
  --moss-deep:     #1C2B1D;
  --moss-mid:      #344A35;
  --brass:         #B8904A;
  --brass-light:   #D4A55A;
  --brass-soft:    #E8D4A8;
  --ivory:         #F5F0E8;
  --parchment:     #EDE7D9;
  --parchment-2:   #E4D9C7;

  /* ── base.css structural aliases ── */
  --paper:         #F5F0E8;
  --paper-2:       #EDE7D9;
  --paper-soft:    #F2EBD9;
  --ink:           #1A1A14;
  --ink-2:         #242419;
  --accent:        #B8904A;
  --accent-2:      #D4A55A;
  --accent-soft:   #E8D4A8;
  --spot:          #2C3E2D;
  --muted:         #4A4535;
  --muted-2:       #6B6250;
  --line:          rgba(26,26,20,.14);
  --line-2:        rgba(26,26,20,.06);

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body:    "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", "SF Mono", Menlo, monospace;

  --container:        1320px;
  --container-narrow: 1040px;
  --gutter:    clamp(20px, 4vw, 56px);
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px -16px rgba(0,0,0,.12);
  --shadow-lift: 0 2px 4px rgba(0,0,0,.06), 0 24px 48px -20px rgba(0,0,0,.18);
}

/* ── Reset ── */
* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
*::selection { background: var(--moss); color: var(--ivory); }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; max-width: 100vw; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px; line-height: 1.65; font-weight: 400;
  color: var(--ink); background: var(--paper);
  overflow-x: hidden; width: 100%; max-width: 100vw;
  position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
section, header, footer, nav { max-width: 100vw; overflow-x: clip; position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .35s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--moss); }

/* ── Film grain ── */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display); font-weight: 400;
  letter-spacing: -.012em; line-height: 1.08; color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 2rem); }
p  { color: var(--muted); }
em, .italic { font-style: italic; font-family: var(--f-display); }
.serif { font-family: var(--f-display); font-weight: 400; letter-spacing: -.01em; }

/* signature eyebrow label */
.eyebrow {
  font-family: var(--f-body); text-transform: uppercase; letter-spacing: .4em;
  font-size: 11px; font-weight: 500; color: var(--ink); display: inline-block;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--accent); margin-right: 14px; vertical-align: middle;
}
.eyebrow--light { color: var(--ivory); }
.eyebrow--light::before { background: var(--brass-light); }
.eyebrow--brass { color: var(--brass-light); }
.eyebrow--brass::before { background: var(--brass-light); }
.label-mono {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted-2);
}

/* ── Layout ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 10vw, 140px) 0; }
.section--dark  { background: var(--ink); color: var(--paper); }
.section--dark  h1,.section--dark  h2,.section--dark  h3 { color: var(--paper); }
.section--dark  p { color: rgba(245,240,232,.72); }
.section--moss  { background: var(--moss); color: var(--ivory); }
.section--moss  h1,.section--moss  h2,.section--moss  h3 { color: var(--ivory); }
.section--moss  p { color: rgba(245,240,232,.80); }
.section--paper2 { background: var(--paper-2); }
.grid { display: grid; gap: clamp(24px, 4vw, 64px); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 32px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  transition: all .35s var(--ease); cursor: pointer;
}
.btn:hover { background: transparent; color: var(--ink); opacity: 1; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn--accent:hover { background: transparent; color: var(--accent); border-color: var(--accent); opacity: 1; }
.btn--ivory { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.btn--ivory:hover { background: transparent; color: var(--ivory); border-color: var(--ivory); opacity: 1; }
.btn--moss { background: var(--moss); border-color: var(--moss); color: var(--ivory); }
.btn--moss:hover { background: transparent; color: var(--moss); border-color: var(--moss); opacity: 1; }

/* ── Announce bar ── */
.announce {
  background: var(--moss-deep); text-align: center; padding: 11px 20px;
  font-size: 10.5px; letter-spacing: .36em; text-transform: uppercase;
  color: rgba(245,240,232,.65); font-weight: 400;
}
.announce span { color: var(--brass-light); }

/* ── Sticky Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 24px; padding: 18px var(--gutter);
  background: color-mix(in srgb, var(--paper) 93%, transparent);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease);
}
.nav.scrolled { padding-top: 12px; padding-bottom: 12px; }
.nav-logo {
  justify-self: start; font-family: var(--f-display);
  font-size: 1.25rem; letter-spacing: .06em; line-height: 1.1;
}
.nav-logo small { display: block; font-family: var(--f-mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); font-style: normal; margin-top: 1px; }
.nav-links {
  display: flex; gap: 28px; justify-self: center; list-style: none;
  font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500;
}
.nav-links a:hover { color: var(--accent); opacity: 1; }
.nav-cta { justify-self: end; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; justify-self: end; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }

/* ── Marquee ── */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 13px 0; background: var(--paper-2); }
.marquee-track {
  display: flex; gap: 28px; white-space: nowrap; width: max-content;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2); animation: marq 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span:nth-child(even) { color: var(--accent); }
@keyframes marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── Hero (full-bleed Lowcountry moss gradient) ── */
.hero {
  background: linear-gradient(150deg, var(--moss-deep) 0%, var(--moss) 55%, #203D22 100%);
  color: var(--ivory);
  padding: clamp(88px, 15vh, 200px) 0 clamp(64px, 10vw, 140px);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 65% 55% at 72% 42%, rgba(184,144,74,.18) 0%, transparent 68%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") 50%/300px;
  opacity: .04; mix-blend-mode: overlay; z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-meta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .07em;
  color: rgba(245,240,232,.50); margin-bottom: 28px;
}
.hero-meta-row .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--brass-light); flex-shrink: 0; }
.hero h1 { color: var(--ivory); margin-bottom: 24px; }
.hero h1 em { color: var(--brass-light); font-style: italic; }
.hero-tag {
  font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 54ch;
  color: rgba(245,240,232,.75); line-height: 1.7;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 44px; }

/* ── Brass rule separator ── */
.brass-rule { width: 60px; height: 1px; background: var(--accent); margin: 20px 0; }
.brass-rule--center { margin: 20px auto; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--moss); padding: clamp(36px, 5vw, 64px) 0;
  border-top: 1px solid rgba(245,240,232,.08);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.trust-item { text-align: center; padding: clamp(20px, 3vw, 36px) 20px; border-right: 1px solid rgba(245,240,232,.12); }
.trust-item:last-child { border-right: none; }
.trust-val { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--brass-light); line-height: 1; }
.trust-lbl { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,240,232,.55); margin-top: 8px; }

/* ── Story split ── */
.split { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: clamp(40px, 6vw, 100px); }
.split--reverse { grid-template-columns: 1fr 1.1fr; }
.split--reverse .split-img { order: 2; }
.split--reverse .split-copy { order: 1; }
.split-img { position: relative; }
.split-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block; background: var(--parchment-2);
}
.split-img-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26,26,20,.52); padding: 10px 16px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(245,240,232,.80);
}

/* ── Revenue triptych ── */
.triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.triptych-card {
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid var(--line);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.triptych-card:last-child { border-right: none; }
.triptych-card:hover { background: var(--paper-2); box-shadow: inset 0 -3px 0 var(--accent); }
.triptych-icon {
  width: 48px; height: 48px; border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--accent); font-size: 1.4rem;
}
.triptych-card h3 { margin-top: 4px; font-size: clamp(1.3rem, 2vw, 1.8rem); }
.triptych-card p { margin-top: 12px; font-size: .94rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  color: var(--accent); font-family: var(--f-body);
  transition: gap .3s var(--ease);
}
.card-link::after { content: "→"; }
.card-link:hover { gap: 14px; opacity: 1; }

/* ── Feature band (weddings / moss bg) ── */
.feature-band {
  background: var(--moss);
  padding: clamp(64px, 10vw, 140px) 0;
}
.feature-band h2 { color: var(--ivory); }
.feature-band p { color: rgba(245,240,232,.80); }
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.feature-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--moss-deep); display: block; }
.feature-detail { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.feature-detail-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-detail-num {
  font-family: var(--f-display); font-size: 2.4rem; color: var(--brass-light);
  line-height: 1; flex-shrink: 0; width: 52px;
}
.feature-detail-text h4 { font-family: var(--f-display); font-size: 1.1rem; color: var(--ivory); margin-bottom: 4px; }
.feature-detail-text p { font-size: .9rem; color: rgba(245,240,232,.72); }

/* ── Pub age display ── */
.pub-age-num {
  font-family: var(--f-display); font-size: clamp(4rem, 10vw, 8rem);
  color: var(--brass-light); line-height: 1;
}

/* ── Cabin / lodging grid ── */
.cabin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cabin-card {
  background: var(--paper-2); padding: 32px;
  border-bottom: 3px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.cabin-card:hover { border-bottom-color: var(--accent); box-shadow: var(--shadow-soft); }
.cabin-card h3 { font-size: clamp(1.1rem, 1.8vw, 1.45rem); margin-top: 8px; }
.cabin-badge {
  display: inline-block; background: var(--moss); color: var(--brass-soft);
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .18em;
  text-transform: uppercase; padding: 4px 10px; margin-bottom: 12px;
}
.cabin-detail { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-top: 10px; line-height: 2; }

/* ── Golf amenity scorecard ── */
.scorecard { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2px; margin-top: 40px; }
.scorecard-item { background: var(--paper-2); padding: 24px 28px; }
.scorecard-item .sc-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.scorecard-item .sc-val { font-family: var(--f-display); font-size: 1.6rem; color: var(--ink); }

/* ── CTA band ── */
.cta-band {
  background: var(--parchment-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(64px, 10vw, 120px) 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 3.2rem); }
.cta-band em { color: var(--accent); }
.cta-band p { font-size: 1.05rem; max-width: 54ch; margin: 16px auto 0; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ── Testimonial strip ── */
.testimonial-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.testimonial-card { padding: 32px; background: var(--paper-2); position: relative; }
.testimonial-card::before {
  content: "\201C"; font-family: var(--f-display); font-size: 4rem; line-height: 1;
  color: var(--accent); position: absolute; top: 20px; right: 24px; opacity: .4;
}
.testimonial-card p { font-size: .95rem; font-style: italic; font-family: var(--f-display); color: var(--ink); line-height: 1.65; }
.testimonial-author { font-family: var(--f-mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted-2); margin-top: 16px; }

/* ── Contact form ── */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--paper); border: 1px solid var(--line); padding: 13px 16px;
  font-family: var(--f-body); font-size: 15px; color: var(--ink);
  transition: border-color .3s var(--ease); width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 130px; }

/* ── Footer ── */
.footer { background: var(--moss-deep); color: var(--ivory); padding: clamp(56px, 8vw, 100px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: clamp(28px, 4vw, 60px); }
.footer h4 { font-family: var(--f-display); font-size: 1.05rem; color: var(--ivory); margin-bottom: 16px; letter-spacing: .02em; }
.footer a { color: rgba(245,240,232,.58); }
.footer a:hover { color: var(--brass-light); opacity: 1; }
.footer p { color: rgba(245,240,232,.58); font-size: .88rem; line-height: 1.8; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.footer-brand { font-family: var(--f-display); font-size: 1.5rem; color: var(--ivory); display: block; margin-bottom: 6px; }
.footer-tagline { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 16px; }
.footer-credit {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(245,240,232,.10);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .06em; color: rgba(245,240,232,.36);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-credit a { color: rgba(245,240,232,.36); }
.footer-credit a:hover { color: var(--brass-light); opacity: 1; }

/* ── Inner page hero ── */
.page-hero {
  background: linear-gradient(150deg, var(--moss-deep) 0%, var(--moss) 60%, #203D22 100%);
  color: var(--ivory); padding: clamp(80px, 12vh, 150px) 0 clamp(48px, 7vw, 96px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 50% at 65% 55%, rgba(184,144,74,.14) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--ivory); }
.page-hero h1 em { color: var(--brass-light); }
.page-hero p { color: rgba(245,240,232,.75); max-width: 58ch; margin-top: 16px; font-size: 1.05rem; }
.page-hero .eyebrow { color: rgba(245,240,232,.6); }
.page-hero .eyebrow::before { background: var(--brass-light); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in, .no-js .reveal, .reveal.reveal--shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Image fallback ── */
.img-fallback { display: flex; align-items: center; justify-content: center;
  background: var(--parchment-2); border: 1px solid var(--line); min-height: 240px; }
.img-fallback-cap { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted-2); padding: 24px; text-align: center; }

/* ── Utilities ── */
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 56px; }
.maxw-prose { max-width: 60ch; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .triptych { grid-template-columns: 1fr; }
  .triptych-card { border-right: none; border-bottom: 1px solid var(--line); }
  .triptych-card:last-child { border-bottom: none; }
  .cabin-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex; position: fixed; inset: 62px 0 auto 0; flex-direction: column;
    background: var(--paper); padding: 28px var(--gutter); gap: 22px;
    border-bottom: 1px solid var(--line); z-index: 99;
  }
  .split, .split--reverse, .feature-split { grid-template-columns: 1fr; }
  .split--reverse .split-img, .split--reverse .split-copy { order: unset; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .testimonial-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: 1; }
}
@media (max-width: 600px) {
  .cabin-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .scorecard { grid-template-columns: repeat(2, 1fr); }
}
