/*
Theme Name: Pure Grenada - GTA Corporate
Theme URI: https://www.puregrenada.com
Author: Grenada Tourism Authority
Author URI: https://grenadatourismauthority.com
Description: Official corporate website theme for the Grenada Tourism Authority. Features dual-mode Corporate/Consumer site toggle, tourism data dashboards, news & events, program pages, licensing forms, and full responsive design in GTA brand colors.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: All Rights Reserved
License URI: https://grenadatourismauthority.com
Text Domain: pure-grenada
Tags: tourism, government, corporate, responsive, custom-menu, featured-images
*/

/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
  --pri: #AE1F25;
  --pri-dk: #8B1820;
  --acc: #EE7C1B;
  --red: #AE1F25;
  --sand: #F5F1ED;
  --cream: #FAFAFA;
  --dk: #4A1A1D;
  --txt: #3D2022;
  --txt-l: #5A6068;
  --wh: #fff;
  --ocean: #6B2D30;
  --df: 'DM Serif Display', Georgia, serif;
  --bf: 'Outfit', sans-serif;
  --nh: 72px;
  --e: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--bf); color: var(--txt); background: var(--cream); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
.ctn { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nh); background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(80,20,24,0.08); transition: box-shadow var(--e); }
.nav.scrolled { box-shadow: 0 2px 20px rgba(74,26,29,0.06); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: var(--nh); max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; color: var(--pri); }
.logo img { height: 38px; width: auto; }
.nl { display: flex; gap: 0; align-items: center; }
.nl > a, .nl > .dd-wrap > a { color: var(--txt); font-size: 0.8rem; font-weight: 500; padding: 0.5rem 0.9rem; position: relative; transition: var(--e); display: inline-block; }
.nl > a::after, .nl > .dd-wrap > a::after { content: ''; position: absolute; bottom: 0; left: 0.9rem; right: 0.9rem; height: 2px; background: var(--pri); transform: scaleX(0); transition: var(--e); }
.nl > a:hover, .nl > a.act, .nl > .dd-wrap > a:hover, .nl > .dd-wrap > a.act { color: var(--pri); }
.nl > a.act::after, .nl > a:hover::after, .nl > .dd-wrap > a.act::after, .nl > .dd-wrap > a:hover::after { transform: scaleX(1); }
.dd-wrap { position: relative; }
.dd-wrap:hover .dd { opacity: 1; visibility: visible; transform: translateY(0); }
.dd { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--wh); border-radius: 10px; box-shadow: 0 8px 30px rgba(74,26,29,0.12); padding: 0.5rem 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--e); z-index: 100; }
.dd a { display: block; padding: 0.5rem 1.2rem; font-size: 0.8rem; color: var(--txt); transition: var(--e); font-weight: 400; }
.dd a:hover { background: var(--sand); color: var(--pri); }
.dd .dd-sub { padding-left: 2rem; font-size: 0.76rem; color: var(--txt-l); }
.tog { display: flex; align-items: center; background: var(--sand); border-radius: 100px; padding: 3px; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.tog a { padding: 4px 12px; border-radius: 100px; transition: var(--e); }
.tog a.on { background: var(--pri); color: var(--wh); }
.tog a:not(.on) { color: var(--txt-l); }
.ham { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.ham span { display: block; width: 22px; height: 2px; background: var(--dk); margin: 5px 0; transition: var(--e); }
.mm { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: calc(var(--nh) + 1.3rem) 2rem 2rem; overflow-y: auto; }
.mm.open { display: flex; }
.mm a { font-family: var(--df); font-size: 1.2rem; color: var(--dk); padding: 0.5rem 0; border-bottom: 1px solid rgba(74,26,29,0.05); transition: var(--e); display: block; }
.mm .sub { font-size: 0.95rem; padding-left: 1rem; color: var(--txt-l); }
.mm a:hover { color: var(--pri); }

/* ========================================
   HERO SLIDER
   ======================================== */
.hero { position: relative; height: 80vh; min-height: 520px; margin-top: var(--nh); overflow: hidden; }
.hs { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hs.on { opacity: 1; }
.hs img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: hz 10s ease forwards; }
@keyframes hz { to { transform: scale(1); } }
.hg { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(29,35,39,0.1) 0%, rgba(29,35,39,0.25) 40%, rgba(29,35,39,0.6) 100%); }
.hb { position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem 2rem; max-width: 1400px; margin: 0 auto; }
.hloc { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.7); font-weight: 500; margin-bottom: 0.6rem; }
.hloc svg { width: 12px; height: 12px; }
.hh { font-family: var(--df); font-size: clamp(1.7rem, 3.4vw, 2.6rem); color: var(--wh); line-height: 1.15; max-width: 640px; margin-bottom: 0.8rem; }
.hcta { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--wh); font-weight: 600; font-size: 0.82rem; padding: 0.4rem 0; border-bottom: 2px solid var(--acc); transition: var(--e); }
.hcta:hover { gap: 0.7rem; }
.hcta svg { width: 16px; height: 16px; }
.harr { position: absolute; bottom: 3rem; right: 2rem; display: flex; gap: 0.4rem; }
.harr button { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--e); backdrop-filter: blur(4px); }
.harr button:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* ========================================
   SECTIONS
   ======================================== */
