/* GolfWicklow.ie — premium brand, mobile-first */
/* Fonts loaded via Google Fonts in each page <head> */

:root {
  /* Brand colours */
  --green-900: #0D2B1A;
  --green-700: #1A4731;
  --green-600: #2D6A4F;
  --green-500: #38a169;
  --green-100: #D8F3DC;
  --green-50:  #F0FBF3;
  --gold:      #C9A84C;
  --gold-light:#E8C97A;
  --gold-dark: #9A7A2E;
  --cream:     #F8F5EF;
  --cream-dark:#EDE8DE;
  /* Ink */
  --ink-900:   #1A1A1A;
  --ink-700:   #3a3a3a;
  --ink-500:   #5A5650;
  --ink-300:   #8C8479;
  /* System */
  --line:      #E0DBD0;
  --white:     #ffffff;
  --shadow:    0 2px 16px rgba(13,43,26,.08);
  --radius:    8px;
  --max:       1120px;
}

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font: 16px/1.6 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--green-900);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-top: 1.5em; }
h3 { font-size: 1.15rem; margin-top: 1.25em; }
h4 { font-size: 1rem; }
p  { margin: 0 0 1em; }

/* ── Layout ──────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ── Skip link ───────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 8px;
  background: var(--gold); color: var(--green-900);
  padding: 8px 16px; border-radius: 4px;
  font-weight: 600; font-size: 13px; z-index: 9999;
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* ── Site Header ─────────────────────────────── */
.site-header {
  background: var(--green-900);
  border-bottom: 1px solid rgba(201,168,76,.3);
  position: sticky; top: 0; z-index: 100;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 62px; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700; color: var(--gold); font-size: 1.15rem;
  text-decoration: none; white-space: nowrap;
}
.brand:hover { text-decoration: none; color: var(--gold-light); }
.brand sub {
  display: block; color: rgba(255,255,255,.3);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif; font-weight: 400; font-style: normal;
  line-height: 1.3;
}
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: transparent;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
  color: rgba(255,255,255,.7); cursor: pointer; font-size: 18px;
  transition: border-color .2s;
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }
.nav-toggle:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.site-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--green-900);
  border-bottom: 2px solid var(--gold);
  padding: 8px 20px 16px; z-index: 99;
}
.site-nav.open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav li { border-bottom: 1px solid rgba(255,255,255,.07); }
.site-nav li:last-child { border-bottom: 0; }
.site-nav a {
  display: block; padding: 11px 4px;
  color: rgba(255,255,255,.7); font-weight: 500; font-size: .92rem;
  letter-spacing: .02em; transition: color .2s;
}
.site-nav a:hover { color: var(--gold); text-decoration: none; }
.site-nav .cta {
  display: inline-block; margin-top: 10px; padding: 10px 18px;
  background: var(--gold); color: var(--green-900);
  border-radius: var(--radius); font-weight: 700; font-size: .88rem;
}
.site-nav .cta:hover { background: var(--gold-light); text-decoration: none; }

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block; position: static;
    padding: 0; border: 0; background: transparent;
  }
  .site-nav ul { display: flex; gap: 2px; align-items: center; }
  .site-nav li { border-bottom: 0; }
  .site-nav a {
    padding: 8px 12px; font-size: .82rem;
    letter-spacing: .07em; text-transform: uppercase;
  }
  .site-nav .cta { margin: 0 0 0 8px; padding: 8px 18px; }
}

/* ── Breadcrumbs ─────────────────────────────── */
.crumbs {
  font-size: .83rem; color: var(--ink-500);
  padding: 14px 0 0;
}
.crumbs a { color: var(--ink-500); }
.crumbs a:hover { color: var(--green-700); }
.crumbs .sep { margin: 0 6px; color: var(--ink-300); }

