/* =========================================================
   Holy Family College, Kuje — Design System
   Display: Fraunces (warm, ecclesiastical serif)
   Body:    Public Sans (clear, modern humanist sans)
   Motif:   Two-centred Gothic arch — echoed in dividers,
            the crest mark, and card tops.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Public+Sans:wght@400;500;600;700;800&display=swap');

:root{
  --ink:        #12213A;   /* deep navy — headers, dark sections   */
  --ink-2:      #1B2E4D;
  --wine:       #7A2331;   /* deep maroon — primary accent          */
  --wine-2:     #5E1B26;
  --gold:       #C9A227;   /* gold — highlights, seal, dividers     */
  --gold-soft:  #E4CE85;
  --paper:      #F7F3EA;   /* warm paper — main background          */
  --paper-2:    #EFE6D2;   /* deeper paper — alternating sections   */
  --charcoal:   #22262E;
  --ink-70:     rgba(18,33,58,.72);
  --ink-45:     rgba(18,33,58,.45);
  --line:       rgba(18,33,58,.14);
  --line-light: rgba(247,243,234,.22);
  --paper-line: rgba(247,243,234,.16);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 6px;
  --shadow: 0 20px 50px -25px rgba(18,33,58,.35);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--serif); font-weight: 600; margin:0; color: var(--ink); }
p{ margin:0; }
button{ font-family: inherit; cursor: pointer; }

:focus-visible{
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
}

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 1.5px;
  background: var(--gold);
  display:inline-block;
}
.on-dark .eyebrow{ color: var(--gold-soft); }
.on-dark .eyebrow::before{ background: var(--gold); }

/* ---------- Crest mark (signature element) ---------- */
.crest{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.crest svg{ width: 24px; height: 24px; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 3px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--wine); color: var(--paper); }
.btn-primary:hover{ background: var(--wine-2); transform: translateY(-2px); }
.btn-ghost{ border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.on-dark .btn-ghost{ border-color: var(--paper-line); color: var(--paper); }
.on-dark .btn-ghost:hover{ background: var(--paper); color: var(--ink); }
.btn-gold{ background: var(--gold); color: var(--ink); }
.btn-gold:hover{ background: var(--gold-soft); transform: translateY(-2px); }

/* ============ HEADER / NAV ============ */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(18,33,58,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-light);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 28px;
  max-width: 1180px; margin:0 auto;
}
.nav-brand{ display:flex; align-items:center; gap:12px; color: var(--paper); }
.nav-brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.nav-brand-text strong{ font-family: var(--serif); font-size: 17px; font-weight:600; letter-spacing: .01em; }
.nav-brand-text span{ font-size: 11px; letter-spacing:.08em; text-transform:uppercase; color: var(--gold-soft); }
.nav-links{ display:flex; align-items:center; gap: 34px; }
.nav-links a{
  color: rgba(247,243,234,.82);
  font-size: 14.5px; font-weight: 600;
  position: relative; padding: 6px 0;
}
.nav-links a:hover{ color: var(--paper); }
.nav-links a.active{ color: var(--gold-soft); }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--gold);
}
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display:none; background:none; border:none; width:30px; height:24px; position:relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:""; position:absolute; left:0; right:0; height:2px; background: var(--paper); transition:.2s;
}
.nav-toggle span{ top:11px; }
.nav-toggle::before{ top:2px; }
.nav-toggle::after{ bottom:2px; }

/* ============ ARCH DIVIDER (signature motif) ============ */
.arch-divider{
  width:100%; height: 34px;
  background-repeat: repeat-x;
  background-size: 68px 34px;
  background-position: center;
}
.arch-divider.to-paper{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='34' viewBox='0 0 68 34'%3E%3Cpath d='M0,34 A34,34 0 0,1 34,0 A34,34 0 0,1 68,34 Z' fill='%23F7F3EA'/%3E%3C/svg%3E");
  background-color: var(--ink);
}
.arch-divider.to-ink{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='34' viewBox='0 0 68 34'%3E%3Cpath d='M0,34 A34,34 0 0,1 34,0 A34,34 0 0,1 68,34 Z' fill='%2312213A'/%3E%3C/svg%3E");
  background-color: var(--paper);
}
.arch-divider.to-paper2{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='34' viewBox='0 0 68 34'%3E%3Cpath d='M0,34 A34,34 0 0,1 34,0 A34,34 0 0,1 68,34 Z' fill='%23EFE6D2'/%3E%3C/svg%3E");
  background-color: var(--paper);
}
.arch-divider.flip{ transform: scaleY(-1); }

