/* ============================================
   BIFOLDINGDOOR.NET
   Brand: Navy + Grey + Amber accent
   Tagline: Style · Space · Seamless
   ============================================ */

:root {
  /* Brand palette (from logo) */
  --c-navy:        #1B2A4E;
  --c-navy-dark:   #0F1A33;
  --c-navy-darker: #0A1226;
  --c-navy-light:  #2D3F66;
  --c-grey:        #6B7280;
  --c-grey-dark:   #374151;
  --c-grey-light:  #E5E7EB;
  --c-grey-faint:  #F3F4F6;

  /* Accent (warm amber for CTAs / highlights) */
  --c-amber:       #D97706;
  --c-amber-dark:  #B45309;
  --c-amber-soft:  #FEF3C7;

  /* Neutrals */
  --c-bg:          #FAFAFA;
  --c-surface:     #FFFFFF;
  --c-text:        #1F2937;
  --c-text-muted:  #6B7280;

  /* Type */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --pad: clamp(1.5rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--c-navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-amber); }

/* LAYOUT */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-navy-dark);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.15rem; font-family: var(--f-body); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }

em { font-style: italic; color: var(--c-amber); font-weight: 400; }
p { margin-bottom: 1rem; max-width: 65ch; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 1.25rem;
}
.eyebrow-strap { font-size: 0.85rem; letter-spacing: 0.35em; }

.section-lede { font-size: 1.15rem; color: var(--c-text-muted); max-width: 55ch; margin-top: 1rem; }
.section-header { margin-bottom: 3.5rem; max-width: 720px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-grey-light);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.85rem; padding-bottom: 0.85rem; gap: 2rem;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 56px; width: auto; display: block; transition: opacity .2s; }
.brand:hover .brand-logo { opacity: 0.85; }

.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav a { font-size: 0.95rem; font-weight: 600; color: var(--c-navy-dark); position: relative; }
.primary-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--c-amber); transition: width .25s;
}
.primary-nav a:not(.nav-cta):hover { color: var(--c-navy); }
.primary-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--c-amber); color: var(--c-surface) !important;
  padding: 0.75rem 1.5rem; border-radius: 3px;
  font-weight: 700; letter-spacing: 0.02em;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--c-amber-dark); transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(217, 119, 6, 0.25);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--c-navy-dark); transition: transform .3s; }

@media (max-width: 880px) {
  .brand-logo { height: 44px; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-surface); flex-direction: column; align-items: flex-start;
    padding: 1.5rem var(--pad); gap: 1.25rem;
    border-bottom: 1px solid var(--c-grey-light);
    transform: translateY(-110%); transition: transform .3s;
  }
  .primary-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 2rem; font-family: var(--f-body);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.02em;
  border: 1px solid transparent; border-radius: 3px;
  cursor: pointer; text-decoration: none;
  transition: all .25s; white-space: nowrap;
}
.btn-primary { background: var(--c-amber); color: var(--c-surface); }
.btn-primary:hover {
  background: var(--c-amber-dark); color: var(--c-surface);
  transform: translateY(-2px); box-shadow: 0 12px 24px rgba(217, 119, 6, 0.25);
}
.btn-ghost { background: transparent; color: var(--c-navy); border-color: var(--c-navy); }
.btn-ghost:hover { background: var(--c-navy); color: var(--c-surface); }
.btn-block { width: 100%; }

.link-arrow { font-weight: 700; color: var(--c-amber); border-bottom: 1px solid transparent; transition: border-color .2s; }
.link-arrow:hover { color: var(--c-amber-dark); border-bottom-color: var(--c-amber-dark); }

/* HERO */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 119, 6, 0.08), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(27, 42, 78, 0.06), transparent 60%),
    linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 60%; height: 100%;
  background: repeating-linear-gradient(90deg,
    transparent 0, transparent 60px,
    rgba(27, 42, 78, 0.025) 60px, rgba(27, 42, 78, 0.025) 61px);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; }
