@charset "UTF-8";
:root {
  /* Paper & Panel backgrounds (Strictly from brand palette) */
  --ivory: #faf3e4; /* Cream background (#FAF3E4) */
  --cream: #a2d2ff; /* Sky blue panel background (#A2D2FF) */
  --cream-soft: #f0f7ff; /* Very soft light blue tint for list rows/details */
  --cream-deep: #a2d2ff; /* Sky blue background (#A2D2FF) */
  --parchment: #8fc9ff; /* Light blue background (#8FC9FF) */
  /* Dark Navy for high contrast text readability (Dark shade of brand blue) */
  --ink: #0b2240; /* Dark navy text */
  --ink-soft: #254060; /* Softer navy text */
  --ink-muted: #577598; /* Muted navy text */
  /* Brand Accents (Strictly from brand palette & logo) */
  --brown: #0b2240; /* Deep navy for solid blocks */
  --brown-deep: #051326; /* Darkest navy */
  --mahogany: #1b75bc; /* Primary Brand Blue from logo text (#1B75BC) */
  --burnt-orange: #f17829; /* Vibrant Accent Orange from logo swoosh (#F17829) */
  --ochre: #ffb347; /* Soft Gold/Yellow-Orange (#FFB347) */
  --mustard: #ffb347; /* Soft Gold/Yellow-Orange (#FFB347) */
  --terracotta: #f17829; /* Vibrant Accent Orange from logo swoosh (#F17829) */
  /* Lines & Borders (Based on brand blue #8FC9FF) */
  --rule: rgba(143, 201, 255, 0.4);
  --rule-soft: rgba(143, 201, 255, 0.2);
  --rule-strong: rgba(143, 201, 255, 0.6);
  /* Type */
  --script: "Cormorant Garamond", "Cormorant", "Playfair Display", Georgia, serif;
  --serif: "Lora", "Crimson Pro", Georgia, "Times New Roman", serif;
  --display: "Libre Caslon Display", "Cormorant Garamond", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

.script {
  font-family: var(--script);
  font-weight: 500;
  line-height: 1;
}

.script-italic {
  font-family: var(--script);
  font-style: italic;
  font-weight: 500;
}

/* Calligraphic capital — used as a drop cap at the start of big headings */
.swash {
  font-family: var(--script);
  font-style: italic;
  font-weight: 500;
  font-feature-settings: "swsh" 1, "salt" 1, "ss01" 1;
  color: var(--mahogany);
  font-size: 1.15em;
  padding-right: 0.02em;
  display: inline-block;
  transform: translateY(0.04em);
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  font-weight: 500;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.drop-cap::first-letter {
  font-family: var(--script);
  font-style: italic;
  font-weight: 500;
  color: var(--mahogany);
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
}

/* ============ GLOBAL RESET & OVERRIDES ============ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============ LAYOUT ============ */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 720px) {
  .wrap {
    padding: 0 24px;
  }
}
.section {
  padding: 120px 0;
}

.section-sm {
  padding: 80px 0;
}

.rule {
  height: 1px;
  background: var(--rule);
  width: 100%;
}

.rule-double {
  height: 5px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  width: 100%;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 2px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  border: 1px solid var(--brown);
}

.btn-primary:hover {
  background: var(--mahogany);
  border-color: var(--mahogany);
}

.btn-orange {
  background: var(--burnt-orange);
  color: var(--ivory);
  border: 1px solid var(--burnt-orange);
}

.btn-orange:hover {
  background: var(--mahogany);
  border-color: var(--mahogany);
}

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-ochre {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--ochre);
}

.btn-ochre:hover {
  background: var(--ochre);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--script);
  font-style: italic;
  font-size: 20px;
  color: var(--mahogany);
  border-bottom: 1px solid var(--mahogany);
  padding-bottom: 2px;
}

.btn-link svg {
  transition: transform 0.25s;
}

.btn-link:hover svg {
  transform: translateX(6px);
}