/* ============ HERO ============ */
.hero{
  background: radial-gradient(ellipse 900px 500px at 82% -10%, rgba(201,162,39,.16), transparent),
              linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items:center;
  padding-bottom: 76px;
}
.hero-kicker{ margin-bottom: 22px; }
.hero h1{
  color: var(--paper);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 22px;
}
.hero h1 em{ color: var(--gold-soft); font-style: italic; font-weight:500; }
.hero p.lede{
  font-size: 17px;
  color: rgba(247,243,234,.82);
  max-width: 52ch;
  margin-bottom: 34px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-panel{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  background: linear-gradient(155deg, var(--wine) 0%, var(--wine-2) 65%, #401017 100%);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
  clip-path: path('M0,420 A210,210 0 0,1 210,0 A210,210 0 0,1 420,420 L420,460 L0,460 Z');
}
.hero-panel-inner{ text-align:center; color: var(--paper); padding: 30px; }
.hero-panel .crest-big{
  width: 110px; height:110px; border-radius:50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 22px;
}
.hero-panel .crest-big svg{ width:58px; height:58px; }
.hero-panel .motto{
  font-family: var(--serif); font-style: italic; font-weight:500;
  font-size: 19px; line-height:1.45; color: var(--gold-soft);
}
.hero-panel .pillars{
  margin-top: 22px; display:flex; gap:10px; justify-content:center; flex-wrap:wrap;
}
.hero-panel .pillars span{
  font-size: 11px; letter-spacing:.08em; text-transform:uppercase; font-weight:700;
  padding: 6px 12px; border:1px solid rgba(247,243,234,.3); border-radius: 20px;
  color: rgba(247,243,234,.85);
}

/* ---------- Stat strip ---------- */
.stat-strip{
  background: var(--ink-2);
  border-top: 1px solid var(--line-light);
}
.stat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
}
.stat{
  text-align:center;
  border-left: 1px solid var(--line-light);
  padding: 6px 10px;
}
.stat:first-child{ border-left:none; }
.stat b{
  display:block; font-family: var(--serif); font-size: 32px; color: var(--gold);
  font-weight:600;
}
.stat span{ font-size: 12.5px; letter-spacing:.03em; color: rgba(247,243,234,.72); }

/* ============ SECTIONS ============ */
section{ padding: 96px 0; }
.section-alt{ background: var(--paper-2); }
.section-ink{ background: var(--ink); color: var(--paper); }
.section-head{ max-width: 640px; margin-bottom: 54px; }
.section-head h2{ font-size: clamp(28px, 3.2vw, 40px); margin: 16px 0 16px; line-height:1.15; }
.section-head p{ color: var(--ink-70); font-size: 16px; }
.section-ink .section-head p{ color: rgba(247,243,234,.72); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }

/* ---------- Value / feature cards ---------- */
.card-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.value-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.value-card .icon{
  width: 46px; height:46px; border-radius:50%;
  background: var(--ink); display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.value-card .icon svg{ width:22px; height:22px; stroke: var(--gold-soft); }
.value-card h3{ font-size: 18.5px; margin-bottom: 10px; }
.value-card p{ color: var(--ink-70); font-size: 14.5px; }
.value-card .num{
  position:absolute; top:26px; right:26px;
  font-family: var(--serif); font-size:13px; color: var(--ink-45);
}

/* ---------- Academics split ---------- */
.split{
  display:grid; grid-template-columns: 1fr 1fr; gap: 26px;
}
.track-card{
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius); padding: 34px;
  position:relative; overflow:hidden;
}
.track-card.wine{ background: var(--wine); }
.track-card h3{ color: var(--paper); font-size: 21px; margin-bottom: 6px; }
.track-card .sub{ font-size: 12.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--gold-soft); margin-bottom: 20px; display:block; }
.chip-list{ display:flex; flex-wrap:wrap; gap: 9px; }
.chip-list li{
  font-size: 13px; padding: 8px 13px; border: 1px solid rgba(247,243,234,.28);
  border-radius: 20px; color: rgba(247,243,234,.9);
}
.exam-row{
  margin-top: 22px; padding-top:20px; border-top: 1px solid rgba(247,243,234,.2);
  font-size: 13px; color: rgba(247,243,234,.78);
}
.exam-row b{ color: var(--gold-soft); }

