/* =============================================
       CSS CUSTOM PROPERTIES
    ============================================= */
    :root {
      --color-espresso:    #2C1A0E;
      --color-warm-roast:  #5C3317;
      --color-cream-foam:  #F5ECD7;
      --color-oat-latte:   #E0C99A;
      --color-copper:      #C0622F;
      --color-ember:       #A04D22;
      --color-off-white:   #FAF7F2;
      --color-parchment:   #F0EAE0;
      --color-border:      #D4C9B8;
      --color-charcoal:    #1E1E1E;
      --color-ash:         #5A5450;
      --color-dust:        #9C948C;
      --color-night-roast: #0D0907;

      --font-heading: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
      --font-body:    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      --font-mono:    ui-monospace, "SF Mono", "Cascadia Mono", "Segoe UI Mono", Consolas, monospace;

      --space-1:  4px;
      --space-2:  8px;
      --space-3:  12px;
      --space-4:  16px;
      --space-5:  24px;
      --space-6:  32px;
      --space-7:  48px;
      --space-8:  64px;
      --space-9:  96px;
      --space-10: 128px;

      --max-width:       1200px;
      --section-pad-v:   64px;
      --section-pad-h:   20px;
      --radius-btn:      6px;
      --col-gap-mobile:  16px;
      --col-gap-desktop: 24px;
    }

    /* =============================================
       RESET & BASE
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.65;
      color: var(--color-charcoal);
      background-color: var(--color-off-white);
    }

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

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

    ul, ol { list-style: none; }

    h1, h2, h3, h4 {
      font-family: var(--font-heading);
      color: var(--color-espresso);
      letter-spacing: -0.02em;
    }

    h2 { font-size: 2rem;     line-height: 1.2; font-weight: 600; }
    h3 { font-size: 1.5rem;   line-height: 1.3; font-weight: 600; }
    h4 { font-size: 1.125rem; line-height: 1.4; font-weight: 600; }

    p { max-width: 68ch; }

    /* =============================================
       FOCUS VISIBLE
    ============================================= */
    :focus-visible {
      outline: 3px solid var(--color-copper);
      outline-offset: 3px;
      border-radius: 2px;
    }

    /* =============================================
       SKIP LINK
    ============================================= */
    .skip-link {
      position: absolute;
      top: -100%;
      left: var(--space-5);
      background: var(--color-copper);
      color: var(--color-off-white);
      padding: var(--space-2) var(--space-5);
      border-radius: var(--radius-btn);
      font-weight: 600;
      z-index: 9999;
      transition: top 200ms ease;
    }
    .skip-link:focus { top: var(--space-2); }

    /* =============================================
       CONTAINER
    ============================================= */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding-left: var(--section-pad-h);
      padding-right: var(--section-pad-h);
    }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: var(--radius-btn);
      border: 2px solid transparent;
      cursor: pointer;
      transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 100ms ease;
      line-height: 1;
      text-align: center;
    }
    .btn--primary {
      background: var(--color-copper);
      color: var(--color-off-white);
      border-color: var(--color-copper);
    }
    .btn--primary:hover {
      background: var(--color-ember);
      border-color: var(--color-ember);
      transform: translateY(-1px);
    }
    .btn--secondary {
      background: transparent;
      color: var(--color-espresso);
      border-color: var(--color-espresso);
    }
    .btn--secondary:hover {
      background: var(--color-espresso);
      color: var(--color-off-white);
    }
    .btn--ghost-light {
      background: transparent;
      color: var(--color-off-white);
      border-color: var(--color-off-white);
    }
    .btn--ghost-light:hover {
      background: var(--color-off-white);
      color: var(--color-espresso);
    }

    .link--tertiary {
      color: var(--color-copper);
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: transparent;
      transition: text-decoration-color 200ms ease;
    }
    .link--tertiary:hover { text-decoration-color: var(--color-copper); }

    /* =============================================
       LABEL / TAG
    ============================================= */
    .label {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-copper);
    }

    /* =============================================
       NAVIGATION
    ============================================= */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: transparent;
      transition: background 300ms ease, box-shadow 300ms ease;
    }
    .nav--scrolled {
      background: var(--color-espresso);
      box-shadow: 0 2px 16px rgba(13,9,7,0.3);
    }
    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--space-4) var(--section-pad-h);
      max-width: var(--max-width);
      margin: 0 auto;
    }
    .nav__logo {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-off-white);
      letter-spacing: -0.02em;
    }
    .nav__links {
      display: none;
      gap: var(--space-6);
    }
    .nav__links a {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-cream-foam);
      letter-spacing: 0.04em;
      transition: color 200ms ease;
    }
    .nav__links a:hover { color: var(--color-oat-latte); }
    .nav__cta { display: none; }

    /* Mobile menu toggle */
    .nav__toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: var(--space-2);
      width: 40px;
      height: 40px;
    }
    .nav__toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-off-white);
      border-radius: 2px;
      transition: transform 200ms ease, opacity 200ms ease;
    }
    .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav drawer */
    .nav__mobile {
      display: none;
      flex-direction: column;
      gap: var(--space-4);
      padding: var(--space-5) var(--section-pad-h) var(--space-6);
      background: var(--color-espresso);
    }
    .nav__mobile.is-open { display: flex; }
    .nav__mobile a {
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-cream-foam);
      letter-spacing: 0.04em;
      transition: color 200ms ease;
    }
    .nav__mobile a:hover { color: var(--color-oat-latte); }

    @media (min-width: 768px) {
      .nav__links { display: flex; }
      .nav__cta   { display: inline-block; }
      .nav__toggle { display: none; }
      .nav__mobile { display: none !important; }
    }

    /* =============================================
       HERO
    ============================================= */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background-color: var(--color-espresso);
      overflow: hidden;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: rgba(13, 9, 7, 0.55);
    }
    .hero__content {
      position: relative;
      z-index: 1;
      padding: var(--section-pad-v) var(--section-pad-h);
      max-width: var(--max-width);
      margin: 0 auto;
      width: 100%;
    }
    .hero__eyebrow { margin-bottom: var(--space-4); color: var(--color-oat-latte); }
    .hero__headline {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 6vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--color-off-white);
      max-width: 16ch;
      margin-bottom: var(--space-5);
    }
    .hero__subheading {
      font-size: 1.125rem;
      line-height: 1.7;
      color: var(--color-cream-foam);
      max-width: 52ch;
      margin-bottom: var(--space-7);
    }
    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-4);
      align-items: center;
    }
    .hero__scroll {
      position: absolute;
      bottom: var(--space-6);
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      color: var(--color-cream-foam);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-2);
      opacity: 0.7;
    }
    .hero__scroll-arrow {
      width: 20px;
      height: 20px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      animation: bounce 1.6s ease infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: rotate(45deg) translateY(0); }
      50%       { transform: rotate(45deg) translateY(5px); }
    }

    /* =============================================
       TRUST STRIP
    ============================================= */
    .trust-strip {
      background: var(--color-espresso);
      padding: var(--space-5) var(--section-pad-h);
    }
    .trust-strip__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-4) var(--col-gap-mobile);
    }
    .trust-strip__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: var(--space-1);
    }
    .trust-strip__value {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-oat-latte);
    }
    .trust-strip__label {
      font-size: 0.75rem;
      color: var(--color-dust);
    }
    @media (min-width: 480px) {
      .trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
    }

    /* =============================================
       ABOUT
    ============================================= */
    #about {
      background: var(--color-off-white);
      padding: var(--section-pad-v) var(--section-pad-h);
    }
    .about__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      gap: var(--space-8);
    }
    @media (min-width: 1024px) {
      .about__inner { grid-template-columns: 2fr 1fr; align-items: start; }
    }
    .about__eyebrow  { margin-bottom: var(--space-3); }
    .about__heading  { margin-bottom: var(--space-5); }
    .about__body {
      font-size: 1rem;
      line-height: 1.65;
      color: var(--color-charcoal);
      margin-bottom: var(--space-5);
    }
    .about__pullquote {
      font-family: var(--font-heading);
      font-size: 1.375rem;
      line-height: 1.45;
      color: var(--color-warm-roast);
      border-left: 3px solid var(--color-copper);
      padding-left: var(--space-5);
      margin: var(--space-6) 0;
      font-style: italic;
    }
    .about__image {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 4px;
    }

    /* =============================================
       SERVICES
    ============================================= */
    #services {
      background: var(--color-parchment);
      padding: var(--section-pad-v) var(--section-pad-h);
    }
    .services__header {
      max-width: var(--max-width);
      margin: 0 auto var(--space-8);
    }
    .services__eyebrow { margin-bottom: var(--space-3); }
    .services__heading { margin-bottom: var(--space-4); }
    .services__intro {
      font-size: 1.125rem;
      color: var(--color-ash);
      max-width: 56ch;
    }
    .services__grid {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-5);
    }
    @media (min-width: 480px) {
      .services__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (min-width: 1024px) {
      .services__grid { grid-template-columns: repeat(3, 1fr); }
    }
    .services__card {
      background: var(--color-off-white);
      border: 1px solid var(--color-border);
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .services__card-image {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .services__card-body {
      padding: var(--space-5);
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }
    .services__card-title { font-size: 1.25rem; }
    .services__card-desc {
      font-size: 0.9375rem;
      color: var(--color-ash);
      line-height: 1.6;
      flex: 1;
    }
    .services__card-price {
      font-family: var(--font-mono);
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-copper);
    }
    .services__footer {
      max-width: var(--max-width);
      margin: var(--space-7) auto 0;
      text-align: center;
    }

    /* =============================================
       HOURS
    ============================================= */
    #hours {
      background: var(--color-cream-foam);
      padding: var(--section-pad-v) var(--section-pad-h);
    }
    .hours__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      gap: var(--space-8);
    }
    @media (min-width: 768px) {
      .hours__inner { grid-template-columns: 1fr 1fr; align-items: start; }
    }
    .hours__eyebrow { margin-bottom: var(--space-3); }
    .hours__heading { margin-bottom: var(--space-5); }
    .hours__table {
      width: 100%;
      border-collapse: collapse;
      font-size: 1rem;
    }
    .hours__table tr { border-bottom: 1px solid var(--color-border); }
    .hours__table tr:last-child { border-bottom: none; }
    .hours__table td { padding: var(--space-3) 0; color: var(--color-charcoal); }
    .hours__table td:last-child { text-align: right; color: var(--color-ash); }
    .hours__table td:first-child { font-weight: 600; }
    .hours__note {
      font-size: 0.875rem;
      color: var(--color-dust);
      margin-top: var(--space-4);
      font-style: italic;
    }
    .hours__aside {
      background: var(--color-espresso);
      border-radius: 8px;
      padding: var(--space-6);
      color: var(--color-cream-foam);
    }
    .hours__aside-heading {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-oat-latte);
      margin-bottom: var(--space-4);
    }
    .hours__aside p {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: var(--color-cream-foam);
      margin-bottom: var(--space-3);
    }

    /* =============================================
       FAQ
    ============================================= */
    #faq {
      background: var(--color-off-white);
      padding: var(--section-pad-v) var(--section-pad-h);
    }
    .faq__inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq__eyebrow { margin-bottom: var(--space-3); }
    .faq__heading { margin-bottom: var(--space-7); }
    .faq__item {
      border-bottom: 1px solid var(--color-border);
    }
    .faq__item:first-of-type { border-top: 1px solid var(--color-border); }
    .faq__question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      padding: var(--space-5) 0;
      font-family: var(--font-heading);
      font-size: 1.0625rem;
      font-weight: 600;
      color: var(--color-espresso);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--space-4);
      line-height: 1.4;
    }
    .faq__question:hover { color: var(--color-copper); }
    .faq__icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      position: relative;
    }
    .faq__icon::before,
    .faq__icon::after {
      content: "";
      position: absolute;
      background: currentColor;
      border-radius: 2px;
      transition: transform 200ms ease, opacity 200ms ease;
    }
    .faq__icon::before { width: 2px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }
    .faq__icon::after  { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
    .faq__question[aria-expanded="true"] .faq__icon::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }
    .faq__answer {
      display: none;
      padding-bottom: var(--space-5);
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--color-ash);
    }
    .faq__answer.is-open { display: block; }

    /* =============================================
       CONTACT
    ============================================= */
    #contact {
      background: var(--color-parchment);
      padding: var(--section-pad-v) var(--section-pad-h);
    }
    .contact__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      gap: var(--space-8);
    }
    @media (min-width: 768px) {
      .contact__inner { grid-template-columns: 1fr 2fr; align-items: start; }
    }
    .contact__eyebrow { margin-bottom: var(--space-3); }
    .contact__heading { margin-bottom: var(--space-5); }
    .contact__info-block {
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
    }
    .contact__info-label {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-dust);
      margin-bottom: var(--space-1);
    }
    .contact__info-value {
      font-size: 1rem;
      color: var(--color-charcoal);
    }
    .contact__info-value a {
      color: var(--color-copper);
      text-decoration: underline;
      text-decoration-color: transparent;
      transition: text-decoration-color 200ms ease;
    }
    .contact__info-value a:hover { text-decoration-color: var(--color-copper); }
    .contact__form {
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
    }
    .contact__form-row {
      display: grid;
      gap: var(--space-4);
    }
    @media (min-width: 480px) {
      .contact__form-row { grid-template-columns: 1fr 1fr; }
    }
    .contact__field {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }
    .contact__label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-espresso);
    }
    .contact__input,
    .contact__textarea,
    .contact__select {
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--color-charcoal);
      background: var(--color-off-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-btn);
      padding: 12px var(--space-4);
      transition: border-color 200ms ease;
      width: 100%;
    }
    .contact__input:focus,
    .contact__textarea:focus,
    .contact__select:focus {
      outline: none;
      border-color: var(--color-copper);
      box-shadow: 0 0 0 3px rgba(192, 98, 47, 0.2);
    }
    .contact__textarea {
      resize: vertical;
      min-height: 140px;
    }

    /* =============================================
       NEWSLETTER
    ============================================= */
    #newsletter {
      background: var(--color-espresso);
      padding: var(--section-pad-v) var(--section-pad-h);
      text-align: center;
    }
    .newsletter__inner {
      max-width: 560px;
      margin: 0 auto;
    }
    .newsletter__eyebrow {
      margin-bottom: var(--space-3);
      color: var(--color-oat-latte);
    }
    .newsletter__heading {
      font-family: var(--font-heading);
      font-size: clamp(1.75rem, 4vw, 2.25rem);
      font-weight: 700;
      color: var(--color-off-white);
      margin-bottom: var(--space-4);
    }
    .newsletter__copy {
      font-size: 1rem;
      color: var(--color-cream-foam);
      margin: 0 auto var(--space-6);
    }
    .newsletter__form {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-3);
      justify-content: center;
    }
    .newsletter__input {
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--color-charcoal);
      background: var(--color-off-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-btn);
      padding: 14px var(--space-5);
      flex: 1 1 240px;
      min-width: 0;
    }
    .newsletter__input:focus {
      outline: none;
      border-color: var(--color-oat-latte);
      box-shadow: 0 0 0 3px rgba(224, 201, 154, 0.3);
    }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: var(--color-night-roast);
      padding: var(--space-9) var(--section-pad-h) var(--space-6);
    }
    .footer__inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }
    .footer__top {
      display: grid;
      gap: var(--space-8);
      margin-bottom: var(--space-8);
    }
    @media (min-width: 768px) {
      .footer__top { grid-template-columns: 2fr 1fr 1fr; }
    }
    .footer__brand-name {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-off-white);
      margin-bottom: var(--space-3);
    }
    .footer__tagline {
      font-size: 0.875rem;
      color: var(--color-dust);
      max-width: 36ch;
      line-height: 1.6;
    }
    .footer__nav-heading {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-dust);
      margin-bottom: var(--space-4);
    }
    .footer__nav-list {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }
    .footer__nav-list a {
      font-size: 0.875rem;
      color: var(--color-border);
      transition: color 200ms ease;
    }
    .footer__nav-list a:hover { color: var(--color-oat-latte); }
    .footer__bottom {
      border-top: 1px solid rgba(212, 201, 184, 0.15);
      padding-top: var(--space-5);
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-4);
      justify-content: space-between;
      align-items: center;
    }
    .footer__copy {
      font-size: 0.8125rem;
      color: var(--color-dust);
    }

    /* =============================================
       RESPONSIVE — section padding on desktop
    ============================================= */
    @media (min-width: 1024px) {
      :root {
        --section-pad-v: 96px;
        --section-pad-h: 24px;
      }
    }