@font-face {
  font-family: 'DINCondensed';
  src: url('DINCondensedBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('Futura.ttc') format('truetype');
  font-weight: normal;
  font-style: normal;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #121b46;
  --navy-deep:   #0C1232;
  --navy-mid:    #1e2d6b;
  --cream:       #F2EDE2;
  --cream-dark:  #E8E2D4;
  --bronze:      #9E7B56;
  --bronze-light:#B89070;
  --charcoal:    #1A1917;
  --mid:         #6A6558;
  --border:      #DDD8CC;
  --off-white:   #FDFBF6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  background: var(--off-white) url('images/texture-grain.png');
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────── */
/* targets ALL <nav> elements — any secondary nav on a page must override position: static */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 74px;
  background: transparent;
}
/* Nav background layer — fades out on scroll (opacity driven by --nav-bg in main.js) */
nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(242, 237, 226, 0.97) url('images/texture-grain.png');
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  opacity: var(--nav-bg, 1);
  transition: opacity 0.12s linear;
  pointer-events: none;
}

.nav-logo {
  display: block;
  height: 44px;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 200px;
  margin-top: -78px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Futura', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--bronze); }
.nav-links a { white-space: nowrap; }
.nav-links a.active { color: var(--navy); border-bottom: 1px solid var(--bronze); padding-bottom: 1px; }

.nav-cta {
  background: var(--navy) !important;
  color: var(--cream) !important;
  padding: 11px 24px !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-deep) !important; }
.nav-cta.active { border-bottom: none !important; }

/* ── NAV DROPDOWN ────────────────────────── */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  background: var(--off-white) url('images/texture-grain.png');
  border: 1px solid var(--border);
  border-top: 2px solid var(--bronze);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  list-style: none;
  padding: 6px 0;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  white-space: nowrap;
  padding: 10px 20px;
  font-family: 'Futura', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: none !important;
  transition: color 0.15s, background 0.15s;
}
.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  color: var(--navy);
  background: var(--cream) url('images/texture-grain.png');
}
/* keep the active dropdown item the same height as the others (top-nav active style bleeds a 1px bottom padding otherwise) */
.dropdown-menu li a.active { padding-bottom: 10px; }

/* ── FAQ ACCORDION ───────────────────────── */
.faq-section {
  padding: 80px 80px 110px;
  background: var(--off-white) url('images/texture-grain.png');
}
.faq-section .section-header-centered h2 { color: var(--navy); }

.faq-category {
  margin-bottom: 72px;
}

.faq-category-title {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
  margin-top: 16px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bronze);
}

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

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--bronze); }

.faq-item[open] summary { color: var(--bronze); }

.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.25s, opacity 0.25s;
}
.faq-toggle::before {
  width: 14px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  width: 1.5px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 0 28px 0;
  max-width: 740px;
}

.faq-answer p {
  font-family: 'Futura', sans-serif;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ol, .faq-answer ul {
  font-family: 'Futura', sans-serif;
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.85;
  margin: 12px 0 16px 22px;
}
.faq-answer li { margin-bottom: 6px; }

.faq-answer strong {
  color: var(--charcoal);
  font-weight: normal;
}

.faq-answer table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: 'Futura', sans-serif;
  font-size: 12.5px;
}
.faq-answer th {
  background: var(--navy);
  color: var(--cream);
  padding: 10px 16px;
  text-align: left;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10px;
}
.faq-answer td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
  vertical-align: top;
}
.faq-answer tr:last-child td { border-bottom: none; }
.faq-answer tr:nth-child(even) td { background: var(--cream) url('images/texture-grain.png'); }

.faq-note {
  font-family: 'Futura', sans-serif;
  font-size: 12px;
  color: var(--bronze);
  font-style: italic;
  margin-top: 12px;
}

/* ── PAGE HERO (inner pages) ─────────────── */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 62vh;
  padding-top: 74px;
}

