
    /* ── RESET ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    img { display: block; max-width: 100%; }

    /* ── TOKENS ─────────────────────────────────────────── */
    :root {
      --ms-purple:  #3a2880;
      --ms-teal:    #1e6878;
      --ms-cream:   #e2cd98;
      --ms-gold:    #f0981a;
      --ms-dark:    #14102a;
      --ms-bg:      #f4f2ef;
      --ms-text:    #1e1a2e;
      --ms-muted:   #5a5470;

      --gap-sm: 1.5rem;
      --gap-md: 3rem;
      --gap-lg: 6rem;
    }

    /* ── BASE ────────────────────────────────────────────── */
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      background: var(--ms-bg);
      color: var(--ms-text);
      overflow-x: hidden;
    }
    a { color: inherit; }

    /* ── NAV ─────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 2.5rem;
      background: rgba(20, 16, 42, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226, 205, 152, 0.08);
    }
    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: 0.07em;
      color: var(--ms-cream);
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo .accent { color: var(--ms-gold); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(226, 205, 152, 0.6);
      text-decoration: none;
      transition: color 0.18s;
    }
    .nav-links a:hover { color: var(--ms-cream); }
    .nav-links .cta-link {
      background: var(--ms-gold);
      color: var(--ms-dark) !important;
      padding: 0.4rem 1.1rem;
      border-radius: 3px;
      font-weight: 700;
    }
    .nav-links .cta-link:hover { background: #da880e; color: var(--ms-dark) !important; }

    /* ── HERO ─────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    /* Diagonal split — mirrors the business card */
    .hero::before,
    .hero::after { content: ''; position: absolute; inset: 0; }
    .hero::before { background: var(--ms-purple); z-index: 0; }
    .hero::after {
      background: var(--ms-teal);
      /* sharp diagonal at ~55% — same geometry as the card */
      clip-path: polygon(56% 0, 100% 0, 100% 100%, 30% 100%);
      z-index: 1;
    }

    /* decorative gear — echoes the card icon */
    .hero-gear {
      position: absolute;
      right: 3%;
      bottom: -4%;
      z-index: 2;
      opacity: 0.07;
      width: clamp(200px, 40vw, 480px);
      aspect-ratio: 1;
      color: var(--ms-cream);
    }

    .hero-content {
      position: relative;
      z-index: 3;
      padding: 9rem 2.5rem 5rem;
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
    }
    .hero-eyebrow {
      font-family: 'Space Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ms-gold);
      margin-bottom: 1.4rem;
    }
    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 13vw, 10rem);
      line-height: 0.9;
      letter-spacing: 0.02em;
      color: var(--ms-cream);
    }
    .hero-title .period { color: var(--ms-gold); }
    .hero-tagline {
      margin-top: 1.6rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.2rem, 3.5vw, 2.6rem);
      letter-spacing: 0.22em;
      color: rgba(226, 205, 152, 0.55);
    }
    .hero-tagline .accent { color: var(--ms-gold); }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .btn-primary {
      display: inline-block;
      background: var(--ms-gold);
      color: var(--ms-dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 0.85rem 2.1rem;
      border-radius: 3px;
      text-decoration: none;
      transition: background 0.16s, transform 0.16s;
    }
    .btn-primary:hover { background: #da880e; transform: translateY(-2px); }
    .btn-ghost {
      display: inline-block;
      background: transparent;
      color: var(--ms-cream);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.88rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 0.85rem 2.1rem;
      border-radius: 3px;
      border: 1.5px solid rgba(226, 205, 152, 0.3);
      text-decoration: none;
      transition: border-color 0.16s, color 0.16s;
    }
    .btn-ghost:hover { border-color: var(--ms-cream); color: white; }

    /* ── TICKER ────────────────────────────────────────────── */
    .ticker-wrap {
      background: var(--ms-dark);
      border-top: 2px solid var(--ms-gold);
      border-bottom: 2px solid var(--ms-gold);
      overflow: hidden;
      padding: 0.7rem 0;
      position: relative;
      z-index: 10;
    }
    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker 36s linear infinite;
    }
    @media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ticker-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.05rem;
      letter-spacing: 0.14em;
      color: var(--ms-cream);
      padding: 0 2rem;
      white-space: nowrap;
      user-select: none;
    }
    .ticker-item .dot { color: var(--ms-gold); margin-left: 2rem; }

    /* ── SHARED SECTION CHROME ──────────────────────────────── */
    .section { padding: var(--gap-lg) 2.5rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ms-gold);
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      line-height: 1.0;
      letter-spacing: 0.04em;
      color: var(--ms-text);
    }
    .section-lead {
      font-size: 1.05rem;
      color: var(--ms-muted);
      max-width: 54ch;
      line-height: 1.65;
      margin-top: 0.8rem;
    }
    .section-header { margin-bottom: var(--gap-md); }

    /* ── TOOLS ────────────────────────────────────────────── */
    .tools-section { background: var(--ms-bg); }
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.25rem;
    }
    .tool-card {
      background: #fff;
      border-radius: 5px;
      padding: 1.75rem 1.4rem 1.6rem;
      box-shadow: 0 1px 8px rgba(20, 16, 42, 0.06);
      border-top: 4px solid var(--ms-teal);
      transition: transform 0.18s, box-shadow 0.18s;
    }
    .tool-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(20, 16, 42, 0.11); }
    .tool-card.gold-top { border-top-color: var(--ms-gold); }
    .tool-card.purple-top { border-top-color: var(--ms-purple); }
    .tool-icon {
      width: 2.2rem;
      height: 2.2rem;
      margin-bottom: 1.1rem;
      color: var(--ms-teal);
    }
    .tool-card.gold-top .tool-icon { color: var(--ms-gold); }
    .tool-card.purple-top .tool-icon { color: var(--ms-purple); }
    .tool-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.25rem;
      letter-spacing: 0.05em;
      color: var(--ms-text);
      margin-bottom: 0.35rem;
    }
    .tool-desc {
      font-size: 0.85rem;
      color: var(--ms-muted);
      line-height: 1.5;
    }

    /* ── MEMBERSHIP ──────────────────────────────────────── */
    .membership-section { background: var(--ms-dark); }
    .membership-section .section-title { color: var(--ms-cream); }
    .membership-section .section-lead { color: rgba(226, 205, 152, 0.5); }
    .membership-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.25rem;
      margin-top: var(--gap-md);
    }
    .tier-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(226,205,152,0.1);
      border-radius: 5px;
      padding: 2rem 1.75rem;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .tier-card.featured {
      border-color: var(--ms-gold);
      background: rgba(240, 152, 26, 0.07);
    }
    .tier-badge {
      position: absolute;
      top: -0.7rem;
      left: 1.75rem;
      background: var(--ms-gold);
      color: var(--ms-dark);
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.2rem 0.6rem;
      border-radius: 2px;
    }
    .tier-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.06em;
      color: var(--ms-cream);
    }
    .tier-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      line-height: 1.1;
      color: var(--ms-gold);
      margin: 0.4rem 0;
    }
    .tier-price sup {
      font-size: 1.5rem;
      vertical-align: top;
      margin-top: 0.5rem;
      display: inline-block;
    }
    .tier-period {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      color: rgba(226,205,152,0.35);
      letter-spacing: 0;
      font-weight: 400;
    }
    .tier-perks {
      list-style: none;
      margin: 1.2rem 0 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      flex: 1;
    }
    .tier-perks li {
      font-size: 0.875rem;
      color: rgba(226,205,152,0.65);
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      line-height: 1.4;
    }
    .tier-perks li::before {
      content: '→';
      color: var(--ms-gold);
      flex-shrink: 0;
    }
    .tier-cta {
      display: inline-block;
      padding: 0.65rem 1.4rem;
      border-radius: 3px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 0.83rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-decoration: none;
      text-align: center;
      transition: background 0.15s, transform 0.15s;
    }
    .tier-cta.solid { background: var(--ms-gold); color: var(--ms-dark); }
    .tier-cta.solid:hover { background: #da880e; }
    .tier-cta.outline {
      border: 1.5px solid rgba(226,205,152,0.2);
      color: var(--ms-cream);
    }
    .tier-cta.outline:hover { border-color: rgba(226,205,152,0.55); }
    .membership-note {
      margin-top: 1.5rem;
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      color: rgba(226,205,152,0.25);
    }
    /* PLACEHOLDER warning — remove before launch */
    .placeholder-note {
      display: inline-block;
      background: rgba(240,152,26,0.18);
      border: 1px solid rgba(240,152,26,0.4);
      color: var(--ms-gold);
      font-family: 'Space Mono', monospace;
      font-size: 0.68rem;
      padding: 0.15rem 0.6rem;
      border-radius: 2px;
      letter-spacing: 0.08em;
    }

    /* ── HOURS ───────────────────────────────────────────── */
    .hours-section { background: var(--ms-bg); }
    .hours-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-top: var(--gap-md);
    }
    @media (max-width: 700px) {
      .hours-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    }
    .hours-table { width: 100%; border-collapse: collapse; }
    .hours-table tr { border-bottom: 1px solid rgba(20,16,42,0.07); }
    .hours-table tr:last-child { border-bottom: none; }
    .hours-table td {
      padding: 0.65rem 0;
      font-size: 0.92rem;
    }
    .hours-table td:first-child { color: var(--ms-text); font-weight: 500; }
    .hours-table td:last-child {
      text-align: right;
      font-family: 'Space Mono', monospace;
      font-size: 0.8rem;
      color: var(--ms-muted);
    }
    .hours-table .closed td { color: var(--ms-muted); opacity: 0.5; }
    .hours-sub {
      font-size: 0.83rem;
      color: var(--ms-muted);
      margin-top: 1rem;
      line-height: 1.55;
    }
    .map-block {
      background: var(--ms-dark);
      border-radius: 5px;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.1rem;
      text-align: center;
      min-height: 260px;
    }
    /* TODO: Replace .map-block with an actual embedded map iframe */
    .map-pin-icon { color: rgba(226,205,152,0.2); }
    .map-address-text {
      font-family: 'Space Mono', monospace;
      font-size: 0.8rem;
      color: rgba(226,205,152,0.45);
      line-height: 1.7;
    }
    .map-link {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ms-gold);
      text-decoration: none;
    }
    .map-link:hover { text-decoration: underline; }

    /* ── OPEN HOUSE CALLOUT ──────────────────────────────── */
    .callout {
      background: rgba(30, 104, 120, 0.12);
      border-left: 3px solid var(--ms-teal);
      padding: 1rem 1.25rem;
      border-radius: 0 4px 4px 0;
      margin-top: 1.5rem;
    }
    .callout-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ms-teal);
      margin-bottom: 0.3rem;
    }
    .callout-text { font-size: 0.88rem; color: var(--ms-text); line-height: 1.5; }

    /* ── CTA ─────────────────────────────────────────────── */
    .cta-section {
      background: var(--ms-purple);
      padding: var(--gap-lg) 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-watermark {
      position: absolute;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28vw;
      color: rgba(255,255,255,0.035);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      letter-spacing: -0.02em;
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      line-height: 1;
    }
    .cta-inner { position: relative; z-index: 1; }
    .cta-section .section-title { color: var(--ms-cream); font-size: clamp(2.8rem, 7vw, 5.5rem); }
    .cta-section .section-label { color: var(--ms-gold); text-align: center; }
    .cta-section p {
      color: rgba(226,205,152,0.55);
      font-size: 1.05rem;
      line-height: 1.65;
      max-width: 48ch;
      margin: 0.9rem auto 0;
    }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

    /* ── FOOTER ──────────────────────────────────────────── */
    footer {
      background: var(--ms-dark);
      padding: 2.2rem 2.5rem;
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.25rem;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.15rem;
      letter-spacing: 0.07em;
      color: var(--ms-cream);
      text-decoration: none;
    }
    .footer-logo .accent { color: var(--ms-gold); }
    .footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
    .footer-links a {
      font-size: 0.75rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      font-weight: 600;
      color: rgba(226,205,152,0.35);
      text-decoration: none;
    }
    .footer-links a:hover { color: rgba(226,205,152,0.7); }
    .footer-credit {
      font-family: 'Space Mono', monospace;
      font-size: 0.68rem;
      color: rgba(226,205,152,0.2);
    }
    .footer-credit a { color: var(--ms-teal); text-decoration: none; }
    .footer-credit a:hover { color: #2a90a8; }

    /* ── REVEAL ──────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.48s ease, transform 0.48s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 640px) {
      nav { padding: 0.9rem 1.25rem; }
      .nav-links { display: none; }
      .hero-content { padding: 7rem 1.25rem 4rem; }
      .section { padding: 4rem 1.25rem; }
      .cta-section { padding: 4rem 1.25rem; }
      .hero-gear { display: none; }
    }
    @media (min-width: 641px) and (max-width: 860px) {
      .tools-grid { grid-template-columns: repeat(2, 1fr); }
    }
  
.hours-sub{margin-top:0.9rem}
