﻿    :root {
      --ink: #080706;
      --coal: #11100e;
      --charcoal: #1c1916;
      --walnut: #39241b;
      --leather: #704431;
      --stone: #948678;
      --cream: #f7ead0;
      --muted: #cdbb9d;
      --brass: #d7b56d;
      --brass-bright: #f0d88b;
      --line: rgba(215, 181, 109, 0.22);
      --shadow: 0 26px 80px rgba(0, 0, 0, 0.5);
      --radius-lg: 28px;
      --radius-md: 18px;
      --teal: #0f8b8d;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--ink);
    }

    body {
      min-height: 100vh;
      margin: 0;
      color: var(--cream);
      font-family: "Manrope Local", sans-serif;
      background:
        radial-gradient(circle at 8% -10%, rgba(215, 181, 109, 0.14), transparent 34%),
        radial-gradient(circle at 92% 6%, rgba(112, 68, 49, 0.34), transparent 30%),
        linear-gradient(180deg, #080706 0%, #14110f 44%, #080706 100%);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: 0.26;
      background-image:
        linear-gradient(rgba(247, 234, 208, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 234, 208, 0.024) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, black, transparent 78%);
    }

    img, video {
      width: 100%;
      display: block;
      border: 0;
    }

    a { color: inherit; }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(215, 181, 109, 0.2);
      background: rgba(8, 7, 6, 0.84);
      backdrop-filter: blur(18px);
    }

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

    .logo {
      display: inline-grid;
      gap: 0;
      text-decoration: none;
      line-height: 1;
    }

    .logo strong {
      font-family: "Cinzel Local", serif;
      letter-spacing: 0.08em;
      color: var(--brass-bright);
      font-size: clamp(1rem, 2vw, 1.24rem);
      text-transform: uppercase;
    }

    .logo span {
      color: var(--muted);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .menu {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(10px, 2vw, 24px);
      flex-wrap: wrap;
    }

    .menu a {
      color: rgba(247, 234, 208, 0.84);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 800;
    }

    .menu a:hover { color: var(--brass-bright); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      text-decoration: none;
      font-weight: 900;
      transition: transform 0.22s ease, filter 0.22s ease, border-color 0.22s ease;
    }

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

    .btn-primary {
      color: #1b1108;
      background: linear-gradient(135deg, #b98a42 0%, #f0d88b 58%, #c39b53 100%);
      box-shadow: 0 18px 44px rgba(215, 181, 109, 0.24);
    }

    .btn-ghost {
      color: var(--cream);
      background: rgba(247, 234, 208, 0.04);
      border-color: rgba(240, 216, 139, 0.46);
    }

    .btn-ghost:hover { border-color: var(--brass-bright); color: var(--brass-bright); }

    .hero {
      position: relative;
      min-height: calc(100vh - 74px);
      display: grid;
      align-items: end;
      overflow: hidden;
      border-bottom: 1px solid rgba(215, 181, 109, 0.22);
      background: var(--ink);
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      filter: brightness(0.76) contrast(1.1) saturate(1.02);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.72) 42%, rgba(8, 7, 6, 0.18) 100%),
        linear-gradient(180deg, rgba(8, 7, 6, 0.06) 0%, rgba(8, 7, 6, 0.96) 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      z-index: 1;
      height: 34%;
      background: linear-gradient(180deg, transparent, var(--ink));
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      padding: 112px 0 72px;
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(300px, 520px);
      gap: clamp(24px, 5vw, 56px);
      align-items: center;
    }

    .hero-inner > * { min-width: 0; }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--brass-bright);
      font-size: 0.78rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 900;
    }

    h1, h2, h3 {
      font-family: "Cinzel Local", serif;
      line-height: 1.08;
      margin: 0;
    }

    h1 {
      max-width: 11ch;
      color: var(--cream);
      font-size: clamp(2.75rem, 7.2vw, 5.9rem);
      letter-spacing: 0;
      text-transform: uppercase;
      text-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
    }

    h1 span { display: block; }

    h2 {
      color: var(--cream);
      font-size: clamp(2rem, 4.8vw, 4.2rem);
      letter-spacing: -0.045em;
    }

    h3 { font-size: 1.22rem; }

    .lead {
      max-width: 62ch;
      margin: 24px 0 0;
      color: rgba(247, 234, 208, 0.88);
      font-size: clamp(1rem, 2vw, 1.18rem);
      overflow-wrap: break-word;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    .hero-card {
      background: linear-gradient(155deg, rgba(247, 234, 208, 0.12), rgba(247, 234, 208, 0.04));
      border: 1px solid rgba(240, 216, 139, 0.28);
      border-radius: var(--radius-lg);
      padding: 18px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-card img {
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: 22px;
      border: 1px solid rgba(247, 234, 208, 0.12);
    }

    .quick-price {
      margin-top: 14px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 16px;
      border-radius: 18px;
      background: rgba(8, 7, 6, 0.78);
      border: 1px solid rgba(240, 216, 139, 0.28);
    }

    .quick-price strong {
      color: var(--brass-bright);
      font-size: 1.5rem;
      line-height: 1;
    }

    .quick-price span { color: var(--muted); font-size: 0.9rem; }
    .quick-price span { min-width: 0; overflow-wrap: anywhere; }

    .hero-story {
      background:
        linear-gradient(155deg, rgba(8, 7, 6, 0.76), rgba(28, 25, 22, 0.5)),
        radial-gradient(circle at 90% 12%, rgba(215, 181, 109, 0.16), transparent 34%);
      border-color: rgba(240, 216, 139, 0.3);
      box-shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
      backdrop-filter: blur(12px);
    }

    .hero-story h1 {
      max-width: 14ch;
      font-size: clamp(2.4rem, 5.4vw, 4.9rem);
      letter-spacing: 0;
    }

    .hero-photo {
      border-color: rgba(240, 216, 139, 0.28);
      box-shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
    }

    .hero-photo img {
      aspect-ratio: 4 / 5;
      object-fit: cover;
    }

    section { padding: clamp(64px, 9vw, 112px) 0; }

    .section-head {
      display: grid;
      gap: 12px;
      margin-bottom: 34px;
    }

    .section-head p:not(.eyebrow) {
      max-width: 70ch;
      margin: 0;
      color: var(--muted);
    }

    .split {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: clamp(22px, 5vw, 56px);
      align-items: center;
    }

    .photo-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--charcoal);
      box-shadow: var(--shadow);
    }

    .photo-panel img {
      aspect-ratio: 4 / 5;
      object-fit: cover;
    }

    .story-card {
      padding: clamp(24px, 4vw, 40px);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 88% 12%, rgba(215, 181, 109, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(57, 36, 27, 0.72), rgba(17, 16, 14, 0.96));
      box-shadow: var(--shadow);
    }

    .feature-list {
      display: grid;
      gap: 14px;
      padding: 0;
      margin: 28px 0 0;
      list-style: none;
    }

    .feature-list li {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
      color: rgba(247, 234, 208, 0.82);
    }

    .feature-list li::before {
      content: "";
      width: 12px;
      height: 12px;
      margin-top: 8px;
      border-radius: 50%;
      background: var(--brass-bright);
      box-shadow: 0 0 0 8px rgba(215, 181, 109, 0.12);
    }

    .dropin-section {
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(215, 181, 109, 0.16);
      border-bottom: 1px solid rgba(215, 181, 109, 0.16);
      background:
        radial-gradient(circle at 12% 16%, rgba(15, 139, 141, 0.16), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(215, 181, 109, 0.13), transparent 34%),
        linear-gradient(180deg, #080706, #16110f 62%, #080706);
    }

    .dropin-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
      gap: clamp(24px, 5vw, 58px);
      align-items: stretch;
    }

    .dropin-copy {
      display: grid;
      align-content: center;
    }

    .dropin-copy p:not(.eyebrow) {
      margin: 22px 0 0;
      color: var(--muted);
      max-width: 58ch;
    }

    .review-board {
      display: grid;
      gap: 14px;
      padding: clamp(18px, 3vw, 28px);
      border-radius: 34px;
      border: 1px solid rgba(240, 216, 139, 0.28);
      background:
        linear-gradient(145deg, rgba(247, 234, 208, 0.09), rgba(247, 234, 208, 0.025)),
        rgba(8, 7, 6, 0.82);
      box-shadow: 0 44px 120px rgba(0, 0, 0, 0.52);
    }

    .review-score {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 20px;
      align-items: center;
      padding: 22px;
      border-radius: 24px;
      background:
        radial-gradient(circle at 0% 0%, rgba(15, 139, 141, 0.28), transparent 34%),
        linear-gradient(135deg, rgba(57, 36, 27, 0.8), rgba(17, 16, 14, 0.94));
      border: 1px solid rgba(240, 216, 139, 0.22);
    }

    .score-number {
      display: grid;
      place-items: center;
      width: 116px;
      height: 116px;
      border-radius: 50%;
      color: #1a1007;
      background: linear-gradient(135deg, var(--brass-bright), var(--brass));
      font-family: "Cinzel Local", serif;
      font-size: 2.45rem;
      font-weight: 800;
      line-height: 1;
      box-shadow: 0 18px 44px rgba(215, 181, 109, 0.24);
    }

    .score-copy strong {
      display: block;
      color: var(--cream);
      font-size: 1.15rem;
    }

    .score-copy span {
      display: block;
      color: var(--muted);
      margin-top: 4px;
    }

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

    .review-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    .review-card {
      min-height: 178px;
      padding: 18px;
      border-radius: 20px;
      border: 1px solid rgba(215, 181, 109, 0.18);
      background: rgba(17, 16, 14, 0.84);
    }

    .review-card p {
      margin: 0;
      color: rgba(247, 234, 208, 0.88);
      font-weight: 750;
    }

    .review-card span {
      display: block;
      margin-top: 14px;
      color: var(--muted);
      font-size: 0.84rem;
    }

    .dropin-rules {
      display: grid;
      gap: 10px;
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
    }

    .dropin-rules li {
      padding: 14px 16px;
      border-radius: 16px;
      color: rgba(247, 234, 208, 0.86);
      border: 1px solid rgba(215, 181, 109, 0.18);
      background: rgba(247, 234, 208, 0.045);
    }

    .price-section {
      background:
        linear-gradient(180deg, rgba(215, 181, 109, 0.05), transparent 20%),
        radial-gradient(circle at 80% 10%, rgba(112, 68, 49, 0.22), transparent 32%);
    }

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

    .price-item {
      padding: 20px;
      border-radius: 20px;
      border: 1px solid rgba(215, 181, 109, 0.18);
      background:
        linear-gradient(140deg, rgba(247, 234, 208, 0.065), rgba(247, 234, 208, 0.02)),
        rgba(17, 16, 14, 0.94);
      min-height: 126px;
    }

    .price-item strong {
      display: block;
      color: var(--cream);
      font-size: 1.04rem;
    }

    .price-item span {
      display: inline-flex;
      margin-top: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      color: #1a1007;
      background: linear-gradient(135deg, var(--brass-bright), var(--brass));
      font-weight: 900;
    }

    .price-item small {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.86rem;
    }

    .service-copy,
    .faq-grid {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-bottom: 24px;
    }

    .service-copy article,
    .faq-item {
      padding: 20px;
      border-radius: 20px;
      border: 1px solid rgba(215, 181, 109, 0.18);
      background: rgba(17, 16, 14, 0.78);
    }

    .service-copy h3,
    .faq-item h3 {
      color: var(--cream);
      margin-bottom: 10px;
    }

    .service-copy p,
    .faq-item p {
      margin: 0;
      color: var(--muted);
    }

    .faq-section {
      background:
        linear-gradient(180deg, rgba(8, 7, 6, 0.2), rgba(215, 181, 109, 0.04)),
        radial-gradient(circle at 14% 10%, rgba(15, 139, 141, 0.14), transparent 28%);
    }

    .place-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }

    .place-card {
      position: relative;
      overflow: hidden;
      min-height: 320px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: var(--charcoal);
      box-shadow: var(--shadow);
    }

    .place-card:nth-child(1) { grid-column: span 7; }
    .place-card:nth-child(2) { grid-column: span 5; }
    .place-card:nth-child(3),
    .place-card:nth-child(4),
    .place-card:nth-child(5) { grid-column: span 4; min-height: 260px; }

    .place-card img {
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .place-card:hover img { transform: scale(1.045); }

    .place-card figcaption {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      padding: 14px 16px;
      border-radius: 16px;
      color: var(--cream);
      background: rgba(8, 7, 6, 0.74);
      border: 1px solid rgba(240, 216, 139, 0.18);
      backdrop-filter: blur(10px);
      font-weight: 900;
    }

    .gallery {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(12, 1fr);
    }

    .gallery figure {
      margin: 0;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--charcoal);
      min-height: 260px;
    }

    .gallery figure { grid-column: span 4; }
    .gallery figure:nth-child(1),
    .gallery figure:nth-child(6),
    .gallery figure:nth-child(10) { grid-column: span 6; min-height: 330px; }
    .gallery figure:nth-child(3),
    .gallery figure:nth-child(8),
    .gallery figure:nth-child(12) { grid-column: span 3; }

    .gallery img {
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .gallery figure:hover img { transform: scale(1.045); }

    .booking-strip {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
      padding: clamp(24px, 4vw, 42px);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(240, 216, 139, 0.28);
      background:
        linear-gradient(90deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.46)),
        url("assets/mr-barber-customer/mr-barber-customer-11.jpg") center/cover no-repeat;
      box-shadow: var(--shadow);
    }

    .booking-strip p { color: var(--muted); margin: 10px 0 0; max-width: 62ch; }

    .video-section {
      position: relative;
      border-top: 1px solid rgba(215, 181, 109, 0.14);
      border-bottom: 1px solid rgba(215, 181, 109, 0.14);
      background:
        radial-gradient(circle at 18% 0%, rgba(215, 181, 109, 0.14), transparent 34%),
        radial-gradient(circle at 86% 20%, rgba(15, 139, 141, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(8, 7, 6, 0.78), rgba(20, 17, 15, 0.96));
    }

    .video-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
      gap: clamp(20px, 4vw, 42px);
      align-items: center;
    }

    .video-frame {
      overflow: hidden;
      aspect-ratio: 16 / 9;
      border-radius: 28px;
      border: 1px solid rgba(240, 216, 139, 0.28);
      background: #050505;
      box-shadow: var(--shadow);
    }

    .video-frame iframe,
    .video-consent {
      width: 100%;
      height: 100%;
      display: block;
    }

    .video-frame iframe {
      border: 0;
    }

    .video-consent {
      position: relative;
      padding: 0;
      border: 0;
      color: var(--cream);
      cursor: pointer;
      overflow: hidden;
      background: #050505;
      text-align: center;
      font: inherit;
    }

    .video-consent img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      filter: brightness(0.68) saturate(1.05);
      transform: scale(1.01);
      transition: transform 0.35s ease, filter 0.35s ease;
    }

    .video-consent::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 42%, rgba(215, 181, 109, 0.24), transparent 28%),
        linear-gradient(180deg, rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.72));
      pointer-events: none;
    }

    .video-consent:hover img,
    .video-consent:focus-visible img {
      filter: brightness(0.78) saturate(1.12);
      transform: scale(1.045);
    }

    .video-consent:focus-visible {
      outline: 3px solid var(--brass-bright);
      outline-offset: -6px;
    }

    .video-consent-content {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: grid;
      place-content: center;
      gap: 10px;
      padding: 24px;
    }

    .play-badge {
      width: 74px;
      height: 74px;
      margin: 0 auto 4px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--brass), var(--brass-bright));
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    }

    .play-badge::before {
      content: "";
      width: 0;
      height: 0;
      margin-left: 5px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      border-left: 20px solid #080706;
    }

    .video-consent-title {
      font-family: "Cinzel Local", serif;
      font-size: clamp(1.35rem, 3vw, 2.3rem);
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
    }

    .video-privacy-note {
      max-width: 42ch;
      margin: 0 auto;
      color: rgba(247, 234, 208, 0.88);
      font-size: 0.95rem;
      line-height: 1.45;
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
    }

    .video-copy {
      padding: clamp(20px, 3vw, 30px);
      border-radius: 28px;
      border: 1px solid rgba(215, 181, 109, 0.18);
      background:
        linear-gradient(145deg, rgba(247, 234, 208, 0.07), rgba(247, 234, 208, 0.02)),
        rgba(8, 7, 6, 0.72);
    }

    .video-copy p:not(.eyebrow) {
      color: var(--muted);
      margin: 14px 0 0;
    }

    .video-points {
      display: grid;
      gap: 10px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .video-points li {
      padding: 12px 14px;
      border-radius: 16px;
      color: rgba(247, 234, 208, 0.88);
      border: 1px solid rgba(215, 181, 109, 0.16);
      background: rgba(247, 234, 208, 0.045);
    }

    .contact-wrap {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .contact-item {
      background: rgba(17, 16, 14, 0.9);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 20px;
    }

    .contact-item h3 { margin-bottom: 10px; }
    .contact-item p, .contact-item a { color: var(--muted); margin: 0; text-decoration: none; }
    .contact-item a:hover { color: var(--brass-bright); }

    footer {
      border-top: 1px solid rgba(215, 181, 109, 0.2);
      padding: 30px 0 44px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    footer p { margin: 6px 0 0; }
    footer a { color: var(--brass-bright); text-decoration: none; }
    footer a:hover { color: var(--cream); }

    .cookie-consent {
      position: fixed;
      right: clamp(14px, 3vw, 28px);
      bottom: clamp(14px, 3vw, 28px);
      z-index: 30;
      width: min(680px, calc(100% - 28px));
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 18px;
      border: 1px solid rgba(240, 216, 139, 0.34);
      border-radius: 22px;
      background:
        linear-gradient(135deg, rgba(28, 25, 22, 0.98), rgba(8, 7, 6, 0.96)),
        rgba(8, 7, 6, 0.96);
      box-shadow: 0 26px 80px rgba(0, 0, 0, 0.52);
    }

    .cookie-consent.is-hidden {
      display: none;
    }

    .cookie-consent strong {
      display: block;
      color: var(--cream);
      font-size: 1rem;
      margin-bottom: 5px;
    }

    .cookie-consent p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.45;
    }

    .cookie-consent-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
      min-width: 250px;
    }

    .cookie-consent-actions a,
    .cookie-consent-actions button {
      border-radius: 999px;
      padding: 10px 13px;
      border: 1px solid rgba(215, 181, 109, 0.24);
      background: rgba(247, 234, 208, 0.06);
      color: var(--cream);
      font: inherit;
      font-weight: 800;
      font-size: 0.82rem;
      text-decoration: none;
      cursor: pointer;
    }

    .cookie-consent-actions a:hover,
    .cookie-consent-actions button:hover {
      border-color: rgba(240, 216, 139, 0.48);
      background: rgba(247, 234, 208, 0.1);
    }

    .cookie-consent-actions .cookie-primary {
      color: #080706;
      border-color: transparent;
      background: linear-gradient(135deg, var(--brass), var(--brass-bright));
    }

    @media (prefers-reduced-motion: no-preference) {
      .reveal { animation: rise 0.8s ease both; }
      .reveal:nth-child(2) { animation-delay: 0.08s; }
      .reveal:nth-child(3) { animation-delay: 0.16s; }
      @keyframes rise {
        from { opacity: 0.78; transform: translateY(12px); }
        to { opacity: 1; transform: translateY(0); }
      }
    }

    @media (max-width: 960px) {
      .hero-inner,
      .split,
      .dropin-grid,
      .video-grid,
      .booking-strip { grid-template-columns: 1fr; }
      .hero { min-height: auto; }
      .hero-inner { padding-top: 92px; }
      .hero-card { max-width: 520px; }
      .review-cards { grid-template-columns: 1fr; }
      .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .service-copy,
      .faq-grid { grid-template-columns: 1fr; }
      .place-card,
      .place-card:nth-child(1),
      .place-card:nth-child(2),
      .place-card:nth-child(3),
      .place-card:nth-child(4),
      .place-card:nth-child(5),
      .gallery figure,
      .gallery figure:nth-child(1),
      .gallery figure:nth-child(3),
      .gallery figure:nth-child(6),
      .gallery figure:nth-child(8),
      .gallery figure:nth-child(10),
      .gallery figure:nth-child(12) { grid-column: span 12; }
      .contact-wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 640px) {
      .nav-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
      .menu { justify-content: flex-start; }
      .menu a { font-size: 0.84rem; }
      h1 {
        max-width: 9ch;
        font-size: clamp(2.25rem, 13vw, 3rem);
        line-height: 1.06;
        letter-spacing: 0;
        overflow-wrap: anywhere;
        text-wrap: balance;
      }
      .hero-story h1 { max-width: 13ch; }
      .hero-card { width: 100%; max-width: 100%; padding: 16px; }
      .lead { max-width: 100%; font-size: 0.98rem; }
      .quick-price { flex-wrap: wrap; justify-content: flex-start; }
      .review-score { grid-template-columns: 1fr; }
      .score-number { width: 94px; height: 94px; font-size: 2rem; }
      .price-grid, .contact-wrap { grid-template-columns: 1fr; }
      .cookie-consent { grid-template-columns: 1fr; }
      .cookie-consent-actions { min-width: 0; justify-content: flex-start; }
    }
