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

:root {
  /* ── Palette (static) ── */
  --dark: #333353;
  --fg: #f6e0be;
  --accent: #e5622d;
  --purple: #6f5c7b;
  --sage: #7e7f6b;
  --muted: #e8dfc8;
  --gap: 1.5rem;
  --nav-height: 88px;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* ── Semantic tokens — dark mode (default) ── */
  --page-bg:            #333353;
  --nav-bg:             rgba(51, 51, 83, 0.92);
  --nav-border:         rgba(246, 224, 190, 0.10);
  --text-primary:       #f6e0be;
  --text-dim:           rgba(246, 224, 190, 0.85);
  --text-body:          rgba(246, 224, 190, 0.72);
  --text-label:         rgba(246, 224, 190, 0.55);
  --text-muted:         rgba(246, 224, 190, 0.50);
  --text-faint:         rgba(246, 224, 190, 0.45);
  --text-very-faint:    rgba(246, 224, 190, 0.35);
  --border-dim:         rgba(246, 224, 190, 0.12);
  --border-card:        rgba(246, 224, 190, 0.15);
  --border-input:       rgba(246, 224, 190, 0.20);
  --border-input-focus: rgba(246, 224, 190, 0.60);
  --border-hover:       rgba(246, 224, 190, 0.35);
  --profile-border:     rgba(246, 224, 190, 0.30);
  --card-bg:            rgba(246, 224, 190, 0.03);
  --card-bg-hover:      rgba(246, 224, 190, 0.06);
  --input-bg:           rgba(255, 255, 255, 0.08);
  --input-bg-focus:     rgba(255, 255, 255, 0.12);
  --icon-btn-bg:        rgba(246, 224, 190, 0.10);
  --icon-btn-bg-hover:  rgba(246, 224, 190, 0.20);
  --icon-btn-border:    rgba(246, 224, 190, 0.20);
}

/* ── Light mode: follows system preference when no explicit setting ── */
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) {
    --page-bg:            #fef9f0;
    --nav-bg:             rgba(252, 242, 220, 0.94);
    --nav-border:         rgba(51, 51, 83, 0.12);
    --text-primary:       #333353;
    --text-dim:           rgba(51, 51, 83, 0.85);
    --text-body:          rgba(51, 51, 83, 0.72);
    --text-label:         rgba(51, 51, 83, 0.55);
    --text-muted:         rgba(51, 51, 83, 0.55);
    --text-faint:         rgba(51, 51, 83, 0.55);
    --text-very-faint:    rgba(51, 51, 83, 0.45);
    --border-dim:         rgba(51, 51, 83, 0.10);
    --border-card:        rgba(51, 51, 83, 0.15);
    --border-input:       rgba(51, 51, 83, 0.22);
    --border-input-focus: rgba(51, 51, 83, 0.60);
    --border-hover:       rgba(51, 51, 83, 0.40);
    --profile-border:     rgba(51, 51, 83, 0.25);
    --card-bg:            rgba(51, 51, 83, 0.03);
    --card-bg-hover:      rgba(51, 51, 83, 0.07);
    --input-bg:           rgba(0, 0, 0, 0.04);
    --input-bg-focus:     rgba(0, 0, 0, 0.08);
    --icon-btn-bg:        rgba(51, 51, 83, 0.10);
    --icon-btn-bg-hover:  rgba(51, 51, 83, 0.18);
    --icon-btn-border:    rgba(51, 51, 83, 0.20);
  }
}

/* ── Explicit light mode override ── */
html[data-theme="light"] {
  --page-bg:            #fef9f0;
  --nav-bg:             rgba(252, 242, 220, 0.94);
  --nav-border:         rgba(51, 51, 83, 0.12);
  --text-primary:       #333353;
  --text-dim:           rgba(51, 51, 83, 0.85);
  --text-body:          rgba(51, 51, 83, 0.72);
  --text-label:         rgba(51, 51, 83, 0.55);
  --text-muted:         rgba(51, 51, 83, 0.55);
  --text-faint:         rgba(51, 51, 83, 0.55);
  --text-very-faint:    rgba(51, 51, 83, 0.45);
  --border-dim:         rgba(51, 51, 83, 0.10);
  --border-card:        rgba(51, 51, 83, 0.15);
  --border-input:       rgba(51, 51, 83, 0.22);
  --border-input-focus: rgba(51, 51, 83, 0.60);
  --border-hover:       rgba(51, 51, 83, 0.40);
  --profile-border:     rgba(51, 51, 83, 0.25);
  --card-bg:            rgba(51, 51, 83, 0.03);
  --card-bg-hover:      rgba(51, 51, 83, 0.07);
  --input-bg:           rgba(0, 0, 0, 0.04);
  --input-bg-focus:     rgba(0, 0, 0, 0.08);
  --icon-btn-bg:        rgba(51, 51, 83, 0.10);
  --icon-btn-bg-hover:  rgba(51, 51, 83, 0.18);
  --icon-btn-border:    rgba(51, 51, 83, 0.20);
}

