/* ==========================================================================
   Carolina Golf Range — site.css
   Palette: navy #1B3A6B / gold #C9A84C / white
   Type: Archivo Black (display) + Archivo (everything else)
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --navy:        #1B3A6B;
  --navy-deep:   #12294D;
  --navy-ink:    #0B1A31;
  --navy-tint:   #EEF2F8;

  --gold:        #C9A84C;
  --gold-bright: #E3C368;
  --gold-deep:   #7E6420;

  --paper:       #FFFFFF;
  --paper-warm:  #F8F6F2;
  --line:        #E3DFD6;
  --line-strong: #CFC9BC;

  --text:        #1C2534;
  --text-muted:  #56607192;
  --text-soft:   #5A6474;

  --font-display: 'Archivo Black', 'Archivo', system-ui, -apple-system, sans-serif;
  --font-sans:    'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap:   1160px;
  --wrap-n: 900px;

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;

  --sh-sm: 0 1px 2px rgba(11,26,49,.06), 0 2px 8px rgba(11,26,49,.05);
  --sh:    0 2px 4px rgba(11,26,49,.05), 0 12px 28px rgba(11,26,49,.09);
  --sh-lg: 0 4px 8px rgba(11,26,49,.06), 0 24px 56px rgba(11,26,49,.14);

  --ease: cubic-bezier(.22,.61,.36,1);

  --nav-h: 68px;
  --bar-h: 0px;
}
@media (max-width: 860px) { :root { --nav-h: 60px; --bar-h: 64px; } }

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: var(--bar-h);
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 3px; border-radius: 3px; }

/* numerals that line up — prices, hours, phone */
.num, .price, .hours-table td, .phone-num, .stat-value {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* ---------- 3. Type scale ---------- */
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-family: var(--font-display); font-size: clamp(2.35rem, 6.2vw, 4.4rem); letter-spacing: -0.035em; }
h2 { font-family: var(--font-display); font-size: clamp(1.85rem, 4vw, 2.9rem); letter-spacing: -0.03em; }
h3 { font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-weight: 700; font-size: 1.0625rem; }
p  { text-wrap: pretty; }
.lede { font-size: clamp(1.075rem, 1.9vw, 1.3rem); line-height: 1.6; color: var(--text-soft); }