/* ============ CARDS / UTILITY ============ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--mahogany);
  font-family: var(--script);
  font-style: italic;
  font-size: 22px;
}

.ornament::before, .ornament::after {
  content: "";
  flex: 0 0 40px;
  height: 1px;
  background: var(--rule-strong);
}

.photo-placeholder {
  background: repeating-linear-gradient(135deg, rgba(61, 40, 23, 0.08) 0 2px, transparent 2px 14px), linear-gradient(160deg, var(--cream-deep), var(--mahogany) 140%);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.photo-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--cream);
  opacity: 0.75;
}

.photo-placeholder.warm {
  background: repeating-linear-gradient(135deg, rgba(61, 40, 23, 0.08) 0 2px, transparent 2px 14px), linear-gradient(160deg, var(--ochre), var(--mahogany));
}

.photo-placeholder.deep {
  background: repeating-linear-gradient(135deg, rgba(255, 240, 210, 0.1) 0 2px, transparent 2px 14px), linear-gradient(160deg, var(--burnt-orange), var(--brown-deep));
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--ivory);
}

.tag-chip.accent {
  color: var(--mahogany);
  border-color: var(--mahogany);
  background: color-mix(in oklab, var(--mahogany) 8%, var(--ivory));
}

/* ============ RESPONSIVE GLOBAL OVERRIDES ============ */
@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }
  .section-sm {
    padding: 52px 0;
  }
  .page-header {
    padding: 56px 0 48px;
  }
  .footer {
    padding: 64px 0 28px;
  }
  .footer-grid {
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-big {
    font-size: 40px;
  }
  .wrap {
    padding: 0 32px;
  }
}
@media (max-width: 600px) {
  html, body {
    font-size: 16px;
  }
  .section {
    padding: 56px 0;
  }
  .section-sm {
    padding: 44px 0;
  }
  .page-header {
    padding: 44px 0 36px;
  }
  .wrap {
    padding: 0 20px;
  }
  .btn {
    padding: 14px 22px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .btn-link {
    font-size: 17px;
  }
  .ornament {
    font-size: 18px;
  }
  .ornament::before, .ornament::after {
    flex: 0 0 24px;
  }
  .page-lede {
    font-size: 16px;
  }
  .breadcrumbs {
    font-size: 9px;
    letter-spacing: 0.18em;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .footer {
    padding: 56px 0 24px;
  }
  .footer-big {
    font-size: 34px;
  }
  .footer-grid {
    gap: 36px;
    margin-bottom: 40px;
  }
}
body {
  overflow-x: clip;
}

/* ============ NAV with MEGA MENU ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--ivory) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.nav-top {
  background: var(--brown);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 8px 0;
}

.nav-top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-top .left {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-top .right {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-top a:hover {
  color: var(--ochre);
}

@media (max-width: 820px) {
  .nav-top {
    font-size: 9px;
    letter-spacing: 0.14em;
    padding: 10px 0;
  }
  .nav-top .wrap {
    justify-content: center;
    text-align: center;
    gap: 8px 18px;
  }
  .nav-top .left {
    justify-content: center;
    gap: 10px 18px;
  }
  .nav-top .right {
    justify-content: center;
    gap: 10px 16px;
  }
}
@media (max-width: 520px) {
  .nav-top .left span {
    display: none;
  }
  .nav-top .right a[href^=about] {
    display: none;
  }
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brown);
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: var(--script);
  font-style: italic;
  font-size: 22px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid var(--ochre);
  opacity: 0.55;
}

.logo-text {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.logo-text em {
  font-family: var(--script);
  font-style: italic;
  color: var(--mahogany);
  font-weight: 500;
}

.logo-sub {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}

.nav-links > li {
  list-style: none;
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
  padding: 28px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  color: var(--ink);
  transition: color 0.25s;
}

.nav-links > li > a.active,
.nav-links > li > a:hover,
.nav-links > li > button:hover {
  color: var(--mahogany);
}

.nav-links > li > a.active::after,
.nav-links > li > a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--mahogany);
}

.nav-links .caret {
  width: 10px;
  height: 10px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-mini {
  font-family: var(--script);
  font-style: italic;
  font-size: 18px;
  color: var(--mahogany);
  border-right: 1px solid var(--rule);
  padding-right: 14px;
}

/* Mega menu */
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 960px;
  max-width: 92vw;
  background: var(--ivory);
  border: 1px solid var(--rule-strong);
  border-top: 3px solid var(--mahogany);
  box-shadow: 0 30px 80px -30px rgba(61, 40, 23, 0.35);
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 60;
}

.nav-links li:hover .mega,
.nav-links li:focus-within .mega,
.mega.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
}

.mega-feature {
  background: var(--cream);
  padding: 32px;
  border-right: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.mega-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(184, 92, 28, 0.06) 0 2px, transparent 2px 12px);
  pointer-events: none;
}

.mega-feature .eyebrow {
  color: var(--mahogany);
}

.mega-feature h4 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
  margin: 12px 0 10px;
  position: relative;
}

.mega-feature h4 em {
  font-family: var(--script);
  font-style: italic;
  color: var(--mahogany);
}

.mega-feature p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 18px;
  position: relative;
}

.mega-feature .tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--burnt-orange);
  position: relative;
}

.mega-col {
  padding: 24px 24px 24px 28px;
  border-right: 1px solid var(--rule);
}

.mega-col:last-child {
  border-right: none;
}

.mega-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mahogany);
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

.mega-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-col a {
  display: block;
  padding: 7px 0;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s, padding-left 0.2s;
}

.mega-col a:hover {
  color: var(--mahogany);
  padding-left: 6px;
}

.mega-col a .price {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  margin-left: 8px;
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }
  .phone-mini {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex !important;
  }
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding: 14px 0;
  }
  .logo-text {
    font-size: 22px;
  }
  .logo-mark {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .logo-sub {
    font-size: 8px;
    letter-spacing: 0.22em;
  }
}
@media (max-width: 520px) {
  .nav-cta .btn {
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .nav-cta {
    gap: 10px;
  }
  .logo-text {
    font-size: 19px;
  }
  .logo-sub {
    display: none;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  flex-shrink: 0;
}

.mobile-toggle:hover {
  background: var(--cream-soft);
}

/* ============ MOBILE DRAWER ============ */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background: var(--ivory);
  border-left: 1px solid var(--rule-strong);
  box-shadow: -30px 0 60px -20px rgba(61, 40, 23, 0.35);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 27, 14, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 190;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-drawer {
  transform: translateX(0);
}

body.menu-open .mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
}

.drawer-head .brand {
  font-family: var(--display);
  font-size: 22px;
}

.drawer-head .brand em {
  font-family: var(--script);
  font-style: italic;
  color: var(--mahogany);
}

.drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ivory);
}

.drawer-close:hover {
  background: var(--cream-soft);
}

