/* ================================================================
   CURRICULUMDYNAMICS.COM
   10-COLOR PANTONE PALETTE  (derived from the program-gallery imagery)
   -----------------------------------------------------------------
    1  Midnight Navy   PANTONE 5395 C   #0A1E33   ground / header / footer
    2  Cobalt Blue     PANTONE 286  C   #0033A0   primary brand
    3  Signal Blue     PANTONE 285  C   #0072CE   links / accents
    4  Bright Azure    PANTONE 299  C   #00A3E0   data / glow accent
    5  Cyan Glow       PANTONE 306  C   #00B5E2   highlights
    6  Signal Gold     PANTONE 1235 C   #FFB81C   primary accent
    7  Ember Orange    PANTONE 1495 C   #FF8200   CTA warmth
    8  Growth Green    PANTONE 360  C   #6CC24A   success / growth
    9  Steel Slate     PANTONE 431  C   #5B6770   neutral text / rules
   10  Ice Mist        PANTONE 656  C   #DCE7F1   light panel tint
   White/light background · varied box fills for aesthetic variety
   ================================================================ */

:root {
  /* ── Pantone palette — bright reference values ── */
  --navy:         #0A1E33;
  --cobalt:       #0033A0;
  --sky:          #0072CE;
  --azure:        #00A3E0;
  --azure-lt:     #00B5E2;
  --gold-bright:  #FFB81C;
  --ember:        #FF8200;
  --green-lt:     #6CC24A;
  --steel:        #5B6770;
  --ice:          #DCE7F1;

  /* ── brand vars (names kept; values remapped to palette) ── */
  --purple:       #0033A0;   /* now Cobalt — primary */
  --purple-lt:    #0072CE;   /* now Signal Blue */
  --purple-dk:    #0A1E33;   /* now Midnight Navy */
  --purple-dim:   rgba(0,51,160,.1);
  --purple-border:rgba(0,51,160,.22);

  --indigo:       #0A2A6B;
  --indigo-lt:    #1E40AF;

  --gold:         #C77A00;   /* readable gold on white */
  --gold-lt:      #E08A00;
  --gold-dim:     rgba(255,184,28,.15);
  --gold-border:  rgba(255,184,28,.34);

  --blue:         #0072CE;
  --blue-lt:      #00A3E0;
  --blue-dim:     rgba(0,163,224,.1);

  --green:        #4E9A2F;
  --green-dim:    rgba(108,194,74,.15);

  --bg:           #ffffff;
  --bg-soft:      #F5F8FC;
  --bg-purple-lt: #EDF1FB;   /* light cobalt tint */
  --bg-blue-lt:   #E4EFFB;
  --bg-azure-lt:  #E2F4FB;
  --bg-green-lt:  #EDF6E6;
  --bg-gold-lt:   #FFF6E0;
  --bg-steel-lt:  #EEF1F4;
  --bg-ice:       #EDF3F9;
  --bg-dark-navy: #0A1E33;
  --bg-dark-purple:#12224A;
  --bg-dark:      #0A1630;

  --card:         #ffffff;
  --border:       rgba(10,30,51,.12);
  --border2:      rgba(10,30,51,.2);

  --text:         #10233F;
  --text-dim:     #33475A;
  --text-muted:   #6E7F8E;
  --text-lt:      rgba(255,255,255,.92);

  --radius:       12px;
  --shadow:       0 4px 20px rgba(10,30,51,.08);
  --shadow-lg:    0 10px 34px rgba(10,30,51,.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-soft);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  font-size: 15px;
}

a { color: var(--purple); text-decoration: none; transition: color .2s; }
a:hover { color: var(--purple-dk); text-decoration: underline; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h3 { font-size: 1.15rem; }

p { line-height: 1.75; }
ul { padding-left: 1.2rem; }
li { margin-bottom: .4rem; }

/* ── PAGE WRAP ──────────────────────────────────────────────── */
.page-wrap {
  max-width: 1900px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-left: 1px solid var(--purple-border);
  border-right: 1px solid var(--purple-border);
}
main { flex: 1; }

/* ── SITE HEADER ────────────────────────────────────────────── */
.site-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 55%, var(--sky) 125%);
  padding: 1.2rem 2rem;
}
.header-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.header-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-logo-icon {
  font-size: 2.8rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(180,83,9,.5));
}
.header-logo-text { display: flex; flex-direction: column; gap: .1rem; }
.header-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.header-sub {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  max-width: 460px;
  text-align: right;
}

