﻿  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #1B2A3B;
    --gold: #C8A96E;
    --gold-light: #dfc99a;
    --gold-pale: #f5eddf;
    --linen: #F7F3EE;
    --linen-dark: #e6dfd3;
    --white: #ffffff;
    --color-navy-dark: #0e1c29;
    --text-dark: #1B2A3B;
    --text-muted: #3d4a5c;
    --text-light: #6b7a8d;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(247,243,238,0.98);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 100px;
    border-bottom: 1px solid rgba(200,169,110,0.35);
  }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-links { display: flex; gap: 2.2rem; list-style: none; align-self: stretch; }
  .nav-links a {
    font-size: 12px; font-weight: 400; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--navy);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-size: 10.5px; font-weight: 400; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--navy); background: var(--gold);
    padding: 10px 22px; text-decoration: none; transition: background 0.2s; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--gold-light); }
  .nav-logo img { height: 106px; width: auto; display: block; }
  .footer-logo img { height: 70px; width: auto; display: block; }

  /* HERO */
  .hero {
    min-height: 100vh; background: var(--navy);
    display: flex; align-items: center;
    padding: 130px 5% 80px; position: relative; overflow: hidden;
  }
  /* Photo layer — covers right ~65% of hero */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center right;
    z-index: 0;
  }
  /* Gradient overlay: navy solid on left → transparent on right, 
     preserving the photo's own left fade for a seamless blend */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      var(--navy) 0%,
      var(--navy) 28%,
      rgba(27,42,59,0.85) 42%,
      rgba(27,42,59,0.35) 62%,
      rgba(27,42,59,0.08) 100%
    );
    z-index: 1;
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1160px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 80px; align-items: center;
    position: relative; z-index: 2;
  }
  .hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
  .eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
  .eyebrow-text {
    font-size: 10px; font-weight: 400; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--gold);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.2vw, 68px); font-weight: 300;
    color: var(--linen); line-height: 1.1; margin-bottom: 26px;
  }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero-desc {
    font-size: 21px; font-weight: 400; line-height: 1.85;
    color: rgba(247,243,238,0.88); margin-bottom: 42px; max-width: 440px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    font-family: 'Jost', sans-serif; font-size: 10.5px; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy);
    background: var(--gold); border: none; padding: 15px 30px;
    cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-ghost {
    font-family: 'Jost', sans-serif; font-size: 10.5px; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--linen);
    background: transparent; border: 1px solid rgba(247,243,238,0.25);
    padding: 15px 30px; cursor: pointer; text-decoration: none; display: inline-block;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .hero-cards { display: flex; flex-direction: column; gap: 18px; }
  .hero-card {
    background: rgba(247,243,238,0.05); border: 1px solid rgba(200,169,110,0.18);
    border-left: 3px solid var(--gold); padding: 24px 28px;
  }
  .hero-card-label {
    font-size: 9px; font-weight: 400; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 9px;
  }
  .hero-card-text {
    font-family: 'Cormorant Garamond', serif; font-size: 22px;
    font-weight: 400; font-style: italic; color: var(--linen); line-height: 1.6;
  }

  /* SHARED */
  section { padding: 96px 5%; }
  .section-inner { max-width: 1160px; margin: 0 auto; }
  .s-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
  .s-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.8vw, 50px); font-weight: 300;
    line-height: 1.18; color: var(--navy); margin-bottom: 18px;
  }
  .s-title em { font-style: italic; color: var(--gold); }
  .s-body {
    font-size: 20px; font-weight: 400; line-height: 1.9;
    color: var(--text-muted); max-width: 560px;
  }


  /* SERVICES */
  .services { background: var(--linen); }
  .services-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 56px;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .service-card {
    background: var(--white); padding: 40px 36px;
    border: 1px solid var(--linen-dark); border-top: 3px solid var(--gold);
    transition: background 0.25s, box-shadow 0.25s;
  }
  .service-card:hover {
    box-shadow: 0 4px 28px rgba(0,39,78,0.07);
  }
  .service-number {
    font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300;
    color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 20px;
    transition: opacity 0.25s;
  }
  .service-card:hover .service-number { opacity: 1; }
  .service-name {
    font-family: 'Cormorant Garamond', serif; font-size: 28px;
    font-weight: 600; line-height: 1.2; color: var(--navy); margin-bottom: 12px;
  }
  .service-desc { font-size: 18px; font-weight: 400; line-height: 1.8; color: var(--text-muted); }

  /* WHY */
  .why { background: var(--linen); }
  .why-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 52px;
  }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .why-item {
    background: var(--white); border: 1px solid var(--linen-dark);
    border-top: 3px solid var(--gold); padding: 36px 32px;
  }
  .why-item-title {
    font-family: 'Cormorant Garamond', serif; font-size: 28px;
    font-weight: 600; line-height: 1.2; color: var(--navy); margin-bottom: 12px;
  }
  .why-item-body { font-size: 18px; font-weight: 400; line-height: 1.8; color: var(--text-muted); }

  /* PROCESS */
  .process { background: var(--white); }
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    margin-top: 56px; position: relative;
  }
  .process-steps::before {
    content: ''; position: absolute; top: 27px; left: 12%; right: 12%;
    height: 1px; background: var(--gold); opacity: 0.35;
  }
  .process-step { padding: 0 18px; text-align: center; }
  .step-dot {
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--linen); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px; position: relative; z-index: 1;
  }
  .step-num {
    font-family: 'Cormorant Garamond', serif; font-size: 20px;
    font-weight: 500; color: var(--gold);
  }
  .step-title {
    font-family: 'Cormorant Garamond', serif; font-size: 24px;
    font-weight: 600; line-height: 1.2; color: var(--navy); margin-bottom: 10px;
  }
  .step-body { font-size: 18px; font-weight: 400; line-height: 1.75; color: var(--text-muted); }

  /* WHO WE SERVE */
  .families {
    background: var(--linen);
    position: relative;
    overflow: hidden;
  }
  .families-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  /* Photo panel — right half, full section height */
  .families-photo {
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
  }
  .families-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }
  /* Fade: photo bleeds left into linen background */
  .families-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      var(--linen) 0%,
      rgba(247,243,238,0.7) 20%,
      rgba(247,243,238,0) 55%
    );
    z-index: 2;
  }
  /* Subtle top/bottom fades so it doesn't look like a hard box */
  .families-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, var(--linen) 0%, transparent 8%),
      linear-gradient(to top,    var(--linen) 0%, transparent 8%);
    z-index: 3;
  }
  .families-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
  .families-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 19px; font-weight: 400; line-height: 1.7; color: var(--text-muted);
  }
  .families-list li::before {
    content: ''; width: 20px; height: 1px; background: var(--gold);
    margin-top: 11px; flex-shrink: 0;
  }
  .founder-callout {
    background: rgba(27,42,59,0.92);
    padding: 44px 40px;
    backdrop-filter: blur(4px);
  }
  .callout-label {
    font-size: 9px; font-weight: 400; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  }
  .callout-text {
    font-family: 'Cormorant Garamond', serif; font-size: 26px;
    font-weight: 300; font-style: italic; color: var(--linen);
    line-height: 1.55; margin-bottom: 24px;
  }
  .callout-sig {
    font-size: 11px; font-weight: 300; letter-spacing: 0.14em;
    color: rgba(247,243,238,0.45); text-transform: uppercase;
  }

  /* Area 2-column layout */
  .area-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .area-left { display: flex; flex-direction: column; }
  .area-single {
    max-width: 600px;
    background: var(--white);
    border: 1px solid var(--linen-dark);
    border-top: 3px solid var(--gold);
    padding: 44px 44px 40px;
  }
  .area-single .area-tag {
    font-size: 11px; font-weight: 400; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block;
  }
  .area-single .area-county {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px; font-weight: 400; color: var(--navy);
    line-height: 1.2; margin-bottom: 20px;
  }
  .area-single .area-note-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px; font-weight: 300; font-style: italic;
    color: var(--navy); line-height: 1.5; margin-bottom: 14px;
  }
  .area-single .area-note-body {
    font-size: 16px; line-height: 1.75; color: var(--text-muted); margin-bottom: 24px;
  }
  .area-single .area-note-link {
    font-size: 11px; font-weight: 400; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold); text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s ease;
  }
  .area-single .area-note-link:hover { gap: 14px; }
  /* SERVICE AREA */
  .area { background: var(--linen); }

  /* CONTACT */
  .contact { background: var(--navy); }
  .contact .s-title { color: var(--linen); }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 52px;
  }
  .contact-lead {
    font-size: 20px; font-weight: 400; line-height: 1.9;
    color: rgba(247,243,238,0.75); margin-bottom: 36px;
  }
  .contact-details { display: flex; flex-direction: column; gap: 18px; }
  .cd-item { border-top: 1px solid rgba(200,169,110,0.18); padding-top: 16px; }
  .cd-label {
    font-size: 9px; font-weight: 400; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
  }
  .cd-value { font-size: 19px; font-weight: 400; color: var(--linen); }
  .cd-tel {
    color: var(--linen); text-decoration: none; display: inline-block;
  }
  .cd-tel:hover { color: var(--gold); }
  .cd-tel:visited { color: var(--linen); }
  /* Call Now button */
  .contact-call-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 16px 24px; margin-bottom: 28px;
    background: var(--gold); color: var(--navy); border: none;
    font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; cursor: pointer; transition: background 0.2s;
  }
  .contact-call-btn:hover { background: var(--gold-light); }
  /* Anchor above form */
  /* scroll-margin matches the fixed nav height so Call Now lands just below nav */
  .form-anchor { display: block; height: 0; visibility: hidden; scroll-margin-top: 104px; }
  .cf-form { display: flex; flex-direction: column; gap: 14px; }
  .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .cf-field { display: flex; flex-direction: column; gap: 5px; }
  .cf-field label {
    font-size: 9px; font-weight: 400; letter-spacing: 0.25em;
    text-transform: uppercase; color: rgba(247,243,238,0.38);
  }
  .cf-field input, .cf-field select, .cf-field textarea {
    background: rgba(247,243,238,0.06); border: 1px solid rgba(200,169,110,0.18);
    color: var(--linen); font-family: 'Jost', sans-serif;
    font-size: 17px; font-weight: 400; padding: 13px 15px;
    outline: none; transition: border-color 0.2s; width: 100%;
  }
  .cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(247,243,238,0.2); }
  .cf-field select.select-placeholder { color: rgba(247,243,238,0.2); }
  .cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: rgba(200,169,110,0.55); }
  .cf-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
  }
  .cf-field select option { background: var(--navy); color: var(--linen); }
  .cf-field textarea { resize: vertical; min-height: 96px; }
  .cf-submit {
    font-family: 'Jost', sans-serif; font-size: 10.5px; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy);
    background: var(--gold); border: none; padding: 15px 28px;
    cursor: pointer; width: 100%; transition: background 0.2s; margin-top: 4px;
  }
  .cf-submit:hover { background: var(--gold-light); }

  /* CUSTOM CARE-TYPE DROPDOWN */
  .cf-custom-select {
    position: relative;
    width: 100%;
    outline: none;
  }
  .cf-cs-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(247,243,238,0.06);
    border: 1px solid rgba(200,169,110,0.18);
    color: var(--linen);
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 400;
    padding: 13px 15px;
    cursor: pointer;
    width: 100%;
    transition: border-color 0.2s;
    user-select: none;
    -webkit-user-select: none;
  }
  .cf-custom-select.open .cf-cs-trigger { border-color: rgba(200,169,110,0.55); }
  .cf-cs-chevron { flex-shrink: 0; transition: transform 0.2s; }
  .cf-custom-select.open .cf-cs-chevron { transform: rotate(180deg); }
  .cf-cs-display { flex: 1; }
  .cf-cs-display.placeholder { color: rgba(247,243,238,0.2); }
  .cf-cs-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--navy);
    border: 1px solid rgba(200,169,110,0.35);
    border-top: none;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
  }
  .cf-custom-select.open .cf-cs-options { display: block; }
  .cf-cs-opt {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(200,169,110,0.08);
    transition: background 0.15s;
  }
  .cf-cs-opt:last-child { border-bottom: none; }
  .cf-cs-opt:hover, .cf-cs-opt.selected { background: rgba(200,169,110,0.10); }
  .cf-cs-name {
    display: block;
    color: var(--linen);
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
  }
  .cf-cs-desc {
    display: block;
    color: rgba(247,243,238,0.42);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 3px;
  }

  /* SOCIAL ICONS */
  .social-links { display: flex; gap: 14px; align-items: center; }
  .social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(200,169,110,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
  }
  .social-link:hover { border-color: var(--gold); background: rgba(200,169,110,0.1); }
  .social-link svg { width: 16px; height: 16px; fill: rgba(247,243,238,0.5); transition: fill 0.2s; }
  .social-link:hover svg { fill: var(--gold); }

  /* FOOTER */
  footer {
    background: var(--color-navy-dark); padding: 36px 5%;
    border-top: 1px solid rgba(200,169,110,0.12);
  }
  .footer-inner {
    max-width: 1160px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif; font-size: 17px;
    font-weight: 400; color: var(--gold); letter-spacing: 0.06em;
  }
  .footer-copy { font-size: 15px; font-weight: 300; color: rgba(247,243,238,0.3); }
  .footer-links { display: flex; gap: 24px; list-style: none; }
  .footer-links a {
    font-size: 10.5px; font-weight: 300; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(247,243,238,0.35); text-decoration: none; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeUp 0.65s ease both; }
  .hero h1      { animation: fadeUp 0.65s 0.14s ease both; }
  .hero-desc    { animation: fadeUp 0.65s 0.26s ease both; }
  .hero-actions { animation: fadeUp 0.65s 0.38s ease both; }
  .hero-cards   { animation: fadeUp 0.75s 0.48s ease both; }

  /* ── HAMBURGER ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile drawer */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0; right: 0;
    background: var(--linen);
    border-bottom: 2px solid var(--gold);
    z-index: 99;
    padding: 24px 5% 32px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 32px rgba(27,42,59,0.12);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--linen-dark);
    transition: color 0.2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .mobile-cta {
    margin-top: 20px;
    background: var(--gold);
    color: var(--navy);
    text-align: center;
    padding: 15px 20px;
    border-bottom: none;
    font-weight: 500;
  }
  .mobile-menu .mobile-phone {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--navy);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--linen-dark);
  }

  /* NAV UTILITIES */
  .nav-right { display: flex; align-items: center; gap: 20px; }
  .nav-phone {
    font-size: 13px; font-weight: 400; letter-spacing: 0.06em;
    color: var(--navy); text-decoration: none; white-space: nowrap; transition: color 0.2s;
  }
  .nav-phone:hover { color: var(--gold); }
  .footer-end { display: flex; align-items: center; gap: 24px; }

  /* PAGE WRAPPER — offsets fixed nav; matches nav height per breakpoint */
  .page-wrap { padding-top: 100px; }

  /* ── NAV BREAKPOINT (hamburger at ≤1000px) ── */
  @media (max-width: 1000px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-phone { display: none; }
    .hamburger { display: flex; }
  }

  /* ── TABLET (max 920px) ── */
  @media (max-width: 920px) {
    .hero-inner, .services-header, .why-header,
    .families-inner, .contact-inner {
      grid-template-columns: 1fr; gap: 40px;
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-steps::before { display: none; }
    .cf-row { grid-template-columns: 1fr; }
    .area-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { flex-direction: column; gap: 18px; text-align: center; }
    nav { padding: 0 6%; }
  }

  /* ── MOBILE (max 600px) ── */
  @media (max-width: 600px) {

    /* Nav */
    nav {
      padding: 0 5%;
      height: 80px;
      justify-content: space-between;
    }
    nav img[alt="Lumara Home Care"] { height: 82px !important; }
    .mobile-menu { top: 80px; }

    /* Hero */
    .hero {
      padding: 110px 5% 60px;
      min-height: auto;
    }
    .hero::before { background-position: 68% center; }
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .hero-desc {
      font-size: 19px;
      margin-bottom: 28px;
    }
    .hero-actions {
      flex-direction: column;
      gap: 12px;
    }
    .btn-primary, .btn-ghost {
      text-align: center;
      width: 100%;
      padding: 16px 20px;
    }
    .hero-cards { gap: 14px; }
    .hero-card { padding: 20px 22px; }
    .hero-card-text { font-size: 20px; }

    /* Sections */
    section { padding: 64px 5%; }
    .page-wrap { padding-top: 80px; }
    .services { padding-bottom: 36px; }

    /* Section titles */
    .s-title { font-size: 30px; margin-bottom: 14px; }
    .hero h1 { font-size: 36px; margin-bottom: 18px; }

    /* Services */
    .services-header {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 36px;
    }
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-card { padding: 28px 24px; }
    .service-number { font-size: 36px; margin-bottom: 12px; }
    .service-name { font-size: 23px; }

    /* Why */
    .why-header {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 32px;
    }
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-item { padding: 24px 22px; }
    .why-item-title { font-size: 22px; }

    /* Process */
    .process-steps {
      grid-template-columns: 1fr;
      gap: 32px;
      margin-top: 36px;
    }
    .process-step { padding: 0; }
    .step-title { font-size: 20px; }

    /* Families — photo runs edge-to-edge */
    .families {
      overflow: visible;
      padding-top: 0;
    }
    .families-photo {
      position: relative;
      width: 100vw;
      height: 340px;
      margin-left: -5vw;
      overflow: hidden;
    }
    .families-photo::before { background: none; }
    .families-photo::after {
      display: block;
      background:
        linear-gradient(to bottom, var(--linen) 0%, transparent 12%),
        linear-gradient(to top,    var(--linen) 0%, transparent 28%);
      z-index: 3;
    }
    .families-photo img { object-position: 62% 20%; }
    .families .section-inner { padding-top: 28px; }
    .families-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .founder-callout { padding: 32px 28px; }
    .callout-text { font-size: 20px; }
    .families-list li { font-size: 18px; }


    /* Area */
    .area-layout { gap: 20px; }

    .area-single .area-county { font-size: 26px; }
    .area-single .area-note-title { font-size: 18px; }

    /* Anchor — mobile nav is 80px */
    .form-anchor { scroll-margin-top: 84px; }

    /* Contact */
    .contact-inner { gap: 36px; }
    .contact-lead { font-size: 19px; margin-bottom: 24px; }
    .cd-value { font-size: 19px; }

    /* Footer */
    .footer-inner {
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
    }
    .footer-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }
    .social-links { justify-content: center; }
    footer { padding: 32px 5%; }

}