.drawer-nav {
  padding: 20px 0;
  flex: 1;
}

.drawer-nav > ul {
  list-style: none;
}

.drawer-nav > ul > li {
  border-bottom: 1px solid var(--rule-soft);
}

.drawer-nav > ul > li > a,
.drawer-nav > ul > li > button {
  display: flex;
  width: 100%;
  text-align: left;
  padding: 16px 24px;
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.drawer-nav > ul > li > a.active,
.drawer-nav > ul > li > a:hover,
.drawer-nav > ul > li > button:hover {
  color: var(--mahogany);
  background: var(--cream-soft);
}

.drawer-sub {
  list-style: none;
  background: var(--cream-soft);
  padding: 8px 0 14px;
  display: none;
}

.drawer-nav li.open .drawer-sub {
  display: block;
}

.drawer-nav li.open > button .caret-ind {
  transform: rotate(180deg);
}

.caret-ind {
  transition: transform 0.25s;
}

.drawer-sub li a {
  display: block;
  padding: 10px 24px 10px 40px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-soft);
}

.drawer-sub li a:hover {
  color: var(--mahogany);
}

.drawer-sub li.sub-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mahogany);
  padding: 12px 24px 4px 40px;
}

.drawer-foot {
  padding: 24px;
  border-top: 1px solid var(--rule);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-foot a {
  font-size: 14px;
  color: var(--ink-soft);
}

.drawer-foot a.phone {
  font-family: var(--script);
  font-style: italic;
  font-size: 24px;
  color: var(--mahogany);
}

.drawer-foot .btn {
  justify-content: center;
}

/* ============ PAGE HEADER (sub-pages) ============ */
.page-header {
  padding: 100px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(184, 92, 28, 0.12), transparent 60%), radial-gradient(ellipse 40% 60% at 0% 100%, rgba(107, 46, 26, 0.1), transparent 60%);
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}

@media (max-width: 900px) {
  .page-header-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.page-title {
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.015em;
}

.page-title em {
  font-family: var(--script);
  font-style: italic;
  color: var(--mahogany);
  font-weight: 500;
}

.breadcrumbs {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
}

.breadcrumbs a:hover {
  color: var(--mahogany);
}

.breadcrumbs .sep {
  color: var(--ochre);
}

.page-lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 500px;
}

/* ============ MAX MEGA MENU OVERRIDES & CUSTOM STYLING ============ */
#mega-menu-wrap-primary {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#mega-menu-wrap-primary #mega-menu-primary {
  background: transparent !important;
  border: none !important;
  display: flex !important;
  justify-content: flex-end !important;
  font-family: var(--serif) !important;
  padding: 0 !important;
  margin: 0 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
  background: transparent !important;
  position: static !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  font-family: var(--serif) !important;
  font-size: 15px !important;
  color: var(--ink) !important;
  font-weight: 500 !important;
  background: transparent !important;
  padding: 28px 20px !important;
  line-height: 1 !important;
  position: relative !important;
  text-decoration: none !important;
  transition: color 0.25s !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:hover > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:focus-within > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
  color: var(--mahogany) !important;
  background: transparent !important;
}

/* Hover indicator line matching custom theme */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:hover > a.mega-menu-link::after,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link::after {
  content: "" !important;
  position: absolute !important;
  left: 20px !important;
  right: 20px !important;
  bottom: 20px !important;
  height: 1px !important;
  background: var(--mahogany) !important;
}

/* Hide default toggle bar and replace with theme toggle style */
#mega-menu-wrap-primary .mega-menu-toggle {
  background: var(--ivory) !important;
  color: var(--ink) !important;
  border: 1px solid var(--rule-strong) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  float: right !important;
  margin-top: 10px !important;
}

#mega-menu-wrap-primary .mega-menu-toggle:hover {
  background: var(--cream-soft) !important;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-label {
  display: none !important;
}

/* Show our custom injected .mega dropdown on hover */
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:hover > .mega,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:focus-within > .mega {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* Caret indicator styling inside Max Mega Menu links if enabled */
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item .mega-indicator {
  display: none !important;
}

/* Responsive Mega Menu for Mobile/Tablet */
@media (max-width: 991px) {
  #mega-menu-wrap-primary .mega-menu-toggle {
    display: inline-flex !important;
  }
  #mega-menu-wrap-primary #mega-menu-primary {
    display: none !important;
    flex-direction: column !important;
    background: var(--ivory) !important;
    border-top: 1px solid var(--rule-strong) !important;
    padding: 10px 0 !important;
  }
  #mega-menu-wrap-primary #mega-menu-primary.mega-menu-open {
    display: flex !important;
  }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    padding: 16px 24px !important;
    font-size: 18px !important;
    border-bottom: 1px solid var(--rule-soft) !important;
  }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:hover > a.mega-menu-link::after,
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link::after {
    display: none !important; /* Hide line indicators on mobile stack */
  }
  .mega {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    border: none !important;
    box-shadow: none !important;
    background: var(--cream-soft) !important;
    padding: 0 !important;
    display: none;
  }
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:hover > .mega,
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:focus-within > .mega {
    display: block !important;
    transform: none !important;
  }
  .mega-grid {
    grid-template-columns: 1fr !important;
  }
  .mega-feature {
    border-right: none !important;
    border-bottom: 1px solid var(--rule) !important;
    padding: 24px !important;
  }
  .mega-col {
    border-right: none !important;
    border-bottom: 1px solid var(--rule) !important;
    padding: 20px 24px 20px 32px !important;
  }
  .mega-col:last-child {
    border-bottom: none !important;
  }
}
/* ============ FOOTER ============ */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 100px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mahogany), var(--burnt-orange), var(--ochre), var(--burnt-orange), var(--mahogany));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 72px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.footer a {
  color: color-mix(in oklab, var(--cream) 88%, transparent);
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--ochre);
}