.hero-title { margin-bottom: 1.5rem; font-size: clamp(2.75rem, 6.5vw, 5rem); line-height: 1.05; }
.hero-sub { font-size: 1.15rem; color: var(--c-text-muted); margin-bottom: 2.25rem; max-width: 32rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--c-grey-light);
}
.hero-trust li { display: flex; flex-direction: column; gap: 0.15rem; font-size: 0.85rem; color: var(--c-text-muted); letter-spacing: 0.03em; }
.hero-trust strong { font-family: var(--f-display); font-size: 1.5rem; color: var(--c-navy-dark); font-weight: 600; font-style: italic; }

/* Hero illustration */
.hero-art { position: relative; aspect-ratio: 4 / 5; max-width: 480px; justify-self: end; width: 100%; }
.hero-art-frame {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  background: var(--c-navy-dark); padding: 6px;
  box-shadow: -20px 30px 60px rgba(27, 42, 78, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
}
.hero-art-pane {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 235, 245, 0.85) 50%, rgba(27, 42, 78, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3); position: relative; overflow: hidden;
}
.hero-art-pane::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.5) 35%, transparent 40%);
}
.hero-art-pane:nth-child(2) { background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(27,42,78,0.2)); }
.hero-art-pane:nth-child(3) { background: linear-gradient(115deg, rgba(255,255,255,0.95), rgba(107,114,128,0.15)); }
.hero-art-pane:nth-child(4) { background: linear-gradient(155deg, rgba(255,255,255,0.85), rgba(217,119,6,0.18)); }
.hero-art-floor {
  position: absolute; bottom: -10%; left: -10%; right: -10%; height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(27, 42, 78, 0.12) 100%);
  filter: blur(20px);
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-art { max-width: 380px; justify-self: center; }
  .hero-trust { gap: 1.5rem; }
}

