@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
* { scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
*::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
::selection { background: var(--primary); color: var(--on-primary); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===================== Template palettes ===================== */
/* Meridian (default) — deep navy and gold, editorial, trustworthy */
:root {
  --primary: #0f2747;
  --primary-dark: #091a30;
  --primary-light: #e8eef5;
  --accent: #c9a227;
  --accent-light: #faf5e6;
  --bg: #f7f8fa;
  --bg-alt: #eef1f5;
  --surface: #ffffff;
  --soft: #f1f4f8;
  --border: #dde3eb;
  --ink: #1a1f2e;
  --ink-soft: #4a5568;
  --ink-faint: #8a96a8;
  --on-primary: #ffffff;
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --hero-gradient: linear-gradient(135deg, #091a30 0%, #0f2747 45%, #1a3a5c 100%);
  --hero-overlay: linear-gradient(180deg, rgba(9,26,48,0.35) 0%, rgba(9,26,48,0.55) 100%);
  --hero-text: #ffffff;
  --shadow-sm: 0 1px 3px rgba(15,39,71,0.08);
  --shadow-md: 0 4px 18px rgba(15,39,71,0.1);
  --shadow-lg: 0 12px 40px rgba(15,39,71,0.15);
}
/* Slate — charcoal and graphite, modern, minimalist, data-driven */
html[data-theme="slate"] {
  --primary: #1e293b;
  --primary-dark: #0f172a;
  --primary-light: #e2e8f0;
  --accent: #0ea5e9;
  --accent-light: #e0f2fe;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --surface: #ffffff;
  --soft: #f1f5f9;
  --border: #cbd5e1;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-faint: #94a3b8;
  --on-primary: #ffffff;
  --font-head: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  --hero-overlay: linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.5) 100%);
  --hero-text: #f8fafc;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.1);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.15);
}
/* Heritage — cream and forest green, traditional, warm, time-honored */
html[data-theme="heritage"] {
  --primary: #1d4d3a;
  --primary-dark: #123528;
  --primary-light: #e8f3ed;
  --accent: #b8956a;
  --accent-light: #f7f0e8;
  --bg: #fdfbf7;
  --bg-alt: #f5f1ea;
  --surface: #ffffff;
  --soft: #f3ede3;
  --border: #e0d7c8;
  --ink: #2a2018;
  --ink-soft: #5a4e3f;
  --ink-faint: #9a8c75;
  --on-primary: #ffffff;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --hero-gradient: linear-gradient(135deg, #123528 0%, #1d4d3a 50%, #2a6850 100%);
  --hero-overlay: linear-gradient(180deg, rgba(18,53,40,0.3) 0%, rgba(18,53,40,0.5) 100%);
  --hero-text: #fdfbf7;
  --shadow-sm: 0 1px 3px rgba(18,53,40,0.08);
  --shadow-md: 0 4px 18px rgba(18,53,40,0.1);
  --shadow-lg: 0 12px 40px rgba(18,53,40,0.15);
}

/* ===================== Layout & header ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 24px; max-width: 1140px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); background: var(--primary); color: var(--accent); flex-shrink: 0; }
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav-link { color: var(--ink-soft); font-weight: 500; font-size: 0.92rem; padding: 8px 14px; border-radius: 8px; transition: color .15s, background .15s; }
.nav-link:hover { text-decoration: none; background: var(--soft); color: var(--primary); }
.nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-cta { background: var(--primary); color: var(--on-primary) !important; border-radius: var(--radius-pill); padding: 9px 20px; font-weight: 600; transition: background .15s, transform .15s; }
.nav-cta:hover { background: var(--primary-dark); text-decoration: none; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px 8px; border-radius: 10px; }
.nav-toggle:hover { background: var(--soft); }
.nav-toggle span { display: block; width: 24px; height: 2.5px; border-radius: 999px; background: var(--ink); transition: transform .2s, opacity .2s; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===================== Hero ===================== */
.hero { position: relative; padding: 110px 24px 120px; overflow: hidden; background: var(--hero-gradient); background-size: cover; background-position: center; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; color: var(--hero-text); }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.15; margin-bottom: 16px; font-weight: 700; }
.hero .tagline { font-size: 1.15rem; opacity: 0.9; margin-bottom: 10px; }
.hero .desc { font-size: 1.05rem; opacity: 0.78; margin-bottom: 30px; }
.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; }
.hero-cta a { padding: 13px 30px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.95rem; transition: transform .15s, filter .15s; }
.hero-cta a:hover { text-decoration: none; transform: translateY(-2px); }
.hero-cta .primary { background: var(--accent); color: var(--ink) !important; }
.hero-cta .primary:hover { filter: brightness(1.05); }
.hero-cta .ghost { border: 2px solid rgba(255,255,255,0.5); color: #fff !important; }
.hero-cta .ghost:hover { background: rgba(255,255,255,0.1); }

/* ===================== Stats strip ===================== */
.stats-strip { background: var(--surface); border-bottom: 1px solid var(--border); }
.stats-strip .container { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; padding: 32px 24px; }
.stat-item { flex: 1; min-width: 140px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; }

/* ===================== Sections ===================== */
.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 10px; }
.section-head h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 12px; font-weight: 700; }
.section-head p { color: var(--ink-soft); }