.footer-big {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
}

.footer-big em {
  font-family: var(--script);
  font-style: italic;
  color: var(--ochre);
}

.newsletter {
  display: flex;
  border-bottom: 1px solid rgba(243, 232, 207, 0.3);
  padding-bottom: 10px;
  margin-top: 18px;
}

.newsletter input {
  flex: 1;
  background: none;
  border: none;
  color: var(--cream);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 15px;
}

.newsletter input::placeholder {
  color: color-mix(in oklab, var(--cream) 50%, transparent);
  font-style: italic;
}

.newsletter input:focus {
  outline: none;
}

.newsletter button {
  color: var(--ochre);
  font-family: var(--script);
  font-style: italic;
  font-size: 18px;
}

.newsletter-note {
  font-size: 11px;
  color: color-mix(in oklab, var(--cream) 55%, transparent);
  margin-top: 10px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(243, 232, 207, 0.18);
  font-size: 12px;
  color: color-mix(in oklab, var(--cream) 60%, transparent);
  font-family: var(--mono);
  letter-spacing: 0.1em;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}
/* ---------- HOME PAGE RESPONSIVE OVERRIDES ---------- */
@media (max-width: 900px) {
  /* Hero: stack */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  /* Approach section */
  .home-approach {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* Principles band: 2x2 */
  .home-principles {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Treatments heading row */
  .home-treat-head {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    margin-bottom: 48px !important;
  }
}
@media (max-width: 600px) {
  .home-hero-stats {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
  .home-hero-stats > div {
    padding: 14px 8px !important;
  }
  .home-hero-stats .display {
    font-size: 28px !important;
  }
  .home-principles {
    grid-template-columns: 1fr !important;
  }
  .home-principles > div {
    padding: 28px 24px !important;
  }
  .hero-header {
    padding: 40px 0 60px !important;
  }
  .ticker-strip {
    font-size: 20px !important;
    padding: 16px 0 !important;
    gap: 32px !important;
  }
  /* "Caring for NW7" circular badge over the hero portrait */
  .hero-grid .photo-placeholder .hero-badge {
    width: 72px !important;
    height: 72px !important;
    top: 14px !important;
    right: 14px !important;
    font-size: 13px !important;
  }
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.service-row {
  display: grid;
  grid-template-columns: 100px 1.8fr 1.2fr 40px;
  gap: 32px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  position: relative;
  color: var(--ink);
  transition: padding 0.35s ease;
}

.service-row:hover {
  padding-left: 20px;
  padding-right: 20px;
  color: var(--brown);
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.service-row:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-row .arrow {
  color: var(--ink-muted);
  transition: color 0.3s, transform 0.3s;
}

.service-row:hover .arrow {
  color: var(--mahogany);
  transform: translateX(4px);
}

@media (max-width: 720px) {
  .service-row {
    grid-template-columns: 60px 1fr 30px;
    gap: 16px;
  }
  .service-row > :nth-child(3) {
    display: none;
  }
  .service-row .display {
    font-size: 24px !important;
  }
}
/* --- Hero Section --- */
.hero-header {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(60px, 9vw, 140px);
}

.hero-description {
  margin-top: 40px;
  max-width: 540px;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-style: italic;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

.hero-image-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}

.hero-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--mahogany);
  display: grid;
  place-items: center;
  font-family: var(--script);
  font-style: italic;
  font-size: 17px;
  transform: rotate(-8deg);
  line-height: 1.1;
  text-align: center;
  border: 1px solid var(--rule);
}

.home-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.stat-item {
  background: var(--ivory);
  padding: 20px 16px;
}

.stat-value {
  font-size: 38px;
  color: var(--mahogany);
  line-height: 1;
}

.stat-label {
  color: var(--ink-soft);
  margin-top: 8px;
  font-size: 9px;
}

/* --- Ticker --- */
.ticker-wrapper {
  margin-top: 80px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--cream);
}

.ticker-strip {
  display: flex;
  gap: 56px;
  padding: 22px 0;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
  font-family: var(--script);
  font-style: italic;
  font-size: 26px;
  color: var(--mahogany);
}

.ticker-content {
  display: inline-flex;
  gap: 56px;
  align-items: center;
}

/* --- Approach Section --- */
.home-approach {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.approach-title {
  font-size: clamp(44px, 6vw, 84px);
  margin-top: 20px;
}

.approach-text p:first-child {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
}

.approach-text p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* --- Principles Section --- */
.principles-section {
  background: var(--brown);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.principles-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(200, 148, 50, 0.18), transparent 55%);
  pointer-events: none;
}

.principles-eyebrow {
  color: var(--ochre);
  margin-bottom: 32px;
}

.home-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(243, 232, 207, 0.15);
  border: 1px solid rgba(243, 232, 207, 0.15);
}

.principle-item {
  background: var(--brown);
  padding: 40px 32px;
}

.principle-num {
  color: var(--ochre);
  font-size: 30px;
  margin-bottom: 16px;
}

.principle-title {
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.principle-desc {
  font-size: 14px;
  color: color-mix(in oklab, var(--cream) 72%, transparent);
  line-height: 1.55;
}

/* --- Treatments Section --- */
.home-treat-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: end;
}

.treatments-title {
  font-size: clamp(44px, 6.2vw, 88px);
  margin-top: 18px;
  line-height: 0.95;
}

.treatments-desc {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 520px;
}

.treatments-list {
  border-top: 1px solid var(--rule-strong);
}

.service-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mahogany);
  letter-spacing: 0.2em;
}