/* ── CAREERS PAGE ───────────────────────────────────────────────────── */
.careers-page { background: var(--linen); }
.cta-content { position: relative; z-index: 1; }
.benefits-header .s-body,
.opp-header .s-body { margin: 12px 0 0; }

/* Hero */
.careers-hero {
  background: var(--navy, #1B2A3B);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: stretch;
}
.careers-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  gap: 0;
}
.careers-hero-text {
  flex: 0 0 52%;
  max-width: 52%;
  text-align: left;
  padding: 100px 48px 80px max(24px, calc((100vw - 1100px) / 2));
  position: relative;
  z-index: 2;
}
.careers-hero-photo {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  align-self: stretch;
  pointer-events: none;
}
.careers-hero-photo img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 12%, rgba(0,0,0,0.65) 26%, #000 44%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 12%, rgba(0,0,0,0.65) 26%, #000 44%);
}
.careers-hero .s-eyebrow { justify-content: flex-start; margin-bottom: 20px; }
.careers-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--linen, #F7F3EE);
  line-height: 1.1;
  margin: 0 0 20px;
}
.careers-hero-title em {
  font-style: italic;
  color: var(--gold, #C8A96E);
}
.careers-hero-sub {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(247,243,238,0.75);
  max-width: 460px;
  margin: 0 0 36px;
  line-height: 1.85;
}
@media (max-width: 768px) {
  /* Mirrors home hero structure exactly */
  .careers-hero {
    min-height: 520px;
    flex-direction: column;
    padding: 110px 5% 60px;
  }
  /* Photo as CSS background on ::before — same approach as home hero */
  .careers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('caregiver-portrait.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 0;
  }
  /* Gradient overlay identical to home hero ::after */
  .careers-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      var(--navy, #1B2A3B) 0%,
      var(--navy, #1B2A3B) 28%,
      rgba(27,42,59,0.85) 42%,
      rgba(27,42,59,0.35) 62%,
      rgba(27,42,59,0.08) 100%
    );
    z-index: 1;
    pointer-events: none;
  }
  /* Inner content at z-index: 2, same as .hero-inner on home page */
  .careers-hero-inner {
    position: relative;
    z-index: 2;
    flex-direction: column;
    width: 100%;
  }
  /* Text takes full width; padding is now on .careers-hero */
  .careers-hero-text {
    flex: unset; max-width: 100%; width: 100%;
    padding: 0;
  }
  /* Hide the <img> div — photo is now via ::before */
  .careers-hero-photo { display: none; }
  .careers-hero-sub { max-width: 100%; }
}
.btn-apply-hero {
  display: inline-block;
  background: var(--gold, #C8A96E);
  color: var(--navy, #1B2A3B);
  font-family: 'Jost', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-apply-hero:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Benefits */
.careers-benefits {
  background: var(--linen, #F7F3EE);
  padding: 80px 5%;
}
.careers-benefits .section-inner { max-width: 1100px; margin: 0 auto; }
.benefits-header {
  text-align: left;
  margin-bottom: 56px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-top: 3px solid var(--gold);
  padding: 40px 36px;
  transition: background 0.25s, box-shadow 0.25s;
}
.benefit-card:hover {
  box-shadow: 0 4px 28px rgba(0,39,78,0.07);
}
.benefit-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--gold, #C8A96E);
}
.benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px;
}
.benefit-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Mid-page CTA band */
.careers-cta-band {
  background: var(--navy, #1B2A3B);
  padding: 56px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.careers-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(200,169,110,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-label {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #C8A96E);
  margin-bottom: 14px;
}
.cta-band-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  color: var(--linen, #F7F3EE);
  margin: 0 0 28px;
  line-height: 1.18;
}
.cta-band-title em { font-style: italic; color: var(--gold, #C8A96E); }

/* Opportunities */
.careers-opportunities {
  background: var(--linen, #F7F3EE);
  padding: 80px 5%;
}
.careers-opportunities .section-inner { max-width: 1100px; margin: 0 auto; }
.opp-header {
  text-align: left;
  margin-bottom: 52px;
}
.opp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.opp-card {
  background: var(--white);
  border: 1px solid rgba(27,42,59,0.10);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.opp-card:hover {
  box-shadow: 0 8px 28px rgba(27,42,59,0.10);
}
.opp-badge {
  display: inline-block;
  font-family: 'Jost', Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #C8A96E);
  background: rgba(200,169,110,0.10);
  padding: 4px 10px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.opp-role {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy, #1B2A3B);
  margin-bottom: 12px;
  line-height: 1.2;
}
.opp-desc {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted, #3d4a5c);
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
}
.opp-details {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.opp-details li {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--navy, #1B2A3B);
  padding: 6px 0;
  border-bottom: 1px solid rgba(27,42,59,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.opp-details li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold, #C8A96E);
  flex-shrink: 0;
}
.btn-apply-card {
  display: block;
  text-align: center;
  background: var(--navy, #1B2A3B);
  color: #fff;
  font-family: 'Jost', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  transition: background 0.2s, transform 0.15s;
}
.btn-apply-card:hover {
  background: var(--gold, #C8A96E);
  color: var(--navy, #1B2A3B);
  transform: translateY(-1px);
}

/* Footer CTA */
.careers-footer-cta {
  background: var(--navy, #1B2A3B);
  padding: 72px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.careers-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(200,169,110,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.footer-cta-rule {
  width: 40px;
  height: 1px;
  background: var(--gold, #C8A96E);
  margin: 0 auto 24px;
}
.footer-cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  color: var(--linen, #F7F3EE);
  line-height: 1.18;
  margin: 0 0 16px;
}
.footer-cta-title em { font-style: italic; color: var(--gold, #C8A96E); }
.footer-cta-sub {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(247,243,238,0.75);
  margin: 0 auto 36px;
  max-width: 460px;
}

/* Ghost variant for footer CTA "Contact Us" button */
.btn-apply-ghost {
  background: transparent;
  color: var(--gold, #C8A96E);
  border: 1px solid var(--gold, #C8A96E);
}
.btn-apply-ghost:hover {
  background: rgba(200,169,110,0.12);
  transform: translateY(-1px);
}

/* Footer CTA button row */
.footer-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .opp-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  /* Hero Apply Now only: full-width, no lift on touch */
  .careers-hero .btn-apply-hero {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    transform: none !important;
  }
  .careers-hero .btn-apply-hero:hover { transform: none !important; }
}

@media (max-width: 420px) {
  .footer-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-cta-actions .btn-apply-hero {
    width: 100%;
    max-width: 300px;
    text-align: center;
    box-sizing: border-box;
  }
}


/* ── SERVICE DETAIL PAGES ─────────────────────────────────────────────── */
.sp-hero {
  background: var(--navy);
  padding: 140px 5% 80px;
}
.sp-hero-inner { max-width: 1160px; margin: 0 auto; }
.sp-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--linen);
  line-height: 1.08;
  margin-bottom: 32px;
}
.sp-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 0;
  line-height: 1.6;
  max-width: 640px;
}
.sp-section { background: var(--white); }
.sp-section-alt { background: var(--linen); }
.sp-section h2, .sp-section-alt h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.sp-body {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 720px;
}
.sp-body + .sp-body { margin-top: 20px; }
.sp-list {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}
.sp-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 19px; font-weight: 400; line-height: 1.7; color: var(--text-muted);
}
.sp-list li::before {
  content: ''; width: 20px; height: 1px; background: var(--gold);
  margin-top: 13px; flex-shrink: 0;
}
.sp-cta { background: var(--navy); }
.sp-cta-body {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(247,243,238,0.78);
  max-width: 640px;
}
.sp-cta-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.4);
  transition: border-color 0.2s;
}
.sp-cta-link:hover { border-color: var(--gold); }
.sp-call-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px;
  padding: 15px 32px;
  background: var(--gold); color: var(--navy);
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.sp-call-btn:hover { background: var(--gold-light); }
@media (max-width: 600px) {
  .sp-hero { padding: 110px 5% 56px; }
  .sp-hero h1 { font-size: 36px; margin-bottom: 24px; }
  .sp-pull { font-size: 19px; padding-left: 18px; }
}


/* ── SERVICES NAV DROPDOWN (desktop) ── */

/* All nav li items must flex-center vertically now that nav-links stretches full height */
.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-has-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--navy);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 101;
}

.nav-has-dropdown:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.nav-dropdown-menu li a:hover { color: var(--gold); }

.nav-dropdown-all {
  border-bottom: 1px solid rgba(200,169,110,0.3);
  padding-bottom: 4px;
  margin-bottom: 4px;
}

/* ── MOBILE SERVICES SUBMENU ── */
.mobile-services-wrap {
  border-bottom: 1px solid var(--linen-dark);
}

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}

.mobile-services-toggle:hover { color: var(--gold); }

.mobile-services-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  transition: transform 0.25s ease;
}

.mobile-services-toggle[aria-expanded="true"] .mobile-services-chevron {
  transform: rotate(180deg);
}

.mobile-services-submenu {
  display: none;
  flex-direction: column;
}

.mobile-services-submenu.open { display: flex; }

.mobile-menu .mobile-sub-link {
  font-size: 12px;
  padding: 13px 0 13px 16px;
  border-bottom: 1px solid rgba(230,223,211,0.7);
}

.mobile-menu .mobile-sub-link:last-child {
  border-bottom: none;
  padding-bottom: 16px;
}


/* ── CITY LANDING PAGES ─────────────────────────────────────────────── */

/* Hero */
.city-hero {
  background: var(--navy);
  padding: 150px 5% 100px;
  position: relative;
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 55%, rgba(200,169,110,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.city-hero .section-inner {
  position: relative;
  z-index: 1;
}
.city-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 300;
  color: var(--linen);
  line-height: 1.06;
  margin-bottom: 36px;
}

/* Callout block */
.city-callout {
  background: var(--linen);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  margin-top: 36px;
  max-width: 680px;
}
.city-callout p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--navy);
  margin: 0;
}

/* Service cards grid */
.city-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-top: 3px solid var(--gold);
  padding: 36px 30px;
  transition: box-shadow 0.25s;
}
.city-card:hover {
  box-shadow: 0 4px 28px rgba(0,39,78,0.08);
}
.city-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}
.city-card-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
}

/* CTA band */
.city-cta-band {
  background: var(--navy);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.city-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 25%, rgba(200,169,110,0.09) 0%, transparent 60%);
  pointer-events: none;
}
.city-cta-band .section-inner {
  position: relative;
  z-index: 1;
}
.city-cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  color: var(--linen);
  line-height: 1.18;
  margin-bottom: 20px;
}
.city-cta-body {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(247,243,238,0.75);
  max-width: 580px;
  margin: 0 auto 36px;
}
.city-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.city-cta-btn:hover { background: var(--gold-light); }
.city-cta-phone {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(247,243,238,0.45);
}
.city-cta-phone a {
  color: rgba(247,243,238,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.city-cta-phone a:hover { color: var(--gold); }

@media (max-width: 920px) {
  .city-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .city-hero { padding: 110px 5% 64px; }
  .city-hero h1 { font-size: 38px; margin-bottom: 28px; }
  .city-callout { padding: 22px 20px; margin-top: 28px; }
  .city-cards { grid-template-columns: 1fr; gap: 14px; }
  .city-cta-band { padding: 64px 5%; }
}


/* ── ABOUT PAGE ─────────────────────────────────────────────────────── */
.about-hero {
  background: var(--navy);
  padding: 96px 5%;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(200,169,110,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.about-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-hero h1 {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.45);
  margin-bottom: 32px;
}
.about-hero-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 44px;
}
.about-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--linen);
  line-height: 1.62;
}
.about-story {
  background: var(--linen);
  padding: 96px 5%;
}
.about-story-inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-story p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.about-story p:last-child { margin-bottom: 0; }
.about-closing {
  background: var(--white);
  padding: 96px 5%;
}
.about-closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-closing p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.about-closing a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-closing a:hover { color: var(--gold); }
.about-sig {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--linen-dark);
}
.about-sig-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 5px;
}
.about-sig-co {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
@media (max-width: 600px) {
  .about-hero { padding: 64px 5% 72px; }
  .about-story, .about-closing { padding: 64px 5%; }
  .about-story p, .about-closing p { font-size: 19px; }
  .about-sig-name { font-size: 24px; }
}


/* ── FAQ PAGE ───────────────────────────────────────────────────────── */
.faq-page-header {
  background: var(--navy);
  padding: 96px 5%;
  position: relative;
  overflow: hidden;
}
.faq-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(200,169,110,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.faq-page-header-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq-page-header .s-title {
  color: var(--linen);
  margin-bottom: 16px;
}
.faq-page-header .s-title em { color: var(--gold); }
.faq-page-header .s-body {
  color: rgba(247,243,238,0.75);
  max-width: 520px;
}
.faq-list-section {
  background: var(--white);
  padding: 80px 5%;
}
.faq-list-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--linen-dark);
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-question {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 18px;
}
.faq-answer p {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer a:hover { color: var(--gold); }
@media (max-width: 600px) {
  .faq-page-header { padding: 64px 5%; }
  .faq-list-section { padding: 56px 5%; }
  .faq-item { padding: 32px 0; }
  .faq-question { font-size: 22px; }
  .faq-answer p { font-size: 18px; }
}