.intro { padding: 3.5rem 0 1.5rem; text-align: center; }
.intro p { font-family: var(--df); font-size: 1.25rem; color: var(--pri-dk); max-width: 740px; margin: 0 auto; line-height: 1.5; }
.sec { padding: 2rem 0 3.5rem; }
.sh { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.8rem; gap: 2rem; }
.st { font-family: var(--df); font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--dk); line-height: 1.2; }
.sl { font-weight: 600; font-size: 0.78rem; color: var(--pri); display: inline-flex; align-items: center; gap: 0.3rem; white-space: nowrap; border-bottom: 2px solid transparent; transition: var(--e); }
.sl:hover { border-bottom-color: var(--pri); }
.sl svg { width: 14px; height: 14px; }
.asv { width: 14px; height: 14px; flex-shrink: 0; }

/* ========================================
   GRIDS & CARDS
   ======================================== */
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cd { position: relative; border-radius: 10px; overflow: hidden; background: var(--wh); box-shadow: 0 1px 3px rgba(74,26,29,0.04); transition: var(--e); color: inherit; display: block; }
.cd:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(80,20,24,0.08); }
.ci { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.ci img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cd:hover .ci img { transform: scale(1.04); }
.cb { padding: 1rem 1.2rem 1.2rem; }
.cb h3 { font-family: var(--df); font-size: 0.95rem; color: var(--dk); line-height: 1.3; margin-bottom: 0.35rem; }
.cb p { font-size: 0.78rem; color: var(--txt-l); line-height: 1.55; }
.ca { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--pri); font-weight: 600; font-size: 0.74rem; margin-top: 0.5rem; transition: var(--e); }
.cd:hover .ca { gap: 0.4rem; }

/* ========================================
   NEWS GRID
   ======================================== */
.ng { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.2rem; }
.nf { grid-row: span 2; border-radius: 10px; overflow: hidden; position: relative; color: var(--wh); display: flex; flex-direction: column; justify-content: flex-end; min-height: 420px; cursor: pointer; }
.nf img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.nf:hover img { transform: scale(1.04); }
.nf .nfg { position: absolute; inset: 0; background: linear-gradient(to top, rgba(74,26,29,0.7) 0%, transparent 55%); }
.nf .nfb { position: relative; padding: 1.6rem; z-index: 1; }
.nt { display: inline-block; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 7px; border-radius: 4px; margin-bottom: 0.4rem; }
.nt.news { background: var(--acc); color: var(--dk); }
.nt.event { background: var(--ocean); color: white; }
.nf h3 { font-family: var(--df); font-size: 1.15rem; line-height: 1.3; }
.ns { display: flex; gap: 0.8rem; color: inherit; padding: 0.7rem; background: var(--wh); border-radius: 8px; transition: var(--e); box-shadow: 0 1px 3px rgba(74,26,29,0.04); cursor: pointer; }
.ns:hover { box-shadow: 0 6px 20px rgba(74,26,29,0.06); transform: translateY(-2px); }
.ns img { width: 85px; height: 68px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.ns h4 { font-size: 0.8rem; font-weight: 600; color: var(--dk); line-height: 1.3; margin-bottom: 0.2rem; }
.nd { font-size: 0.68rem; color: var(--txt-l); }

/* ========================================
   CTA BANNER
   ======================================== */
.ctb { position: relative; padding: 4.5rem 0; overflow: hidden; }
.ctb > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cto { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(29,35,39,0.85), rgba(80,20,24,0.7)); }
.ctc { position: relative; z-index: 1; text-align: center; max-width: 580px; margin: 0 auto; }
.ctc h2 { font-family: var(--df); font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--wh); margin-bottom: 0.7rem; line-height: 1.2; }
.ctc p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 1.4rem; }
.btn { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--bf); font-weight: 600; font-size: 0.82rem; padding: 0.7rem 1.5rem; border-radius: 100px; transition: var(--e); border: none; cursor: pointer; }
.bg { background: var(--acc); color: var(--dk); }
.bg:hover { background: #f0b54a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,168,56,0.3); }
.bo { border: 2px solid rgba(255,255,255,0.4); color: var(--wh); background: transparent; margin-left: 0.6rem; }
.bo:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.bp { background: var(--pri); color: var(--wh); }
.bp:hover { background: var(--pri-dk); }

/* ========================================
   ABOUT SPLIT
   ======================================== */
.asp { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 3rem 0; }
.ai { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; position: relative; }
.ai img { width: 100%; height: 100%; object-fit: cover; }
.abg { position: absolute; bottom: 1rem; left: 1rem; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); padding: 0.5rem 0.9rem; border-radius: 6px; font-size: 0.66rem; font-weight: 600; color: var(--pri); letter-spacing: 0.05em; text-transform: uppercase; }
.at h2 { font-family: var(--df); font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--dk); margin-bottom: 1rem; line-height: 1.2; }
.at p { font-size: 0.86rem; color: var(--txt-l); line-height: 1.7; margin-bottom: 0.7rem; }
.sr { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(74,26,29,0.06); }
.sr strong { display: block; font-family: var(--df); font-size: 1.5rem; color: var(--pri); margin-bottom: 0.1rem; }
.sr span { font-size: 0.72rem; color: var(--txt-l); }