/* ── Hero ────────────────────────────────────── */
.hero {
  background: var(--green-900);
  padding: 36px 0 44px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,106,79,.15), transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold); padding: 4px 14px; border-radius: 100px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; margin-bottom: 16px;
}
.hero h1 { color: #fff; margin-bottom: .3em; font-size: clamp(1.9rem, 5vw, 2.8rem); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lede {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 60ch; line-height: 1.7; margin-bottom: 1.2em;
  font-family: 'DM Sans', sans-serif; font-weight: 300;
}
.stats {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px;
}
.stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 12px 18px; min-width: 130px;
}
.stat .n {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); display: block; line-height: 1;
}
.stat .l {
  font-size: .75rem; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; display: block;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block; padding: 11px 22px;
  background: var(--gold); color: var(--green-900);
  border-radius: var(--radius); font-weight: 700; border: 0;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: .9rem; text-decoration: none; transition: background .2s;
  white-space: nowrap;
}
.btn:hover { background: var(--gold-light); color: var(--green-900); text-decoration: none; }
.btn-secondary {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.08);
  color: #fff; border-color: rgba(255,255,255,.5);
}
.btn-green {
  background: var(--green-700); color: #fff;
  border: 1px solid transparent;
}
.btn-green:hover { background: var(--green-600); color: #fff; }
.btn-maps {
  background: transparent; color: var(--green-700);
  border: 1.5px solid var(--green-700);
  font-size: .85rem; padding: 9px 16px;
}
.btn-maps:hover { background: var(--green-700); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; }

/* ── Sections ────────────────────────────────── */
.section { padding: 36px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section.bg-cream { background: var(--cream-dark); border-top: 0; padding: 36px 0; }
.section.bg-green { background: var(--green-900); border-top: 0; padding: 36px 0; }
.section.bg-green h2, .section.bg-green h3 { color: #fff; }
.section.bg-green p, .section.bg-green li { color: rgba(255,255,255,.65); }
.section h2 { margin-top: 0; }
.section-lede { color: var(--ink-500); font-size: .95rem; margin-top: -.25em; margin-bottom: 1.25em; }

/* ── Facts bar ───────────────────────────────── */
.facts {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 10px;
  background: var(--green-50); border: 1px solid var(--line);
  padding: 16px; border-radius: var(--radius); margin: 18px 0;
}
@media (min-width: 600px) { .facts { grid-template-columns: repeat(4,1fr); } }
.fact .l { display: block; font-size: .72rem; color: var(--ink-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.fact .n { display: block; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--green-900); font-size: 1.25rem; }

/* ── Detail list ─────────────────────────────── */
.detail-list { list-style: none; margin: 0; padding: 0; }
.detail-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.detail-list li:last-child { border-bottom: 0; }
.detail-list .k { color: var(--ink-500); }
.detail-list .v { color: var(--ink-900); font-weight: 600; text-align: right; }

/* ── Grid system ─────────────────────────────── */
.grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid.cols-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px) { .grid.cols-4 { grid-template-columns: repeat(4,1fr); } }

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  height: 100%;
}
.card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.card .meta { font-size: .82rem; color: var(--ink-500); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.card p { margin: 0 0 10px; color: var(--ink-700); font-size: .92rem; }
.card .price { font-weight: 700; color: var(--green-700); font-family: 'DM Sans', sans-serif; }
.card-link { display: block; color: inherit; height: 100%; }
.card-link:hover { text-decoration: none; }
.card-link:hover .card { border-color: var(--gold); box-shadow: 0 4px 20px rgba(13,43,26,.12); }

/* ── Course listing table ────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow); }
table.data {
  width: 100%; border-collapse: collapse;
  background: var(--white); font-size: .9rem; min-width: 600px;
}
table.data th, table.data td {
  text-align: left; padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
table.data th {
  background: var(--green-900); color: rgba(255,255,255,.7);
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; font-family: 'DM Sans', sans-serif;
  border-bottom: 2px solid var(--gold); white-space: nowrap;
}
table.data tbody tr:hover { background: var(--green-50); }
table.data tbody tr:last-child td { border-bottom: 0; }
.rank-cell {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold); font-weight: 700;
  width: 44px; text-align: center;
}
.course-link { font-weight: 600; font-size: .95rem; color: var(--green-900); }
.course-link:hover { color: var(--green-600); }
.course-sub { font-size: .78rem; color: var(--ink-500); display: block; margin-top: 2px; }
.fee-strong { font-weight: 700; color: var(--green-700); white-space: nowrap; }
.badge {
  display: inline-block; font-size: .7rem; letter-spacing: .05em;
  text-transform: uppercase; padding: 2px 9px;
  border-radius: 100px; white-space: nowrap; font-weight: 600;
}
.badge-park { background: var(--cream-dark); color: var(--ink-500); }
.badge-links { background: #EFF6FF; color: #1e40af; }
.badge-heath { background: #FEF3C7; color: #92400E; }
.badge-cliff { background: #E0F2FE; color: #0c4a6e; }
.badge-welcome { background: var(--green-100); color: var(--green-700); }
.badge-booking { background: #FEF9C3; color: #854d0e; }
.stars { color: var(--gold); font-size: .9rem; letter-spacing: -2px; }

/* Table action buttons */
.table-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.action-btn {
  display: inline-block; padding: 6px 12px;
  border-radius: 5px; font-size: .78rem; font-weight: 600;
  white-space: nowrap; text-decoration: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background .15s, color .15s;
}
.action-book { background: var(--green-900); color: #fff; }
.action-book:hover { background: var(--green-700); color: #fff; text-decoration: none; }
.action-maps {
  background: transparent; color: var(--green-700);
  border: 1.5px solid var(--green-600);
}
.action-maps:hover { background: var(--green-700); color: #fff; text-decoration: none; }

/* ── Scorecard ───────────────────────────────── */
.scorecard td.center, .scorecard th.center { text-align: center; }
.scorecard tfoot td { font-weight: 800; background: var(--green-100); color: var(--green-900); }

/* ── FAQ ─────────────────────────────────────── */
details.faq {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 18px; margin: 0 0 10px; background: var(--white);
  transition: border-color .2s;
}
details.faq:hover { border-color: var(--gold); }
details.faq summary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; color: var(--green-900); cursor: pointer; list-style: none;
  font-size: .95rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; float: right; color: var(--gold);
  font-size: 1.2rem; line-height: 1;
}
details.faq[open] summary::after { content: "−"; }
details.faq p { margin-top: 10px; color: var(--ink-700); font-size: .92rem; line-height: 1.7; }

/* ── Callout / tip ───────────────────────────── */
.callout {
  background: var(--green-50); border-left: 4px solid var(--green-600);
  padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0; margin: 16px 0;
}
.callout strong { color: var(--green-900); }
.callout p { margin: 0; color: var(--ink-700); font-size: .92rem; }

.tip-box {
  background: #FEF9C3; border-left: 4px solid var(--gold);
  padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0; margin: 16px 0;
}
.tip-box p { margin: 0; color: var(--ink-900); font-size: .92rem; }

/* ── Weather widget ──────────────────────────── */
.weather-bar {
  background: var(--green-900); padding: 20px 0;
  border-top: 2px solid var(--gold); border-bottom: 1px solid rgba(201,168,76,.2);
}
.weather-inner { display: flex; gap: 12px; align-items: stretch; }
.weather-now {
  background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius); padding: 16px 20px; text-align: center; min-width: 140px;
}
.weather-now .w-icon { font-size: 2.5rem; display: block; margin-bottom: 4px; }
.weather-now .w-temp {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: #fff; font-weight: 700; line-height: 1;
}
.weather-now .w-desc { font-size: .8rem; color: rgba(255,255,255,.5); margin: 4px 0; }
.weather-now .w-golf {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-top: 8px;
}
.golf-excellent { background: var(--green-100); color: var(--green-700); }
.golf-good      { background: #FEF9C3; color: #854d0e; }
.golf-playable  { background: #FEE2E2; color: #991b1b; }
.weather-days { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; }
.weather-day {
  flex: 1; min-width: 90px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 12px 8px; text-align: center;
}
.wd-name { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.wd-icon { font-size: 1.7rem; display: block; margin-bottom: 4px; }
.wd-hi { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; font-weight: 700; }
.wd-lo { font-size: .78rem; color: rgba(255,255,255,.4); }
.wd-rain { font-size: .75rem; color: #93C5FD; margin-top: 4px; }
.wd-wind { font-size: .72rem; color: rgba(255,255,255,.3); }
.weather-loading { color: rgba(255,255,255,.4); font-size: .88rem; padding: 20px; text-align: center; }
.weather-location { font-size: .75rem; color: rgba(255,255,255,.2); margin-top: 10px; text-align: center; }

/* ── Attraction cards ────────────────────────── */
.attraction-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
}
.attraction-card:hover { box-shadow: 0 8px 28px rgba(13,43,26,.14); transform: translateY(-2px); }
.attr-head { padding: 20px; background: var(--green-900); }
.attr-type { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block; }
.attr-head h3 { color: #fff; margin: 0 0 4px; font-size: 1.1rem; }
.attr-head p { color: rgba(255,255,255,.55); margin: 0; font-size: .88rem; }
.attr-body { padding: 16px 20px; }
.attr-body p { font-size: .88rem; color: var(--ink-700); margin-bottom: 10px; }
.attr-meta { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }
.attr-dist { color: var(--ink-500); }
.attr-link { color: var(--green-700); font-weight: 600; }

/* ── Restaurant cards ────────────────────────── */
.eat-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow); transition: border-color .2s;
}
.eat-card:hover { border-color: var(--gold); }
.eat-type { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 6px; }
.eat-card h3 { font-size: 1.05rem; margin: 0 0 5px; }
.eat-card .location { font-size: .82rem; color: var(--ink-500); margin-bottom: 8px; }
.eat-card p { font-size: .88rem; color: var(--ink-700); margin-bottom: 10px; }
.eat-golf-note { font-size: .78rem; color: var(--green-700); font-weight: 600; }

/* ── Blog cards ──────────────────────────────── */
.blog-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: 0 8px 28px rgba(13,43,26,.14); transform: translateY(-2px); }
.blog-head {
  background: var(--green-900); padding: 24px 20px; min-height: 100px;
  display: flex; align-items: flex-end;
}
.blog-cat { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.blog-head h3 { color: #fff; margin: 0; font-size: 1.05rem; line-height: 1.3; }
.blog-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .78rem; color: var(--ink-500); margin-bottom: 8px; }
.blog-body p { font-size: .88rem; color: var(--ink-700); flex: 1; margin-bottom: 14px; }
.blog-read { font-size: .85rem; color: var(--green-700); font-weight: 600; }

/* ── Stay cards ──────────────────────────────── */
.stay-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow);
}
.stay-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.stay-card h3 { font-size: 1.05rem; margin: 0; }
.stay-stars { color: var(--gold); font-size: .88rem; white-space: nowrap; }
.stay-card .location { font-size: .82rem; color: var(--ink-500); margin-bottom: 8px; }
.stay-card .golf-note { font-size: .82rem; color: var(--green-700); font-weight: 600; margin-bottom: 12px; display: block; }
.stay-price { font-weight: 700; color: var(--green-700); font-size: .95rem; }
.stay-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.stay-book {
  display: inline-block; padding: 7px 16px;
  background: var(--gold); color: var(--green-900);
  border-radius: var(--radius); font-size: .82rem; font-weight: 700;
  text-decoration: none; transition: background .2s;
}
.stay-book:hover { background: var(--gold-light); text-decoration: none; }

/* ── Package cards ───────────────────────────── */
.package-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .2s;
}
.package-card:hover { border-color: rgba(201,168,76,.5); }
.package-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.package-card p { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 14px; line-height: 1.7; }
.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--gold); font-weight: 700;
  line-height: 1; margin-bottom: 4px;
}
.package-pp { font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.package-includes { list-style: none; margin: 0 0 20px; padding: 0; }
.package-includes li {
  font-size: .85rem; color: rgba(255,255,255,.55); padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.05); display: flex; gap: 8px;
}
.package-includes li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.package-tag {
  display: inline-block; background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3); color: var(--gold);
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 12px;
}

