    * { margin: 0; padding: 0; box-sizing: border-box; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    :root {
      --bg:      #060606;
      --bg2:     #0a0a0a;
      --bg3:     #0e0e0e;
      --gold:    #c4a97b;
      --gold2:   #8a6f4a;
      --text:    #b0b0b0;
      --light:   #ede9e2;
      --muted:   #666;
      --line:    rgba(255,255,255,0.1);
      --serif:   'Cormorant Garamond', Georgia, serif;
      --sans:    'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 300;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      background: rgba(6,6,6,0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }

    .logo {
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 200;
      letter-spacing: 5px;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      text-transform: uppercase;
    }

    .logo-img {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .logo-img-el {
      height: 54px;
      width: auto;
    }
    .logo em {
      font-style: normal;
      font-weight: 500;
      color: var(--light);
      letter-spacing: 3px;
      text-transform: none;
    }

    nav { display: flex; gap: 36px; align-items: center; }

    .nav-drop { position: relative; }
    nav a, .nav-drop > span {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      transition: color 0.3s;
      cursor: pointer;
    }
    nav a:hover, .nav-drop:hover > span { color: var(--light); }
    .nav-drop > span::after { content: ' ▾'; font-size: 7px; opacity: 0.4; }

    .nav-menu {
      display: none;
      position: absolute;
      top: calc(100% + 20px);
      left: 0;
      background: #0e0e0e;
      border: 1px solid var(--line);
      min-width: 180px;
      z-index: 400;
    }
    .nav-drop:hover .nav-menu { display: block; }
    .nav-menu a {
      display: block;
      padding: 13px 20px;
      font-size: 11px;
      letter-spacing: 2px;
      border-bottom: 1px solid var(--line);
      color: var(--text);
      white-space: nowrap;
      text-transform: uppercase;
    }
    .nav-menu a:last-child { border: none; }
    .nav-menu a:hover { color: var(--light); }

    .nav-yahoo {
      border: 1px solid rgba(196,169,123,0.6);
      color: var(--gold) !important;
      padding: 8px 18px;
      letter-spacing: 2px;
      font-size: 11px;
      transition: all 0.3s;
    }
    .nav-yahoo:hover { background: var(--gold); color: var(--bg) !important; }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      background: #000;
    }

    .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 2s ease; }
    .slide.active { opacity: 1; }
    .slide-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      transition: transform 12s ease;
    }
    .slide.active .slide-bg { transform: scale(1); }
    .slide::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        135deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.55) 100%
      );
    }

    .hero-content {
      position: absolute;
      top: 120px; left: 64px;
      z-index: 10;
    }
    .hero-eyebrow {
      font-size: 9px;
      font-weight: 300;
      color: var(--gold);
      letter-spacing: 6px;
      text-transform: uppercase;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }
    .hero-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(52px, 7vw, 96px);
      font-weight: 400;
      color: var(--light);
      letter-spacing: 6px;
      line-height: 1;
      text-transform: uppercase;
    }
    .hero-title em {
      font-style: italic;
      color: rgba(255,255,255,0.75);
      text-transform: none;
      letter-spacing: 4px;
    }
    .hero-katakana {
      width: clamp(240px, 30vw, 420px);
      opacity: 0.9;
    }
    .hero-rule {
      width: 60px;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
      margin: 22px 0;
    }
    .hero-sub {
      font-size: 10px;
      font-weight: 300;
      color: rgba(255,255,255,0.4);
      letter-spacing: 4px;
      text-transform: uppercase;
    }
    .hero-btns { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

    .btn {
      display: inline-block;
      text-decoration: none;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 16px 32px;
      transition: all 0.35s;
    }
    .btn-solid {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
    }
    .btn-solid:hover { background: var(--gold); color: var(--bg); }
    .btn-outline {
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.75);
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.6); color: var(--light); }

    .slide-dots {
      position: absolute; bottom: 36px; right: 64px; z-index: 10;
      display: flex; gap: 12px; align-items: center;
    }
    .dot {
      width: 20px; height: 1px;
      background: rgba(255,255,255,0.2); cursor: pointer;
      transition: all 0.4s;
    }
    .dot.active { background: var(--gold); width: 36px; }

    /* ===== LAYOUT ===== */
    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 64px;
    }

    section { padding: 40px 0; }
    section.alt { background: var(--bg2); }

    .section-label {
      font-size: 12px;
      font-weight: 300;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 200;
      color: var(--light);
      letter-spacing: 6px;
      margin: 0;
      line-height: 1;
      text-transform: uppercase;
    }

    /* ===== ACCORDION ===== */
    .acc-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 48px 0;
      border-bottom: 1px solid var(--line);
      cursor: pointer;
      transition: opacity 0.3s;
    }
    .acc-head:hover { opacity: 0.75; }
    .acc-link {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      transition: color 0.3s;
      white-space: nowrap;
      margin-left: 24px;
      position: relative;
      padding-bottom: 2px;
    }
    .acc-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }
    .acc-head:hover .acc-link { color: var(--gold); }
    .acc-head:hover .acc-link::after { transform: scaleX(1); }
    .acc-body {
      display: none;
      padding: 56px 0 16px;
    }
    .acc-body.open { display: block; }

    hr.divider {
      border: none;
      border-top: 1px solid var(--line);
      margin: 56px 0;
    }

    /* ===== SURF ===== */
    .brands-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      margin-bottom: 48px;
    }
    .brand-tag {
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      color: var(--light);
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-weight: 300;
      padding: 20px 28px;
      letter-spacing: 2px;
      transition: all 0.3s;
    }
    .brand-tag:first-child { border-left: 1px solid var(--line); }
    .brand-tag:hover { color: var(--gold); background: rgba(196,169,123,0.04); }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1px;
      background: var(--line);
      margin-top: 48px;
    }

    .price-card {
      background: var(--bg);
      padding: 40px;
    }

    .price-card-label {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .price-card-title {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 300;
      color: var(--light);
      margin-bottom: 28px;
      letter-spacing: 1px;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      font-size: 12px;
    }
    .price-row:last-of-type { border: none; }
    .price-row .label { color: var(--text); font-weight: 300; }
    .price-row .price { color: var(--light); font-weight: 300; font-size: 14px; letter-spacing: 1px; }
    .price-note {
      margin-top: 20px;
      font-size: 12px;
      font-weight: 300;
      color: var(--text);
      line-height: 2;
      letter-spacing: 0.5px;
    }

    /* ===== VIRUS ===== */
    .virus-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .virus-body {
      font-size: 14px;
      font-weight: 300;
      color: var(--text);
      line-height: 2.2;
      letter-spacing: 0.3px;
    }

    .virus-facts { display: flex; flex-direction: column; }

    .virus-fact {
      display: flex;
      gap: 24px;
      padding: 20px 0;
      border-bottom: 1px solid var(--line);
      align-items: baseline;
    }
    .virus-fact:first-child { border-top: 1px solid var(--line); }
    .virus-fact-label {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text);
      min-width: 120px;
    }
    .virus-fact-value { font-size: 13px; font-weight: 300; color: var(--light); }

    .virus-cta { margin-top: 40px; display: flex; gap: 14px; }

    /* ===== SERVICES ===== */
    .svc-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--line);
    }

    .svc-col {
      background: var(--bg);
      padding: 48px;
    }

    .svc-col-label {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .svc-col-title {
      font-family: var(--serif);
      font-size: 32px;
      font-weight: 300;
      color: var(--light);
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .svc-col-desc {
      font-size: 13px;
      font-weight: 300;
      color: var(--text);
      line-height: 2;
    }

    /* ===== SNOW TUNE ===== */
    .tune-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-bottom: 0;
    }
    .tune-photo {
      width: 50%;
      max-width: 400px;
      height: 480px;
      object-fit: cover;
      object-position: center 40%;
      border-radius: 2px;
      display: block;
    }

    /* ===== SKATE PHOTOS ===== */
    .skate-photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .skate-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: 2px;
    }

    /* ===== INSTAGRAM ===== */
    .insta-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1px;
      background: var(--line);
      margin-bottom: 40px;
    }

    .insta-tile {
      aspect-ratio: 1;
      overflow: hidden;
      cursor: pointer;
    }
    .insta-tile-bg {
      width: 100%; height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease, opacity 0.6s ease;
      opacity: 0.6;
      filter: saturate(0.7);
    }
    .insta-tile:hover .insta-tile-bg {
      transform: scale(1.08);
      opacity: 1;
      filter: saturate(1);
    }

    .insta-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 8px;
    }
    .insta-handle {
      font-size: 13px;
      font-weight: 300;
      color: var(--text);
      letter-spacing: 2px;
    }
    .insta-handle em { color: var(--gold); font-style: normal; }

    /* ===== INFO ===== */
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }

    .info-block-title {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }

    .hours-tbl { width: 100%; border-collapse: collapse; }
    .hours-tbl td {
      padding: 16px 0;
      font-size: 13px;
      font-weight: 300;
      border-bottom: 1px solid var(--line);
    }
    .hours-tbl td:first-child { color: var(--text); font-size: 12px; letter-spacing: 2px; width: 44%; }
    .hours-tbl td:last-child { color: var(--light); }
    .closed td { color: rgba(196,169,123,0.6) !important; }

    .contact-list { margin-top: 32px; }
    .contact-row {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      font-size: 12px;
      font-weight: 300;
      letter-spacing: 0.5px;
    }
    .contact-icon { color: var(--gold2); min-width: 18px; text-align: center; font-size: 13px; }
    .contact-row a { color: var(--text); text-decoration: none; transition: color 0.2s; }
    .contact-row a:hover { color: var(--light); }
    .map-open-link { display: inline-block; margin-top: 14px; padding: 10px 24px; font-size: 12px; font-weight: 300; letter-spacing: 3px; color: var(--light); text-decoration: none; border: 1px solid rgba(255,255,255,0.35); transition: border-color 0.2s, color 0.2s; text-transform: uppercase; }
    .map-open-link:hover { color: var(--gold); border-color: var(--gold); }
    .map-link { color: var(--gold) !important; display: inline-flex; align-items: center; gap: 6px; text-decoration: underline; text-decoration-color: rgba(196,169,123,0.4); text-underline-offset: 3px; }
    .map-link:hover { color: var(--light) !important; text-decoration-color: var(--light); }
    .contact-row span { color: var(--text); }

    .map-placeholder {
      background: var(--bg3);
      border: 1px solid var(--line);
      height: 240px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 300;
      color: var(--muted);
      margin-top: 24px;
      letter-spacing: 2px;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #040404;
      border-top: 1px solid var(--line);
      padding: 56px 0 32px;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--line);
    }
    .footer-brand {}
    .footer-logo-img {
      height: 40px;
      width: auto;
      opacity: 0.7;
      display: block;
    }
    .footer-tagline {
      font-size: 11px;
      font-weight: 300;
      color: var(--muted);
      margin-top: 10px;
      letter-spacing: 1px;
    }
    .footer-links {
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
      align-items: center;
    }
    .footer-links a {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      transition: color 0.25s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom {
      padding-top: 24px;
      font-size: 10px;
      font-weight: 300;
      color: rgba(255,255,255,0.3);
      letter-spacing: 1.5px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      header { padding: 0 24px; height: 56px; }
      nav { display: none; }
      .wrap { padding: 0 24px; }
      section { padding: 72px 0; }
      .hero-content { left: 24px; bottom: 60px; }
      .slide-dots { right: 24px; }
      .virus-intro { grid-template-columns: 1fr; gap: 48px; }
      .svc-cols { grid-template-columns: 1fr; }
      .info-grid { grid-template-columns: 1fr; gap: 48px; }
      .insta-grid { grid-template-columns: repeat(3, 1fr); }
      .price-grid { grid-template-columns: 1fr; }
      .footer-nav { gap: 40px; }
      .hero-title { font-size: 46px; }
      .section-title { font-size: 42px; }
    }
    @media (max-width: 600px) {
      .hero-content { top: 80px; bottom: 60px; left: 24px; display: flex; flex-direction: column; }
      .hero-title { order: -1; }
      .hero-btns { margin-top: auto; }
    }

    /* ===== BOARDS HORIZONTAL GRID ===== */
    #boards { padding: 0; }
    .boards-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .board-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none;
      color: inherit;
      padding: 64px 32px;
      border-right: 1px solid var(--line);
      transition: background 0.4s;
      gap: 10px;
    }
    .board-nav:last-child { border-right: none; }
    .board-label {
      font-size: 9px;
      font-weight: 300;
      letter-spacing: 4px;
      color: var(--muted);
      font-family: var(--sans);
    }
    .board-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3.5vw, 44px);
      font-weight: 300;
      letter-spacing: 4px;
      color: var(--light);
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .board-desc {
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 2px;
      color: var(--text);
      margin-top: 4px;
    }
    .board-arrow {
      font-size: 11px;
      color: var(--muted);
      margin-top: 8px;
      transition: transform 0.3s, color 0.3s;
    }
    .board-nav:hover { background: rgba(196,169,123,0.04); }
    .board-nav:hover .board-title { color: var(--gold); }
    .board-nav:hover .board-arrow { transform: translateX(6px); color: var(--gold); }

    /* ===== SUB NAV ===== */
    #subnav { padding: 0; background: var(--bg2); }
    .subnav-row {
      display: flex;
      flex-direction: column;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .subnav-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-decoration: none;
      color: inherit;
      padding: 28px 40px;
      border-bottom: 1px solid var(--line);
      transition: background 0.3s;
    }
    .subnav-item:last-child { border-bottom: none; }
    .subnav-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(18px, 2vw, 28px);
      font-weight: 400;
      letter-spacing: 2px;
      color: var(--light);
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .insta-icon {
      width: clamp(28px, 3vw, 40px);
      height: clamp(28px, 3vw, 40px);
      flex-shrink: 0;
      opacity: 1;
    }
    .subnav-arrow {
      font-size: 11px;
      color: var(--muted);
      transition: transform 0.3s, color 0.3s;
    }
    .subnav-item:hover { background: rgba(255,255,255,0.02); }
    .subnav-item:hover .subnav-title { color: var(--gold); }
    .subnav-item:hover .subnav-arrow { transform: translateX(6px); color: var(--gold); }

    @media (max-width: 600px) {
      .boards-row { grid-template-columns: 1fr; }
      .board-nav { border-right: none; border-bottom: 1px solid var(--line); padding: 40px 24px; }
      .board-nav:last-child { border-bottom: none; }
      .subnav-row { flex-direction: column; }
      .subnav-item { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 24px; }
      .subnav-item:last-child { border-bottom: none; }
    }

    /* ===== TOP PAGE NAV SECTION ===== */
    .section-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-decoration: none;
      color: inherit;
      transition: opacity 0.3s;
    }
    .section-nav .section-title { font-size: clamp(18px, 2vw, 24px); letter-spacing: 3px; }
    .section-nav:hover .section-title { color: var(--gold); }
    .section-arrow {
      font-size: 13px;
      letter-spacing: 3px;
      color: var(--muted);
      transition: transform 0.3s, color 0.3s;
      flex-shrink: 0;
    }
    .section-nav:hover .section-arrow { transform: translateX(8px); color: var(--gold); }

    /* ===== SUB PAGE HERO ===== */
    .page-hero {
      position: relative;
      background-size: cover;
      background-position: center;
      min-height: 420px;
      display: flex;
      align-items: flex-end;
      padding-bottom: 60px;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
    }
    .page-hero-content {
      position: relative;
      z-index: 1;
      padding-top: 140px;
    }
    .back-link--hero { color: rgba(255,255,255,0.7); }
    .page-subtitle--hero { color: rgba(255,255,255,0.8); }

    /* ===== SUB PAGE ===== */
    .page-top {
      padding-top: 140px;
      padding-bottom: 60px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 0;
    }
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--text);
      text-decoration: none;
      margin-bottom: 32px;
      transition: color 0.3s;
      text-transform: uppercase;
    }
    .back-link:hover { color: var(--gold); }
    .page-subtitle {
      font-size: 13px;
      font-weight: 300;
      letter-spacing: 3px;
      color: var(--text);
      margin-top: 16px;
      text-transform: uppercase;
      font-family: var(--sans);
    }
    .page-section { padding: 64px 0; }
    .page-section.alt { background: var(--bg2); }

    /* ===== SNOW PAGE ===== */
    .snow-services-header {
      padding: 0;
      background: var(--bg);
    }
    .snow-services-header .wrap {
      padding-top: 48px;
      padding-bottom: 40px;
      border-top: 1px solid var(--gold2);
      border-bottom: 1px solid var(--line);
    }
    .snow-services-label {
      font-family: var(--serif);
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 300;
      letter-spacing: 5px;
      color: var(--light);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .snow-services-note {
      font-size: 12px;
      font-weight: 300;
      letter-spacing: 2px;
      color: var(--text);
    }

    /* ===== SURF PAGE ===== */
    .surf-body {
      font-size: 14px;
      font-weight: 300;
      color: var(--text);
      line-height: 2.2;
      max-width: 560px;
      letter-spacing: 0.3px;
    }
    .surf-price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }
    .surf-price-block {
      padding: 40px 36px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .surf-price-label {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 3px;
      color: var(--text);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .surf-price-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px;
      font-weight: 300;
      color: var(--light);
      letter-spacing: 1px;
      line-height: 1;
    }
    .surf-price-unit {
      font-size: 13px;
      font-weight: 300;
      color: var(--text);
      letter-spacing: 0;
    }
    .surf-price-note {
      font-size: 12px;
      font-weight: 300;
      letter-spacing: 1.5px;
      color: var(--text);
      margin-top: 12px;
    }
    @media (max-width: 600px) {
      .surf-price-grid { grid-template-columns: 1fr !important; }
    }
