/* ============================================
   SOHO FIRST – MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --plum:         #932f71;
  --plum-dark:    #6e1f52;
  --plum-mid:     #b04589;
  --plum-light:   #e8b4d4;
  --plum-pale:    #f9edf5;

  --cream:        #faf8f6;
  --warm-white:   #ffffff;
  --charcoal:     #1c1c1c;
  --text:         #2e2e2e;
  --text-muted:   #6b6b6b;
  --border:       #e0d6dc;
  --border-light: #f0e8ed;

  --shadow-sm:    0 1px 4px rgba(147,47,113,0.07);
  --shadow-md:    0 4px 18px rgba(147,47,113,0.11);
  --shadow-lg:    0 14px 44px rgba(147,47,113,0.15);

  --radius:       6px;
  --radius-lg:    14px;
  --max-w:        1140px;
  --nav-h:        84px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-ui:      'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration: none; transition: color .2s; }
a:hover { color: var(--plum-dark); }

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1.3rem; font-size: 1.075rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.6rem; margin-bottom: 1.1rem; }
li { margin-bottom: .5rem; }
strong { font-weight: 600; color: var(--charcoal); }
em { font-style: italic; }

/* ─── LAYOUT ─────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.page-wrap { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; padding: 80px 0 110px; }
.content-block { max-width: 800px; }

/* ─── HEADER / NAV ───────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--warm-white);
  border-bottom: 2px solid var(--plum-light);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.site-logo img { height: 60px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav > li { list-style: none; position: relative; }

.site-nav > li > a,
.site-nav > li > span {
  font-family: var(--font-ui); font-size: .875rem; font-weight: 500;
  color: var(--charcoal); padding: 8px 15px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  white-space: nowrap; transition: background .2s, color .2s; letter-spacing: .01em;
}

.site-nav > li > a:hover,
.site-nav > li > span:hover { background: var(--plum-pale); color: var(--plum); }
.site-nav > li > a.active { color: var(--plum); }

.nav-arrow { font-size: .6rem; transition: transform .2s; display: inline-block; opacity: .6; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  min-width: 240px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown li { list-style: none; }
.dropdown a {
  display: block; font-family: var(--font-ui); font-size: .875rem;
  color: var(--text); padding: 10px 15px; border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--plum-pale); color: var(--plum); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer; border: none; background: none;
  padding: 4px; border-radius: var(--radius);
}
.nav-toggle span { display: block; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--warm-white); z-index: 999; overflow-y: auto;
  padding: 28px 32px; transform: translateX(100%); transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--border); }

.mobile-nav a,
.mobile-nav .m-parent {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-ui); font-size: 1.05rem; font-weight: 500;
  color: var(--charcoal); padding: 16px 0; cursor: pointer; text-decoration: none;
}
.mobile-nav a:hover { color: var(--plum); }
.mobile-sub { display: none; padding: 0 0 14px 18px; }
.mobile-sub.open { display: block; }
.mobile-sub a { font-size: .95rem; color: var(--text-muted); padding: 9px 0; border-bottom: none; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  background: var(--plum-dark);
  padding: 100px 0 92px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 85% 50%, rgba(147,47,113,.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5% 90%, rgba(110,31,82,.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum-light), var(--plum-mid), var(--plum-light));
  opacity: .5;
}

.hero-inner { position: relative; z-index: 1; max-width: 800px; }

.hero h1 {
  color: var(--warm-white);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  margin-bottom: 28px; line-height: 1.12;
}

.hero p {
  font-size: 1.2rem; color: rgba(255,255,255,.88);
  line-height: 1.75; max-width: 660px;
}

.hero-tagline {
  font-family: var(--font-ui); font-size: .85rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--plum-light);
  margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
}
.hero-tagline::before {
  content: ''; display: inline-block; width: 28px; height: 2px;
  background: var(--plum-light); border-radius: 2px;
}

/* ─── PAGE TITLE BAR ─────────────────────────── */
.page-title-bar {
  background: var(--plum-dark);
  padding: 64px 0 56px; position: relative; overflow: hidden;
}

.page-title-bar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 110% at 92% 50%, rgba(147,47,113,.3), transparent);
}
.page-title-bar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--plum-mid), transparent);
}

.page-title-bar .container { position: relative; z-index: 1; }

.page-title-bar .breadcrumb {
  font-family: var(--font-ui); font-size: .8rem;
  color: rgba(255,255,255,.55); margin-bottom: 16px; letter-spacing: .03em;
}
.page-title-bar .breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.page-title-bar .breadcrumb a:hover { color: var(--plum-light); }
.page-title-bar .breadcrumb span { color: rgba(255,255,255,.35); margin: 0 8px; }
.page-title-bar h1 { color: var(--warm-white); font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
.page-title-bar .page-subtitle {
  color: rgba(255,255,255,.75); font-size: 1.1rem; margin-top: 16px;
  font-family: var(--font-body); font-style: italic; max-width: 680px;
}

/* ─── SECTION LABEL ──────────────────────────── */
.section-label {
  font-family: var(--font-ui); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--plum);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--plum); border-radius: 2px; flex-shrink: 0;
}