.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .85rem;
}
.on-navy .eyebrow { color: var(--gold-bright); }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.wrap-n { max-width: var(--wrap-n); }
.section { padding-block: clamp(3.75rem, 8vw, 7rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .9rem; }
.bg-warm { background: var(--paper-warm); }
.bg-tint { background: var(--navy-tint); }
.on-navy { background: var(--navy); color: #fff; }
.on-navy p { color: rgba(255,255,255,.82); }
.on-navy .lede { color: rgba(255,255,255,.86); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 56px; padding: .85rem 1.65rem;
  border: 2px solid transparent; border-radius: 999px;
  font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* gold bg + navy text = 4.3:1, passes AA at this size/weight */
.btn-primary { background: var(--gold); color: var(--navy-ink); box-shadow: var(--sh); }
.btn-primary:hover { background: var(--gold-bright); box-shadow: var(--sh-lg); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--navy); background: var(--navy-tint); }

.on-navy .btn-ghost,
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.on-navy .btn-ghost:hover,
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- 6. Open-now chip ---------- */
.status {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .48rem 1rem .48rem .8rem;
  border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  backdrop-filter: blur(8px);
}
.status .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); flex: none; }
.status[data-open="true"]  .dot { background: #4ADE80; box-shadow: 0 0 0 4px rgba(74,222,128,.22); }
.status[data-open="false"] .dot { background: #F0A868; box-shadow: 0 0 0 4px rgba(240,168,104,.2); }
.status--light { background: var(--navy-tint); border-color: var(--line); color: var(--navy); }

/* ---------- 7. Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  height: var(--nav-h);
  background: var(--navy-ink);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.hdr-in { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: #fff; margin-right: auto; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand span { font-family: var(--font-display); font-size: 1.02rem; letter-spacing: -.01em; line-height: 1.1; }
.brand span small { display: block; font-family: var(--font-sans); font-weight: 500; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  padding: .55rem .8rem; border-radius: var(--r-sm);
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: .94rem; font-weight: 500;
  transition: color .15s, background-color .15s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.09); }
.hdr .btn { min-height: 44px; padding: .5rem 1.15rem; font-size: .94rem; }

.burger {
  display: none; width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.09); border: 0; border-radius: var(--r-sm);
  color: #fff; cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }
.burger .x, .burger[aria-expanded="true"] .bars { display: none; }
.burger[aria-expanded="true"] .x { display: block; }

@media (max-width: 860px) {
  .burger { display: flex; }
  .hdr .btn-primary { display: none; }
  .nav {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-ink);
    padding: .5rem clamp(1.15rem, 4vw, 2.5rem) 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--sh-lg);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .18s var(--ease), transform .18s var(--ease);
  }
  .nav[data-open="true"] { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: .95rem .5rem; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.05rem; }
}

/* ---------- 8. Hero ---------- */
.hero { position: relative; background: var(--navy-ink); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,26,49,.62) 0%, rgba(11,26,49,.55) 38%, rgba(11,26,49,.92) 100%),
    linear-gradient(96deg, rgba(18,41,77,.86) 0%, rgba(18,41,77,.42) 62%, rgba(18,41,77,.2) 100%);
}
.hero-in { position: relative; padding-block: clamp(3.5rem, 9vw, 7.5rem) clamp(3rem, 6vw, 5rem); max-width: 42rem; }
.hero h1 { margin: 1.15rem 0 0; text-shadow: 0 2px 24px rgba(11,26,49,.5); }
.hero h1 em { font-style: normal; color: var(--gold-bright); display: block; }
.hero .lede { margin-top: 1.15rem; max-width: 34rem; color: rgba(255,255,255,.9); text-shadow: 0 1px 12px rgba(11,26,49,.7); }
.hero .btn-row { margin-top: 2rem; }

.hero-band { position: relative; background: rgba(11,26,49,.82); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.16); }
.hero-facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px 0;
}
.hero-facts div { padding: 1.25rem clamp(1.15rem,3vw,1.6rem); position: relative; }
.hero-facts div + div::before { content:""; position:absolute; left:0; top:1.1rem; bottom:1.1rem; width:1px; background:rgba(255,255,255,.18); }
.hero-facts div:first-child { padding-left: 0; }
.hero-facts div:last-child { padding-right: 0; }
.hero-facts dt { font-size: .74rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); }
.hero-facts dd { font-weight: 700; font-size: clamp(.95rem, 1.6vw, 1.1rem); margin-top: .3rem; line-height: 1.3; }
@media (max-width: 700px) {
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div { padding: .85rem 0; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
  .hero-facts div + div::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 1px; }
  .hero-facts dd { margin-top: 0; text-align: right; }
}

/* ---------- 9. Under the lights ---------- */
.lights { position: relative; overflow: hidden; }
.lights::before {
  content: ""; position: absolute; top: -30%; left: 50%; width: 120%; height: 160%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.22) 0%, rgba(201,168,76,0) 62%);
  pointer-events: none;
}
.lights-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 860px) { .lights-grid { grid-template-columns: 1fr; } }

.clock-list { list-style: none; margin-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.16); }
.clock-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.16);
}
.clock-list .who { font-weight: 600; color: rgba(255,255,255,.9); }
.clock-list .when { font-variant-numeric: tabular-nums; color: rgba(255,255,255,.62); font-size: .96rem; }
.clock-list li.us .who { color: var(--gold-bright); }
.clock-list li.us .when { color: var(--gold-bright); font-weight: 700; }

.lights-note { margin-top: 1.5rem; font-size: .9rem; color: rgba(255,255,255,.55); }