.service-title {
  font-size: 36px;
  line-height: 1.1;
}

.service-short-desc {
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
}

/* --- Testimonial Section --- */
.testimonial-section {
  background: var(--cream);
}

.testimonial-eyebrow {
  margin-bottom: 40px;
}

.testimonial-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-mark {
  font-family: var(--script);
  font-style: italic;
  font-size: 220px;
  line-height: 0.2;
  color: var(--mahogany);
  margin-bottom: 40px;
}

.testimonial-text {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.2;
}

.testimonial-author-wrapper {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.fallback-avatar {
  background: linear-gradient(135deg, var(--ochre), var(--mahogany));
}

.author-info {
  text-align: left;
}

.author-name {
  font-size: 22px;
  color: var(--brown);
}

.author-details {
  color: var(--ink-muted);
  font-size: 10px;
}

/* Owl Carousel Custom dots styling */
.testimonials-carousel {
  position: relative;
}
.testimonials-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.testimonials-carousel .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--mahogany) 20%, transparent) !important;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-carousel .owl-dots .owl-dot.active {
  background: var(--mahogany) !important;
  transform: scale(1.2);
}
.testimonials-carousel .owl-dots .owl-dot:hover:not(.active) {
  background: color-mix(in oklab, var(--mahogany) 50%, transparent) !important;
}

/* --- CTA Section --- */
.cta-wrap {
  text-align: center;
}

.cta-eyebrow {
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  max-width: 900px;
  margin: 0 auto 28px;
}

.cta-desc {
  font-size: 19px;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 44px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
/* Narrative Section */
.about-narrative {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-narr-aside {
  position: sticky;
  top: 100px;
}

.about-narr-title {
  font-size: clamp(40px, 5vw, 72px);
  margin-top: 20px;
  line-height: 0.95;
}

.about-narr-title em,
.about-values-title em,
.about-cta-title em {
  color: var(--mahogany);
}

.about-narr-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-top: 40px;
}

.about-narr-content {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
}

.about-narr-content p {
  margin-bottom: 28px;
}

.about-narr-content p:last-child {
  margin-bottom: 0;
}

.about-quote {
  border-left: 3px solid var(--mahogany);
  padding: 20px 32px;
  margin: 40px 0;
  background: var(--cream-soft);
  font-family: var(--script);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--brown);
}

.about-quote-cite {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mahogany);
  font-style: normal;
}

/* Timeline Section */
.about-timeline-section {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.about-timeline-section .ornament {
  margin-bottom: 48px;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.about-timeline-item {
  background: var(--ivory);
  padding: 32px;
}

.about-timeline-value {
  font-size: 56px;
  color: var(--mahogany);
  line-height: 1;
}

.about-timeline-value span.script-italic {
  font-size: 36px;
}

.about-timeline-label {
  font-size: 22px;
  margin-top: 10px;
  color: var(--brown);
}

.about-timeline-desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.55;
}

/* Values Section */
.about-values {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.about-values-title {
  font-size: clamp(44px, 6vw, 80px);
  margin-top: 20px;
  line-height: 0.95;
}

.about-values-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.about-value-item {
  background: var(--ivory);
  padding: 36px;
}

.about-value-num {
  color: var(--mahogany);
  font-size: 32px;
}

.about-value-title {
  font-size: 24px;
  margin: 10px 0;
}

.about-value-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Gallery Section */
.about-gallery-section {
  padding: 100px 0;
  background: var(--cream-soft);
}

.about-gallery-section .ornament {
  margin-bottom: 40px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}

.about-gallery > div {
  background-size: cover;
  background-position: center;
}

.about-gallery-item-featured {
  grid-row: 1/3;
}

/* CTA Section */
.about-cta-wrap {
  text-align: center;
}

.about-cta-title {
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.95;
  max-width: 880px;
  margin: 0 auto 28px;
}

.about-cta-desc {
  font-size: 18px;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 540px;
  margin: 0 auto 40px;
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   RESPONSIVE DESIGN OVERRIDES
   ========================================================================== */
@media (max-width: 900px) {
  .about-narrative {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-narr-aside {
    position: static;
    top: auto;
  }
  .about-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .about-values {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .about-gallery > .photo-placeholder {
    aspect-ratio: 4/3;
    height: auto;
  }
  .about-gallery-item-featured {
    grid-row: auto;
  }
}
@media (max-width: 600px) {
  .about-timeline {
    grid-template-columns: 1fr;
  }
  .about-values-inner {
    grid-template-columns: 1fr;
  }
  .about-gallery {
    grid-template-columns: 1fr;
  }
  .about-narrative blockquote {
    padding: 18px 22px;
    font-size: 22px;
  }
}
/* ==========================================================================
   TEAM PAGE STYLES
   ========================================================================== */
/* Filter Bar Section */
.team-filter-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
}

.team-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.team-filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.team-filter-note {
  font-size: 20px;
  color: var(--mahogany);
}

/* Principal Feature Section */
.team-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  padding: 60px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--mahogany);
}

.team-feature.hidden {
  display: none;
}

.team-feature .photo-placeholder {
  aspect-ratio: 4/5;
}

.team-feature img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

.team-feature-title {
  font-size: clamp(50px, 6.5vw, 88px);
  margin: 20px 0;
  line-height: 0.95;
}

.team-feature-title em {
  color: var(--mahogany);
}

.team-feature-role {
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 24px;
}

.team-feature-bio {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
}

.team-feature-quote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-style: italic;
}

.team-feature-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.team-feature-stat-item {
  border-left: 2px solid var(--ochre);
  padding-left: 14px;
}

.team-feature-stat-label {
  color: var(--ink-muted);
  font-size: 9px;
}

.team-feature-stat-value {
  font-size: 20px;
  color: var(--brown);
  margin-top: 4px;
}

/* Team Grid Section */
.team-grid-section {
  padding-top: 0;
}

.team-grid-section .ornament {
  margin-bottom: 56px;
}

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

.team-card {
  background: var(--ivory);
  transition: transform 0.3s;
  cursor: pointer;
}

.team-card.hidden {
  display: none;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card .photo-placeholder {
  aspect-ratio: 3/4;
  margin-bottom: 24px;
}

.team-card img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.team-card .name {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
}

.team-card .name em {
  font-family: var(--script);
  font-style: italic;
  color: var(--mahogany);
}

.team-card .role {
  font-family: var(--script);
  font-style: italic;
  color: var(--brown);
  font-size: 20px;
  margin-top: 8px;
}

.team-card .creds {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-top: 8px;
}

.team-card .bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 16px;
}

.team-card .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.team-card .tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 5px 10px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* Careers/Join Us Section */
.team-careers-section {
  background: var(--brown);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.team-careers-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200, 148, 50, 0.15), transparent 60%);
  pointer-events: none;
}

