    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0e0c0a;
      --cream: #f5f0e8;
      --gold: #c9a96e;
      --gold-light: #e8d5ae;
      --rust: #8b3a2a;
      --mid: #2a2420;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --display: 'Bebas Neue', sans-serif;
      --mono: 'DM Mono', monospace;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--cream);
      font-family: var(--serif);
      overflow-x: hidden;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.35;
      pointer-events: none;
      z-index: 999;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 3rem;
      background: linear-gradient(to bottom, rgba(14,12,10,0.95) 0%, transparent 100%);
    }

    .nav-logo {
      font-family: var(--display);
      font-size: 1.4rem;
      letter-spacing: 0.15em;
      color: var(--gold);
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      color: var(--cream);
      text-decoration: none;
      text-transform: uppercase;
      opacity: 0.7;
      transition: opacity 0.2s, color 0.2s;
    }

    .nav-links a:hover { opacity: 1; color: var(--gold); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 3rem 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 70% 40%, rgba(201,169,110,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(139,58,42,0.15) 0%, transparent 50%),
        linear-gradient(160deg, #1a1410 0%, #0e0c0a 50%, #150f0b 100%);
    }

    /* Decorative scissors SVG line art */
    .hero-ornament {
      position: absolute;
      top: 12%;
      right: 6%;
      opacity: 0.08;
      width: 340px;
    }

    .hero-tag {
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero-title {
      font-family: var(--display);
      font-size: clamp(5rem, 13vw, 12rem);
      line-height: 0.88;
      letter-spacing: 0.02em;
      color: var(--cream);
      opacity: 0;
      animation: fadeUp 0.9s 0.4s forwards;
    }

    .hero-title span {
      color: var(--gold);
      display: block;
    }

    .hero-sub {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1rem, 2.2vw, 1.5rem);
      color: var(--gold-light);
      margin-top: 1.5rem;
      max-width: 480px;
      line-height: 1.5;
      opacity: 0;
      animation: fadeUp 0.9s 0.6s forwards;
    }

    .hero-cta {
      margin-top: 3rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.8s forwards;
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .btn-primary {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--black);
      padding: 1rem 2.5rem;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-ghost {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      opacity: 0.6;
      transition: opacity 0.2s;
    }

    .btn-ghost:hover { opacity: 1; }

    .hero-rating {
      position: absolute;
      right: 3rem;
      bottom: 5rem;
      text-align: right;
      opacity: 0;
      animation: fadeUp 1s 1s forwards;
    }

    .hero-rating .stars {
      color: var(--gold);
      font-size: 1.1rem;
      letter-spacing: 0.1em;
    }

    .hero-rating .score {
      font-family: var(--display);
      font-size: 3.5rem;
      line-height: 1;
      color: var(--cream);
    }

    .hero-rating .label {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      color: var(--gold);
      text-transform: uppercase;
      margin-top: 0.3rem;
    }

    /* ── DIVIDER ── */
    .rule {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0.3;
    }

    /* ── SECTION SHARED ── */
    section { padding: 7rem 3rem; }

    .section-label {
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--display);
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1;
      letter-spacing: 0.04em;
      color: var(--cream);
      margin-bottom: 2rem;
    }

    /* ── ABOUT ── */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-visual {
      position: relative;
    }

    .about-box {
      width: 100%;
      aspect-ratio: 3/4;
      background: linear-gradient(135deg, var(--mid) 0%, #1e1812 100%);
      border: 1px solid rgba(201,169,110,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
      font-size: 8rem;
      color: rgba(201,169,110,0.06);
      letter-spacing: 0.05em;
      overflow: hidden;
      position: relative;
    }

    .about-box::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
    }

    .scissors-art {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-accent {
      position: absolute;
      top: -1.5rem;
      right: -1.5rem;
      width: 6rem;
      height: 6rem;
      border: 1px solid rgba(201,169,110,0.35);
    }

    .about-accent2 {
      position: absolute;
      bottom: -1.5rem;
      left: -1.5rem;
      width: 4rem;
      height: 4rem;
      background: var(--rust);
      opacity: 0.5;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.85;
      color: rgba(245,240,232,0.75);
      margin-bottom: 1.5rem;
      font-weight: 300;
    }

    .about-text p em {
      color: var(--gold-light);
      font-style: italic;
    }

    .about-stats {
      display: flex;
      gap: 3rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(201,169,110,0.2);
    }

    .stat-num {
      font-family: var(--display);
      font-size: 3rem;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: var(--cream);
      opacity: 0.5;
      text-transform: uppercase;
      margin-top: 0.25rem;
    }

    /* ── SERVICES ── */
    #services { background: var(--mid); }

    .services-header {
      max-width: 1200px;
      margin: 0 auto 4rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: var(--black);
      padding: 3rem 2.5rem;
      border-top: 2px solid transparent;
      transition: border-color 0.3s, background 0.3s;
      cursor: default;
    }

    .service-card:hover {
      border-color: var(--gold);
      background: #14100e;
    }

    .service-icon {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .service-name {
      font-family: var(--display);
      font-size: 1.8rem;
      letter-spacing: 0.05em;
      color: var(--cream);
      margin-bottom: 0.75rem;
    }

    .service-desc {
      font-family: var(--serif);
      font-weight: 300;
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(245,240,232,0.55);
    }

    /* ── HOURS ── */
    .hours-section {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .hours-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }

    .hours-table tr {
      border-bottom: 1px solid rgba(201,169,110,0.12);
    }

    .hours-table td {
      padding: 1rem 0;
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 300;
      color: rgba(245,240,232,0.75);
    }

    .hours-table td:last-child {
      text-align: right;
      color: var(--gold-light);
    }

    .hours-table tr.closed td {
      opacity: 0.35;
      text-decoration: line-through;
      text-decoration-color: var(--rust);
    }

    .hours-table tr.closed td:last-child {
      text-decoration: none;
      color: var(--rust);
      opacity: 0.6;
    }

    /* Contact card */
    .contact-card {
      background: linear-gradient(135deg, #1a1410 0%, #110e0c 100%);
      border: 1px solid rgba(201,169,110,0.2);
      padding: 3rem;
    }

    .contact-item {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(201,169,110,0.1);
    }

    .contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    .contact-item .ci-label {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      color: var(--gold);
      text-transform: uppercase;
    }

    .contact-item .ci-value {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--cream);
    }

    .contact-item a {
      color: var(--cream);
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-item a:hover { color: var(--gold); }

    /* ── REVIEWS ── */
    #reviews { background: #0a0806; }

    .reviews-header {
      max-width: 1200px;
      margin: 0 auto 3rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .review-card {
      background: var(--mid);
      padding: 2.5rem;
      position: relative;
    }

    .review-card::before {
      content: '\201C';
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      font-family: var(--display);
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.15;
      line-height: 1;
    }

    .review-text {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 300;
      font-size: 1rem;
      line-height: 1.8;
      color: rgba(245,240,232,0.75);
      margin-bottom: 1.5rem;
    }

    .review-author {
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      color: var(--gold);
      text-transform: uppercase;
    }

    .review-stars {
      font-size: 0.75rem;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    /* ── MAP CTA ── */
    .map-cta {
      background: var(--black);
      padding: 5rem 3rem;
      text-align: center;
    }

    .map-cta .section-title { text-align: center; }

    .map-cta p {
      font-family: var(--serif);
      font-weight: 300;
      font-size: 1.1rem;
      color: rgba(245,240,232,0.6);
      margin-bottom: 2.5rem;
    }

    .map-embed {
      width: 100%;
      max-width: 900px;
      height: 350px;
      border: 1px solid rgba(201,169,110,0.2);
      margin: 0 auto 2.5rem;
      display: block;
      filter: grayscale(0.4) contrast(1.1);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--mid);
      padding: 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(201,169,110,0.15);
    }

    .footer-logo {
      font-family: var(--display);
      font-size: 1.8rem;
      letter-spacing: 0.1em;
      color: var(--gold);
    }

    .footer-right {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: rgba(245,240,232,0.35);
      text-align: right;
      line-height: 2;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── HORIZONTAL MARQUEE ── */
    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid rgba(201,169,110,0.15);
      border-bottom: 1px solid rgba(201,169,110,0.15);
      padding: 0.9rem 0;
      background: var(--mid);
    }

    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 20s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      font-family: var(--display);
      font-size: 0.85rem;
      letter-spacing: 0.3em;
      color: var(--gold);
      opacity: 0.45;
      padding: 0 3rem;
      text-transform: uppercase;
    }

    .marquee-item span {
      color: var(--rust);
      margin: 0 1.5rem;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-links { gap: 1.5rem; }
      .hero { padding: 0 1.5rem 4rem; }
      section { padding: 5rem 1.5rem; }
      .about { grid-template-columns: 1fr; gap: 3rem; }
      .about-box { aspect-ratio: 16/9; font-size: 5rem; }
      .services-grid { grid-template-columns: 1fr; }
      .hours-section { grid-template-columns: 1fr; gap: 3rem; }
      .reviews-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1.5rem; text-align: center; }
      .footer-right { text-align: center; }
      .hero-rating { position: static; text-align: left; margin-top: 2rem; opacity: 1; animation: none; }
      .reviews-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    }