.big-hours {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.big-hours .until { font-family: var(--font-display); font-size: clamp(3.2rem, 9vw, 5.2rem); line-height: .92; color: var(--gold-bright); letter-spacing: -.04em; }
.big-hours .every { margin-top: .5rem; font-size: 1.15rem; font-weight: 700; }
.hours-table { width: 100%; margin-top: 1.5rem; border-collapse: collapse; font-size: .96rem; }
.hours-table th { text-align: left; font-weight: 600; padding: .5rem 0; color: rgba(255,255,255,.78); }
.hours-table td { text-align: right; padding: .5rem 0; color: rgba(255,255,255,.9); }
.hours-table tr + tr th, .hours-table tr + tr td { border-top: 1px solid rgba(255,255,255,.11); }
.last-bucket { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.16); font-size: .94rem; color: rgba(255,255,255,.78); }

/* ---------- 10. Pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: start; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
}
.card-head { padding: 1.5rem clamp(1.35rem,3vw,2rem) 1.15rem; border-bottom: 1px solid var(--line); }
.card-head h3 { letter-spacing: -.02em; }
.card-head p { margin-top: .4rem; font-size: .94rem; color: var(--text-soft); }
.card-body { padding: .5rem clamp(1.35rem,3vw,2rem) 1.75rem; }

.rate { display: flex; align-items: baseline; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.rate:last-child { border-bottom: 0; }
.rate .name { font-weight: 700; font-size: 1.08rem; }
.rate .balls { display: block; font-weight: 400; font-size: .88rem; color: var(--text-soft); margin-top: .15rem; }
.rate .price { margin-left: auto; font-family: var(--font-display); font-size: 1.85rem; letter-spacing: -.03em; color: var(--navy); white-space: nowrap; }
.rate .price .qual { font-family: var(--font-sans); font-weight: 600; font-size: .82rem; letter-spacing: 0; color: var(--text-soft); margin-right: .3rem; vertical-align: .28em; }
.lesson-card .rate .price .qual { color: rgba(255,255,255,.7); }

.same-price {
  display: flex; gap: .85rem; align-items: flex-start;
  margin-top: 1.35rem; padding: 1rem 1.15rem;
  background: var(--navy-tint); border-radius: var(--r);
  font-size: .95rem; font-weight: 600; color: var(--navy);
}
.same-price svg { flex: none; color: var(--gold-deep); margin-top: 1px; }

.lesson-card { background: var(--navy); color: #fff; border-color: transparent; }
.lesson-card .card-head { border-bottom-color: rgba(255,255,255,.16); }
.lesson-card .card-head p { color: rgba(255,255,255,.75); }
.lesson-card .rate { border-bottom-color: rgba(255,255,255,.14); }
.lesson-card .rate .price { color: var(--gold-bright); }
.lesson-card .rate .balls { color: rgba(255,255,255,.7); }
.lesson-card .btn { width: 100%; margin-top: 1.35rem; }

/* ---------- 11. Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.svc {
  display: flex; flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--line-strong); }
.svc-ico {
  width: 50px; height: 50px; margin-bottom: 1.15rem;
  display: grid; place-items: center;
  border-radius: 14px; background: var(--navy); color: var(--gold-bright);
}
.svc-ico svg { width: 25px; height: 25px; }
.svc h3 { margin-bottom: .5rem; }
.svc p { font-size: .96rem; color: var(--text-soft); }
.svc .tag {
  align-self: flex-start; margin-top: auto; padding-top: 0;
  margin-block-start: 1.15rem; padding: .28rem .65rem; border-radius: 999px;
  background: var(--navy-tint); color: var(--navy);
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}

/* ---------- 12. Coaching / Andrew ---------- */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.flip { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 860px) { .split, .split.flip { grid-template-columns: 1fr; } }

.portrait { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); background: var(--navy); }
.portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.94) contrast(1.04); }
.portrait figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.5rem 1.35rem 1.15rem;
  background: linear-gradient(180deg, rgba(11,26,49,0) 0%, rgba(11,26,49,.9) 65%);
  color: #fff;
}
.portrait figcaption strong { display: block; font-size: 1.1rem; }
.portrait figcaption span { font-size: .88rem; color: var(--gold-bright); font-weight: 600; }