/* INTRO */
.section-intro { background: var(--c-grey-faint); border-top: 1px solid var(--c-grey-light); border-bottom: 1px solid var(--c-grey-light); }
.intro-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.intro-lede h2 { font-size: clamp(2rem, 4vw, 3rem); }
.intro-body p { font-size: 1.1rem; color: var(--c-text); line-height: 1.7; }
@media (max-width: 880px) { .intro-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.service-card {
  display: block; padding: 2.5rem 2rem;
  background: var(--c-surface); border: 1px solid var(--c-grey-light);
  border-radius: 4px; transition: all .3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--c-amber);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.service-card:hover { border-color: var(--c-navy); transform: translateY(-4px); box-shadow: 0 18px 36px rgba(27, 42, 78, 0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-num { font-family: var(--f-display); font-style: italic; font-size: 1.5rem; color: var(--c-amber); margin-bottom: 1.25rem; }
.service-card h3 { margin-bottom: 0.5rem; color: var(--c-navy-dark); }
.service-card-short { color: var(--c-text-muted); font-style: italic; font-family: var(--f-display); font-size: 1.05rem; margin-bottom: 1rem; }
.service-card-blurb { font-size: 0.95rem; color: var(--c-text); margin-bottom: 1.5rem; }
.service-card-link { font-size: 0.9rem; font-weight: 700; color: var(--c-amber); letter-spacing: 0.02em; }

/* PROCESS */
.section-process { background: var(--c-navy-darker); color: var(--c-surface); }
.section-process h2, .section-process h3 { color: var(--c-surface); }
.section-process .eyebrow { color: var(--c-amber); }
.section-process .section-lede { color: rgba(255,255,255,0.7); }
.process-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; counter-reset: step; }
.process-step { padding: 2rem 1.5rem; border-top: 2px solid var(--c-amber); background: rgba(255, 255, 255, 0.03); }
.process-num { font-family: var(--f-display); font-style: italic; font-size: 1.25rem; color: var(--c-amber); display: block; margin-bottom: 0.75rem; }
.process-step h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.process-step p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.75); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.testimonial {
  padding: 2.5rem; background: var(--c-surface);
  border-left: 3px solid var(--c-amber); border-radius: 0 4px 4px 0;
  position: relative; box-shadow: 0 4px 12px rgba(27, 42, 78, 0.05);
}
.testimonial::before {
  content: '"'; position: absolute; top: -10px; left: 1.5rem;
  font-family: var(--f-display); font-size: 5rem; color: var(--c-amber);
  line-height: 1; font-style: italic;
}
.testimonial p { font-family: var(--f-display); font-style: italic; font-size: 1.15rem; color: var(--c-text); line-height: 1.55; margin-bottom: 1.25rem; }
.testimonial cite { font-style: normal; font-size: 0.9rem; font-weight: 700; color: var(--c-navy); letter-spacing: 0.02em; }

/* LOCATIONS */
.section-locations { background: var(--c-grey-faint); }
.loc-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.loc-pill, .loc-pill-sm {
  display: inline-block; padding: 0.65rem 1.25rem;
  background: var(--c-surface); border: 1px solid var(--c-grey-light);
  border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  color: var(--c-navy-dark); transition: all .2s;
}
.loc-pill-sm { font-size: 0.85rem; padding: 0.5rem 1rem; }
.loc-pill:hover, .loc-pill-sm:hover { background: var(--c-navy); color: var(--c-surface); border-color: var(--c-navy); }
.more-locations { margin-top: 2rem; }
.more-locations.centered { text-align: center; margin-top: 3rem; }

/* PAGE HERO (sub-pages) */
.page-hero {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: radial-gradient(circle at 80% 100%, rgba(217, 119, 6, 0.05), transparent 60%), var(--c-surface);
}
.page-hero-lede { font-size: 1.25rem; color: var(--c-text-muted); margin-top: 1.5rem; max-width: 60ch; }
.page-hero-service { border-bottom: 1px solid var(--c-grey-light); }
.page-hero h1 em { font-style: italic; }

.section-404 { text-align: center; padding: clamp(5rem, 12vw, 10rem) 0; }
.section-404 .eyebrow { font-size: 5rem; line-height: 1; color: var(--c-amber); font-family: var(--f-display); font-style: italic; letter-spacing: 0; }
.section-404 .hero-actions { justify-content: center; }

/* BREADCRUMBS */
.breadcrumbs { font-size: 0.85rem; color: var(--c-text-muted); padding-top: 1.5rem; }
.breadcrumbs a { color: var(--c-text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--c-navy); }
.breadcrumbs span { margin: 0 0.4rem; color: var(--c-grey-light); }
.breadcrumbs span[aria-current] { color: var(--c-navy-dark); font-weight: 600; }

/* SERVICE DETAIL */
.service-list { display: grid; gap: 4rem; }
.service-detail-card { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid var(--c-grey-light); }
.service-detail-card:last-child { border-bottom: none; }
.service-num { font-family: var(--f-display); font-style: italic; font-size: 2rem; color: var(--c-amber); display: block; margin-bottom: 0.5rem; }
.service-short { font-family: var(--f-display); font-style: italic; font-size: 1.15rem; color: var(--c-text-muted); }
.service-detail-card h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.5rem; }
.service-detail-card h2 a { color: var(--c-navy-dark); }
.service-detail-card h2 a:hover { color: var(--c-amber); }
.service-ideal { padding: 1rem 1.25rem; background: var(--c-amber-soft); border-left: 3px solid var(--c-amber); margin: 1.5rem 0; font-size: 0.95rem; }
@media (max-width: 880px) { .service-detail-card { grid-template-columns: 1fr; gap: 1rem; } }

/* SERVICE BODY */
.service-body-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.service-body-main h2 { font-size: clamp(1.65rem, 3vw, 2.15rem); margin-top: 2.5rem; }
.service-body-main h2:first-child { margin-top: 0; }
.service-body-main p { font-size: 1.05rem; margin-bottom: 1.25rem; }
.feature-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.75rem; margin: 1.5rem 0 2rem; }
.feature-list li { padding: 1rem 1rem 1rem 2.5rem; background: var(--c-grey-faint); border-radius: 3px; font-size: 0.95rem; position: relative; }
.feature-list li::before { content: '✦'; position: absolute; left: 1rem; color: var(--c-amber); font-size: 1rem; }

