  /* ---------- RESET & TOKENS ---------- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  img, svg { display: block; max-width: 100%; height: auto; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
  a { color: inherit; text-decoration: none; }
  input, select, textarea { font: inherit; color: inherit; }

  :root {
    /* Coastal premium palette — sand, fog, ink, deep ocean, warm clay */
    --ink:        #0e1b27;
    --ink-soft:   #253544;
    --sand:       #f6f1e6;
    --sand-deep:  #ece4d3;
    --cream:      #fbf7ee;
    --paper:      #ffffff;
    --fog:        #b9b0a2;
    --muted:      #6b6355;
    --line:       #d9cfbf;
    --line-dim:   #e8e0ce;
    --clay:       #b8724a;
    --tide:       #4b6e7b;
    --tide-deep:  #2f4e5a;
    --surf:       #d4c2a8;

    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

    --radius-s: 6px;
    --radius:   10px;
    --radius-l: 18px;

    --shadow-1: 0 1px 2px rgba(14,27,39,.06), 0 4px 14px rgba(14,27,39,.05);
    --shadow-2: 0 4px 18px rgba(14,27,39,.08), 0 22px 60px rgba(14,27,39,.10);

    --container: 1240px;
    --gutter: clamp(18px, 4vw, 36px);

    --header-h: 68px;
  }

  html, body { background: var(--cream); color: var(--ink); }
  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    font-feature-settings: "ss01","cv01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  .wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }

  /* ---------- TYPOGRAPHY ---------- */
  h1,h2,h3,h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--ink);
  }
  h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 400; letter-spacing: -0.025em; }
  h2 { font-size: clamp(1.9rem, 4vw, 2.5rem); letter-spacing: -0.02em; }
  h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
  h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }

  .eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tide-deep);
  }
  .eyebrow::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    background: var(--tide);
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 3px;
  }

  /* ---------- HEADER ---------- */
  .site-header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line-dim);
  }
  .site-header__row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    height: var(--header-h);
  }
  .site-header__row .nav {
    margin-left: auto;
  }
  .brand {
    display: flex; align-items: baseline; gap: 10px;
    font-family: var(--font-display);
    font-size: 1.18rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    font-weight: 500;
  }

  .nav { display: none; align-items: center; gap: 28px; }
  @media (min-width: 880px) { .nav { display: flex; } }
  .nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    transition: color .2s;
  }
  .nav a:hover { color: var(--ink); }
  .nav a::after {
    content: "";
    position: absolute; bottom: -5px; left: 0;
    width: 0; height: 1px; background: var(--clay);
    transition: width .25s ease;
  }
  .nav a:hover::after { width: 100%; }

  .header-actions { display: flex; align-items: center; gap: 8px; }
  .icon-btn {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    height: 40px; padding: 0 14px;
    border-radius: 999px;
    font-size: 13px; font-weight: 600;
    color: var(--ink);
    transition: background .2s;
  }
  .icon-btn:hover { background: var(--sand); }

  .menu-btn { display: inline-flex; }
  @media (min-width: 880px) { .menu-btn { display: none; } }
  .menu-btn svg { margin: 0; width: 20px; height: 20px; }

  /* Mobile nav */
  .mnav {
    display: none;
    border-top: 1px solid var(--line-dim);
    background: var(--cream);
    padding: 10px var(--gutter) 20px;
  }
  .mnav.is-open { display: block; }
  .mnav a {
    display: block; padding: 14px 0;
    border-bottom: 1px solid var(--line-dim);
    font-size: 15px; font-weight: 500;
  }
  .mnav a:last-child { border-bottom: 0; }

  .main-logo {
    display: block;
    max-width: 275px;
    width: 100%;
  }

  /* ---------- HERO ---------- */
  .hero {
    padding: clamp(60px, 8vh, 120px) 0;
    background-image: url('../images/travismathew-featured-hero.jpg');
    background-size: cover;
    background-position: center right;
  }
  .hero__inner {
    display: flex;
  }
  .hero__copy {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    background: rgba(251, 247, 238, 0.92);
    border-radius: var(--radius-l);
    padding: clamp(30px, 5vw, 40px);
    color: var(--ink);
  }
  .hero__copy .eyebrow { margin-bottom: 10px; display: inline-block; }
  .hero__copy h1 { margin-bottom: 24px; color: var(--ink); }
  .hero__copy h1 em { font-style: italic; font-weight: 400; color: var(--tide-deep); }
  .hero__lede {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--ink-soft);
    max-width: 52ch;
    margin-bottom: 32px;
  }
  .hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
  .hero__copy .btn--ghost {
    color: var(--ink);
    border-color: var(--ink);
  }
  .hero__copy .btn--ghost:hover {
    background: var(--ink);
    color: var(--cream);
  }
  .hero__media { display: none; }
  @media (max-width: 1020px) {
    .hero {
      background-image: none;
      background: var(--cream);
      border-radius: 0;
      padding: 28px 0 0;
    }
    .hero__copy {
      max-width: 100%;
      border-radius: 0;
      background: none;
      color: var(--ink);
    }
    .hero__media {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 2.5;
      overflow: hidden;
    }
    .hero__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
  }

  /* ---------- BUTTONS ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform .15s ease, box-shadow .2s, background .2s, color .2s;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn--primary { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-1); }
  .btn--primary:hover { background: var(--tide-deep); box-shadow: var(--shadow-2); }
  .btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
  .btn--ghost:hover { background: var(--ink); color: var(--cream); }
  .btn--clay { background: var(--clay); color: white; }
  .btn--clay:hover { background: #a1603c; }
  .btn--default { background: var(--ink); color: white; }
  .btn--default:hover { background: var(--ink-soft); }
  .nav .btn--default::after { display: none; }
  .btn--full { width: 100%; }
  .btn svg { width: 16px; height: 16px; }

  /* ---------- BRAND BAR ---------- */
  .brand-bar {
    border-block: 1px solid var(--line-dim);
    background: var(--paper);
    padding: 22px 0;
    overflow: hidden;
  }
  .brand-bar__inner {
    display: flex; align-items: center; gap: 48px;
    font-family: var(--font-display); font-style: italic;
    font-size: 15px; color: var(--muted);
    white-space: nowrap;
    animation: marquee 45s linear infinite;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .brand-bar__inner span::after {
    content: "✦";
    margin-left: 48px;
    color: var(--clay);
    font-style: normal;
  }

  /* ---------- SECTIONS ---------- */
  section[id] { scroll-margin-top: calc(var(--header-h)); }
  section { padding: clamp(60px, 9vh, 100px) 0; }
  .section-head {
    display: flex; align-items: end; justify-content: space-between;
    flex-wrap: wrap; gap: 22px;
    margin-bottom: 38px;
  }
  .section-head h2 { max-width: 22ch; }
  .section-head p { max-width: 45ch; color: var(--ink-soft); }

  /* ---------- INTRO SPLIT ---------- */
  .intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    padding: 0;
    background-image: url('../images/travismathew-featured-1.jpg');
    background-size: cover;
    background-position: center center;
  }
  .intro-split__media { display: none; }
  .intro-split__text {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px);
    color: #fff;
  }
  .intro-split__text h2 { color: #fff; }
  .intro-split__text .eyebrow { display: inline-block; color: #fff; }
  .intro-split__text .eyebrow::before { background: #fff; }
  .intro-split__text p { color: rgba(255,255,255,.8); max-width: 44ch; font-size: 1.05rem; line-height: 1.65; }
  @media (max-width: 700px) {
    .intro-split {
      grid-template-columns: 1fr;
      min-height: unset;
      background-image: none;
      background-color: #bd2e2b;
    }
    .intro-split__media {
      display: block;
      grid-column: 1;
      aspect-ratio: 4 / 4;
      order: 2;
      overflow: hidden;
    }
    .intro-split__media picture { display: block; width: 100%; height: 100%; }
    .intro-split__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .intro-split__text { grid-column: 1; order: 1; }
  }

  /* ---------- PRODUCT CALLOUT ---------- */
  section#products { padding: clamp(60px, 9vh, 80px) 0; }
  .callout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) {
    .callout-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .callout-grid { grid-template-columns: 1fr; }
  }
  .callout-card {
    background: var(--paper);
    border: 1px solid var(--line-dim);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
  }
  .callout-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2);
  }
  .callout-card__img {
    aspect-ratio: 1;
    background: var(--sand-deep);
    overflow: hidden;
  }
  .callout-card__img img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
  }
  /* .callout-card:hover .callout-card__img img { transform: scale(1.04); } */
  .callout-card__body { padding: 20px 22px 26px; }
  .callout-card__cat {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .callout-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .callout-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

  /* ---------- BAND / DECORATION ---------- */
  .band {
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .band::before, .band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .6;
    pointer-events: none;
  }
  .band::before { width: 420px; height: 420px; background: var(--tide); left: -120px; top: -100px; }
  .band::after { width: 520px; height: 520px; background: var(--clay); right: -160px; bottom: -200px; opacity: .25; }
  .band h2, .band h3 { color: var(--cream); }
  .band .eyebrow { color: var(--surf); }
  .band .eyebrow::before { background: var(--surf); }
  .band p { color: #d6ccba; max-width: 55ch; }

  .band__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative; z-index: 1;
  }
  @media (min-width: 880px) {
    .band__grid { grid-template-columns: 1fr 1fr; gap: 70px; }
  }
  .deco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .deco-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 22px 20px;
    display: flex; flex-direction: column; gap: 10px;
    transition: background .2s;
  }
  .deco-card:hover { background: rgba(255,255,255,.09); }
  .deco-card__ico {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--clay);
    display: inline-flex; align-items: center; justify-content: center;
    color: white;
  }
  .deco-card h4 { color: var(--cream); margin-top: 4px; }
  .deco-card p { font-size: 13px; color: #c9bfad; margin: 0; }

  /* ---------- PROCESS ---------- */
  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  @media (min-width: 760px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  }
  .step {
    padding: 32px 24px;
    background: var(--paper);
    border: 1px solid var(--line-dim);
    border-radius: var(--radius);
    position: relative;
  }
  .step__n {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 3.4rem;
    color: var(--clay);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
  }
  .step h3 { font-family: var(--font-display); margin-bottom: 8px; }
  .step p { font-size: 14.5px; color: var(--ink-soft); }

  /* ---------- FAQ ---------- */
  .faq-list { display: flex; flex-direction: column; gap: 0; margin: 0 auto; }
  .faq { border-bottom: 1px solid var(--line-dim); padding: 22px 0; }
  .faq summary {
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    padding-right: 20px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+";
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: var(--clay);
    display: inline-block;
    transition: transform .25s ease;
  }
  .faq[open] summary::after { transform: rotate(45deg); }
  .faq p { padding-top: 14px; color: var(--ink-soft); font-size: 15px; max-width: 70ch; }
  .faq[open] p { animation: faq-reveal .25s ease; }
  .faq.is-closing p { animation: faq-hide .2s ease forwards; }
  @keyframes faq-reveal {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes faq-hide {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-6px); }
  }

  /* ---------- CONTACT TWO-COLUMN ---------- */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
  }
  @media (min-width: 860px) {
    .contact-grid { grid-template-columns: 2fr 3fr; }
  }
  .contact-info p {
    color: var(--ink-soft);
    margin-bottom: 28px;
    max-width: 50ch;
  }
  .contact-meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }
  .contact-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-soft);
  }
  .contact-meta li svg { color: var(--clay); flex-shrink: 0; }
  .contact-reach { display: flex; flex-direction: column; gap: 6px; }
  .contact-reach a {
    font-size: 14px;
    color: var(--tide-deep);
    font-weight: 500;
    transition: color .2s;
  }
  .contact-reach a:hover { color: var(--clay); }

  /* ---------- FAQ DARK (blends into footer) ---------- */
  #faq { background: var(--ink); color: #c4bbaa; }
  #faq .eyebrow { color: var(--surf); }
  #faq .eyebrow::before { background: var(--surf); }
  #faq h2 { color: var(--cream); }
  #faq .section-head p { color: #a69c8a; }
  #faq .faq-list { border-top: 1px solid rgba(255,255,255,.08); }
  #faq .faq { border-bottom-color: rgba(255,255,255,.08); }
  #faq .faq summary { color: var(--cream); }
  #faq .faq p { color: #c4bbaa; }

  /* ---------- FOOTER ---------- */
  footer { background: var(--ink); color: #c4bbaa; padding: 70px 0 26px; }
  .foot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 50px;
  }
  @media (min-width: 760px) {
    .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
  }
  footer h4 { color: var(--cream); margin-bottom: 14px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
  footer a { color: #c4bbaa; display: block; padding: 4px 0; font-size: 14px; transition: color .2s; }
  footer a:hover { color: var(--cream); }
  .foot-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .foot-brand em { font-style: italic; color: var(--surf); }
  .foot-desc { font-size: 14px; color: #a69c8a; max-width: 32ch; }
  .foot-bar {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
    font-size: 12px; color: #8b8273;
  }

  /* ---------- QUOTE FORM ---------- */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }
  @media (min-width: 520px) {
    .form-grid.-cols-2 { grid-template-columns: 1fr 1fr; }
  }
  .field label {
    display: block;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 6px;
  }
  .field label.-optional::after {
    content: " · optional";
    font-weight: 400;
    color: var(--fog);
    letter-spacing: 0;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--tide);
    box-shadow: 0 0 0 3px rgba(75,110,123,.15);
  }
  .field textarea { min-height: 80px; resize: vertical; }

  /* ---------- UTIL ---------- */
  .sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  [hidden] { display: none !important; }

  /* ---------- REVEAL ---------- */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
  }