.tick-list { list-style: none; margin-top: 1.75rem; display: grid; gap: .9rem; }
.tick-list li { display: flex; gap: .8rem; align-items: flex-start; }
.tick-list svg { flex: none; width: 21px; height: 21px; color: var(--gold-deep); margin-top: 3px; }
.on-navy .tick-list svg { color: var(--gold-bright); }
.tick-list strong { display: block; }
.tick-list span { font-size: .95rem; color: var(--text-soft); }
.on-navy .tick-list span { color: rgba(255,255,255,.75); }

/* ---------- 13. Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stats div { background: var(--paper); padding: 1.5rem 1.25rem; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.6rem); color: var(--navy); line-height: 1; letter-spacing: -.03em; }
.stat-label { margin-top: .45rem; font-size: .84rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--text-soft); }

/* ---------- 14. Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.5rem, 1.2vw, .9rem); }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--r); background: var(--navy-tint); aspect-ratio: 4/3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.045); }
.gallery img.pos-top    { object-position: 50% 22%; }
.gallery img.pos-bottom { object-position: 50% 78%; }
.gal-cta {
  aspect-ratio: 4/3; border-radius: var(--r);
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.15rem, 2.5vw, 1.75rem); text-decoration: none;
  transition: background-color .2s var(--ease);
}
.gal-cta:hover { background: var(--navy-deep); }
.gal-cta .big { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.05; letter-spacing: -.03em; color: var(--gold-bright); }
.gal-cta p { margin-top: .6rem; font-size: .93rem; color: rgba(255,255,255,.8); }
.gal-cta .more { margin-top: 1rem; font-weight: 700; font-size: .95rem; display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- 15. Reviews ---------- */
.reviews-cta {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.25rem, 3vw, 2.5rem); align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-sm);
}
@media (max-width: 760px) { .reviews-cta { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.g-mark { width: 58px; height: 58px; flex: none; }

/* ---------- 16. Getting here ---------- */
.map-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); background: var(--navy-tint); }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; }
.drive-list { list-style: none; display: grid; gap: .1rem; margin-top: 1.5rem; }
.drive-list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.drive-list li:first-child { border-top: 1px solid var(--line); }
.drive-list .from { font-weight: 600; }
.drive-list .mins { font-variant-numeric: tabular-nums; color: var(--text-soft); }

/* ---------- 17. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 4vw, 3.5rem); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.call-panel { padding: clamp(1.75rem, 4vw, 2.5rem); background: var(--navy); color: #fff; border-radius: var(--r-lg); }
.call-panel .phone-num {
  display: inline-block; margin: .35rem 0 1.25rem;
  font-family: var(--font-display); font-size: clamp(1.9rem, 4.6vw, 2.6rem);
  letter-spacing: -.03em; color: var(--gold-bright); text-decoration: none;
}
.call-panel .phone-num:hover { text-decoration: underline; text-underline-offset: 5px; }
.meta-list { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.16); }
.meta-list li { display: flex; gap: .85rem; align-items: flex-start; font-size: .97rem; }
.meta-list svg { flex: none; width: 20px; height: 20px; color: var(--gold-bright); margin-top: 3px; }
.meta-list a { color: #fff; }

.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: .88rem; font-weight: 600; }
.field .hint { font-size: .82rem; color: var(--text-soft); font-weight: 400; }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem;
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,107,.14); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { margin-top: .9rem; font-size: .85rem; color: var(--text-soft); }
.form-status { margin-top: 1rem; padding: .85rem 1rem; border-radius: var(--r-sm); font-size: .93rem; font-weight: 600; display: none; }
.form-status[data-state="ok"]   { display: block; background: #E8F6EC; color: #14532D; }
.form-status[data-state="err"]  { display: block; background: #FDECEC; color: #7F1D1D; }

/* ---------- 18. Footer ---------- */
.ftr { background: var(--navy-ink); color: rgba(255,255,255,.72); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: .95rem; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(1.75rem, 4vw, 3rem); }
@media (max-width: 860px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ftr-grid { grid-template-columns: 1fr; } }
.ftr h3, .ftr h4 { color: var(--gold); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.ftr ul { list-style: none; display: grid; gap: .15rem; }
.ftr li { min-height: 2.25rem; display: flex; align-items: center; }
.ftr a { color: rgba(255,255,255,.72); text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; padding-block: .25rem; }
.ftr a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.ftr .brand { margin-bottom: 1rem; }
.ftr .phone-num { font-weight: 700; font-size: 1.05rem; color: #fff; }
.ftr address { font-style: normal; line-height: 1.75; }
.socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.socials a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); transition: background-color .15s; }
.socials a:hover { background: var(--gold); color: var(--navy-ink); }
.socials svg { width: 19px; height: 19px; }
.ftr-base { margin-top: clamp(2.25rem, 5vw, 3.25rem); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.13); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .86rem; color: rgba(255,255,255,.5); }

