    /* Design System */
    :root {
      --cream: #F5F7F8;
      --cream-dark: #EBEFF1;
      --taupe: #B8C4C9;
      --slate: #70858E;
      --slate-light: #879AAB;
      --olive: #636B39;
      --olive-light: #7A8347;
      --olive-deep: #2C3516;
      --espresso: #232B2F;
      --espresso-mid: #414E54;
      --muted: #6D7B82;
      --white: #FFFFFF;
      --black: #151B1E;

      --font-display: 'DM Serif Display', serif;
      --font-heading: 'Playfair Display', serif;
      --font-body: 'DM Sans', sans-serif;
    }

    /* Reset & Base */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* html background = header color so iOS safe-area inset at top
       shows slate instead of page content bleeding through */
    html {
      background-color: #70858E; /* var(--slate) — must be a literal value here */
    }

    body {
      font-family: var(--font-body);
      color: var(--espresso-mid);
      background-color: var(--cream);
      line-height: 1.6;
      font-size: 16px;
      font-weight: 300;
      position: relative;
    }

    /* Subtle dot texture — clinical graph paper at ~3% */
    /* Starts below the iOS safe-area-inset-top so the header/status-bar region
       is never overlaid by this z-index:9999 element (which was causing the bleed). */
    body::before {
      content: "";
      position: fixed;
      top: env(safe-area-inset-top, 0px);
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
      z-index: 9999;
      background-image: radial-gradient(circle, rgba(70, 90, 100, 0.18) 1px, transparent 1px);
      background-size: 22px 22px;
      opacity: 0.35;
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-weight: normal;
      color: var(--espresso);
    }

    .display {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6vw, 5rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .display em {
      font-style: italic;
    }

    .heading {
      font-family: var(--font-heading);
      font-weight: 500;
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 2rem;
    }

    .body-copy {
      font-size: 1.125rem;
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .espresso-text {
      color: var(--espresso);
    }

    .cream-text {
      color: var(--cream);
    }

    .muted-text {
      color: var(--muted);
    }

    /* UI Patterns */
    .eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      color: var(--olive);
      text-transform: uppercase;
      display: block;
      margin-bottom: 1rem;
      font-weight: 500;
    }

    a.btn {
      display: inline-flex;
      align-items: center;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--espresso);
      text-decoration: none;
      padding: 1rem 0;
      position: relative;
      transition: color 0.3s ease;
    }

    a.btn::after {
      content: "→";
      margin-left: 0.5rem;
      transition: transform 0.3s ease;
    }

    a.btn:hover {
      color: var(--olive);
    }

    a.btn:hover::after {
      transform: translateX(4px);
    }

    .btn-solid {
      background-color: var(--espresso);
      color: var(--cream) !important;
      padding: 1rem 2rem !important;
    }

    .btn-solid:hover {
      background-color: var(--olive);
    }

    img {
      max-width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* Backgrounds */
    .bg-cream {
      background-color: var(--cream);
    }

    .bg-cream-dark {
      background-color: var(--cream-dark);
    }

    .bg-espresso {
      background-color: var(--espresso);
      color: var(--cream-dark);
    }

    .bg-espresso h1,
    .bg-espresso h2,
    .bg-espresso h3,
    .bg-espresso .display,
    .bg-espresso .heading {
      color: var(--white);
    }

    .bg-olive-deep {
      background-color: var(--olive);
      color: var(--cream-dark);
    }

    .bg-olive-deep h1,
    .bg-olive-deep h2,
    .bg-olive-deep h3,
    .bg-olive-deep .display,
    .bg-olive-deep .heading {
      color: var(--white);
    }

    /* Child element overrides for olive-deep backgrounds */
    .bg-olive-deep .eyebrow {
      color: rgba(255, 255, 255, 0.7);
    }

    .bg-olive-deep .btn {
      color: var(--white);
    }

    .bg-olive-deep .stat-label {
      color: rgba(255, 255, 255, 0.65);
    }

    .bg-olive-deep .journal-tag {
      color: rgba(255, 255, 255, 0.55);
    }

    /* Navigation */
    /* WP Admin Bar Fixes */
    .admin-bar .site-header {
      top: 32px;
    }
    @media screen and (max-width: 782px) {
      .admin-bar .site-header {
        top: 46px;
      }
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      /* Safe area: pushes header down on iPhone notch/Dynamic Island */
      padding: calc(1rem + env(safe-area-inset-top)) 2rem 1rem;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--slate);
      transition: background 0.3s ease, padding 0.3s ease;
    }

    .site-header.scrolled {
      background-color: rgba(112, 133, 142, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: calc(0.8rem + env(safe-area-inset-top)) 2rem 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-header a.logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .site-header img.logo-img {
      height: 80px;
      width: auto;
    }

    @media (max-width: 900px) {
      .site-header img.logo-img {
        height: 52px;
      }
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .site-nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    .site-nav a {
      text-decoration: none;
      color: var(--white);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      transition: color 0.3s;
    }

    .site-nav a:hover {
      color: var(--cream-dark);
    }

    .header-contact {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--white);
      background-color: transparent;
      border: 1px solid rgba(255, 255, 255, 0.55);
      padding: 0.6rem 1.25rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 500;
      transition: background 0.3s, color 0.3s, border-color 0.3s;
    }

    .header-contact:hover {
      background-color: var(--white);
      color: var(--slate);
      border-color: var(--white);
    }

    /* Above-fold: hero + stat strip fill exactly 100vh on desktop */
    .above-fold {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .above-fold > .hero {
      flex: 1;
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 68vh;
      margin-top: 0;
      padding: 0;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right 20%;
      display: block;
    }

    /* Cream fade — solid left, dissolves right */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        to right,
        var(--cream) 0%,
        var(--cream) 36%,
        rgba(245, 247, 248, 0.93) 48%,
        rgba(245, 247, 248, 0.45) 62%,
        transparent 78%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 56%;
      min-height: 68vh;
      padding: 10rem 3rem 4rem 10%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero .display {
      font-size: clamp(2.25rem, 3.8vw, 3.5rem);
      margin-bottom: 1rem;
    }

    .hero-main {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-journal-teaser {
      border-top: 1px solid rgba(184, 196, 201, 0.6);
      padding-top: 1.5rem;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .hero-journal-teaser:hover {
      opacity: 0.65;
    }

    .teaser-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      margin-top: 0.4rem;
    }

    .teaser-title {
      font-family: var(--font-heading);
      font-size: 1rem;
      color: var(--espresso);
      line-height: 1.4;
    }

    .teaser-arrow {
      color: var(--olive);
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .hero-journal-teaser:hover .teaser-arrow {
      transform: translateX(4px);
    }

    /* Brand Stats Strip */
    .brand-strip {
      padding: 3.5rem 10%;
    }

    .brand-stats {
      display: flex;
      align-items: center;
    }

    .stat-block {
      display: flex;
      flex-direction: column;
    }

    .stat-big {
      font-family: var(--font-display);
      font-size: 3.25rem;
      color: var(--white);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
      margin-top: 0.5rem;
    }

    .stat-divider {
      width: 1px;
      height: 3rem;
      background: rgba(255, 255, 255, 0.12);
      flex-shrink: 0;
      margin: 0 3.5rem;
    }

    .stat-story {
      flex: 1;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.75;
      margin-bottom: 0.75rem;
      max-width: 440px;
    }

    /* Sections */
    section {
      padding: 6rem 10%;
    }

    .split-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    /* Cards */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 0;
      margin-top: 3rem;
    }

    .card {
      background: var(--white);
      border: 1.5px solid var(--taupe);
      margin-bottom: -1.5px;
      margin-right: -1.5px;
      padding: 3rem 2rem;
      position: relative;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      z-index: 10;
    }

    .card::before {
      content: "";
      position: absolute;
      left: -1.5px;
      bottom: 0;
      width: 3px;
      height: 0;
      background-color: var(--olive);
      transition: height 0.4s ease;
      z-index: 2;
    }

    .card:hover::before {
      height: 100%;
      top: auto;
      bottom: 0;
    }

    .card img {
      width: 100%;
      aspect-ratio: 16/9;
      margin-bottom: 1.5rem;
    }

    .card h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--espresso);
    }

    .card .price {
      font-family: var(--font-body);
      color: var(--olive);
      font-weight: 500;
      margin-bottom: 1rem;
    }

    /* Post Feature Images */
    .post-feature-image {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
    }

    /* Services Menu Page */
    .services-header {
      background: var(--cream-dark);
      padding: 10rem 10% 4rem;
      text-align: center;
    }

    .services-menu-container {
      max-width: 900px;
      margin: 4rem auto 8rem;
      padding: 0 2rem;
    }

    .menu-section {
      margin-bottom: 5rem;
    }

    .menu-section-title {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: var(--espresso);
      border-bottom: 1px solid var(--taupe);
      padding-bottom: 1rem;
      margin-bottom: 2.5rem;
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 0.5rem;
    }

    .menu-item-name {
      font-weight: 500;
      color: var(--espresso);
      font-size: 1.15rem;
    }

    .menu-item-leader {
      flex-grow: 1;
      border-bottom: 1px dotted var(--taupe);
      margin: 0 1rem;
      position: relative;
      top: -6px;
    }

    .menu-item-price {
      font-weight: 500;
      color: var(--olive);
      font-size: 1.15rem;
    }

    .menu-item-desc {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 2rem;
      max-width: 85%;
    }

    /* Single Post Layout */
    .single-container {
      max-width: 1400px;
      margin: 7rem auto 4rem;
      padding: 0 5%;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 5rem;
      align-items: start;
    }

    .single-header {
      padding-top: 3.5rem;
      margin-bottom: 2rem;
    }

    .single-header h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .single-header h1 {
      margin-bottom: 1.5rem;
    }

    .single-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--cream-dark);
    }

    .single-meta-cat {
      background: var(--olive);
      color: var(--white);
      padding: 0.3rem 0.85rem;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      font-weight: 500;
    }

    .single-meta-dot {
      display: inline-block;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--taupe);
    }

    /* Post body typography */
    .single-body p {
      margin-bottom: 1.75rem;
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--espresso-mid);
    }

    .single-body h2,
    .single-body h3,
    .single-body h4 {
      font-family: var(--font-heading);
      color: var(--espresso);
      margin: 2.5rem 0 1rem;
      font-weight: 500;
    }

    .single-body h2 { font-size: 1.75rem; }
    .single-body h3 { font-size: 1.4rem; }
    .single-body h4 { font-size: 1.15rem; }

    .single-body strong,
    .single-body b {
      font-weight: 600;
      color: var(--espresso);
    }

    .single-body a {
      color: var(--olive);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .single-body ul,
    .single-body ol {
      margin: 0 0 1.75rem 1.5rem;
      line-height: 1.85;
    }

    .single-body li {
      margin-bottom: 0.5rem;
    }

    .single-sidebar {
      position: sticky;
      top: 9rem;
      background: var(--white);
      border: 1.5px solid var(--taupe);
      padding: 2.5rem;
    }

    .admin-bar .single-container {
      margin-top: 9rem; /* 7rem header + 2rem admin bar */
    }

    .admin-bar .single-sidebar {
      top: calc(9rem + 32px);
    }

    @media screen and (max-width: 782px) {
      .admin-bar .single-sidebar {
        top: calc(9rem + 46px);
      }
    }

    .sidebar-widget {
      margin-bottom: 2.5rem;
    }

    .sidebar-widget:last-child {
      margin-bottom: 0;
    }

    .sidebar-widget h4 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--espresso);
      margin-bottom: 1rem;
      border-bottom: 1px solid var(--cream-dark);
      padding-bottom: 0.5rem;
    }

    .sidebar-list {
      list-style: none;
      font-size: 0.95rem;
      color: var(--muted);
    }

    .sidebar-list li {
      margin-bottom: 0.8rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .sidebar-list li span:last-child {
      color: var(--espresso);
      font-weight: 500;
      text-align: right;
    }

    blockquote {
      border-left: 3px solid var(--olive);
      background: var(--cream-dark);
      padding: 2rem 3rem;
      margin: 3rem 0;
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-style: italic;
      color: var(--espresso);
    }

    /* Reveal Animation */
    .animate-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate-up.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    /* Footer */
    .site-footer {
      background: var(--black);
      color: var(--cream);
    }

    .footer-main {
      padding: 5rem 10% 3rem;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1.2fr;
      gap: 3rem;
    }

    .site-footer h4 {
      color: var(--white);
      font-family: var(--font-heading);
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }

    .site-footer p,
    .site-footer a {
      color: #aaa;
      font-size: 0.9rem;
      text-decoration: none;
      line-height: 1.75;
    }

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

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.6rem;
    }

    .footer-bottom {
      padding: 2rem 10% 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-seo {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.28);
      line-height: 1.8;
      margin-bottom: 1.25rem;
      max-width: 900px;
    }

    .footer-copy {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.3);
    }

    /* === Service Pillars === */
    .service-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1.5px solid var(--taupe);
    }

    .service-pillar {
      padding: 3rem 2.5rem;
      border-right: 1.5px solid var(--taupe);
      position: relative;
      overflow: hidden;
    }

    .service-pillar:last-child {
      border-right: none;
    }

    .pillar-num {
      font-family: var(--font-display);
      font-size: 5.5rem;
      color: var(--taupe);
      opacity: 0.45;
      position: absolute;
      top: 0.75rem;
      right: 1.5rem;
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .pillar-name {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      color: var(--espresso);
      margin: 0.5rem 0 2rem;
      font-weight: 500;
    }

    .pillar-services {
      list-style: none;
      margin-bottom: 2.5rem;
    }

    .pillar-services li {
      display: flex;
      justify-content: space-between;
      padding: 0.65rem 0;
      border-bottom: 1px solid var(--cream-dark);
      font-size: 0.9rem;
      color: var(--espresso-mid);
    }

    .pillar-services li span:last-child {
      color: var(--muted);
    }

    /* === Journal / Blog Section === */
    .journal-section {
      padding: 6rem 10%;
    }

    .journal-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
    }

    .journal-header .heading {
      margin-bottom: 0.5rem;
    }

    .journal-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 3px;
    }

    .journal-featured {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .journal-featured-img {
      position: relative;
      height: 100%;
      min-height: 520px;
    }

    .journal-featured-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
      transition: transform 0.7s ease;
    }

    .journal-featured:hover .journal-featured-img img {
      transform: scale(1.04);
    }

    .journal-featured-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 3rem 2.5rem 2.5rem;
      background: linear-gradient(to top, rgba(26, 18, 16, 0.92) 0%, rgba(26, 18, 16, 0.5) 55%, transparent 100%);
    }

    .journal-featured-caption h3 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.2vw, 2.25rem);
      color: var(--white);
      line-height: 1.2;
      margin: 0.5rem 0 0.75rem;
    }

    .journal-cat {
      display: inline-block;
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--olive);
      font-weight: 500;
    }

    .journal-timestamp {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .journal-secondary {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .journal-post {
      background: rgba(255, 255, 255, 0.04);
      overflow: hidden;
      flex: 1;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      transition: background 0.3s;
    }

    .journal-post:hover {
      background: rgba(255, 255, 255, 0.07);
    }

    .journal-post > img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .journal-post:hover > img {
      transform: scale(1.04);
    }

    .journal-post-content {
      padding: 1.75rem 2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .journal-post-content h3 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      color: var(--white);
      line-height: 1.45;
      margin: 0.4rem 0 auto;
      font-weight: 400;
    }

    .journal-post-date {
      margin-top: 1.5rem;
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .journal-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(214, 201, 188, 0.15);
    }

    .journal-tag {
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .above-fold {
        min-height: auto;
        display: block;
      }

      .hero-content {
        width: 100%;
        min-height: 68vh;
        padding: calc(9rem + env(safe-area-inset-top)) 2rem 4rem;
        background: linear-gradient(
          to bottom,
          rgba(245, 247, 248, 0.98) 0%,
          rgba(245, 247, 248, 0.97) 60%,
          rgba(245, 247, 248, 0.82) 100%
        );
      }

      .hero::after {
        display: none;
      }

      .brand-stats {
        flex-wrap: wrap;
        gap: 2rem 3rem;
      }

      .stat-divider {
        display: none;
      }

      .stat-block {
        min-width: 120px;
      }

      .stat-story {
        flex-basis: 100%;
        max-width: 100%;
      }

      .split-layout {
        grid-template-columns: 1fr;
      }

      .site-nav ul {
        display: none;
      }

      .single-container {
        grid-template-columns: 1fr;
      }

      .single-sidebar {
        position: static;
      }

      .services-header {
        padding: 8rem 5% 3rem;
      }

      .service-pillars {
        grid-template-columns: 1fr;
      }

      .service-pillar {
        border-right: none;
        border-bottom: 1.5px solid var(--taupe);
      }

      .service-pillar:last-child {
        border-bottom: none;
      }

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

      .journal-featured-img {
        min-height: 400px;
      }

      .journal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
      }
    }
    @media (max-width: 1024px) and (min-width: 769px) {
      .footer-main {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 4rem 1.5rem;
      }

      .single-container {
        margin-top: 5.5rem;
        padding: 2rem 1.25rem 0;
        gap: 2.5rem;
      }

      .single-header h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
      }

      .single-sidebar {
        padding: 2rem 1.5rem;
      }

      .sidebar-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 1.5rem 2rem;
      }

      .footer-bottom {
        padding: 1.5rem 1.5rem 2.5rem;
      }

      .hero-content {
        /* Extra top padding clears the fixed header + iOS safe area on mobile */
        padding: calc(9rem + env(safe-area-inset-top)) 1.5rem 4rem;
        min-height: 60vh;
      }

      .hero-journal-teaser {
        padding-top: 1.25rem;
      }

      .brand-strip {
        padding: 3rem 1.5rem;
      }

      /* Stats bar: two numbers side by side, story full-width below */
      .brand-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
      }

      .stat-block:last-child {
        grid-column: 1 / -1; /* story paragraph spans full width */
      }

      .stat-big {
        font-size: 2.5rem;
      }

      .display {
        font-size: clamp(2.25rem, 9vw, 3.5rem);
      }
    }

    /* ── Contact Page ─────────────────────────────────────────────────────────── */

    #contact-page {
      background: var(--cream);
    }

    /* Hero */
    .contact-hero {
      padding: calc(12rem + env(safe-area-inset-top)) 2rem 5rem;
      text-align: center;
    }

    .contact-hero-inner {
      max-width: 680px;
      margin: 0 auto;
    }

    .contact-hero .eyebrow {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-hero-title {
      color: var(--white);
      margin-bottom: 0.75rem;
    }

    .contact-hero-sub {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }

    /* Status badge */
    .contact-status {
      display: inline-flex;
      align-items: center;
      gap: 0.85rem;
      padding: 0.75rem 1.5rem;
      border-radius: 100px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
    }

    .contact-status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .contact-status--open .contact-status-dot {
      background: #6BAF72;
      box-shadow: 0 0 0 0 rgba(107, 175, 114, 0.6);
      animation: pulse-open 2s infinite;
    }

    .contact-status--appointment .contact-status-dot {
      background: #D4A843;
    }

    .contact-status--closed .contact-status-dot {
      background: var(--taupe);
    }

    @keyframes pulse-open {
      0%   { box-shadow: 0 0 0 0 rgba(107, 175, 114, 0.6); }
      70%  { box-shadow: 0 0 0 8px rgba(107, 175, 114, 0); }
      100% { box-shadow: 0 0 0 0 rgba(107, 175, 114, 0); }
    }

    .contact-status-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.1rem;
    }

    .contact-status-label {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--white);
    }

    .contact-status--open .contact-status-label {
      color: #9DD4A3;
    }

    .contact-status--appointment .contact-status-label {
      color: #E8C97A;
    }

    .contact-status-sub {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.65);
    }

    /* Cards section */
    .contact-cards-section {
      padding: 5rem 2rem 6rem;
      background: var(--cream);
    }

    .contact-cards {
      max-width: 1060px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    .contact-card {
      background: var(--white);
      border: 1px solid var(--cream-dark);
      border-radius: 4px;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(35, 43, 47, 0.06);
    }

    .contact-card-accent {
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--olive);
      border-radius: 4px 0 0 4px;
    }

    .contact-card-block {
      padding: 0 0 0 0.25rem;
    }

    .contact-card-block .eyebrow {
      display: block;
      margin-bottom: 0.5rem;
    }

    .contact-phone {
      display: block;
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      color: var(--espresso);
      text-decoration: none;
      line-height: 1.2;
      margin-bottom: 0.75rem;
      transition: color 0.2s;
    }

    .contact-phone:hover {
      color: var(--olive);
    }

    .contact-card-note {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.65;
    }

    .contact-card-divider {
      height: 1px;
      background: var(--cream-dark);
      margin: 1.75rem 0;
    }

    .contact-address {
      font-style: normal;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--espresso-mid);
      margin-bottom: 1rem;
    }

    .contact-socials {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .contact-social-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--olive);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: gap 0.2s;
    }

    .contact-social-link:hover {
      gap: 0.65rem;
    }

    .contact-social-arrow {
      font-size: 0.8rem;
      opacity: 0.7;
    }

    /* Hours card */
    .contact-card--hours .eyebrow {
      display: block;
      margin-bottom: 0.5rem;
    }

    .contact-card-heading {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      color: var(--espresso);
      margin-bottom: 1.75rem;
    }

    .contact-hours-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .contact-hours-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 0;
      border-bottom: 1px solid var(--cream-dark);
      font-size: 0.925rem;
      color: var(--espresso-mid);
    }

    .contact-hours-row:last-child {
      border-bottom: none;
    }

    .contact-hours-row--today {
      color: var(--espresso);
      font-weight: 500;
    }

    .contact-hours-today-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--olive);
      flex-shrink: 0;
      margin-right: 0.2rem;
    }

    .contact-hours-day {
      flex: 1;
    }

    .contact-hours-time {
      font-variant-numeric: tabular-nums;
    }

    .contact-hours-closed {
      color: var(--taupe);
    }

    .contact-hours-note {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.65;
      font-style: italic;
    }

    /* CTA strip */
    .contact-cta {
      padding: 4rem 2rem;
    }

    .contact-cta-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .contact-cta .eyebrow {
      color: rgba(255, 255, 255, 0.7);
      display: block;
      margin-bottom: 0.5rem;
    }

    .contact-cta-btn {
      display: inline-flex;
      align-items: center;
      padding: 1rem 2.25rem;
      background: var(--cream);
      color: var(--olive-deep);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      border-radius: 2px;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }

    .contact-cta-btn:hover {
      background: var(--white);
      transform: translateY(-1px);
    }

    /* Contact responsive */
    @media (max-width: 860px) {
      .contact-cards {
        grid-template-columns: 1fr;
      }

      .contact-cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
      }

      .contact-cta-btn {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 600px) {
      .contact-hero {
        padding: calc(10rem + env(safe-area-inset-top)) 1.5rem 3.5rem;
      }

      .contact-cards-section {
        padding: 3rem 1.25rem 4rem;
      }

      .contact-card {
        padding: 2rem 1.5rem;
      }

      .contact-cta {
        padding: 3rem 1.5rem;
      }
    }

    /* ── Journal Index Page ──────────────────────────────────────────────────── */

    #journal-index {
      background: var(--cream);
    }

    .journal-index-hero {
      padding: calc(9rem + env(safe-area-inset-top)) 2rem 5rem;
      text-align: center;
    }

    .journal-index-hero-inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .journal-index-hero .eyebrow {
      color: rgba(255, 255, 255, 0.7);
    }

    .journal-index-hero .display {
      color: var(--white);
      margin-bottom: 0.75rem;
    }

    .journal-index-hero-sub {
      color: rgba(255, 255, 255, 0.65);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .journal-index-body {
      max-width: 1300px;
      margin: 0 auto;
      padding: 5rem 5% 6rem;
    }

    /* Featured post */
    .journal-index-featured {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      text-decoration: none;
      overflow: hidden;
      border: 1px solid var(--cream-dark);
      margin-bottom: 5rem;
      background: var(--white);
    }

    .journal-index-featured-img {
      overflow: hidden;
      min-height: 480px;
    }

    .journal-index-featured-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.8s ease;
    }

    .journal-index-featured:hover .journal-index-featured-img img {
      transform: scale(1.04);
    }

    .journal-index-featured-content {
      padding: 3.5rem 3.5rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-left: 3px solid var(--olive);
    }

    .journal-index-cat {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--olive);
      margin-bottom: 1.25rem;
    }

    .journal-index-featured-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--espresso);
      line-height: 1.15;
      margin-bottom: 1.5rem;
      font-weight: normal;
    }

    .journal-index-excerpt {
      font-size: 1rem;
      color: var(--espresso-mid);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .journal-index-meta {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      margin-bottom: 1.75rem;
    }

    .journal-index-dot {
      display: inline-block;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--taupe);
      flex-shrink: 0;
    }

    .journal-index-read {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--olive);
      letter-spacing: 0.03em;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: gap 0.2s;
    }

    .journal-index-featured:hover .journal-index-read {
      gap: 0.7rem;
    }

    .journal-index-arrow {
      display: inline-block;
      transition: transform 0.2s;
    }

    /* Section divider */
    .journal-index-divider {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .journal-index-divider::before,
    .journal-index-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--cream-dark);
    }

    .journal-index-divider-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--taupe);
      white-space: nowrap;
    }

    /* Post grid */
    .journal-index-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .journal-index-card {
      text-decoration: none;
      background: var(--white);
      border: 1px solid var(--cream-dark);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.3s, transform 0.3s;
    }

    .journal-index-card:hover {
      box-shadow: 0 12px 40px rgba(35, 43, 47, 0.1);
      transform: translateY(-4px);
    }

    .journal-index-card-img {
      overflow: hidden;
      aspect-ratio: 3 / 2;
    }

    .journal-index-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .journal-index-card:hover .journal-index-card-img img {
      transform: scale(1.05);
    }

    .journal-index-card-content {
      padding: 1.75rem 1.75rem 2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      border-top: 2px solid var(--olive);
    }

    .journal-index-card-title {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: var(--espresso);
      line-height: 1.5;
      margin: 0.5rem 0 auto;
      font-weight: 400;
    }

    .journal-index-card .journal-index-meta {
      margin-top: 1.25rem;
      margin-bottom: 0;
    }

    /* Pagination */
    .journal-index-pagination {
      display: flex;
      justify-content: center;
    }

    .journal-index-pagination .nav-links {
      display: flex;
      gap: 0.4rem;
      align-items: center;
    }

    .journal-index-pagination .page-numbers {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 2.5rem;
      height: 2.5rem;
      padding: 0 0.75rem;
      font-size: 0.85rem;
      color: var(--espresso-mid);
      border: 1px solid var(--cream-dark);
      text-decoration: none;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      background: var(--white);
    }

    .journal-index-pagination .page-numbers.current,
    .journal-index-pagination .page-numbers:hover {
      background: var(--olive);
      color: var(--white);
      border-color: var(--olive);
    }

    .journal-index-empty {
      text-align: center;
      color: var(--muted);
      padding: 4rem 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .journal-index-featured {
        grid-template-columns: 1fr;
      }

      .journal-index-featured-img {
        min-height: 380px;
      }

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

    @media (max-width: 640px) {
      .journal-index-hero {
        padding: calc(8rem + env(safe-area-inset-top)) 1.5rem 3.5rem;
      }

      .journal-index-body {
        padding: 3rem 1.25rem 4rem;
      }

      .journal-index-featured-content {
        padding: 2rem 1.5rem;
      }

      .journal-index-featured-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
      }

      .journal-index-grid {
        grid-template-columns: 1fr;
      }

      .journal-index-featured {
        margin-bottom: 3rem;
      }
    }

    /* Mobile Menu Toggle button — hidden on desktop, shown via media query */
    .site-header .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1000;
    }

    .menu-toggle .bar {
      width: 30px;
      height: 2px;
      background: var(--white);
      border-radius: 1px;
      transition: all 0.3s linear;
      position: relative;
      transform-origin: 1px;
    }

    .menu-toggle.active .bar:nth-child(1) {
      transform: rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
      opacity: 0;
      transform: translateX(10px);
    }
    .menu-toggle.active .bar:nth-child(3) {
      transform: rotate(-45deg);
    }

    /* Mobile Styles for Nav */
    @media (max-width: 900px) {
      .site-header .menu-toggle {
        display: flex;
      }
      
      .site-nav {
        display: none; /* Hide default nav */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--slate);
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(255,255,255,0.1);
      }
      
      .site-header.scrolled .site-nav {
        background: rgba(112, 133, 142, 0.98);
        backdrop-filter: blur(12px);
      }

      .site-nav.open {
        display: flex;
      }

      /* Re-show nav links (ul was hidden by the 1024px rule); also lay them out vertically */
      .site-nav.open ul {
        display: flex;
      }

      .site-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        margin-bottom: 2rem;
      }

      .site-nav a.header-contact {
        width: 100%;
        text-align: center;
      }
      
      .site-nav a {
        font-size: 1.25rem;
      }
    }
