:root {
      --ink: #101112;
      --paper: #f7f5f0;
      --white: #ffffff;
      --charcoal: #191b1d;
      --steel: #5a626b;
      --muted: #757b82;
      --line: #dfd9cf;
      --soft: #ede7dc;
      --red: #b8171f;
      --red-dark: #871118;
      --gold: #b88a3b;
      --blue: #263f59;
      --shadow: 0 22px 55px rgba(16, 17, 18, .16);
      --radius: 8px;
      --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.55;
    }

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .topbar {
      background: var(--ink);
      color: rgba(255, 255, 255, .78);
      font-size: 13px;
    }

    .topbar-inner,
    .nav-inner,
    .section-inner,
    .hero-inner {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .topbar strong {
      color: var(--white);
      font-weight: 750;
    }

    .site-nav {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(247, 245, 240, .94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(16, 17, 18, .1);
    }

    .nav-inner {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 205px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 6px;
      background:
        linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, .26) 44% 52%, transparent 52%),
        linear-gradient(135deg, var(--red), var(--red-dark));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
    }

    .brand-name {
      display: block;
      font-size: 17px;
      font-weight: 850;
      letter-spacing: -.02em;
      line-height: 1.05;
    }

    .brand-line {
      display: block;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-top: 3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 4px;
      flex: 1;
    }

    .nav-links a {
      border-radius: 6px;
      color: #363b40;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .04em;
      padding: 10px 12px;
      text-transform: uppercase;
    }

    .nav-links a:hover {
      background: var(--soft);
      color: var(--ink);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      border: 1px solid transparent;
      border-radius: 6px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 850;
      letter-spacing: .05em;
      padding: 12px 18px;
      text-transform: uppercase;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      box-shadow: 0 14px 30px rgba(184, 23, 31, .25);
    }

    .btn-primary:hover {
      background: var(--red-dark);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .28);
      color: var(--white);
    }

    .btn-light {
      background: var(--white);
      border-color: var(--line);
      color: var(--ink);
    }

    .hero {
      position: relative;
      min-height: 720px;
      overflow: hidden;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(16, 17, 18, .94) 0%, rgba(16, 17, 18, .78) 45%, rgba(16, 17, 18, .42) 100%),
        linear-gradient(135deg, #232629, #45423c 42%, #17191b 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 78% 20%, rgba(184, 138, 59, .16), transparent 24%),
        linear-gradient(115deg, transparent 0 62%, rgba(255, 255, 255, .08) 62% 63%, transparent 63%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 82px);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr);
      gap: 54px;
      align-items: center;
      min-height: 644px;
      padding: 72px 0 58px;
    }

    .eyebrow {
      color: #e8c783;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .18em;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: currentColor;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 760px;
      font-size: clamp(45px, 6.4vw, 78px);
      line-height: .94;
      letter-spacing: -.06em;
      margin-bottom: 24px;
    }

    .hero-copy {
      max-width: 640px;
      color: rgba(255, 255, 255, .78);
      font-size: 19px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 42px;
    }

    .brand-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      max-width: 660px;
    }

    .make {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 999px;
      color: rgba(255, 255, 255, .82);
      cursor: pointer;
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .11em;
      padding: 7px 12px;
      text-transform: uppercase;
    }

    .make:hover,
    .make.is-selected {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
    }

    .hero-panel {
      background: rgba(255, 255, 255, .93);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      color: var(--ink);
      overflow: hidden;
    }

    .photo-slot {
      position: relative;
      min-height: 272px;
      background:
        linear-gradient(135deg, rgba(38, 63, 89, .82), rgba(16, 17, 18, .24)),
        linear-gradient(135deg, #cfc9bc 0%, #777b7d 42%, #24272a 100%);
      display: flex;
      align-items: flex-end;
      padding: 22px;
    }

    .photo-slot::after {
      content: "Shop / hero photo";
      position: absolute;
      top: 16px;
      right: 16px;
      border: 1px solid rgba(255, 255, 255, .5);
      border-radius: 999px;
      color: rgba(255, 255, 255, .88);
      font-size: 11px;
      font-weight: 850;
      letter-spacing: .11em;
      padding: 6px 10px;
      text-transform: uppercase;
    }

    .panel-caption {
      color: var(--white);
      font-size: 25px;
      font-weight: 900;
      letter-spacing: -.04em;
      line-height: 1.02;
      max-width: 250px;
      text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
    }

    .quick-card {
      padding: 22px;
    }

    .quick-card h2 {
      font-size: 21px;
      letter-spacing: -.03em;
      margin-bottom: 12px;
    }

    .quick-list {
      display: grid;
      gap: 10px;
      list-style: none;
      margin: 0 0 18px;
      padding: 0;
    }

    .quick-list li {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid var(--line);
      color: var(--steel);
      font-size: 14px;
      padding-bottom: 9px;
    }

    .quick-list strong {
      color: var(--ink);
    }

    .trust-band {
      background: var(--red);
      color: var(--white);
    }

    .trust-grid {
      width: min(1160px, calc(100% - 40px));
      min-height: 86px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
    }

    .trust-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 18px;
      border-left: 1px solid rgba(255, 255, 255, .18);
    }

    .trust-item:last-child {
      border-right: 1px solid rgba(255, 255, 255, .18);
    }

    .trust-item strong {
      display: block;
      font-size: 20px;
      line-height: 1;
    }

    .trust-item span {
      color: rgba(255, 255, 255, .78);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      margin-top: 7px;
      text-transform: uppercase;
    }

    section {
      padding: 88px 0;
    }

    .section-kicker {
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .18em;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 36px;
      margin-bottom: 34px;
    }

    .section-head h2 {
      font-size: clamp(32px, 4vw, 50px);
      line-height: 1;
      letter-spacing: -.055em;
      margin-bottom: 0;
      max-width: 650px;
    }

    .section-head p {
      color: var(--steel);
      max-width: 400px;
      margin-bottom: 0;
    }

    .services {
      background: var(--white);
    }

    .quote-panel {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 24px;
      margin-bottom: 18px;
      padding: 22px;
    }

    .quote-label {
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .16em;
      margin-bottom: 6px;
      text-transform: uppercase;
    }

    .quote-panel h3 {
      font-size: 27px;
      letter-spacing: -.04em;
      line-height: 1.05;
      margin-bottom: 8px;
    }

    .quote-panel p {
      color: var(--steel);
      margin-bottom: 0;
    }

    .quote-makes {
      align-content: start;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-end;
    }

    .quote-make {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 999px;
      color: #363b40;
      cursor: pointer;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .1em;
      padding: 9px 12px;
      text-transform: uppercase;
    }

    .quote-make:hover,
    .quote-make.is-selected {
      background: var(--ink);
      border-color: var(--ink);
      color: var(--white);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .service-card {
      background: var(--white);
      border: 0;
      cursor: pointer;
      min-height: 218px;
      padding: 24px;
      text-align: left;
    }

    .service-card:hover,
    .service-card.is-active {
      background: #fbf1ed;
    }

    .service-card span {
      color: var(--red);
      display: block;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .14em;
      margin-bottom: 28px;
      text-transform: uppercase;
    }

    .service-card h3 {
      font-size: 21px;
      letter-spacing: -.03em;
      line-height: 1.08;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--steel);
      font-size: 14px;
      margin-bottom: 0;
    }

    .service-detail {
      display: none;
      background: var(--charcoal);
      border-radius: var(--radius);
      color: var(--white);
      margin-top: 18px;
      overflow: hidden;
    }

    .service-detail.is-open {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
    }

    .detail-price {
      background: var(--red);
      padding: 32px;
    }

    .detail-price span {
      color: rgba(255, 255, 255, .7);
      display: block;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .14em;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .detail-price strong {
      display: block;
      font-size: clamp(34px, 5vw, 58px);
      letter-spacing: -.06em;
      line-height: .9;
      margin-bottom: 14px;
    }

    .detail-note {
      color: rgba(255, 255, 255, .76);
      display: block;
      font-size: 14px;
      margin-bottom: 18px;
    }

    .detail-copy {
      padding: 32px;
    }

    .detail-copy h3 {
      font-size: 25px;
      letter-spacing: -.035em;
      margin-bottom: 12px;
    }

    .detail-copy p {
      color: rgba(255, 255, 255, .76);
    }

    .estimate-note {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
      margin-top: 18px;
      padding: 14px;
    }

    .estimate-note strong {
      color: var(--white);
    }

    .included {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px 18px;
      list-style: none;
      margin: 18px 0 0;
      padding: 0;
    }

    .included li {
      color: rgba(255, 255, 255, .86);
      font-size: 14px;
      padding-left: 18px;
      position: relative;
    }

    .included li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .65em;
      width: 7px;
      height: 7px;
      background: var(--gold);
      border-radius: 50%;
    }

    .about {
      background: var(--paper);
    }

    .about-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 42px;
      align-items: start;
    }

    .portrait-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 16px 36px rgba(16, 17, 18, .08);
      overflow: hidden;
    }

    .portrait-photo {
      min-height: 410px;
      background:
        linear-gradient(180deg, transparent, rgba(16, 17, 18, .38)),
        linear-gradient(135deg, #d7d0c2, #6f777d 55%, #222426);
      display: flex;
      align-items: end;
      color: var(--white);
      padding: 24px;
    }

    .portrait-photo span {
      border: 1px solid rgba(255, 255, 255, .48);
      border-radius: 999px;
      font-size: 11px;
      font-weight: 850;
      letter-spacing: .12em;
      padding: 7px 11px;
      text-transform: uppercase;
    }

    .portrait-body {
      padding: 24px;
    }

    .portrait-body h3 {
      font-size: 25px;
      letter-spacing: -.04em;
      margin-bottom: 2px;
    }

    .portrait-body p {
      color: var(--steel);
      margin-bottom: 18px;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .badge {
      background: var(--soft);
      border-radius: 999px;
      color: #41464b;
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .06em;
      padding: 7px 10px;
      text-transform: uppercase;
    }

    .story h2 {
      font-size: clamp(32px, 4vw, 54px);
      letter-spacing: -.06em;
      line-height: 1;
      margin-bottom: 22px;
    }

    .story p {
      color: var(--steel);
      font-size: 17px;
    }

    .story-callout {
      border-left: 4px solid var(--red);
      color: var(--ink);
      font-size: 21px;
      font-weight: 750;
      letter-spacing: -.025em;
      line-height: 1.34;
      margin: 30px 0;
      padding-left: 22px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 34px;
    }

    .process {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px;
    }

    .process strong {
      color: var(--red);
      display: block;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .15em;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .process h3 {
      font-size: 18px;
      letter-spacing: -.025em;
      margin-bottom: 8px;
    }

    .process p {
      font-size: 14px;
      margin-bottom: 0;
    }

    .reviews {
      background: var(--charcoal);
      color: var(--white);
    }

    .reviews .section-head p {
      color: rgba(255, 255, 255, .68);
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .review-card {
      background: #222528;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius);
      min-height: 255px;
      padding: 24px;
    }

    .stars {
      color: #e8c783;
      font-size: 15px;
      letter-spacing: .18em;
      margin-bottom: 18px;
    }

    .review-card p {
      color: rgba(255, 255, 255, .78);
      font-size: 17px;
      line-height: 1.5;
    }

    .review-card strong {
      display: block;
      margin-top: 22px;
    }

    .review-source {
      color: rgba(255, 255, 255, .48);
      display: block;
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .1em;
      margin-top: 4px;
      text-transform: uppercase;
    }

    .booking {
      background: var(--white);
    }

    .booking-shell {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 32px;
      align-items: start;
    }

    .booking-aside {
      background: var(--ink);
      border-radius: var(--radius);
      color: var(--white);
      padding: 30px;
    }

    .booking-aside h2 {
      font-size: 34px;
      letter-spacing: -.05em;
      line-height: 1;
      margin-bottom: 18px;
    }

    .booking-aside p {
      color: rgba(255, 255, 255, .7);
    }

    .steps {
      display: grid;
      gap: 12px;
      margin-top: 28px;
    }

    .step {
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: var(--radius);
      padding: 15px;
    }

    .step strong {
      color: #e8c783;
      display: block;
      font-size: 12px;
      letter-spacing: .14em;
      margin-bottom: 6px;
      text-transform: uppercase;
    }

    .step span {
      color: rgba(255, 255, 255, .84);
      font-weight: 750;
    }

    .form-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

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

    label {
      color: #4a5056;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid #cfc7bb;
      border-radius: 6px;
      background: var(--white);
      color: var(--ink);
      min-height: 48px;
      padding: 12px 13px;
      outline: none;
    }

    textarea {
      min-height: 118px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(184, 23, 31, .12);
    }

    .form-note {
      background: #f2ebe0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      color: #5d554b;
      font-size: 14px;
      grid-column: 1 / -1;
      padding: 14px;
    }

    .form-status {
      color: #4a5056;
      font-size: 14px;
      font-weight: 750;
      grid-column: 1 / -1;
      min-height: 20px;
    }

    .form-status.is-success {
      color: #217346;
    }

    .form-status.is-error {
      color: var(--red);
    }

    .contact {
      background: var(--paper);
      padding-bottom: 0;
    }

    .contact-strip {
      background: var(--ink);
      color: var(--white);
      margin-top: 24px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
      background: rgba(255, 255, 255, .12);
    }

    .contact-card {
      background: var(--ink);
      min-height: 160px;
      padding: 24px;
    }

    .contact-card span {
      color: #e8c783;
      display: block;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .14em;
      margin-bottom: 14px;
      text-transform: uppercase;
    }

    .contact-card strong,
    .contact-card a {
      display: block;
      font-size: 18px;
      line-height: 1.3;
    }

    .map-placeholder {
      min-height: 320px;
      background:
        linear-gradient(135deg, rgba(16, 17, 18, .82), rgba(38, 63, 89, .72)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .1) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .1) 0 1px, transparent 1px 42px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .8);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      text-align: center;
      padding: 28px;
    }

    .map-placeholder a {
      border: 1px solid rgba(255, 255, 255, .34);
      border-radius: 999px;
      color: var(--white);
      display: inline-flex;
      margin-top: 14px;
      padding: 9px 13px;
    }

    footer {
      background: var(--ink);
      color: rgba(255, 255, 255, .58);
      padding: 30px 0;
    }

    .footer-inner {
      width: min(1160px, calc(100% - 40px));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin: 0 auto;
      font-size: 13px;
    }

    @media (max-width: 960px) {
      .nav-inner {
        height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
      }

      .nav-links {
        flex-wrap: wrap;
        justify-content: flex-start;
      }

      .hero-inner,
      .about-grid,
      .booking-shell,
      .service-detail.is-open {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: 0;
      }

      .trust-grid,
      .service-grid,
      .review-grid,
      .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .quote-panel {
        grid-template-columns: 1fr;
      }

      .quote-makes {
        justify-content: flex-start;
      }

    }

    @media (max-width: 680px) {
      .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 10px 0;
      }

      .nav-links a:not(.btn) {
        display: none;
      }

      .hero-inner {
        padding-top: 48px;
      }

      h1 {
        font-size: 44px;
      }

      section {
        padding: 62px 0;
      }

      .section-head {
        align-items: start;
        flex-direction: column;
      }

      .trust-grid,
      .service-grid,
      .review-grid,
      .contact-grid,
      .process-grid,
      .form-grid,
      .included {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }
    }