/* ---------- Checklist / why us ---------- */
.check-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 22px 40px; }
.check-item{ display:flex; gap:16px; align-items:flex-start; }
.check-item .tick{
  width:28px; height:28px; border-radius:50%; background: var(--gold);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px;
}
.check-item .tick svg{ width:14px; height:14px; }
.check-item h4{ font-size:16px; margin-bottom:5px; color: var(--ink); }
.check-item p{ font-size: 14px; color: var(--ink-70); }

/* ---------- Process (admission steps) ---------- */
.process{
  display:grid; grid-template-columns: repeat(6,1fr); gap: 18px;
}
.step{
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius);
  padding: 24px 18px; position:relative;
}
.step .step-num{
  font-family: var(--serif); font-size: 28px; color: var(--gold);
  display:block; margin-bottom: 14px;
}
.step h4{ font-size:14.5px; line-height:1.35; }

/* ---------- List / documents ---------- */
.doc-list{ display:grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.doc-list li{
  display:flex; align-items:center; gap:12px;
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius);
  padding: 15px 16px; font-size: 14px; font-weight:600; color: var(--ink);
}
.doc-list li svg{ width:18px; height:18px; stroke: var(--wine); flex-shrink:0; }

/* ---------- Testimonials ---------- */
.testi-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.testi-card{
  background: var(--paper); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid var(--line); position:relative;
}
.testi-card .quote-mark{ font-family: var(--serif); font-size:52px; color: var(--gold); line-height:1; margin-bottom: 6px; display:block; }
.testi-card p.quote{ font-family: var(--serif); font-style:italic; font-size: 17px; color: var(--ink); margin-bottom: 18px; }
.testi-card .who{ font-size: 13px; letter-spacing:.06em; text-transform:uppercase; color: var(--wine); font-weight:700; }

/* ---------- Partners strip ---------- */
.partners{
  display:flex; flex-wrap:wrap; gap: 14px 36px; justify-content:center;
  padding-top: 8px;
}
.partners span{
  font-family: var(--serif); font-size: 15px; color: var(--ink-70);
  padding-bottom: 6px; border-bottom: 1px solid var(--line);
}

/* ---------- News/events cards ---------- */
.news-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.news-card{
  border-radius: var(--radius); overflow:hidden; border: 1px solid var(--line);
  background: var(--paper); display:flex; flex-direction:column;
}
.news-thumb{
  height: 150px; background: linear-gradient(135deg, var(--ink), var(--wine));
  display:flex; align-items:center; justify-content:center; position:relative;
}
.news-thumb svg{ width:34px; height:34px; stroke: var(--gold-soft); opacity:.9; }
.news-body{ padding: 22px; }
.news-tag{ font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--wine); font-weight:700; }
.news-card h3{ font-size:17px; margin: 10px 0 8px; }
.news-card p{ font-size: 13.5px; color: var(--ink-70); }