.team-careers {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.team-careers-title {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-top: 20px;
  line-height: 1;
}

.team-careers-title .swash,
.team-careers-title em {
  color: var(--ochre);
}

.team-careers-desc {
  margin-top: 24px;
  font-size: 18px;
  color: color-mix(in oklab, var(--cream) 80%, transparent);
  line-height: 1.6;
  font-style: italic;
  max-width: 440px;
}

.team-careers .btn-orange {
  display: inline-flex;
}

/* ==========================================================================
   RESPONSIVE DESIGN OVERRIDES
   ========================================================================== */
@media (max-width: 900px) {
  .team-feature {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  .team-feature-stats {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-careers {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .team-feature-stats {
    grid-template-columns: 1fr;
  }
  .team-filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .team-feature {
    padding: 28px 22px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* ---------- CONTACT PAGE RESPONSIVE OVERRIDES ---------- */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
  .contact-details-aside {
    position: static !important;
    top: auto !important;
  }
  .contact-faq {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}
@media (max-width: 600px) {
  .contact-cards {
    grid-template-columns: 1fr !important;
  }
  .day-picker {
    grid-template-columns: repeat(5, 1fr) !important;
  }
  .map-shell {
    height: 320px !important;
  }
  .map-shell .poi {
    font-size: 12px !important;
  }
  .marker-label {
    font-size: 9px !important;
    padding: 5px 10px !important;
  }
  .contact-faq summary {
    font-size: 19px !important;
  }
}
/* ---------- CONTACT GRID & LAYOUT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details-aside {
  position: sticky;
  top: 100px;
}

.contact-form-title {
  font-size: 48px;
  margin: 16px 0 12px;
  line-height: 1;
}

.contact-form-desc {
  font-size: 16px;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 36px;
}

.contact-featured-img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  margin-bottom: 32px;
}

/* ---------- CONTACT CARDS ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.contact-card-item {
  background: var(--ivory);
  padding: 28px;
}
.contact-card-item.full {
  grid-column: 1/-1;
}

.contact-card-label {
  color: var(--mahogany);
  font-size: 10px;
}

.contact-card-value {
  color: var(--brown);
  margin-top: 8px;
}
.contact-card-value.phone {
  font-size: 28px;
  line-height: 1.1;
}
.contact-card-value.email {
  font-size: 20px;
  line-height: 1.2;
  word-break: break-all;
}
.contact-card-value.visit {
  font-size: 24px;
  line-height: 1.2;
}

.contact-card-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
}
.contact-card-note.visit-note {
  margin-top: 10px;
  line-height: 1.55;
}

/* ---------- OPENING HOURS ---------- */
.contact-hours-container {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--rule-strong);
  background: var(--cream-soft);
}

.contact-hours-value {
  font-size: 14px;
  color: var(--ink);
  margin-top: 10px;
  line-height: 1.7;
}

/* ---------- FORM STYLING ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full {
  grid-column: 1/-1;
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule-strong);
  background: var(--ivory);
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s;
  border-radius: 2px;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--mahogany);
}

.field textarea {
  resize: vertical;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  grid-column: 1/-1;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.check input {
  margin-top: 3px;
}
.check .wpcf7-form-control-wrap {
  width: 100%;
}
.check .wpcf7-list-item {
  margin: 0;
}
.check label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}

.day-picker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.day-picker label {
  position: relative;
  cursor: pointer;
  margin: 0;
  display: block;
}
.day-picker input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.day-picker span {
  display: block;
  padding: 12px 6px;
  text-align: center;
  border: 1px solid var(--rule-strong);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  transition: all 0.2s;
}
.day-picker input:checked + span {
  background: var(--mahogany);
  color: var(--cream);
  border-color: var(--mahogany);
}
.day-picker {
  /* Contact Form 7 Overrides */
}
.day-picker .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  grid-column: 1/-1;
}
.day-picker .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  width: 100%;
}
.day-picker .wpcf7-list-item {
  margin: 0;
  display: block;
}
.day-picker .wpcf7-list-item-label {
  display: block;
  padding: 12px 6px;
  text-align: center;
  border: 1px solid var(--rule-strong);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  transition: all 0.2s;
  background: var(--ivory);
  color: var(--ink-soft);
  text-transform: uppercase;
}
.day-picker input[type=checkbox]:checked + .wpcf7-list-item-label {
  background: var(--mahogany);
  color: var(--cream);
  border-color: var(--mahogany);
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .day-picker .wpcf7-checkbox {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
.wpcf7-submit {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
}

/* ---------- FAQ STYLING ---------- */
.contact-faq {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}

.contact-faq-section {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.contact-faq-title {
  font-size: 52px;
  margin-top: 18px;
  line-height: 0.95;
}

.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--mahogany);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-top: 12px;
}

/* ---------- MAP STYLING ---------- */
.contact-map-section {
  padding: 40px 0 100px;
}

.contact-map-title {
  margin-bottom: 32px;
}

.map-shell {
  height: 400px;
  background: var(--cream-soft);
  border: 1px solid var(--rule-strong);
  position: relative;
  overflow: hidden;
}

.map-street {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(200, 148, 50, 0.1), transparent 40%), radial-gradient(circle at 70% 70%, rgba(107, 46, 26, 0.08), transparent 40%), var(--cream-soft);
}

.street {
  position: absolute;
  background: var(--parchment);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.street.horizontal {
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.street.vertical {
  top: 0;
  bottom: 0;
  width: 32px;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
}

.street.thin {
  background: var(--cream);
  border-color: var(--rule-soft);
}

.street.horizontal.thin {
  height: 18px;
}

.street.vertical.thin {
  width: 16px;
}

.street span {
  font-family: var(--script);
  font-style: italic;
  color: var(--brown);
  font-size: 16px;
}

.marker {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.marker-pin {
  width: 40px;
  height: 40px;
  color: var(--mahogany);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.marker-label {
  background: var(--brown);
  color: var(--cream);
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.poi {
  position: absolute;
  font-family: var(--script);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 15px;
}

/* Map positioning classes */
.street-h-1 {
  top: 35%;
}

.street-h-2 {
  top: 65%;
}

.street-v-1 {
  left: 30%;
}

.street-v-2 {
  left: 70%;
}

.map-marker-position {
  top: 34%;
  left: 48%;
}

.poi-1-position {
  top: 22%;
  left: 20%;
}

.poi-2-position {
  top: 80%;
  left: 55%;
}

/* ==========================================================================
   BLOG PAGE STYLES (Placeholder)
   ========================================================================== */
/* ==========================================================================
   404 PAGE STYLES
   ========================================================================== */
.error-404-container {
  text-align: center;
  padding: 120px 0 160px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.error-404-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(200, 148, 50, 0.08), transparent 45%), radial-gradient(circle at 90% 80%, rgba(107, 46, 26, 0.06), transparent 45%);
  pointer-events: none;
}

.error-404-number {
  font-family: var(--display);
  font-size: clamp(100px, 18vw, 240px);
  line-height: 1;
  color: var(--mahogany);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.error-404-number::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 25%;
  right: 25%;
  height: 1px;
  background: var(--rule-strong);
}

.error-404-title {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  color: var(--brown);
  line-height: 1.1;
  margin-top: 24px;
  margin-bottom: 24px;
}

.error-404-desc {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 44px;
  font-style: italic;
}

.error-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.error-404-links-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mahogany);
  margin-bottom: 24px;
}

.error-404-suggested-links {
  list-style: none;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.error-404-suggested-links li a {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.error-404-suggested-links li a:hover {
  color: var(--mahogany);
  border-color: var(--mahogany);
}

@media (max-width: 768px) {
  .error-404-container {
    padding: 80px 0 100px;
  }
  .error-404-suggested-links {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}
/* ==========================================================================
   CLAIMS PAGE STYLES (Placeholder)
   ========================================================================== */
/* ==========================================================================
   INSIGHT PAGE STYLES (Placeholder)
   ========================================================================== */
/* ==========================================================================
   TREATMENT / SERVICE PAGE STYLES
   ========================================================================== */
/* ---------- SERVICE HEADER / HERO ---------- */
.service-header-inner h1.page-title {
  margin-top: 18px;
}

.service-header-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---------- SERVICE SUB-NAV ---------- */
.service-subnav {
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 105px;
  background: var(--ivory);
  z-index: 40;
}
.service-subnav .wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.service-subnav .subnav-links-inner {
  display: flex;
  gap: 0;
  min-width: max-content;
}

.subnav-link {
  padding: 20px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-right: 1px solid var(--rule-soft);
  transition: all 0.2s;
  position: relative;
}
.subnav-link:first-child {
  border-left: 1px solid var(--rule-soft);
}
.subnav-link:hover, .subnav-link.active {
  color: var(--mahogany);
  background: var(--cream-soft);
}
.subnav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--mahogany);
}

/* ---------- OVERVIEW SECTION ---------- */
.service-overview {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-overview h2.display {
  font-size: clamp(36px, 4.5vw, 60px);
  margin: 18px 0 32px;
  line-height: 1;
}
.service-overview h2.display em.script-italic {
  color: var(--mahogany);
}
.service-overview .drop-cap {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-overview .overview-p2 {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.service-suited {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 40px;
}
.service-suited > div {
  background: var(--cream-soft);
  padding: 28px;
}
.service-suited .suited-icon {
  font-family: var(--script);
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  color: var(--mahogany);
}
.service-suited .suited-icon.muted {
  color: var(--ink-muted);
}
.service-suited h4.display {
  font-size: 22px;
  margin: 10px 0;
}
.service-suited p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- STICKY SIDEBAR ---------- */
.service-sidebar {
  background: var(--cream);
  padding: 40px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--mahogany);
  position: sticky;
  top: 200px;
}
.service-sidebar .sidebar-eyebrow {
  font-family: var(--mono);
  color: var(--mahogany);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.service-sidebar .glance-rows {
  margin-top: 16px;
}
.service-sidebar .sidebar-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.service-sidebar .sidebar-contact .phone {
  font-family: var(--script);
  font-style: italic;
  font-size: 28px;
  color: var(--brown);
  line-height: 1;
}
.service-sidebar .sidebar-contact .email-label {
  font-family: var(--mono);
  color: var(--ink-muted);
  font-size: 10px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-sidebar .sidebar-btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

.glance-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 14px;
}
.glance-row:last-child {
  border-bottom: none;
}
.glance-row span {
  color: var(--ink-soft);
}
.glance-row b {
  font-weight: 500;
  color: var(--brown);
  font-family: var(--script);
  font-style: italic;
  font-size: 17px;
}

/* ---------- PROCESS SECTION ---------- */
.service-process-section {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.service-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.service-section-header h2.display {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-top: 18px;
  line-height: 0.95;
}
.service-section-header h2.display em.script-italic {
  color: var(--mahogany);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.step {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 40px 48px;
  align-items: start;
  transition: background 0.3s;
}
.step:hover {
  background: var(--cream-soft);
}

.step-num {
  font-family: var(--script);
  font-style: italic;
  font-size: 88px;
  color: var(--mahogany);
  line-height: 0.8;
}

.step-body h4 {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

.step-meta {
  font-family: var(--script);
  font-style: italic;
  color: var(--ochre);
  font-size: 17px;
  margin-top: 6px;
  margin-bottom: 16px;
}

.step-body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 640px;
}

/* ---------- FAQ SECTION ---------- */
.service-faqs-section {
  background: var(--cream-soft);
}
.service-faqs-section .ornament {
  margin-bottom: 40px;
}
.service-faqs-section .faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 24px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--mahogany);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-top: 12px;
}

/* ---------- RELATED SECTION ---------- */
.service-related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.service-related-header h2.display {
  font-size: 48px;
  margin-top: 16px;
  line-height: 0.95;
}
.service-related-header h2.display em.script-italic {
  color: var(--mahogany);
}

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

.related-card {
  display: block;
  border: 1px solid var(--rule);
  background: var(--ivory);
  transition: transform 0.3s, border-color 0.3s;
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: var(--mahogany);
}
.related-card .photo-placeholder {
  aspect-ratio: 4/3;
}

.related-body {
  padding: 22px;
}
.related-body .related-cat {
  font-family: var(--mono);
  color: var(--mahogany);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.related-body h4.display {
  font-size: 26px;
  margin: 10px 0 6px;
  line-height: 1.1;
}
.related-body h4.display em.script-italic {
  color: var(--mahogany);
}
.related-body p {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- CTA SECTION ---------- */
.service-cta-section {
  background: var(--brown);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-cta-section .cta-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200, 148, 50, 0.2), transparent 60%);
  pointer-events: none;
}
.service-cta-section .wrap {
  position: relative;
  z-index: 1;
}
.service-cta-section h2.display {
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.95;
  max-width: 880px;
  margin: 0 auto 24px;
}
.service-cta-section h2.display .swash {
  color: var(--ochre);
}
.service-cta-section h2.display em.script-italic {
  color: var(--ochre);
}
.service-cta-section p {
  font-size: 18px;
  color: color-mix(in oklab, var(--cream) 82%, transparent);
  max-width: 560px;
  margin: 0 auto 40px;
  font-style: italic;
}

/* ---------- RESPONSIVE OVERRIDES ---------- */
@media (max-width: 900px) {
  .service-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-overview aside {
    position: static;
    top: auto;
    padding: 28px;
  }
  .service-related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-subnav {
    top: 0;
  }
  #related .wrap > div:last-child {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 28px 24px;
  }
  .step-num {
    font-size: 56px;
  }
  .step-body h4 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .service-suited {
    grid-template-columns: 1fr;
  }
  .service-related-grid {
    grid-template-columns: 1fr;
  }
  .subnav-link {
    padding: 14px 18px;
    font-size: 10px;
  }
  .service-header-inner {
    gap: 16px;
  }
}
@media (max-width: 500px) {
  .step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 24px 20px;
  }
  .step-num {
    font-size: 44px;
  }
  .step-body h4 {
    font-size: 21px;
  }
  .step-body p {
    font-size: 15px;
  }
}

/*# sourceMappingURL=child-theme.css.map */