/* ── NAV ────────────────────────────────────────────────────── */
.site-nav-wrap { background: var(--navy); border-bottom: 2px solid var(--azure); }

.cd-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.cd-nav-brand { display: none; }
.cd-nav .nav-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }

.cd-nav a {
  display: block;
  padding: .75rem 1rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s, background .18s;
}
.cd-nav > a:hover,
.cd-nav > a.active { color: #fff; background: rgba(255,255,255,.08); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { color: rgba(255,255,255,.8); font-weight: 600; font-size: .9rem; }
.nav-dropdown > a:hover,
.nav-dropdown > a.active { color: #fff; background: rgba(255,255,255,.08); }

.dd-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #0E2140;
  border: 1px solid var(--purple-border);
  border-top: 2px solid var(--azure);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  z-index: 200;
  padding: .4rem 0;
}
.nav-dropdown:hover .dd-menu { display: block; }
.dd-menu a {
  display: block;
  padding: .45rem 1rem;
  color: rgba(255,255,255,.75);
  font-size: .86rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.dd-menu a:hover { background: rgba(0,114,206,.24); color: #fff; }
.dd-section {
  padding: .5rem 1rem .25rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: .25rem;
}
.dd-section:first-child { border-top: none; margin-top: 0; }

/* ── GALLERY ────────────────────────────────────────────────── */
.cd-gallery-strip {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  line-height: 0;
}
.cd-gallery-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0730 0%, #2d1b69 100%);
}
.gallery-placeholder {
  color: rgba(255,255,255,.3);
  font-size: .85rem;
  font-style: italic;
}
.cd-gallery-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cd-gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease-in-out;
}
.cd-gallery-slide img.active { opacity: 1; }

.slide-controls {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .9rem;
  border-top: 1px solid rgba(91,33,182,.12);
}
.slide-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: .2rem .5rem;
  border-radius: 5px;
  color: var(--text-dim);
  transition: background .18s;
  line-height: 1;
}
.slide-btn:hover { background: var(--purple-dim); }
.slide-btn.paused { background: var(--gold-dim); color: var(--gold); }
.slide-counter {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
  min-width: 3.5rem;
}
.slide-delay {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: .2rem .4rem;
  font-size: .78rem;
  color: var(--text-dim);
  cursor: pointer;
}