/* ---------- CTA banner ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--wine) 0%, var(--wine-2) 100%);
  color: var(--paper); text-align:center; padding: 78px 0;
  position:relative; overflow:hidden;
}
.cta-band h2{ color: var(--paper); font-size: clamp(26px,3.4vw,38px); margin-bottom:18px; }
.cta-band p{ color: rgba(247,243,234,.82); max-width: 54ch; margin: 0 auto 32px; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ============ FOOTER ============ */
.site-footer{ background: var(--ink); color: rgba(247,243,234,.78); padding-top: 0; }
.footer-top{ padding: 70px 0 50px; display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand{ display:flex; gap:14px; margin-bottom:18px; }
.footer-brand-text strong{ font-family: var(--serif); font-size:18px; color: var(--paper); display:block; }
.footer-brand-text span{ font-size:12px; color: var(--gold-soft); letter-spacing:.05em; }
.footer-motto{ font-family: var(--serif); font-style:italic; font-size:14.5px; color: rgba(247,243,234,.65); max-width:30ch; margin-top:14px; }
.footer-col h5{ font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--gold-soft); margin-bottom:18px; font-weight:700; }
.footer-col ul li{ margin-bottom: 11px; }
.footer-col a{ font-size:14px; color: rgba(247,243,234,.75); transition:color .15s; }
.footer-col a:hover{ color: var(--paper); }
.footer-social{ display:flex; gap:10px; margin-top: 6px; flex-wrap:wrap; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(247,243,234,.25);
  display:flex; align-items:center; justify-content:center; font-size:13px;
}
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-bottom{
  border-top: 1px solid var(--line-light);
  padding: 22px 0 30px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size: 12.5px; color: rgba(247,243,234,.55);
}
.footer-bottom a{ color: rgba(247,243,234,.55); }
.footer-bottom a:hover{ color: var(--paper); }
.footer-links{ display:flex; gap: 20px; }

/* ---------- Breadcrumb / page intro (about & contact) ---------- */
.page-hero{
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper); padding: 70px 0 64px; position:relative;
}
.page-hero .crumb{ font-size:13px; color: rgba(247,243,234,.55); margin-bottom:18px; }
.page-hero .crumb a:hover{ color: var(--gold-soft); }
.page-hero h1{ color:var(--paper); font-size: clamp(30px,4vw,46px); max-width: 20ch; }
.page-hero p{ color: rgba(247,243,234,.75); max-width:56ch; margin-top:16px; font-size:16px; }

/* ---------- Two column story block ---------- */
.story{ display:grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items:start; }
.story-figure{
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--wine), var(--wine-2) 70%, #3a0f16);
  aspect-ratio: 3/3.6;
  position:relative; overflow:hidden;
  clip-path: path('M0,300 A170,170 0 0,1 170,130 A170,170 0 0,1 340,300 L340,340 L0,340 Z');
  display:flex; align-items:flex-end; padding: 30px;
}
.story-figure blockquote{
  font-family: var(--serif); font-style:italic; color: var(--gold-soft); font-size:16px; line-height:1.5;
}
.story h2{ font-size: clamp(26px,3.2vw,36px); margin: 14px 0 20px; }
.story p{ color: var(--ink-70); margin-bottom: 16px; font-size:15.5px; }

/* ---------- Vision/Mission pair ---------- */
.vm-grid{ display:grid; grid-template-columns:1fr 1fr; gap: 26px; }
.vm-card{
  border-radius: var(--radius); padding: 36px; border:1px solid var(--line);
  background: var(--paper);
}
.vm-card.wine{ background: var(--wine); border-color: transparent; color: var(--paper); }
.vm-card.wine h3, .vm-card.wine p{ color: var(--paper); }
.vm-card h3{ font-size: 21px; margin-bottom: 12px; }
.vm-card p{ color: var(--ink-70); font-size: 15px; }

/* ---------- Core values tags ---------- */
.value-tags{ display:flex; flex-wrap:wrap; gap: 12px; }
.value-tags span{
  font-family: var(--serif); font-size: 14.5px; padding: 12px 20px;
  border: 1px solid var(--line); border-radius: 30px; color: var(--ink);
  background: var(--paper);
}
.value-tags span b{ color: var(--gold); margin-right:8px; font-weight:700; }