/* ===================== Cards ===================== */
.card-grid { display: grid; gap: 22px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); text-decoration: none; }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 8px; }
.card-body p { font-size: 0.92rem; color: var(--ink-soft); }
.card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag { display: inline-block; font-size: 0.75rem; padding: 4px 12px; border-radius: var(--radius-pill); background: var(--primary-light); color: var(--primary); font-weight: 600; }

/* Service cards */
.service-card { text-align: left; }
.service-icon { width: 56px; height: 56px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; background: var(--primary-light); border-radius: var(--radius); color: var(--primary); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* Advisor cards */
.advisor-card { text-align: center; }
.advisor-card .avatar-wrap { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; border: 4px solid var(--primary-light); }
.advisor-card .avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.advisor-card .avatar-placeholder { width: 140px; height: 140px; margin: 0 auto 18px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--primary); }
.advisor-card h3 { font-family: var(--font-head); font-size: 1.2rem; }
.advisor-card .role { color: var(--primary); font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; }
.advisor-card .qualification { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 8px; }
.advisor-card .bio { font-size: 0.88rem; color: var(--ink-soft); }

/* Certification list */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cert-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 16px; text-align: center; }
.cert-item .cert-icon { width: 44px; height: 44px; margin: 0 auto 12px; color: var(--accent); }
.cert-item .cert-icon svg { width: 100%; height: 100%; }
.cert-item h4 { font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 6px; }
.cert-item .issuer { font-size: 0.8rem; color: var(--ink-soft); }

/* Insight cards */
.insight-card { display: flex; flex-direction: column; }
.insight-date { font-size: 0.8rem; color: var(--ink-faint); margin-bottom: 8px; }
.read-more { color: var(--primary); font-weight: 600; font-size: 0.88rem; margin-top: auto; padding-top: 12px; }