/* ── PAGE BANNER ────────────────────────────────────────────── */
.page-banner {
  padding: 2.8rem 2rem 2.4rem;
  border-bottom: 3px solid var(--purple-lt);
}
.banner-purple  { background: linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 55%, var(--sky) 120%); }
.banner-indigo  { background: linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 100%); }
.banner-navy    { background: linear-gradient(135deg, #071426 0%, var(--navy) 100%); }
.banner-blue    { background: linear-gradient(135deg, var(--cobalt) 0%, var(--sky) 120%); }
.banner-azure   { background: linear-gradient(135deg, #005E8A 0%, var(--azure) 125%); }
.banner-gold    { background: linear-gradient(135deg, #B0690A 0%, var(--gold-bright) 130%); }
.banner-ember   { background: linear-gradient(135deg, #B04E00 0%, var(--ember) 130%); }
.banner-green   { background: linear-gradient(135deg, #2E6B18 0%, var(--green-lt) 130%); }
.banner-steel   { background: linear-gradient(135deg, #3A434B 0%, var(--steel) 120%); }

.banner-inner { max-width: 1200px; margin: 0 auto; }
.banner-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .6rem;
}
.banner-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .8rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.banner-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 660px;
  line-height: 1.6;
}
.banner-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }

/* ── SECTIONS ───────────────────────────────────────────────── */
.cd-section { padding: 3.5rem 2rem; }
.cd-section-inner { max-width: 1200px; margin: 0 auto; }

.bg-white      { background: #ffffff; }
.bg-soft       { background: var(--bg-soft); }
.bg-purple-lt  { background: var(--bg-purple-lt); }
.bg-blue-lt    { background: var(--bg-blue-lt); }
.bg-azure-lt   { background: var(--bg-azure-lt); }
.bg-green-lt   { background: var(--bg-green-lt); }
.bg-gold-lt    { background: var(--bg-gold-lt); }
.bg-steel-lt   { background: var(--bg-steel-lt); }
.bg-ice        { background: var(--bg-ice); }
.bg-dark-navy  { background: var(--bg-dark-navy); }
.bg-dark-purple { background: var(--bg-dark-purple); }

.text-on-dark h2,
.text-on-dark h3,
.text-on-dark { color: #fff; }
.text-on-dark p,
.text-on-dark .section-lead { color: rgba(255,255,255,.76); }
.text-on-dark .section-eyebrow { color: var(--gold-bright); }
.text-on-dark li,
.text-on-dark .cd-list li { color: rgba(255,255,255,.8); }
.text-on-dark .stat-label { color: rgba(255,255,255,.72); }
.text-on-dark .stat-val   { color: var(--gold-bright); }
.text-on-dark a { color: var(--azure); }

.section-eyebrow {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: .6rem;
}
.eyebrow-lt { color: var(--gold-bright); }
.section-lead {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 720px;
  margin-top: .75rem;
  line-height: 1.75;
}
.section-hero-text {
  font-size: 1.12rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 820px;
}

/* ── GRIDS ──────────────────────────────────────────────────── */
.cd-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.cd-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cd-pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.cd-pillar:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cd-pillar-gold { background: var(--bg-gold-lt); }
.cd-pillar-icon { font-size: 2rem; margin-bottom: .6rem; }
.cd-pillar-title { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; color: var(--text); }
.cd-pillar-desc  { font-size: .9rem; color: var(--text-dim); line-height: 1.6; }

.cd-card-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  transition: background .2s;
}
.cd-card-dark:hover { background: rgba(255,255,255,.1); }
.cd-card-title { font-weight: 700; color: rgba(255,255,255,.95); margin-bottom: .5rem; }
.cd-card-desc  { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.6; }

/* re-use pandemicure card-dark for about page */
.pc-card-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  transition: background .2s;
}
.pc-card-dark:hover { background: rgba(255,255,255,.1); }
.pc-card-title { font-weight: 700; color: rgba(255,255,255,.95); margin-bottom: .5rem; }
.pc-card-desc  { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.6; }

/* ── STATS ──────────────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-val   { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--purple); line-height: 1; margin-bottom: .4rem; }
.stat-label { font-size: .85rem; color: var(--text-dim); line-height: 1.4; }

/* ── PROGRAM CARDS ──────────────────────────────────────────── */
.program-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.program-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.program-card-icon { font-size: 2.2rem; margin-bottom: .6rem; }
.program-card-title { font-weight: 800; font-size: 1.05rem; margin-bottom: .4rem; color: var(--text); }
.program-card-desc  { font-size: .88rem; color: var(--text-dim); line-height: 1.55; flex: 1; }
.program-card-link  { margin-top: .8rem; font-size: .85rem; font-weight: 700; color: var(--purple); }

/* ── rotating box-fill accents → aesthetic variety across grids ── */
.cd-pillar, .program-card { border-top: 3px solid var(--cobalt); }
.cd-grid-3 > :nth-child(6n+1), .cd-grid-2 > :nth-child(6n+1), .program-card-grid > :nth-child(6n+1) { border-top-color: var(--cobalt); }
.cd-grid-3 > :nth-child(6n+2), .cd-grid-2 > :nth-child(6n+2), .program-card-grid > :nth-child(6n+2) { border-top-color: var(--azure); }
.cd-grid-3 > :nth-child(6n+3), .cd-grid-2 > :nth-child(6n+3), .program-card-grid > :nth-child(6n+3) { border-top-color: var(--azure-lt); }
.cd-grid-3 > :nth-child(6n+4), .cd-grid-2 > :nth-child(6n+4), .program-card-grid > :nth-child(6n+4) { border-top-color: var(--gold-bright); }
.cd-grid-3 > :nth-child(6n+5), .cd-grid-2 > :nth-child(6n+5), .program-card-grid > :nth-child(6n+5) { border-top-color: var(--green-lt); }
.cd-grid-3 > :nth-child(6n+6), .cd-grid-2 > :nth-child(6n+6), .program-card-grid > :nth-child(6n+6) { border-top-color: var(--ember); }

/* ── ARCH FLOW (reuse from pandemicure) ─────────────────────── */
.arch-flow { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.arch-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
}
.arch-num {
  width: 2rem;
  height: 2rem;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.arch-title { font-weight: 700; font-size: 1rem; margin-bottom: .25rem; color: var(--text); }
.arch-desc  { font-size: .88rem; color: var(--text-dim); line-height: 1.5; }

/* ── LIST ───────────────────────────────────────────────────── */
.cd-list { padding-left: 1.4rem; margin-top: 1rem; }
.cd-list li { margin-bottom: .5rem; font-size: .95rem; color: var(--text-dim); line-height: 1.6; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-block { margin-bottom: 1.2rem; }
.contact-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .2rem; }
.contact-link  { font-size: 1rem; font-weight: 600; color: var(--purple); }
.contact-info h2 { margin: .75rem 0 0; }
.contact-topics h3 { margin-bottom: .75rem; }

/* ── TAGS ───────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tag-purple { background: var(--purple-dim); color: var(--purple); border: 1px solid var(--purple-border); }
.tag-blue   { background: var(--blue-dim); color: var(--blue); border: 1px solid rgba(0,163,224,.28); }
.tag-azure  { background: rgba(0,181,226,.1); color: var(--azure); border: 1px solid rgba(0,181,226,.28); }
.tag-gold   { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border); }
.tag-ember  { background: rgba(255,130,0,.1); color: var(--ember); border: 1px solid rgba(255,130,0,.3); }
.tag-green  { background: var(--green-dim); color: var(--green); border: 1px solid rgba(108,194,74,.3); }
.tag-steel  { background: rgba(91,103,112,.1); color: var(--steel); border: 1px solid rgba(91,103,112,.28); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-gold-lg {
  background: var(--gold-lt);
  color: #fff;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background .18s;
}
.btn-gold-lg:hover { background: var(--gold-bright); color: #fff; text-decoration: none; }
.btn-outline-lt {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  padding: .8rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.28);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background .18s;
}
.btn-outline-lt:hover { background: rgba(255,255,255,.18); color: #fff; text-decoration: none; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.cd-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 3rem 2rem 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.footer-brand .brand-name { font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: .75rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.58); }
.footer-col h4 { color: #fff; font-size: .9rem; margin-bottom: .75rem; }
.footer-col a { display: block; font-size: .85rem; color: rgba(255,255,255,.58); margin-bottom: .35rem; transition: color .18s; }
.footer-col a:hover { color: var(--gold-bright); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ── MOBILE ─────────────────────────────────────────────────── */
.mob-hamburger {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  padding: .6rem 1rem;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.mob-icon { font-size: 1.4rem; }

@media (max-width: 900px) {
  .header-tagline { display: none; }
  .mob-hamburger  { display: flex; }
  .cd-nav { flex-wrap: wrap; }
  .cd-nav .nav-inner { display: none; width: 100%; flex-direction: column; }
  .cd-nav .nav-inner.open { display: flex; }
  .nav-dropdown { width: 100%; }
  .dd-menu { position: static; width: 100%; border-radius: 0; box-shadow: none; display: none; }
  .nav-dropdown:hover .dd-menu { display: none; }
  .nav-dropdown.open .dd-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cd-gallery-slide { height: 480px !important; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cd-section { padding: 2.5rem 1rem; }
  .site-header { padding: 1rem; }
  .page-banner { padding: 2rem 1rem; }
  .cd-gallery-slide { height: 280px !important; }
}