/* ========================================
   PAGE HERO
   ======================================== */
.ph { margin-top: var(--nh); position: relative; height: 38vh; min-height: 260px; overflow: hidden; display: flex; align-items: flex-end; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phg { position: absolute; inset: 0; background: linear-gradient(to top, rgba(29,35,39,0.7), rgba(29,35,39,0.2)); }
.phb { position: relative; z-index: 1; padding: 2rem; max-width: 1400px; margin: 0 auto; width: 100%; }
.bc { font-size: 0.68rem; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.bc a, .bc span { color: rgba(255,255,255,0.7); }
.bc a:hover, .bc span:hover { color: white; }
.phb h1 { font-family: var(--df); font-size: clamp(1.6rem, 3.2vw, 2.4rem); color: white; line-height: 1.15; }
.pgc { padding: 2.5rem 0 3.5rem; }

/* ========================================
   TABS
   ======================================== */
.tabs { display: flex; gap: 0; border-bottom: 2px solid rgba(74,26,29,0.06); margin-bottom: 2rem; overflow-x: auto; }
.tabs a { font-size: 0.78rem; font-weight: 600; color: var(--txt-l); padding: 0.7rem 1.1rem; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--e); white-space: nowrap; cursor: pointer; }
.tabs a.on { color: var(--pri); border-bottom-color: var(--pri); }
.tabs a:hover { color: var(--pri); }

/* ========================================
   SIDEBAR
   ======================================== */
.ws { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; }
.sb { position: sticky; top: calc(var(--nh) + 1.2rem); align-self: start; }
.sbx { background: var(--sand); border-radius: 10px; padding: 1.2rem; margin-bottom: 1rem; }
.sbx h4 { font-family: var(--df); font-size: 0.88rem; margin-bottom: 0.7rem; color: var(--dk); }
.sbx ul { list-style: none; }
.sbx li { margin-bottom: 0.4rem; }
.sbx a { color: var(--txt-l); font-size: 0.78rem; transition: var(--e); display: flex; align-items: center; gap: 0.3rem; }
.sbx a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--pri); opacity: 0.3; }
.sbx a:hover { color: var(--pri); }
.sbx p { font-size: 0.78rem; color: var(--txt-l); line-height: 1.6; }

/* ========================================
   LEADERS
   ======================================== */
.ldr { text-align: center; padding: 1.2rem; background: var(--wh); border-radius: 10px; transition: var(--e); box-shadow: 0 1px 3px rgba(74,26,29,0.04); }
.ldr:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(74,26,29,0.07); }
.lav { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--pri), var(--dk)); margin: 0 auto 0.7rem; display: flex; align-items: center; justify-content: center; font-family: var(--df); font-size: 1.4rem; color: white; }
.ldr h4 { font-size: 0.82rem; font-weight: 600; color: var(--dk); margin-bottom: 0.1rem; }
.ldr p { font-size: 0.7rem; color: var(--txt-l); }

/* ========================================
   ACCORDION
   ======================================== */