/* ── Full-bleed hero with text overlaid (image behind text) ── */
.page-hero.hero-overlay {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 72vh;
}
.page-hero.hero-overlay.text-right { justify-content: flex-end; }
.page-hero.hero-overlay.text-left  { justify-content: flex-start; }
.page-hero.hero-overlay .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-hero.hero-overlay.text-right::after {
  background: linear-gradient(to right, rgba(10,15,38,0.10) 0%, rgba(10,15,38,0.40) 45%, rgba(10,15,38,0.85) 100%);
}
.page-hero.hero-overlay.text-left::after {
  background: linear-gradient(to left, rgba(10,15,38,0.10) 0%, rgba(10,15,38,0.40) 45%, rgba(10,15,38,0.85) 100%);
}
.page-hero.hero-overlay .page-hero-text {
  position: relative;
  z-index: 2;
  background: transparent;
  max-width: 600px;
}
.page-hero.hero-overlay .hero-eyebrow { color: var(--bronze-light); }
.page-hero.hero-overlay h1 { color: #fff; }
.page-hero.hero-overlay .hero-sub { color: rgba(255,255,255,0.86); }
.page-hero.hero-overlay .btn-ghost { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }
.page-hero.hero-overlay .btn-ghost:hover { color: var(--bronze-light); border-bottom-color: var(--bronze-light); }
@media (max-width: 768px) {
  .page-hero.hero-overlay { justify-content: flex-start; min-height: 60vh; }
  .page-hero.hero-overlay .page-hero-text { max-width: 100%; padding: 100px 24px 48px; }
  .page-hero.hero-overlay.text-right::after,
  .page-hero.hero-overlay.text-left::after {
    background: linear-gradient(to bottom, rgba(10,15,38,0.5), rgba(10,15,38,0.75));
  }
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 80px;
  background: var(--off-white) url('images/texture-grain.png');
}

.page-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
}

.page-hero-image .hero-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(175deg, #1e2d6b 0%, #121b46 45%, #0C1232 100%);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 74px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 80px;
  background: var(--off-white) url('images/texture-grain.png');
}

.hero-eyebrow {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 28px;
}

.hero h1, .page-hero-text h1 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: bold;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero h1 .highlight { color: var(--bronze); }

.hero-sub {
  font-family: 'Futura', sans-serif;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 52px;
}

.page-hero-text .hero-sub { margin-bottom: 44px; }

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(175deg, #1e2d6b 0%, #121b46 45%, #0C1232 100%);
  display: flex;
  align-items: flex-end;
  padding: 44px;
  position: relative;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(158,123,86,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.hero-photo-caption {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,237,226,0.3);
  position: relative;
  z-index: 1;
}

/* ── TRUST STRIP ─────────────────────────── */
.trust-strip {
  background: var(--navy-deep);
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  overflow: hidden;
  border-top: 2px solid var(--bronze);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 0 36px;
}
.trust-item:first-child { padding-left: 0; }

.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--bronze);
  flex-shrink: 0;
}

.trust-item span {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,237,226,0.5);
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ── SECTION LABELS ──────────────────────── */
.section-label {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
  display: block;
}

/* ── INTRO ───────────────────────────────── */
.intro {
  padding: 130px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro h2 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: bold;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}
.intro h2 .soft { color: var(--bronze); }

.intro-right { padding-top: 6px; }

.intro-right p {
  font-family: 'Futura', sans-serif;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 22px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat h3 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 54px;
  font-weight: bold;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.stat p {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── PILLARS ─────────────────────────────── */
.pillars-section {
  background: var(--navy);
  padding: 130px 80px;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 72px;
}
.section-header-centered .section-label { color: var(--bronze); }
/* DEFAULT is navy (legible on light backgrounds).
   On a dark/navy background, add class "on-dark" to the section-header-centered element:
   <div class="section-header-centered on-dark"> — this switches h2 to cream. */
.section-header-centered h2 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  max-width: 640px;
  margin: 12px auto 0;
}
.section-header-centered.on-dark h2 { color: var(--cream); }
.section-header-centered.on-dark .section-label { color: var(--bronze); }
/* pillars-section always has a navy background — headings stay cream automatically */
.pillars-section .section-header-centered h2 { color: var(--cream); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  background: rgba(255,255,255,0.04);
  padding: 52px 44px 56px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.pillar:hover {
  border-top-color: var(--bronze);
  background: rgba(255,255,255,0.07);
}

.pillar-num {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 64px;
  font-weight: bold;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 22px;
  display: block;
  letter-spacing: 0.02em;
}

.pillar h3 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
}

.pillar p {
  font-family: 'Futura', sans-serif;
  font-size: 13.5px;
  color: rgba(242,237,226,0.55);
  line-height: 1.8;
}

/* ── PROCESS ─────────────────────────────── */
.process {
  padding: 130px 80px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 100px;
  align-items: start;
}

.process-left h2 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(38px, 3.6vw, 56px);
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 22px;
}