/* ─── SECTION RULE ───────────────────────────── */
.section-rule { border: none; border-top: 1px solid var(--border); margin: 72px 0; }

/* ─── INTRO SECTION ──────────────────────────── */
.intro-section { background: var(--warm-white); padding: 80px 0; }
.intro-section p { font-size: 1.125rem; max-width: 760px; }

/* ─── NEWS GRID ──────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px; margin-top: 48px;
}

.news-card {
  background: var(--warm-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform .28s, box-shadow .28s;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.news-card-img { width: 100%; height: 210px; object-fit: cover; }

.news-card-body { padding: 28px 28px 32px; }
.news-card-body h4 { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.4; }
.news-card-body h4 a { color: var(--charcoal); transition: color .2s; }
.news-card-body h4 a:hover { color: var(--plum); }

/* ─── FILTER TABS ────────────────────────────── */
.filter-tabs { display: flex; gap: 10px; margin: 40px 0 0; flex-wrap: wrap; }

.filter-tab {
  font-family: var(--font-ui); font-size: .875rem; font-weight: 500;
  padding: 9px 22px; border-radius: 100px; border: 1.5px solid var(--border);
  background: var(--warm-white); color: var(--text-muted); cursor: pointer; transition: all .2s;
}
.filter-tab:hover, .filter-tab.active { background: var(--plum); border-color: var(--plum); color: white; }

/* ─── CALLOUT BLOCKS ─────────────────────────── */
.callout {
  background: var(--plum-pale); border-left: 4px solid var(--plum-mid);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 28px 32px; margin: 40px 0;
}
.callout p { margin: 0; color: var(--charcoal); font-size: 1rem; }
.callout strong { color: var(--plum-dark); }

/* ─── STRAND CARDS ───────────────────────────── */
.strand-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; margin: 48px 0;
}

.strand-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.strand-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.strand-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--plum);
}
.strand-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.strand-card p { font-size: .975rem; color: var(--text-muted); margin-bottom: 24px; }
.strand-card a.card-link { font-family: var(--font-ui); font-size: .875rem; font-weight: 600; color: var(--plum); }
.strand-card a.card-link:hover { color: var(--plum-dark); }

/* ─── TEAM LIST ──────────────────────────────── */
.team-list { list-style: none; padding: 0; margin: 28px 0; }
.team-list li {
  padding: 16px 0; border-bottom: 1px solid var(--border-light);
  font-size: 1rem; display: flex; gap: 16px; align-items: baseline;
}
.team-list li:last-child { border-bottom: none; }
.team-role {
  font-family: var(--font-ui); font-weight: 600; color: var(--plum);
  font-size: .85rem; letter-spacing: .02em; min-width: 140px; flex-shrink: 0;
}

/* ─── IMAGE GRID ─────────────────────────────── */
.img-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px; margin: 44px 0;
}
.img-grid-item {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: var(--border); cursor: pointer;
}
.img-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.img-grid-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; background: rgba(28,28,28,.9);
  z-index: 9999; align-items: center; justify-content: center; padding: 24px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-height: 85vh; max-width: 90vw; border-radius: var(--radius);
  box-shadow: 0 24px 72px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  color: white; font-size: 2.2rem; cursor: pointer; line-height: 1;
  font-family: var(--font-ui); opacity: .7; transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }

/* ─── CONTACT BLOCKS ─────────────────────────── */
.contact-block {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 40px;
  margin-bottom: 28px; position: relative; overflow: hidden;
}
.contact-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--plum);
}
.contact-block h4 {
  font-family: var(--font-ui); font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--plum); margin-bottom: 18px;
}
.contact-block p { font-size: 1rem; margin-bottom: 7px; }
.contact-block p:last-child { margin-bottom: 0; }
.contact-block a { color: var(--plum); text-decoration: underline; }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--plum); color: white; font-family: var(--font-ui);
  font-size: .9rem; font-weight: 500; padding: 13px 30px;
  border-radius: 100px; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .02em;
}
.btn:hover { background: var(--plum-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; }

.btn-outline { background: transparent; color: var(--plum); border: 2px solid var(--plum); }
.btn-outline:hover { background: var(--plum); color: white; }

/* ─── PDF LINKS ──────────────────────────────── */
.pdf-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--plum-pale); border: 1px solid var(--plum-light);
  color: var(--plum-dark); font-family: var(--font-ui); font-size: .9rem;
  font-weight: 500; padding: 12px 20px; border-radius: var(--radius);
  margin: 8px 10px 8px 0; transition: background .2s, transform .15s;
}
.pdf-link:hover { background: var(--plum-light); color: var(--plum-dark); transform: translateY(-1px); }
.pdf-link::before { content: '↓'; font-size: 1rem; font-weight: 700; }