.side-card {
  padding: 2rem 1.75rem; background: var(--c-navy-darker); color: var(--c-surface);
  border-radius: 4px; margin-bottom: 1.5rem; position: sticky; top: 6rem;
}
.side-card h3 { color: var(--c-surface); font-size: 1.5rem; margin-bottom: 0.75rem; }
.side-card p { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; }
.side-card .btn-primary { background: var(--c-amber); }
.side-card .btn-primary:hover { background: var(--c-amber-dark); color: var(--c-surface); }
.side-card-note { font-size: 0.8rem !important; color: rgba(255,255,255,0.6) !important; margin-top: 0.75rem !important; margin-bottom: 0 !important; }
.side-card-quiet { position: static; background: var(--c-grey-faint); color: var(--c-text); }
.side-card-quiet h3 { color: var(--c-navy-dark); }
.side-card-quiet ul { list-style: none; }
.side-card-quiet li { padding: 0.65rem 0 0.65rem 1.5rem; position: relative; font-size: 0.92rem; border-bottom: 1px solid var(--c-grey-light); }
.side-card-quiet li:last-child { border-bottom: none; }
.side-card-quiet li::before { content: '→'; position: absolute; left: 0; color: var(--c-amber); }
@media (max-width: 880px) { .service-body-grid { grid-template-columns: 1fr; } .side-card { position: static; } }

/* RELATED */
.section-related { background: var(--c-grey-faint); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.related-card { display: block; padding: 1.75rem; background: var(--c-surface); border-radius: 4px; transition: all .2s; border: 1px solid var(--c-grey-light); }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(27,42,78,0.1); border-color: var(--c-navy); }
.related-card h4 { font-family: var(--f-display); font-weight: 500; font-size: 1.25rem; color: var(--c-navy-dark); margin-bottom: 0.5rem; text-transform: none; letter-spacing: 0; }
.related-card p { font-size: 0.9rem; color: var(--c-text-muted); margin-bottom: 1rem; font-style: italic; font-family: var(--f-display); }

/* LOCATION PAGES */
.location-intro-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.location-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat { padding: 1.5rem; background: var(--c-grey-faint); border-radius: 4px; text-align: center; border: 1px solid var(--c-grey-light); }
.stat strong { display: block; font-family: var(--f-display); font-style: italic; font-size: 1.85rem; color: var(--c-navy-dark); margin-bottom: 0.25rem; font-weight: 600; }
.stat span { font-size: 0.8rem; color: var(--c-text-muted); letter-spacing: 0.02em; text-transform: uppercase; }
@media (max-width: 880px) { .location-intro-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* LOCATIONS INDEX */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.region h3 { font-size: 1.4rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--c-amber); }
.region-list { list-style: none; }
.region-list li { padding: 0.6rem 0; border-bottom: 1px solid var(--c-grey-light); }
.region-list li:last-child { border-bottom: none; }
.region-list a { display: block; color: var(--c-text); font-size: 0.95rem; font-weight: 500; transition: color .2s, padding-left .2s; }
.region-list a:hover { color: var(--c-amber); padding-left: 0.5rem; }