.aci { border: 1px solid rgba(74,26,29,0.06); border-radius: 8px; margin-bottom: 0.4rem; overflow: hidden; background: var(--wh); }
.ach { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.2rem; cursor: pointer; font-weight: 600; font-size: 0.88rem; color: var(--dk); transition: var(--e); }
.ach:hover { color: var(--pri); }
.ach svg { width: 16px; height: 16px; transition: transform var(--e); flex-shrink: 0; color: var(--txt-l); }
.aci.op .ach svg { transform: rotate(180deg); }
.acb { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.aci.op .acb { max-height: 800px; }
.acn { padding: 0 1.2rem 1rem; }
.acn p { font-size: 0.82rem; color: var(--txt-l); line-height: 1.7; }

/* ========================================
   DARK SECTION & PROGRAM CARDS
   ======================================== */
.dks { background: var(--pri-dk); padding: 3.5rem 0; position: relative; overflow: hidden; }
.dks::before { content: ''; position: absolute; top: -40%; right: -8%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(232,168,56,0.07) 0%, transparent 70%); }
.dks .st { color: var(--wh); }
.dks .sl { color: var(--acc); }
.dks .sl:hover { border-bottom-color: var(--acc); }
.pc { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.4rem; color: var(--wh); transition: var(--e); display: block; }
.pc:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.pi { width: 40px; height: 40px; border-radius: 8px; background: rgba(232,168,56,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; }
.pi svg { width: 20px; height: 20px; color: var(--acc); }
.pc h3 { font-family: var(--df); font-size: 0.98rem; margin-bottom: 0.35rem; }
.pc p { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ========================================
   CONSUMER HERO
   ======================================== */
.csh { margin-top: var(--nh); height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.csh > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chg { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(74,26,29,0.08), rgba(29,35,39,0.5)); }
.chb { position: relative; z-index: 1; max-width: 680px; padding: 2rem; }
.chb h1 { font-family: var(--df); font-size: clamp(2.2rem, 4.6vw, 3.4rem); color: white; line-height: 1.1; margin-bottom: 1rem; }
.chb p { color: rgba(255,255,255,0.9); font-size: 0.95rem; margin-bottom: 1.4rem; }

/* ========================================
   TOURISM DATA / STATS
   ======================================== */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: var(--wh); border-radius: 10px; padding: 1.2rem; text-align: center; box-shadow: 0 1px 3px rgba(74,26,29,0.04); }
.sv { font-family: var(--df); font-size: 1.6rem; color: var(--pri); }
.sl2 { font-size: 0.7rem; color: var(--txt-l); margin-top: 0.2rem; }
.sc { font-size: 0.68rem; font-weight: 600; margin-top: 0.3rem; }
.sc.up { color: #2e7d32; }
.sc.dn { color: var(--red); }
.chart-wrap { background: var(--wh); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 1px 3px rgba(74,26,29,0.04); }
.chart-wrap h3 { font-family: var(--df); font-size: 1rem; color: var(--dk); margin-bottom: 1rem; }
.bar-chart { display: flex; gap: 0.8rem; align-items: flex-end; height: 220px; border-bottom: 1px solid rgba(74,26,29,0.06); padding-bottom: 0.5rem; }
.bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; }
.bars { display: flex; gap: 3px; align-items: flex-end; height: 200px; width: 100%; }
.bar { flex: 1; border-radius: 3px 3px 0 0; position: relative; transition: height 1s ease; min-width: 12px; }
.bar.cruise { background: var(--dk); }
.bar.stayover { background: var(--pri); }
.bar.yacht { background: var(--acc); }
.tip { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 0.55rem; color: var(--txt-l); white-space: nowrap; display: none; }
.bar:hover .tip { display: block; }
.yr { font-size: 0.68rem; color: var(--txt-l); margin-top: 0.3rem; }
.legend { display: flex; justify-content: center; gap: 1.2rem; margin-top: 0.8rem; font-size: 0.68rem; color: var(--txt-l); }
.legend span::before { content: ''; display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 0.3rem; vertical-align: middle; }
.lc::before { background: var(--dk); }
.ls::before { background: var(--pri); }
.ly::before { background: var(--acc); }
.donut { width: 180px; height: 180px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.donut-center strong { font-family: var(--df); font-size: 1.5rem; color: var(--dk); display: block; }
.donut-center small { font-size: 0.62rem; color: var(--txt-l); }
.mkt-bar { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.mkt-bar .lb { font-size: 0.68rem; color: var(--txt-l); width: 80px; text-align: right; }
.track { flex: 1; height: 20px; background: var(--sand); border-radius: 3px; overflow: hidden; }
.fill { height: 100%; border-radius: 3px; display: flex; align-items: center; justify-content: flex-end; padding-right: 0.4rem; }
.fill span { font-size: 0.58rem; color: white; font-weight: 600; }
.tbl-wrap { overflow-x: auto; }
.dt { width: 100%; border-collapse: collapse; font-size: 0.76rem; }
.dt th { background: var(--sand); color: var(--dk); font-weight: 600; padding: 0.6rem 0.8rem; text-align: left; white-space: nowrap; }
.dt td { padding: 0.5rem 0.8rem; border-bottom: 1px solid rgba(74,26,29,0.04); }
.dt .num { text-align: right; }
.dt tfoot td { font-weight: 700; background: var(--sand); color: var(--dk); }

/* ========================================
   CONTACT & FORMS
   ======================================== */
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 0.6rem 1rem; border: 1px solid rgba(74,26,29,0.1); border-radius: 6px; font-family: var(--bf); font-size: 0.82rem; transition: var(--e); }
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--pri); box-shadow: 0 0 0 3px rgba(174,31,37,0.06); }
.fg .full { grid-column: 1 / -1; }
.ea { display: flex; gap: 0.5rem; }
.ea input { flex: 1; padding: 0.6rem 1rem; border: 1px solid rgba(74,26,29,0.1); border-radius: 6px; font-family: var(--bf); font-size: 0.82rem; }

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page { max-width: 780px; margin: 0 auto; }
.legal-page h2 { font-family: var(--df); font-size: 1.1rem; color: var(--dk); margin: 1.8rem 0 0.6rem; }
.legal-page p { font-size: 0.84rem; color: var(--txt-l); line-height: 1.75; margin-bottom: 0.8rem; }
.legal-page ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-page li { font-size: 0.82rem; color: var(--txt-l); line-height: 1.7; margin-bottom: 0.3rem; }
.legal-page a { color: var(--pri); }
.legal-back { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--pri); font-size: 0.78rem; font-weight: 600; margin-bottom: 1.2rem; cursor: pointer; transition: var(--e); }
.legal-back:hover { gap: 0.5rem; }
.legal-updated { font-size: 0.72rem; color: var(--txt-l); margin-bottom: 1.5rem; }

