:root {
    --cream: #FAF7F2;
    --navy: #2B4C5C;
    --navy-dark: #1F3742;
    --marigold: #E8A33D;
    --ink: #1A1A1A;
    --taupe: #D4C9B8;
    --white: #FFFFFF;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  h1, h2, h3, .display-font {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--navy);
  }

  a { color: var(--navy); }

  .eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--marigold);
  }

  /* ---------- Skip link ---------- */
  .skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--navy);
    color: var(--white);
    padding: 0.6rem 1rem;
    z-index: 2000;
  }
  .skip-link:focus {
    left: 0;
  }

  /* ---------- Focus visibility ---------- */
  a:focus-visible,
  button:focus-visible {
    outline: 3px solid var(--marigold);
    outline-offset: 2px;
  }

  /* ---------- Navbar ---------- */
  .navbar-custom {
    background: var(--cream);
    border-bottom: 1px solid var(--taupe);
  }
  .navbar-brand {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    color: var(--navy) !important;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
  }
  .navbar-brand img { display: block; }
  .nav-link-custom {
    font-weight: 600;
    color: var(--navy) !important;
    margin-left: 0.5rem;
  }
  .btn-call-nav {
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    border: none;
  }
  .btn-call-nav:hover { background: var(--navy-dark); color: var(--white); }

  /* ---------- Hero / Porthole signature ---------- */
  .hero {
    padding: 4.5rem 0 3rem;
    position: relative;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.04;
  }

  .hero-lede {
    font-size: 1.2rem;
    max-width: 32rem;
    color: var(--navy-dark);
  }

  .porthole-row {
    display: flex;
    gap: 0.9rem;
    margin: 2.2rem 0 0;
  }

  .porthole {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--navy);
    position: relative;
    overflow: hidden;
    flex: 1 1 0;
    max-width: 86px;
  }

  .porthole::before {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 2px solid var(--taupe);
  }

  .porthole .drum {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    opacity: 0.92;
  }

  .porthole.spin .drum {
    animation: spin 6s linear infinite;
  }

  .porthole:nth-child(1) .drum { background: linear-gradient(135deg, var(--marigold), var(--navy)); }
  .porthole:nth-child(3) .drum { background: linear-gradient(135deg, var(--navy), var(--marigold)); }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @media (prefers-reduced-motion: reduce) {
    .porthole.spin .drum { animation: none; }
    html { scroll-behavior: auto; }
  }

  /* ---------- Open status strip ---------- */
  .hours-strip {
    background: var(--navy);
    color: var(--cream);
    border-radius: 18px;
    padding: 2rem 2.2rem;
  }

  .hours-strip .big-hours {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--white);
    line-height: 1;
  }

  .hours-strip .sub {
    color: var(--taupe);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
  }

  .status-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #6FBF73;
    display: inline-block;
    margin-right: 0.5rem;
    box-shadow: 0 0 0 0 rgba(111,191,115,0.6);
    animation: pulse 2s infinite;
  }

  @media (prefers-reduced-motion: reduce) {
    .status-dot { animation: none; }
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(111,191,115,0.55); }
    70% { box-shadow: 0 0 0 8px rgba(111,191,115,0); }
    100% { box-shadow: 0 0 0 0 rgba(111,191,115,0); }
  }

  /* ---------- Section headers ---------- */
  .section { padding: 4.5rem 0; }
  .section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 0.4rem; }
  .divider {
    border: none;
    height: 1px;
    background: var(--taupe);
    margin: 0;
  }

  /* ---------- Machines ---------- */
  .machine-card {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 16px;
    padding: 1.8rem;
    height: 100%;
  }

  .machine-count {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    color: var(--navy);
    line-height: 1;
  }

  .machine-label {
    font-weight: 700;
    color: var(--ink);
    margin-top: 0.3rem;
  }

  .machine-cap {
    color: #5a5a5a;
    font-size: 0.95rem;
  }

  /* ---------- Pricing ---------- */
  .price-card {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
  }

  .price-card .price {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--marigold);
  }

  .self-serve-banner {
    background: var(--white);
    border: 2px dashed var(--taupe);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
  }

  /* ---------- Payment icons row ---------- */
  .payment-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .payment-pill {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* ---------- Gallery ---------- */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--taupe);
    aspect-ratio: 4 / 5;
    background: var(--white);
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(160deg, var(--cream) 0%, var(--taupe) 140%);
    color: var(--navy-dark);
    text-align: center;
    padding: 1rem;
  }

  .gallery-placeholder .icon {
    font-size: 1.8rem;
    opacity: 0.6;
  }

  .gallery-placeholder .label {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
  }

  @media (max-width: 767.98px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* ---------- Reviews ---------- */
  .reviews-card {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 16px;
    padding: 2.4rem;
    text-align: center;
  }

  .reviews-stars {
    font-size: 1.6rem;
    color: var(--marigold);
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
  }

  /* ---------- Map / location ---------- */
  .map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--taupe);
    height: 320px;
  }
  .map-frame iframe { width: 100%; height: 100%; border: 0; }

  /* ---------- Contact form ---------- */
  .contact-card {
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 16px;
    padding: 2.2rem;
  }

  .form-control-custom {
    border: 1px solid var(--taupe);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    background: var(--cream);
  }

  .form-control-custom:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(43, 76, 92, 0.15);
    outline: none;
    background: var(--white);
  }

  .form-label-custom {
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
  }

  .form-status {
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .form-status.success {
    background: #E7F4E8;
    color: #2C6E31;
    border: 1px solid #BFE3C2;
  }

  .form-status.error {
    background: #FBEAEA;
    color: #A33A3A;
    border: 1px solid #F0C2C2;
  }

  /* ---------- CTA / footer ---------- */
  .footer-band {
    background: var(--navy-dark);
    color: var(--cream);
    padding: 3rem 0 2rem;
  }
  .footer-band a { color: var(--cream); text-decoration: none; }
  .footer-band a:hover { color: var(--marigold); }
  .footer-fine {
    color: #93A6AE;
    font-size: 0.88rem;
  }

  .btn-marigold {
    background: var(--marigold);
    color: var(--navy-dark);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    border: none;
  }
  .btn-marigold:hover { background: #d4912e; color: var(--navy-dark); }

  .btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    background: transparent;
  }
  .btn-outline-navy:hover { background: var(--navy); color: var(--white); }

  @media (max-width: 575.98px) {
    .porthole { max-width: 60px; }
    .hours-strip { padding: 1.5rem; }
  }