/* ---------- Clubs / activities columns ---------- */
.club-cols{ display:grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.club-col h4{
  font-size: 12.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--wine);
  margin-bottom:16px; padding-bottom:12px; border-bottom: 1px solid var(--line);
}
.club-col li{ font-size: 14.5px; color: var(--ink-70); padding: 7px 0; }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns: .95fr 1.15fr; gap: 50px; }
.info-card{
  background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: 40px 34px;
}
.info-row{ display:flex; gap:16px; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.info-row:first-of-type{ padding-top:0; }
.info-row:last-of-type{ border-bottom:none; }
.info-row .ic{
  width:40px; height:40px; border-radius:50%; background: rgba(247,243,234,.08);
  border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-row .ic svg{ width:18px; height:18px; stroke: var(--gold-soft); }
.info-row h4{ font-size:12.5px; text-transform:uppercase; letter-spacing:.08em; color: var(--gold-soft); margin-bottom:5px; }
.info-row p, .info-row a{ font-size:14.5px; color: rgba(247,243,234,.85); }

.form-card{
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius);
  padding: 40px;
}
.form-card h3{ font-size:22px; margin-bottom:8px; }
.form-card > p{ color: var(--ink-70); font-size:14.5px; margin-bottom:28px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column: 1/-1; }
.field label{ font-size:12.5px; font-weight:700; letter-spacing:.03em; color: var(--ink); }
.field input, .field select, .field textarea{
  border: 1.5px solid var(--line); border-radius:4px; padding: 12px 14px;
  font-family: var(--sans); font-size: 14.5px; background: var(--paper);
  color: var(--charcoal); transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--wine); outline:none;
}
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size:12.5px; color: var(--ink-45); margin-top:16px; }

.map-wrap{
  margin-top: 26px; border-radius: var(--radius); overflow:hidden; border:1px solid var(--line);
  aspect-ratio: 16/6; background: var(--paper-2);
  display:flex; align-items:center; justify-content:center; text-align:center; gap:8px; flex-direction:column;
  color: var(--ink-70); font-size: 13.5px;
}
.map-wrap svg{ width:26px; height:26px; stroke: var(--wine); }

/* ---------- Hours table ---------- */
.hours-table{ width:100%; border-collapse:collapse; margin-top:6px; }
.hours-table td{ padding: 9px 0; font-size:14px; color: rgba(247,243,234,.85); border-bottom:1px solid var(--line-light); }
.hours-table td:last-child{ text-align:right; font-weight:600; color: var(--gold-soft); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-panel{ max-width: 380px; margin: 0 auto; }
  .card-grid{ grid-template-columns: repeat(2,1fr); }
  .split, .vm-grid, .contact-grid{ grid-template-columns:1fr; }
  .story{ grid-template-columns:1fr; }
  .story-figure{ max-width:380px; margin:0 auto; }
  .process{ grid-template-columns: repeat(3,1fr); }
  .check-grid{ grid-template-columns:1fr; }
  .doc-list, .club-cols, .testi-grid, .news-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .stat-grid{ grid-template-columns: repeat(2,1fr); row-gap:24px; }
  .stat:nth-child(3){ border-left:none; }
}
@media (max-width: 700px){
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:block; }
  section{ padding: 64px 0; }
  .card-grid, .doc-list, .club-cols, .testi-grid, .news-grid, .process{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns: 1fr; padding-bottom:20px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
}

/* ---------- Mobile nav panel ---------- */
.mobile-nav{
  display:none; flex-direction:column; gap:2px; background: var(--ink-2);
  padding: 10px 28px 22px; border-top:1px solid var(--line-light);
}
.mobile-nav.open{ display:flex; }
.mobile-nav a{ padding: 12px 0; color: rgba(247,243,234,.85); font-weight:600; border-bottom:1px solid var(--line-light); }
.mobile-nav a.active{ color: var(--gold-soft); }
.mobile-nav .btn{ margin-top:14px; justify-content:center; }