/* ── Explicit dark mode override ── */
html[data-theme="dark"] {
  --page-bg:            #333353;
  --nav-bg:             rgba(51, 51, 83, 0.92);
  --nav-border:         rgba(246, 224, 190, 0.10);
  --text-primary:       #f6e0be;
  --text-dim:           rgba(246, 224, 190, 0.85);
  --text-body:          rgba(246, 224, 190, 0.72);
  --text-label:         rgba(246, 224, 190, 0.55);
  --text-muted:         rgba(246, 224, 190, 0.50);
  --text-faint:         rgba(246, 224, 190, 0.45);
  --text-very-faint:    rgba(246, 224, 190, 0.35);
  --border-dim:         rgba(246, 224, 190, 0.12);
  --border-card:        rgba(246, 224, 190, 0.15);
  --border-input:       rgba(246, 224, 190, 0.20);
  --border-input-focus: rgba(246, 224, 190, 0.60);
  --border-hover:       rgba(246, 224, 190, 0.35);
  --profile-border:     rgba(246, 224, 190, 0.30);
  --card-bg:            rgba(246, 224, 190, 0.03);
  --card-bg-hover:      rgba(246, 224, 190, 0.06);
  --input-bg:           rgba(255, 255, 255, 0.08);
  --input-bg-focus:     rgba(255, 255, 255, 0.12);
  --icon-btn-bg:        rgba(246, 224, 190, 0.10);
  --icon-btn-bg-hover:  rgba(246, 224, 190, 0.20);
  --icon-btn-border:    rgba(246, 224, 190, 0.20);
}