/* ---------- 19. Sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; align-items: center; gap: .9rem;
  padding: .7rem clamp(.9rem, 3vw, 1.25rem);
  padding-bottom: calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: var(--navy-ink); border-top: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 -8px 28px rgba(11,26,49,.28);
  transform: translateY(110%); transition: transform .26s var(--ease);
}
.callbar[data-show="true"] { transform: none; }
@media (max-width: 860px) { .callbar { display: flex; } }
.callbar .info { min-width: 0; }
.callbar .state { font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: var(--gold); text-transform: uppercase; }
.callbar .sub { font-size: .88rem; color: rgba(255,255,255,.82); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.callbar .btn { margin-left: auto; min-height: 50px; padding: .6rem 1.3rem; }

/* ---------- 20. Skip link + utilities ---------- */
.skip {
  position: absolute; left: .75rem; top: -100px; z-index: 200;
  padding: .8rem 1.25rem; background: var(--gold); color: var(--navy-ink);
  font-weight: 700; border-radius: 0 0 var(--r-sm) var(--r-sm); text-decoration: none;
  transition: top .18s var(--ease);
}
.skip:focus { top: 0; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
[hidden] { display: none !important; }
.todo { background: #FFF4CC; color: #6B4E00; padding: .1rem .4rem; border-radius: 3px; font-weight: 700; font-size: .85em; }

/* ---------- 21. Reveal on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- 22. Blog ---------- */
.post-hero { background: var(--navy-ink); color: #fff; padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.crumbs { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 1.15rem; }
.crumbs a { color: var(--gold-bright); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.post-hero h1 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); max-width: 24ch; }
.post-meta { margin-top: 1.25rem; font-size: .92rem; color: rgba(255,255,255,.68); }

.prose { max-width: 68ch; margin-inline: auto; padding-block: clamp(2.5rem, 6vw, 4.5rem); font-size: 1.09rem; }
.prose > * + * { margin-top: 1.35rem; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.prose h3 { font-size: 1.2rem; margin-top: 2.25rem; color: var(--navy); }
.prose h2 + p, .prose h3 + p { margin-top: 1rem; }
.prose p { color: #2B3446; }
.prose a { color: var(--navy); text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li + li { margin-top: .5rem; }

.post-cta {
  margin-top: 3.5rem; padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--navy); color: #fff; border-radius: var(--r-lg);
}
.post-cta h3 { color: #fff; margin-bottom: .6rem; }
.post-cta p { color: rgba(255,255,255,.82); font-size: .98rem; }
.post-cta .btn { margin-top: 1.5rem; }

.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1.25rem, 2.5vw, 1.85rem); }
.post-card {
  display: flex; flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  text-decoration: none; color: inherit;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--line-strong); }
.post-card .kicker { font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-deep); }
.post-card h3 { margin: .75rem 0 .6rem; }
.post-card p { font-size: .96rem; color: var(--text-soft); }
.post-card .more { margin-top: 1.25rem; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: .4rem; }

.empty-note {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px dashed var(--line-strong); border-radius: var(--r-lg);
  background: var(--paper-warm); color: var(--text-soft); font-size: .96rem;
}