.process-left p {
  font-family: 'Futura', sans-serif;
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.process-steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--border); }

.step-num {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 26px;
  font-weight: bold;
  color: var(--bronze);
  padding-top: 1px;
  letter-spacing: 0.02em;
}

.step h4 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.step p {
  font-family: 'Futura', sans-serif;
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.78;
}

/* ── PROJECTS ────────────────────────────── */
.projects {
  background: var(--cream) url('images/texture-grain.png');
  padding: 130px 80px;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.section-header-split h2 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(38px, 3.8vw, 56px);
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
}

.section-header-split a {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 40px;
  align-self: flex-end;
  transition: color 0.2s, border-color 0.2s;
}
.section-header-split a:hover { color: var(--bronze); border-color: var(--bronze); }

.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.project-card:first-child { grid-row: span 2; }

.project-photo {
  width: 100%;
  height: 100%;
  min-height: 284px;
}

.project-card:first-child .project-photo { min-height: 571px; }

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.project-card:hover .project-photo img { transform: scale(1.04); }

.photo-1 { background: linear-gradient(160deg, #2A2E48 0%, #1a1f38 40%, #121b46 100%); }
.photo-2 { background: linear-gradient(160deg, #2e2820 0%, #1e1a14 100%); }
.photo-3 { background: linear-gradient(160deg, #243028 0%, #182018 100%); }
.photo-4 { background: linear-gradient(160deg, #30282c 0%, #1e181c 100%); }
.photo-5 { background: linear-gradient(160deg, #282c38 0%, #181c28 100%); }

.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.68));
}

.project-info h3 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 4px;
  line-height: 1.1;
}

.project-meta {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── EDUCATION ───────────────────────────── */
.education {
  padding: 130px 80px;
  background: var(--off-white) url('images/texture-grain.png');
}

.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.article-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; cursor: pointer; }

.article-img {
  height: 230px;
  margin-bottom: 26px;
  overflow: hidden;
  position: relative;
}

.article-img-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.article-card:hover .article-img-inner { transform: scale(1.03); }

.art-1 { background: linear-gradient(135deg, #D4CEBC 0%, #BCB6A4 100%); }
.art-2 { background: linear-gradient(135deg, #C4CAB8 0%, #ACB4A0 100%); }
.art-3 { background: linear-gradient(135deg, #C8C0C4 0%, #B0A8AC 100%); }

.article-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bronze);
}

.article-tag {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}

.article-card h3 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
  min-height: calc(24px * 1.2 * 3);
}

.article-card p {
  font-family: 'Futura', sans-serif;
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.78;
  flex: 1;
}

.article-link {
  margin-top: 20px;
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.article-link:hover { color: var(--bronze); border-color: var(--bronze); }

/* ── TESTIMONIAL ─────────────────────────── */
.testimonial {
  background: var(--navy);
  padding: 110px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bronze);
}

.testimonial blockquote {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(17px, 1.8vw, 26px);
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 36px;
}

.testimonial-meta .name {
  font-family: 'Futura', sans-serif;
  font-size: 13px;
  color: rgba(242,237,226,0.7);
}

.testimonial-meta .location {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  color: rgba(242,237,226,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
}

.testimonial-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
}

.testimonial-right h3 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.testimonial-right p {
  font-family: 'Futura', sans-serif;
  font-size: 14px;
  color: rgba(242,237,226,0.55);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  padding: 15px 32px;
  font-family: 'Futura', sans-serif;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--navy-deep); }

.btn-ghost {
  font-family: 'Futura', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--bronze); border-color: var(--bronze); }

.btn-bronze {
  display: inline-block;
  background: var(--bronze);
  color: white;
  padding: 15px 32px;
  font-family: 'Futura', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-bronze:hover { background: var(--bronze-light); }

/* ── CONTACT ─────────────────────────────── */
.contact-section {
  padding: 130px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: var(--cream) url('images/texture-grain.png');
}

.contact-section h2 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(38px, 3.6vw, 56px);
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 20px;
}

.contact-section > div:first-child > p {
  font-family: 'Futura', sans-serif;
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 52px;
}

.contact-details { display: flex; flex-direction: column; gap: 0; }

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { border-top: 1px solid var(--border); }

.contact-label {
  font-family: 'Futura', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  width: 76px;
  flex-shrink: 0;
  padding-top: 2px;
}

.contact-value {
  font-family: 'Futura', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}
.contact-value a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.contact-value a:hover { border-color: var(--bronze); }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 22px; }

/* GHL form states */
.form-success { text-align: center; padding: 36px 12px; }
.form-success h3 { font-family: 'DINCondensed', 'Arial Narrow', sans-serif; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy, #121b46); margin: 0 0 10px; font-size: 1.6rem; }
.form-success p { color: var(--navy, #121b46); opacity: 0.8; margin: 0; }
.form-error { background: rgba(158,123,86,0.12); border-left: 3px solid var(--bronze, #9E7B56); color: var(--navy, #121b46); padding: 12px 16px; margin: 0 0 4px; font-size: 0.95rem; border-radius: 2px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-family: 'Futura', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  font-family: 'Futura', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--navy); }

.form-group textarea { resize: none; height: 96px; }

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}

.form-note {
  font-family: 'Futura', sans-serif;
  font-size: 11px;
  color: var(--mid);
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--navy-deep);
  padding: 72px 80px 44px;
  border-top: 3px solid var(--bronze);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-brand .f-logo {
  display: block;
  margin-bottom: 18px;
}
.footer-brand .f-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-family: 'Futura', sans-serif;
  font-size: 12.5px;
  color: rgba(242,237,226,0.35);
  line-height: 1.8;
  max-width: 250px;
}

.footer-col h4 {
  font-family: 'Futura', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,237,226,0.25);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-family: 'Futura', sans-serif;
  font-size: 13px;
  color: rgba(242,237,226,0.48);
  text-decoration: none;
  margin-bottom: 11px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: 'Futura', sans-serif;
  font-size: 11px;
  color: rgba(242,237,226,0.2);
}

.footer-social {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-social a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px;
  min-height: 26px;
  border: 1px solid rgba(242,237,226,0.2);
  border-radius: 50%;
  overflow: hidden;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
  margin-bottom: 0 !important;
  flex-shrink: 0;
  color: var(--cream);
}
.footer-social a:hover {
  border-color: var(--bronze);
  opacity: 1;
}
.footer-social svg {
  width: 11px !important;
  height: 11px !important;
  fill: var(--cream);
  display: block;
  flex-shrink: 0;
}

.footer-licence {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  color: rgba(242,237,226,0.2);
  letter-spacing: 0.06em;
}

/* ── SHARED SECTION HEADINGS ─────────────── */
.section-h2 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin: 12px 0 0;
}

.section-h2-cream {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.05;
  margin: 12px auto 0;
  max-width: 640px;
}

/* ── PRICING TABLE ───────────────────────── */
.pricing-section {
  background: var(--cream) url('images/texture-grain.png');
  padding: 110px 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--off-white) url('images/texture-grain.png');
  padding: 44px 36px 48px;
  border-top: 2px solid var(--border);
  transition: border-color 0.3s;
}
.pricing-card:hover { border-top-color: var(--bronze); }
.pricing-card.featured {
  background: var(--navy);
  border-top-color: var(--bronze);
}

.pricing-tier {
  font-family: 'Futura', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
  display: block;
}

.pricing-card.featured .pricing-tier { color: var(--bronze); }

.pricing-value {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 42px;
  font-weight: bold;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.pricing-card.featured .pricing-value { color: var(--cream); }

.pricing-range {
  font-family: 'Futura', sans-serif;
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 22px;
  display: block;
}
.pricing-card.featured .pricing-range { color: rgba(242,237,226,0.5); }

.pricing-divider {
  width: 40px;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 22px;
}

.pricing-desc {
  font-family: 'Futura', sans-serif;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}
.pricing-card.featured .pricing-desc { color: rgba(242,237,226,0.55); }

/* ── SERVICE CARDS ───────────────────────── */
.services-split {
  padding: 110px 80px;
  background: var(--off-white) url('images/texture-grain.png');
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 60px;
}

.service-card {
  background: var(--cream) url('images/texture-grain.png');
  padding: 56px 52px 60px;
  border-top: 2px solid var(--border);
  transition: border-color 0.3s;
}
.service-card:hover { border-top-color: var(--bronze); }
.service-card.featured {
  background: var(--navy);
  border-top-color: var(--bronze);
}

.service-tag {
  font-family: 'Futura', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 6px;
}
.service-card.featured h3 { color: var(--cream); }

.service-price {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: var(--bronze);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  display: block;
}

.service-desc {
  font-family: 'Futura', sans-serif;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.service-card.featured .service-desc { color: rgba(242,237,226,0.55); }

.service-includes {
  list-style: none;
  margin-bottom: 36px;
}
.service-includes li {
  font-family: 'Futura', sans-serif;
  font-size: 12.5px;
  color: var(--mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: baseline;
  line-height: 1.6;
}
.service-card.featured .service-includes li {
  color: rgba(242,237,226,0.55);
  border-bottom-color: rgba(255,255,255,0.08);
}
.service-includes li::before {
  content: '—';
  color: var(--bronze);
  flex-shrink: 0;
  font-family: 'Futura', sans-serif;
  font-size: 12px;
}

/* ── VALUES GRID ─────────────────────────── */
.values-section {
  background: var(--navy);
  padding: 110px 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.value-card {
  background: rgba(255,255,255,0.04);
  padding: 44px 36px 48px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.value-card:hover {
  border-top-color: var(--bronze);
  background: rgba(255,255,255,0.07);
}

.value-num {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 52px;
  font-weight: bold;
  color: rgba(158,123,86,0.22);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 0.02em;
}

.value-card h3 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.15;
}

.value-card p {
  font-family: 'Futura', sans-serif;
  font-size: 13px;
  color: rgba(242,237,226,0.5);
  line-height: 1.8;
}

/* ── TEAM GRID ───────────────────────────── */
.team-section {
  background: var(--off-white) url('images/texture-grain.png');
  padding: 110px 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 60px;
}

.team-card {
  background: var(--cream) url('images/texture-grain.png');
  overflow: hidden;
}

.team-photo {
  height: 260px;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-initials {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 64px;
  font-weight: bold;
  color: rgba(158,123,86,0.35);
  letter-spacing: 0.04em;
}

.team-info {
  padding: 28px 30px 32px;
  border-top: 2px solid var(--bronze);
}

.team-info h3 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
  display: block;
}

.team-info p {
  font-family: 'Futura', sans-serif;
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.75;
}

/* ── CTA BANNER ──────────────────────────── */
.cta-banner {
  background: var(--cream-dark);
  padding: 90px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  border-top: 2px solid var(--border);
}

.cta-banner h2 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 12px;
}

.cta-banner p {
  font-family: 'Futura', sans-serif;
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  flex-shrink: 0;
}

/* ── PORTFOLIO GRID ──────────────────────── */
.portfolio-intro {
  padding: 90px 80px 60px;
  background: var(--off-white) url('images/texture-grain.png');
}

.portfolio-intro h1 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(52px, 5vw, 80px);
  font-weight: bold;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  margin-top: 12px;
}

.portfolio-intro p {
  font-family: 'Futura', sans-serif;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 560px;
}

.portfolio-grid-section {
  background: var(--cream) url('images/texture-grain.png');
  padding: 0 80px 80px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4/3;
}

.portfolio-card.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-card:hover img { transform: scale(1.04); }

.portfolio-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
}

.portfolio-info h3 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 4px;
  line-height: 1.1;
}

.portfolio-meta {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── ABOUT STORY ─────────────────────────── */
.about-story {
  padding: 110px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: var(--off-white) url('images/texture-grain.png');
}

.about-story h2 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: bold;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0;
}

.about-story-right p {
  font-family: 'Futura', sans-serif;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 22px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-stat h4 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 52px;
  font-weight: bold;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.about-stat p {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── ARTICLE (blog post) ─────────────────── */
.article-hero {
  padding: 120px 80px 0;
  background: var(--off-white) url('images/texture-grain.png');
}

.article-back {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 34px;
  transition: color 0.2s;
}
.article-back:hover { color: var(--bronze); }

.article-hero .article-tag {
  font-size: 11px;
  margin-bottom: 16px;
}

.article-hero h1 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: bold;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  max-width: 880px;
  margin-bottom: 22px;
}

.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: 'Futura', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--bronze); }

/* article body */
.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 40px 110px;
  background: var(--off-white) url('images/texture-grain.png');
}

.article-body .lead {
  font-family: 'Futura', sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.article-body p {
  font-family: 'Futura', sans-serif;
  font-size: 15.5px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 22px;
}

.article-body h2 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  margin: 52px 0 18px;
}

.article-body h3 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 34px 0 12px;
}

.article-body ul, .article-body ol {
  font-family: 'Futura', sans-serif;
  font-size: 15.5px;
  color: var(--mid);
  line-height: 1.8;
  margin: 0 0 22px 22px;
}
.article-body li { margin-bottom: 9px; }

.article-body strong { color: var(--charcoal); font-weight: normal; border-bottom: 1px solid var(--bronze); }

.article-body a:not(.btn-primary):not(.btn-ghost):not(.btn-bronze) {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
  transition: color 0.2s;
}
.article-body a:not(.btn-primary):not(.btn-ghost):not(.btn-bronze):hover { color: var(--bronze); }

.pull-quote {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(16px, 1.55vw, 22px);
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
  border-left: 3px solid var(--bronze);
  padding: 6px 0 6px 28px;
  margin: 44px 0;
}

.article-end {
  border-top: 1px solid var(--border);
  margin-top: 52px;
  padding-top: 32px;
}
.article-end p {
  font-family: 'Futura', sans-serif;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 22px;
}

/* related articles strip */
.related {
  background: var(--cream) url('images/texture-grain.png');
  padding: 80px 80px 90px;
}
.related .section-label { text-align: left; }
.related h2 {
  font-family: 'DINCondensed', 'Arial Narrow', sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin: 6px 0 44px;
}
.related .articles { gap: 40px; }

/* ═══════════════════════════════════════════
   HAMBURGER BUTTON
═══════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   TABLET  ≤ 1024px
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-links { gap: 22px; }

  .hero-text,
  .page-hero-text { padding: 60px 48px 60px 48px; }

  .intro { padding: 90px 48px; gap: 52px; }
  .pillars-section { padding: 90px 48px; }
  .process { padding: 90px 48px; gap: 60px; }
  .projects { padding: 90px 48px; }
  .education { padding: 90px 48px; }
  .testimonial { padding: 80px 48px; gap: 52px; }
  .contact-section { padding: 90px 48px; gap: 52px; }
  .faq-section { padding: 72px 48px 90px; }
  .related { padding: 72px 48px 80px; }

  .trust-strip { padding: 0 48px; }

  .pillars { grid-template-columns: repeat(2, 1fr); }
  .articles { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   MOBILE  ≤ 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* — Nav — */
  nav { padding: 0 20px; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--off-white) url('images/texture-grain.png');
    border-bottom: 2px solid var(--border);
    padding: 8px 20px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 99;
  }
  .nav-links.nav-open { display: flex; }

  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 12px;
  }
  .nav-links a.active { border-bottom: none; padding-bottom: 14px; }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
    padding: 14px 20px !important;
    display: block;
  }

  /* — Hero — */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding: 48px 20px 40px;
    order: 2;
  }
  .hero-image {
    order: 1;
    min-height: 280px;
  }
  .hero-sub { max-width: 100%; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* — Page hero — */
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-hero-text { padding: 48px 20px 40px; order: 2; }
  .page-hero-image { order: 1; min-height: 220px; }

  /* — Trust strip — */
  .trust-strip {
    padding: 0 20px;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .trust-divider { display: none; }
  .trust-item { padding: 0; }

  /* — Intro — */
  .intro {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 36px;
  }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* — Pillars — */
  .pillars-section { padding: 60px 20px; }
  .pillars { grid-template-columns: 1fr; gap: 2px; }
  .pillar { padding: 36px 28px 40px; }

  /* — Process — */
  .process {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }

  /* — Projects grid — */
  .projects { padding: 60px 20px; }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .project-card:first-child { grid-row: span 1; }
  .project-card:first-child .project-photo { min-height: 284px; }
  .section-header-split { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-header-split a { margin-left: 0; }

  /* — Articles — */
  .education { padding: 60px 20px; }
  .articles { grid-template-columns: 1fr; gap: 36px; }

  /* — Testimonial — */
  .testimonial {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }
  .testimonial-divider { display: none; }

  /* — Contact — */
  .contact-section {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 44px;
  }

  /* — FAQ — */
  .faq-section { padding: 52px 20px 72px; }
  .faq-item summary { font-size: 17px; gap: 20px; }

  /* — Blog / article pages — */
  .related { padding: 52px 20px 60px; }
  .related .articles { grid-template-columns: 1fr; }

  /* — Generic section padding — */
  section[style*="padding"],
  .pac-intro, .pac-process, .pac-pricing,
  .con-intro, .con-services, .con-process,
  .about-story, .about-values, .about-team,
  .scandi-intro, .scandi-models, .scandi-process,
  .hh-intro, .hh-what, .hh-process,
  .loc-intro, .loc-services, .loc-projects { padding-left: 20px !important; padding-right: 20px !important; }

  /* — Utility — */
  .article-img { height: 180px; }
}

/* ── Footer "areas we service" strip (suburb links relocated from hub directory) ── */
.footer-areas { padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-areas h4 { font-family:'Futura',sans-serif; font-size:9px; letter-spacing:0.22em; text-transform:uppercase; color:rgba(242,237,226,0.25); margin-bottom:14px; }
.footer-areas-list { display:flex; flex-wrap:wrap; align-items:center; line-height:1.9; }
.footer-areas-list a { font-family:'Futura',sans-serif; font-size:12px; color:rgba(242,237,226,0.42); text-decoration:none; transition:color 0.2s; }
.footer-areas-list a:hover { color:var(--cream); }
.footer-areas-list a:not(:last-child)::after { content:'·'; margin:0 10px; color:rgba(242,237,226,0.2); }
.footer-areas h4 a { color: rgba(242,237,226,0.4); text-decoration: none; transition: color 0.2s; }
.footer-areas h4 a:hover { color: var(--cream); }

/* === Our Story video — lightweight YouTube facade === */
/* Our Story video — lightweight YouTube facade (added 2026-07-01) */
.video-section { padding: 96px 40px; max-width: 1000px; margin: 0 auto; text-align: center; }
.video-section h2 { margin-top: 6px; }
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; margin-top: 40px; border-radius: 10px; overflow: hidden; cursor: pointer; background: #121b46 center / cover no-repeat; box-shadow: 0 20px 50px rgba(18,27,70,0.18); }
.video-embed::after { content: ''; position: absolute; inset: 0; background: rgba(18,27,70,0.20); transition: background .25s ease; }
.video-embed:hover::after { background: rgba(18,27,70,0.06); }
.video-embed-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; width: 80px; height: 80px; padding: 0; border: none; border-radius: 50%; background: rgba(158,123,86,0.94); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .25s ease, background .25s ease; }
.video-embed:hover .video-embed-play { transform: translate(-50%,-50%) scale(1.06); background: #9E7B56; }
.video-embed-play svg { width: 30px; height: 30px; margin-left: 4px; fill: #fff; }
.video-embed.is-playing { cursor: default; }
.video-embed.is-playing::after { display: none; }
.video-embed.is-playing .video-embed-play { display: none; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) { .video-section { padding: 64px 20px; } .video-embed-play { width: 64px; height: 64px; } .video-embed-play svg { width: 24px; height: 24px; } }

/* === Autoplay video — muted autoplay === */
/* Autoplay video — muted autoplay + "Tap for sound" button (added 2026-07-01) */
.video-embed[data-autoplay] .video-embed-play { display: none; }
.video-embed.is-autoplay::after { display: none; }
.video-embed-sound { position: absolute; left: 16px; bottom: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px 9px 12px; border: none; border-radius: 40px; background: rgba(18,27,70,0.82); color: #fff; font-family: 'Futura', sans-serif; font-size: 12px; letter-spacing: 0.05em; cursor: pointer; transition: background .2s ease; }
.video-embed-sound:hover { background: #9E7B56; }
.video-embed-sound svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