/* CTA SECTION */
.section-cta { background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-darker) 100%); color: var(--c-surface); position: relative; overflow: hidden; }
.section-cta::before { content: ''; position: absolute; top: -50%; right: -10%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(217,119,6,0.15), transparent 60%); pointer-events: none; }
.cta-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; position: relative; }
.cta-text h2 { color: var(--c-surface); font-size: clamp(2rem, 4vw, 3rem); }
.cta-text p { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; max-width: 30rem; }
.cta-form-wrap { background: var(--c-surface); padding: 2.5rem; border-radius: 6px; box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
@media (max-width: 880px) { .cta-inner { grid-template-columns: 1fr; gap: 2rem; } .cta-form-wrap { padding: 1.75rem; } }

/* FORM */
.quote-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-form label { display: flex; flex-direction: column; gap: 0.4rem; }
.quote-form label span { font-size: 0.85rem; font-weight: 700; color: var(--c-navy-dark); letter-spacing: 0.01em; }
.quote-form input, .quote-form textarea {
  padding: 0.85rem 1rem; font-family: var(--f-body); font-size: 0.95rem;
  color: var(--c-text); background: var(--c-surface);
  border: 1px solid var(--c-grey-light); border-radius: 3px;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.quote-form input:focus, .quote-form textarea:focus { outline: none; border-color: var(--c-navy); box-shadow: 0 0 0 3px rgba(27, 42, 78, 0.1); }
.quote-form textarea { resize: vertical; min-height: 100px; font-family: var(--f-body); }
.quote-form .btn { margin-top: 0.5rem; }
.form-meta { font-size: 0.8rem; color: var(--c-text-muted); text-align: center; margin: 0.75rem 0 0; font-style: italic; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2, .contact-form-wrap h2 { margin-bottom: 2rem; }
.contact-block { padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--c-grey-light); }
.contact-block:last-child { border-bottom: none; }
.contact-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-amber); margin-bottom: 0.5rem; }
.contact-value { font-family: var(--f-display); font-size: 1.5rem; color: var(--c-navy-dark); margin-bottom: 0.4rem; font-weight: 500; }
.contact-value a { color: var(--c-navy-dark); }
.contact-value a:hover { color: var(--c-amber); }
.contact-meta { font-size: 0.9rem; color: var(--c-text-muted); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* NARROW CONTENT */
.narrow-content { max-width: 720px; margin: 0 auto; }
.narrow-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.narrow-content h2:first-child { margin-top: 0; }
.narrow-content p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.25rem; }
.narrow-content ul { list-style: none; margin: 1.5rem 0; }
.narrow-content ul li { padding: 0.65rem 0 0.65rem 1.75rem; position: relative; font-size: 1.02rem; border-bottom: 1px solid var(--c-grey-light); }
.narrow-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--c-amber); }

/* FOOTER */
.site-footer { background: var(--c-navy-darker); color: var(--c-surface); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-col { padding-right: 1rem; }
.footer-logo {
  width: 100%; max-width: 260px; height: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-tag { font-family: var(--f-display); font-style: italic; font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.footer-meta { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-col h4 { color: var(--c-amber); font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.92rem; transition: color .2s; }
.footer-col a:hover { color: var(--c-amber); }
.contact-list li { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.7); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ANIMATION */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-text > * { animation: fadeUp 0.8s ease-out backwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }
.hero-text > *:nth-child(5) { animation-delay: 0.5s; }
.hero-art { animation: fadeUp 1s ease-out 0.4s backwards; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.section-faq { background: var(--c-grey-faint); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.75rem; }

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-grey-light);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--c-navy); box-shadow: 0 6px 16px rgba(27,42,78,0.08); }

.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.5rem;
  cursor: pointer; list-style: none;
  font-family: var(--f-display); font-size: 1.2rem; font-weight: 500;
  color: var(--c-navy-dark); transition: background .2s;
}
.faq-item summary:hover { background: var(--c-grey-faint); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-q { flex: 1; }
.faq-icon {
  font-family: var(--f-body); font-weight: 300;
  font-size: 1.6rem; color: var(--c-amber); line-height: 1;
  transition: transform .25s; flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-a {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--c-grey-light);
  margin-top: -1px;
}
.faq-a p {
  margin: 1.25rem 0 0;
  font-size: 1rem; line-height: 1.65; color: var(--c-text);
  max-width: none;
}

/* ============================================
   REGION PAGES
   ============================================ */
.regions-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.region-card {
  display: block;
  padding: 2.25rem 2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-grey-light);
  border-radius: 4px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.region-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--c-amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.region-card:hover {
  border-color: var(--c-navy);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(27,42,78,0.1);
}
.region-card:hover::before { transform: scaleX(1); }
.region-card h3 {
  margin-bottom: 0.75rem;
  color: var(--c-navy-dark);
}
.region-card-blurb {
  font-size: 0.95rem;
  color: var(--c-text);
  margin-bottom: 1rem;
}
.region-card-cities {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  font-style: italic;
  font-family: var(--f-display);
  margin-bottom: 1rem;
}

.region-city-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem 1rem;
  margin: 1.5rem 0;
}
.region-city-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--c-grey-light);
}
.region-city-list a {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-navy-dark);
  transition: color .2s, padding-left .2s;
}
.region-city-list a:hover {
  color: var(--c-amber);
  padding-left: 0.4rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--c-grey-faint);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(15,26,51,0.85), transparent);
  color: var(--c-surface);
  font-size: 0.9rem;
  font-family: var(--f-display);
  font-style: italic;
}