/* CTA band */
.cta-band { background: var(--hero-gradient); padding: 60px 24px; text-align: center; color: var(--hero-text); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { opacity: 0.85; margin-bottom: 26px; }
.cta-band a { display: inline-block; background: var(--accent); color: var(--ink) !important; padding: 13px 34px; border-radius: var(--radius-pill); font-weight: 700; transition: transform .15s, filter .15s; }
.cta-band a:hover { text-decoration: none; transform: translateY(-2px); filter: brightness(1.05); }

/* Testimonials */
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.testimonial .stars { color: var(--accent); margin-bottom: 14px; font-size: 1.1rem; }
.testimonial .text { font-style: italic; margin-bottom: 18px; color: var(--ink-soft); }
.testimonial .author { font-weight: 700; font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; padding: 0; overflow: hidden; background: var(--surface); }
.faq-list summary { padding: 18px 22px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 1.05rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { background: var(--soft); }
.faq-list summary::after { content: "+"; font-size: 1.5rem; color: var(--primary); transition: transform .2s; flex-shrink: 0; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .answer { padding: 0 22px 20px; color: var(--ink-soft); }
.faq-list .rich p { margin-bottom: 8px; }

/* Rich text */
.rich p { margin-bottom: 14px; color: var(--ink-soft); }
.rich h2 { font-family: var(--font-head); font-size: 1.5rem; margin: 24px 0 10px; color: var(--ink); }
.rich h3 { font-family: var(--font-head); font-size: 1.25rem; margin: 18px 0 8px; color: var(--ink); }
.rich ul, .rich ol { margin: 0 0 14px 20px; color: var(--ink-soft); }
.rich li { margin-bottom: 6px; }
.rich blockquote { border-left: 4px solid var(--accent); padding: 10px 18px; margin: 14px 0; background: var(--soft); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--ink-soft); }

/* Page hero */
.page-hero { background: var(--hero-gradient); padding: 68px 24px 58px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: 8px; font-weight: 700; }
.page-hero p { color: rgba(255,255,255,0.85); }
.breadcrumbs { display: flex; gap: 8px; justify-content: center; font-size: 0.85rem; margin-top: 16px; }
.breadcrumbs a { color: rgba(255,255,255,0.8); }
.breadcrumbs a:hover { color: #fff; }

/* Forms */
.form-wrap { max-width: 640px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.form-grid { display: grid; gap: 18px; }
.form-grid .span-2 { grid-column: span 2; }
label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
input, textarea, select { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; background: var(--bg); color: var(--ink); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent); }
textarea { resize: vertical; min-height: 100px; }
.btn { display: inline-block; background: var(--primary); color: var(--on-primary) !important; padding: 12px 30px; border-radius: var(--radius-pill); font-weight: 700; border: none; cursor: pointer; font-size: 0.95rem; transition: background .15s, transform .15s; }
.btn:hover { background: var(--primary-dark); text-decoration: none; transform: translateY(-1px); }
.success-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.success-box h3 { color: #15803d; margin-bottom: 8px; }
.success-box p { color: #166534; }
.error-box { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius); padding: 16px 20px; margin-bottom: 20px; color: #b91c1c; font-weight: 600; }
.honeypot { position: absolute; left: -9999px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: #fff; padding: 22px 14px 12px; font-size: 0.85rem; }

/* Pager */
.pager { display: flex; gap: 6px; justify-content: center; margin-top: 44px; }
.pager a, .pager span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 8px; border: 1px solid var(--border); border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; }
.pager a:hover { background: var(--soft); text-decoration: none; }
.pager .current { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }

/* Footer */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 52px 0 0; }
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: #fff; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; padding: 0 24px 40px; max-width: 1140px; margin: 0 auto; }
.footer-col h3 { font-family: var(--font-head); color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-col p { font-size: 0.88rem; margin-bottom: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 0.88rem; }
.all-link { font-weight: 600; color: var(--accent) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 18px 24px; text-align: center; font-size: 0.82rem; max-width: 1140px; margin: 0 auto; }
.powered-by { opacity: 0.8; }
.powered-by a { color: inherit; text-decoration: none; }
.powered-by a:hover { text-decoration: underline; opacity: 1; }
.social-links { display: flex; gap: 8px; margin-top: 10px; }
.social-link { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); background: rgba(255,255,255,0.1); transition: background .15s; }
.social-link:hover { background: rgba(255,255,255,0.22); text-decoration: none; }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 100; }
.wa-float:hover { background: #1ebe5b; text-decoration: none; }
.wa-float svg { width: 28px; height: 28px; }

/* ===================== Theme switcher ===================== */
.theme-btn {
  position: fixed; bottom: 92px; right: 24px; z-index: 110;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--primary); color: var(--on-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: background .15s, transform .15s;
}
.theme-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.theme-btn svg { width: 24px; height: 24px; }
.theme-panel {
  position: fixed; bottom: 156px; right: 24px; z-index: 120;
  width: 280px; max-width: calc(100vw - 32px);
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 16px;
  display: none; text-align: left;
}
.theme-panel.open { display: block; }
.theme-panel h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; }
.theme-panel .theme-sub { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 12px; }
.theme-card {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: var(--soft); border: 2px solid transparent; border-radius: var(--radius);
  padding: 10px 12px; margin-bottom: 8px; cursor: pointer;
  font-family: var(--font-body); color: var(--ink); transition: border-color .15s, background .15s;
}
.theme-card:hover { background: color-mix(in srgb, var(--soft) 60%, var(--primary-light)); }
.theme-card.active { border-color: var(--primary); background: var(--primary-light); }
.theme-swatches { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.theme-swatches .sw { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.12); }
.theme-card .t-name { font-weight: 700; font-size: 0.9rem; }
.theme-card .t-desc { font-size: 0.75rem; color: var(--ink-soft); line-height: 1.35; }
.theme-note { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); font-size: 0.72rem; color: var(--ink-faint); line-height: 1.4; }

/* ===================== Responsive ===================== */
@media (max-width: 900px) {
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 8px; gap: 0; }
  .nav.open { display: flex; }
  .nav-link { width: 100%; }
  .nav-toggle { display: block; }
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .theme-panel { right: 16px; bottom: 148px; }
  .theme-btn { right: 16px; bottom: 88px; }
}