/* ── Brittas Bay section ─────────────────────── */
.brittas-banner {
  background: linear-gradient(135deg, #0a1a10, #1a3020, #0a1a10);
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  padding: 36px 0;
}
.brittas-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold); padding: 4px 14px; border-radius: 100px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px;
}
.brittas-banner h2 { color: #fff; }
.brittas-banner h2 em { color: var(--gold); font-style: normal; }
.brittas-facts {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 20px 0;
}
@media (min-width: 600px) { .brittas-facts { grid-template-columns: repeat(4,1fr); } }
.brittas-fact {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 14px; text-align: center;
}
.brittas-fact .bv { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); font-weight: 700; }
.brittas-fact .bk { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background: var(--green-900); color: rgba(255,255,255,.7);
  margin-top: 0;
}
.site-footer .container { padding: 40px 20px 24px; }
.site-footer h4 {
  color: rgba(255,255,255,.5); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase;
  margin: 0 0 14px; font-family: 'DM Sans', sans-serif; font-weight: 600;
}
.site-footer p { color: rgba(255,255,255,.45); font-size: .85rem; margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.45); }
.site-footer a:hover { color: var(--gold); text-decoration: none; }
.footer-grid {
  display: grid; gap: 28px; grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 28px; padding-top: 18px;
  font-size: .8rem; color: rgba(255,255,255,.25);
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin: 0 0 8px; }

/* ── Misc utilities ──────────────────────────── */
.tag {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  background: var(--green-100); color: var(--green-700);
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
}
.tag.gold-tag { background: rgba(201,168,76,.15); color: var(--gold-dark); border: 1px solid rgba(201,168,76,.3); }
.tag.warn { background: #fde8c8; color: #7a4a06; }
.muted { color: var(--ink-500); }
.small { font-size: .83rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Responsive helpers ──────────────────────── */
@media (max-width: 599px) {
  .hero { padding: 24px 0 32px; }
  .section { padding: 24px 0; }
  .btn { padding: 11px 16px; font-size: .88rem; }
  table.data th, table.data td { padding: 10px 10px; font-size: .82rem; }
  .weather-inner { flex-direction: column; }
  .weather-days { flex-wrap: nowrap; overflow-x: auto; }
}