.gallery-empty {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  background: var(--c-surface);
  border: 2px dashed var(--c-grey-light);
  border-radius: 6px;
}
.gallery-empty-icon {
  font-size: 4rem;
  color: var(--c-grey-light);
  margin: 0 0 1rem;
  line-height: 1;
}
.gallery-empty h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.gallery-empty p {
  color: var(--c-text-muted);
  font-size: 1rem;
  margin: 0 auto 1.5rem;
  max-width: 480px;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.section-thanks { text-align: center; padding-bottom: clamp(2rem, 5vw, 4rem); }
.section-thanks .page-hero-lede { margin-left: auto; margin-right: auto; }

.thanks-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px;
  background: var(--c-amber);
  color: var(--c-surface);
  font-size: 2.5rem; font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 24px rgba(217,119,6,0.3);
  animation: tickPop 0.6s ease-out;
}
@keyframes tickPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-contact {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.thanks-contact-item {
  display: flex; flex-direction: column;
  padding: 1.25rem 2rem;
  background: var(--c-grey-faint);
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  min-width: 220px;
}
.thanks-contact-item:hover {
  background: var(--c-navy);
  transform: translateY(-2px);
}
.thanks-contact-item:hover .thanks-contact-label,
.thanks-contact-item:hover .thanks-contact-value { color: var(--c-surface); }
.thanks-contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.4rem;
}
.thanks-contact-value {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-navy-dark);
  font-weight: 500;
}

@media (max-width: 540px) {
  .thanks-contact { flex-direction: column; align-items: stretch; }
  .thanks-contact-item { min-width: 0; }
}


/* ============================================
   GUIDES
   ============================================ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.guide-card {
  display: block;
  padding: 2.25rem 2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-grey-light);
  border-radius: 4px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.guide-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--c-amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.guide-card:hover {
  border-color: var(--c-navy);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(27,42,78,0.1);
}
.guide-card:hover::before { transform: scaleX(1); }
.guide-card h3 {
  margin-bottom: 0.75rem;
  color: var(--c-navy-dark);
  font-size: 1.4rem;
}
.guide-card p {
  font-size: 0.95rem;
  color: var(--c-text);
  margin-bottom: 1.25rem;
}

/* Guide article body */
.guide-body { padding-top: 2rem; }
.guide-body .narrow-content h2 {
  margin-top: 3rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  padding-top: 1rem;
  border-top: 1px solid var(--c-grey-light);
}
.guide-body .narrow-content h2:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}
.guide-body .narrow-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  color: var(--c-navy);
}
.guide-body .narrow-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
}
.guide-body .narrow-content strong {
  color: var(--c-navy-dark);
}
.guide-body .narrow-content ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 1.25rem 0;
}
.guide-body .narrow-content ol li {
  padding: 0.4rem 0 0.4rem 0.5rem;
  border-bottom: 1px solid var(--c-grey-light);
  font-size: 1.02rem;
  line-height: 1.65;
  position: relative;
}
.guide-body .narrow-content ol li::before {
  content: none;
}