/* ─── FACEBOOK EMBEDS ────────────────────────── */
.fb-embed {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 28px; margin: 20px 0;
  display: flex; align-items: center; gap: 18px; transition: box-shadow .2s;
}
.fb-embed:hover { box-shadow: var(--shadow-sm); }
.fb-icon {
  width: 44px; height: 44px; background: #1877f2; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-family: var(--font-ui);
  font-size: 1.1rem; flex-shrink: 0;
}
.fb-embed a { font-family: var(--font-ui); font-size: .9rem; font-weight: 500; color: #1877f2; }

/* ─── SOCIAL FOLLOW BUTTON ───────────────────── */
.social-follow-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: .9rem; font-weight: 500;
  color: var(--charcoal); background: var(--cream); border: 1.5px solid var(--border);
  padding: 11px 20px; border-radius: var(--radius);
  transition: background .2s, border-color .2s; text-decoration: none;
}
.social-follow-btn:hover { background: var(--plum-pale); border-color: var(--plum-light); color: var(--plum); }

/* ─── GALLERY ────────────────────────────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px; margin: 44px 0;
}
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; position: relative; background: var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(147,47,113,.4); opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ─── WARD MAP ───────────────────────────────── */
.ward-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin: 44px 0; max-width: 480px; }

/* ─── NNS LOGO ───────────────────────────────── */
.nns-logo-block { margin: 32px 0 44px; }
.nns-logo-block img { max-width: 280px; border-radius: var(--radius); }

/* ─── PRIVACY ────────────────────────────────── */
.privacy-content h2 { font-size: 1.4rem; margin: 52px 0 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.privacy-content h3 { font-size: 1.1rem; margin: 32px 0 10px; color: var(--plum-dark); }
.privacy-content h2:first-child { border-top: none; margin-top: 0; }

/* ─── 404 ────────────────────────────────────── */
.page-404 { text-align: center; padding: 100px 20px; }
.page-404 .big-num {
  font-family: var(--font-display); font-size: clamp(6rem, 20vw, 13rem);
  color: var(--plum-pale); line-height: 1; margin-bottom: 0; display: block;
}
.page-404 h2 { margin: 22px 0 14px; }
.page-404 p { color: var(--text-muted); max-width: 460px; margin: 0 auto 34px; }

/* ─── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--charcoal); padding: 80px 0 40px; margin-top: auto; }

.footer-inner { display: grid; grid-template-columns: 1.2fr 0.7fr 1.2fr; gap: 60px; margin-bottom: 60px; }

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1;
}
.footer-brand p { font-family: var(--font-ui); font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.75; }

.footer-nav h5, .footer-contact h5 {
  font-family: var(--font-ui); font-size: .73rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--plum-light); margin-bottom: 20px; font-weight: 600;
}
.footer-nav ul { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a, .footer-contact a { font-family: var(--font-ui); font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--plum-light); }
.footer-contact p { font-family: var(--font-ui); font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-family: var(--font-ui); font-size: .78rem; color: rgba(255,255,255,.35); margin: 0; }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.55); font-size: .85rem;
  transition: background .2s, color .2s; text-decoration: none;
}
.social-links a:hover { background: var(--plum); color: white; }

/* ─── COOKIE BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
  background: #111; padding: 20px 0; border-top: 3px solid var(--plum);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-inner p { font-family: var(--font-ui); font-size: .875rem; color: rgba(255,255,255,.75); margin: 0; flex: 1; min-width: 220px; }
.cookie-inner a { color: var(--plum-light); text-decoration: underline; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-accept {
  background: var(--plum); color: white; border: none; padding: 10px 24px;
  border-radius: 100px; font-family: var(--font-ui); font-size: .875rem;
  font-weight: 500; cursor: pointer; transition: background .2s;
}
.cookie-accept:hover { background: var(--plum-dark); }

.cookie-decline {
  background: transparent; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.2); padding: 10px 24px;
  border-radius: 100px; font-family: var(--font-ui); font-size: .875rem;
  cursor: pointer; transition: all .2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,.45); color: rgba(255,255,255,.85); }

/* ─── SCROLL TO TOP ──────────────────────────── */
.scroll-top {
  position: fixed; bottom: 32px; right: 28px; width: 46px; height: 46px;
  background: var(--plum); color: white; border: none; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem; display: flex; align-items: center;
  justify-content: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s; z-index: 7000;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--plum-dark); }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .55s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .news-grid { grid-template-columns: 1fr; }
  .img-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .strand-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .page-title-bar { padding: 48px 0 40px; }
  main { padding: 56px 0 80px; }
  .container { padding: 0 20px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .section-rule { margin: 52px 0; }
}

@media (max-width: 440px) {
  .img-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ SECTION ────────────────────────────── */
.faq-section {
  background: var(--warm-white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.faq-list { max-width: 780px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--charcoal);
  cursor: pointer;
}

.faq-item h3::before {
  content: 'Q. ';
  color: var(--plum);
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
  padding-left: 28px;
}