/* ── Page fade-in ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

html {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-primary);
  background-color: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.7s ease both;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--nav-border);
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 255px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 68px;
  width: auto;
  display: block;
}

[data-theme="light"] .nav-logo img {
  transform: scale(1.61);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  opacity: 0.6;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

/* ── Theme toggle button ── */
.theme-toggle {
  background: var(--icon-btn-bg);
  border: 1px solid var(--icon-btn-border);
  color: var(--text-primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.25s ease, color 0.25s ease;
  padding: 0;
  line-height: 1;
}

.theme-toggle:hover {
  background: var(--icon-btn-bg-hover);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Centered nav (homepage, no logo) ── */
.nav-centered {
  justify-content: flex-end;
}

/* ── Hamburger button ── */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.nav-hamburger:hover {
  opacity: 0.6;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Nav menu drawer ── */
.nav-menu {
  position: fixed;
  top: var(--nav-height);
  right: 0;
  width: 260px;
  height: calc(100vh - var(--nav-height));
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid var(--nav-border);
  z-index: 98;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.nav-menu.is-open {
  transform: translateX(0);
}

.nav-menu-inner {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav-menu-links a {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  opacity: 0.55;
  transition: opacity 0.15s;
  padding: 0.6rem 0;
  border-bottom: 1px solid transparent;
}

.nav-menu-links a:hover,
.nav-menu-links a.active {
  opacity: 1;
}

.nav-menu-divider {
  height: 1px;
  background: var(--nav-border);
}

.nav-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu-label {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.5;
  color: var(--text-primary);
}

.nav-menu-social {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-menu-social a {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  opacity: 0.55;
  transition: opacity 0.15s;
  padding: 0.5rem 0;
}

.nav-menu-social a:hover {
  opacity: 1;
}

/* Backdrop when menu is open */
.nav-backdrop {
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: transparent;
  z-index: 97;
  pointer-events: none;
  transition: background 0.3s ease;
}

.nav-backdrop.is-open {
  background: rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

/* ── Main content ── */
main {
  margin-top: var(--nav-height);
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem 0 1rem;
}

/* ── Focal carousel outer ── */
.focal-outer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Carousel strip ── */
.focal-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2vh calc(50% - 27.5vw);
}

.focal-wrap::-webkit-scrollbar {
  display: none;
}

/* ── Each photo ── */
.focal-item {
  flex: 0 0 58vw;
  height: auto;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  cursor: pointer;

  opacity: 0.08;
  filter: blur(16px);
  transform: scale(0.74);
  transition:
    opacity   0.25s ease,
    filter    0.25s ease,
    transform 0.25s ease;
}

/* ── Image container ── */
.focal-img-wrap {
  width: 100%;
  height: 65vh;
  overflow: hidden;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ±2 from center */
.focal-item.far {
  opacity: 0.22;
  filter: blur(9px);
  transform: scale(0.82);
}

/* ±1 from center */
.focal-item.adjacent {
  opacity: 0.48;
  filter: blur(4px);
  transform: scale(0.90);
}

/* center */
.focal-item.active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  cursor: zoom-in;
}

.focal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ── Label ── */
.item-label {
  padding: 0.6rem 0.25rem 0;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity   0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
  user-select: none;
}

.item-title {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.4;
}

.focal-item.active .item-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── Controls ── */
.focal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 calc(50% - 27.5vw);
}

.focal-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.focal-counter {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
}

.focal-btn {
  background: var(--icon-btn-bg);
  border: 1px solid var(--icon-btn-border);
  color: var(--text-primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s;
  line-height: 1;
}

.focal-btn:hover {
  background: var(--icon-btn-bg-hover);
}

/* ── Lightbox — always dark regardless of theme ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 32, 35, 0.96);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  user-select: none;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 1.75rem;
  color: #f6e0be;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.15s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #f6e0be;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.4;
  transition: opacity 0.15s;
  user-select: none;
}

.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

/* ── About page ── */
.about-layout {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
}

.profile-photo {
  width: clamp(200px, 28vw, 320px);
  height: clamp(200px, 28vw, 320px);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 3px solid var(--profile-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}

.about-text h1 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.about-text p {
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1rem;
}

/* ── Contact toggle button ── */
.contact-toggle {
  margin-top: 1.75rem;
}

/* ── Slide drawer ── */
.contact-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity   0.4s ease;
  opacity: 0;
}

.contact-drawer.open {
  max-height: 600px;
  opacity: 1;
}

/* ── Contact form ── */
.contact-drawer form {
  padding-top: 1.75rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  font-family: var(--font);
  border: 1px solid var(--border-input);
  background: var(--input-bg);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  border-radius: 2px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--border-input-focus);
  background: var(--input-bg-focus);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  font-size: 0.78rem;
  font-family: var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
  border-radius: 2px;
}

.btn:hover { opacity: 0.82; }

.btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.form-success {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-success.visible {
  opacity: 0.75;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border-dim);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-faint);
  transition: border-color 0.25s ease;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* ── Visual Language page ── */
.vl-layout {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.vl-header {
  margin-bottom: 3rem;
}

.vl-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.vl-header h1 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

.vl-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 580px;
}

.vl-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vl-section h2 {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}

.vl-section p {
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.vl-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.vl-service {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-dim);
  border-radius: 3px;
  transition: border-color 0.25s ease;
}

.vl-service-name {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.vl-service p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.vl-contact-pair {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vl-contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 620px) {
  .vl-services {
    grid-template-columns: 1fr;
  }
}

/* ── Homepage ── */
.home-main {
  padding: 3rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  gap: 1.25rem;
}

.home-logo {
  height: clamp(120px, 20vw, 240px);
  width: auto;
}

[data-theme="light"] .home-logo {
  transform: scale(1.65);
  transform-origin: center center;
}



.home-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-about-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.home-profile {
  flex-shrink: 0;
  width: clamp(100px, 16vw, 180px);
  height: clamp(100px, 16vw, 180px);
  margin-bottom: 0;
}

.home-about-text p {
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.home-about-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.15s;
}

.home-about-link:hover {
  opacity: 1;
}

.home-divisions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.divisions-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-very-faint);
}

.divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.division-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem;
  border: 1px solid var(--border-card);
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  background: var(--card-bg);
}

a.division-card:hover {
  border-color: var(--border-hover);
  background: var(--card-bg-hover);
}

.division-card--muted {
  opacity: 0.55;
}

.division-icon {
  width: 30px;
  height: 30px;
  color: var(--accent);
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.division-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.division-name {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.division-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 0.25rem;
  flex: 1;
}

.division-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.5;
}

a.division-card:hover .division-cta {
  opacity: 1;
}

.division-cta--soon {
  color: var(--text-very-faint);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .focal-item {
    flex: 0 0 75vw;
  }

  .focal-img-wrap {
    height: 50vh;
  }

  .focal-wrap,
  .focal-footer {
    padding-left: calc(50% - 37.5vw);
    padding-right: calc(50% - 37.5vw);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .divisions-grid {
    grid-template-columns: 1fr;
  }

  .home-about-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-about-link {
    display: block;
    text-align: center;
  }
}

@media (max-width: 540px) {
  nav {
    padding: 0 1rem;
  }

  .focal-item {
    flex: 0 0 88vw;
  }

  .focal-img-wrap {
    height: 44vh;
  }

  .focal-wrap,
  .focal-footer {
    padding-left: calc(50% - 44vw);
    padding-right: calc(50% - 44vw);
  }

  .nav-menu {
    width: 100%;
    border-left: none;
  }
}