/* Guide tables */
.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2.5rem;
  font-size: 0.95rem;
  background: var(--c-surface);
  border: 1px solid var(--c-grey-light);
  border-radius: 4px;
  overflow: hidden;
}
.guide-table th {
  background: var(--c-navy);
  color: var(--c-surface);
  padding: 0.95rem 1rem;
  text-align: left;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.guide-table td {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--c-grey-light);
  line-height: 1.5;
}
.guide-table tbody tr:nth-child(even) {
  background: var(--c-grey-faint);
}

/* ============================================
   COST CALCULATOR
   ============================================ */
.calculator {
  background: var(--c-surface);
  border: 1px solid var(--c-grey-light);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  margin: 2rem 0 3rem;
  box-shadow: 0 4px 12px rgba(27,42,78,0.05);
}
.calculator h2 {
  margin-top: 0 !important;
  border-top: 0 !important;
  padding-top: 0 !important;
  font-size: 1.65rem !important;
  margin-bottom: 1.5rem;
}
.calc-row {
  margin-bottom: 1.5rem;
}
.calc-row > label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-navy-dark);
  margin-bottom: 0.65rem;
}
.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.calc-options button {
  flex: 1;
  min-width: 90px;
  padding: 0.75rem 0.9rem;
  background: var(--c-surface);
  border: 1.5px solid var(--c-grey-light);
  border-radius: 4px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-navy-dark);
  cursor: pointer;
  transition: all .15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  line-height: 1.2;
}
.calc-options button small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--c-text-muted);
  letter-spacing: 0;
  text-transform: none;
}
.calc-options button:hover {
  border-color: var(--c-navy);
}
.calc-options button.active {
  background: var(--c-navy);
  color: var(--c-surface);
  border-color: var(--c-navy);
}
.calc-options button.active small { color: rgba(255,255,255,0.7); }

.calc-row input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--c-grey-light);
  border-radius: 3px;
  outline: none;
  margin-bottom: 0.5rem;
}
.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-amber);
  cursor: pointer;
  border: 3px solid var(--c-surface);
  box-shadow: 0 2px 6px rgba(217,119,6,0.4);
}
.calc-row input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-amber);
  cursor: pointer;
  border: 3px solid var(--c-surface);
}
.calc-row output {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--c-navy);
  font-weight: 600;
}

.calc-result {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-darker) 100%);
  border-radius: 4px;
  color: var(--c-surface);
  text-align: center;
}
.calc-label {
  font-size: 0.8rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber) !important;
  margin-bottom: 0.5rem !important;
  font-weight: 700 !important;
}
.calc-price {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 600;
  font-style: italic;
  margin: 0 !important;
  line-height: 1;
  color: var(--c-surface);
}
.calc-range {
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.85) !important;
  margin: 0.75rem 0 1.5rem !important;
}
.calc-disclaimer {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.6) !important;
  font-style: italic;
  margin: 0 auto 1.5rem !important;
  max-width: 400px;
}
.calc-result .btn { margin-top: 0.5rem; }

@media (max-width: 540px) {
  .calc-options button { min-width: 70px; padding: 0.6rem 0.5rem; font-size: 0.85rem; }
  .calc-options button small { font-size: 0.65rem; }
}

/* ============================================
   COUNTRY PAGES + UK COVERAGE HUB
   ============================================ */
.coverage-countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.coverage-country-card {
  display: block;
  padding: 2.25rem 2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-grey-light);
  border-radius: 4px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.coverage-country-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--c-amber);
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s;
}
.coverage-country-card:hover {
  border-color: var(--c-navy);
  transform: translateX(4px);
  box-shadow: 0 12px 24px rgba(27,42,78,0.08);
}
.coverage-country-card:hover::before { transform: scaleY(1); }
.coverage-country-card h3 {
  margin-bottom: 0.5rem;
  color: var(--c-navy-dark);
  font-size: 1.5rem;
}
.coverage-country-meta {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 1rem;
}
.coverage-country-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