/* ========================================
   NEWS ARTICLE DETAIL
   ======================================== */
.article-detail { max-width: 720px; }
.article-detail p { font-size: 0.86rem; color: var(--txt-l); line-height: 1.75; margin-bottom: 1rem; }
.article-detail h3 { font-family: var(--df); font-size: 1.05rem; color: var(--dk); margin: 1.5rem 0 0.6rem; }
.article-detail ul { margin: 0.5rem 0 1rem 1.5rem; }
.article-detail li { font-size: 0.84rem; color: var(--txt-l); line-height: 1.7; margin-bottom: 0.3rem; }

/* ========================================
   FOOTER
   ======================================== */
footer { background: var(--dk); color: rgba(255,255,255,0.55); padding: 3rem 0 1.5rem; margin-top: 0; font-size: 0.76rem; }
.fg2 { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.fb p { margin-top: 0.3rem; }
.fc2 h4 { font-family: var(--df); font-size: 0.85rem; color: var(--wh); margin-bottom: 0.6rem; }
.fc2 ul { list-style: none; }
.fc2 a { color: rgba(255,255,255,0.55); transition: var(--e); display: block; padding: 0.15rem 0; cursor: pointer; }
.fc2 a:hover { color: var(--acc); }
.fp { text-align: center; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.68rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; }
.fbt { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: 0.68rem; }
.fbt a { color: rgba(255,255,255,0.45); margin-left: 1rem; transition: var(--e); cursor: pointer; }
.fbt a:hover { color: var(--acc); }

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fu { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fu.v { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .ng { grid-template-columns: 1fr; }
  .nf { min-height: 260px; grid-row: span 1; }
  .asp { grid-template-columns: 1fr; gap: 1.5rem; }
  .ws { grid-template-columns: 1fr; }
  .sb { position: static; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .donut-section { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .nl { display: none; }
  .tog { display: none; }
  .ham { display: block; }
  .g3 { grid-template-columns: 1fr; }
  .g2 { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .fg2 { grid-template-columns: 1fr 1fr; }
  .fg { grid-template-columns: 1fr; }
  .hh { font-size: 1.4rem; }
  .hero { height: 60vh; min-height: 380px; }
  .fbt { flex-direction: column; gap: 0.6rem; text-align: center; }
}

@media (max-width: 480px) {
  .fg2 { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* ========================================
   WORDPRESS SPECIFIC OVERRIDES
   ======================================== */
.entry-content p { font-size: 0.86rem; color: var(--txt-l); line-height: 1.7; margin-bottom: 0.7rem; }
.wp-block-image img { border-radius: 10px; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
}
