  :root {
    --forest: #2D5A3D;
    --forest-deep: #1C2A20;
    --forest-mid: #3F7053;
    --tan: #A87B4B;
    --tan-light: #C49968;
    --cream: #F4ECD8;
    --cream-deep: #EADFC4;
    --paper: #FBF6E9;
    --ink: #1A1A18;
    --ink-soft: #4A4A45;
    --sky: #7A99A8;
    --rule: #D9C9A3;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.12  0 0 0 0 0.08  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: .55;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
  }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0;
  }

  .mono {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }
  img { display: block; max-width: 100%; height: auto; }

  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
  }

  /* =================== TOP BANNER (Valencia-style) =================== */
  .top-banner {
    background: var(--forest);
    color: var(--cream);
    text-align: center;
    padding: 11px 20px;
    font-size: .92rem;
    letter-spacing: 0.01em;
    position: relative; z-index: 60;
  }
  .top-banner strong { color: var(--cream); font-weight: 600; }
  .top-banner a { text-decoration: underline; text-decoration-color: var(--tan-light); text-underline-offset: 3px; }

  /* =================== NAV =================== */
  .nav {
    position: sticky; top: 0;
    z-index: 50;
    background: rgba(251, 246, 233, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rule);
    transition: box-shadow .3s ease;
  }
  .nav.scrolled { box-shadow: 0 8px 30px -20px rgba(28,42,32,0.25); }
  .nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 30px;
  }
  .nav-logo {
    display: flex; align-items: center; flex-shrink: 0;
  }
  .nav-logo img {
    height: 56px; width: auto; display: block;
  }
  .nav-links {
    display: flex; gap: 38px; align-items: center;
    margin: 0 auto;
  }
  .nav-links a {
    font-size: .95rem; color: var(--forest-deep);
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color .2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1.5px; background: var(--tan);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
  }
  .nav-links a:hover { color: var(--forest); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
  .nav-phone {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .82rem; color: var(--forest-deep);
    padding: 8px 14px;
    border: 1px solid var(--rule); border-radius: 999px;
    transition: background .2s, color .2s;
  }
  .nav-phone:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
  .nav-phone svg { width: 14px; height: 14px; }

  .icon-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--rule);
    display: flex; align-items: center; justify-content: center;
    color: var(--forest-deep);
    transition: background .2s, color .2s, border-color .2s;
  }
  .icon-btn:hover { background: var(--forest-deep); color: var(--cream); border-color: var(--forest-deep); }
  .icon-btn svg { width: 18px; height: 18px; }

  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-phone span { display: none; }
  }
  @media (max-width: 600px) {
    .nav-inner { padding: 14px 18px; gap: 12px; }
    .nav-logo img { height: 44px; }
    .nav-phone { padding: 8px 10px; }
  }

  /* =================== SIDE DRAWER =================== */
  .drawer-backdrop {
    position: fixed; inset: 0;
    background: rgba(28,42,32,0.5);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
  }
  .drawer-backdrop.open { opacity: 1; pointer-events: auto; }
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(440px, 100vw);
    background: var(--paper);
    z-index: 95;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.4,.05,.2,1);
    overflow-y: auto;
    box-shadow: -30px 0 60px -30px rgba(28,42,32,0.4);
  }
  .drawer.open { transform: translateX(0); }
  .drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 30px;
    border-bottom: 1px solid var(--rule);
  }
  .drawer-head img { height: 44px; }
  .drawer-close {
    background: transparent; border: 0;
    width: 38px; height: 38px;
    color: var(--forest-deep);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background .2s;
  }
  .drawer-close:hover { background: var(--cream-deep); }
  .drawer-close svg { width: 22px; height: 22px; }

  .drawer-body { padding: 30px; }
  .drawer-section { margin-bottom: 36px; }
  .drawer-section h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tan);
    margin: 0 0 14px;
    font-weight: 500;
  }
  .drawer-nav { display: flex; flex-direction: column; gap: 2px; }
  .drawer-nav a {
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--forest-deep);
    padding: 14px 4px;
    border-bottom: 1px solid var(--rule);
    transition: color .2s, padding .2s;
  }
  .drawer-nav a:hover { color: var(--tan); padding-left: 10px; }
  .drawer-nav a svg { width: 16px; height: 16px; opacity: .4; }

  .drawer-contact {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 26px 30px;
    margin: 0 -30px -30px;
    border-radius: 8px 8px 0 0;
  }
  .drawer-contact .mono { color: var(--tan-light); display: block; margin-bottom: 6px; }
  .drawer-contact a { display: block; font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--cream); margin-bottom: 18px; }

  /* =================== HERO =================== */
  .hero {
    position: relative;
    min-height: 88vh;
    padding: 80px 0 100px;
    overflow: hidden;
    display: flex; align-items: center;
  }
  .hero-bg-ca {
    position: absolute;
    right: -8%; top: 50%; transform: translateY(-50%);
    width: 110vh; max-width: 1200px; min-width: 600px;
    pointer-events: none;
    z-index: 1;
  }
  .hero-bg-ca svg { width: 100%; height: auto; display: block; overflow: visible; }
  .hero-bg-ca .ca-fill { fill: var(--forest); opacity: 0.07; }
  .hero-bg-ca .ca-stroke { fill: none; stroke: var(--forest-deep); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; opacity: 0.42; }
  .hero-bg-ca .ca-pine { fill: var(--forest); opacity: 0.32; }
  .hero-bg-ca .ca-bear { fill: var(--ink); opacity: 0.55; }
  .hero-bg-ca .ca-marker { fill: var(--tan); }
  .hero-bg-ca .ca-marker-pulse {
    fill: var(--tan); opacity: 0.4;
    transform-origin: 220px 285px;
    animation: pulse 2.8s ease-in-out infinite;
  }
  .hero-bg-ca .ca-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    fill: var(--forest-deep);
    letter-spacing: 0.18em;
    opacity: 0.85;
    text-transform: uppercase;
  }
  .hero-bg-ca .ca-topo {
    fill: none; stroke: var(--tan); stroke-width: 0.7;
    opacity: 0.22; stroke-dasharray: 1 3;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    70%, 100% { transform: scale(2.6); opacity: 0; }
  }

  .hero-grid { position: relative; z-index: 3; width: 100%; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--tan);
    margin-bottom: 28px;
  }
  .hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--tan); }

  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 6rem);
    color: var(--forest-deep);
    margin-bottom: 30px;
    max-width: 16ch;
  }
  .hero h1 .accent { font-style: italic; color: var(--forest); font-weight: 500; }
  .hero p.lede {
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    color: var(--ink-soft);
    max-width: 54ch;
    margin: 0 0 40px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-size: .98rem; font-weight: 500;
    cursor: pointer; border: 0;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  }
  .btn-primary { background: var(--forest); color: var(--cream); }
  .btn-primary:hover { background: var(--forest-deep); }
  .btn-ghost { background: transparent; color: var(--forest-deep); border: 1px solid var(--forest-deep); }
  .btn-ghost:hover { background: var(--forest-deep); color: var(--cream); }
  .btn svg { width: 16px; height: 16px; }

  .hero-bear {
    position: absolute; bottom: 60px; left: -120px;
    width: 110px; z-index: 2; opacity: 0; pointer-events: none;
  }
  .hero-bear svg { width: 100%; height: auto; }
  .hero-bear path { fill: var(--ink); }

  .hero-strip {
    margin-top: 70px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--rule);
  }
  .strip-item .mono { color: var(--tan); display: block; margin-bottom: 6px; }
  .strip-item .val { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--forest-deep); }
  @media (max-width: 820px) {
    .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .hero-bg-ca { right: -45%; opacity: 0.55; }
  }

  /* =================== MARQUEE =================== */
  .marquee {
    background: var(--forest-deep); color: var(--cream-deep);
    padding: 22px 0; overflow: hidden; border-top: 1px solid var(--forest);
    position: relative; z-index: 4;
  }
  .marquee-track {
    display: flex; gap: 60px; white-space: nowrap;
    animation: scroll 42s linear infinite; will-change: transform;
  }
  .marquee-item { display: inline-flex; align-items: center; gap: 14px; font-family: 'Fraunces', serif; font-size: 1.3rem; font-style: italic; }
  .marquee-item::after { content: '✦'; color: var(--tan-light); font-style: normal; margin-left: 60px; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

  /* =================== MEGA MENU =================== */
  .nav-item { position: relative; }
  .nav-item > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
  .nav-item > a .chev { width: 11px; height: 11px; transition: transform .25s; opacity: .6; }
  .nav-item.has-mega:hover > a .chev,
  .nav-item.has-mega:focus-within > a .chev { transform: rotate(180deg); }

  .mega {
    position: fixed;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 30px 60px -30px rgba(28,42,32,0.25);
    padding: 36px 0 40px;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 49;
  }
  .nav-item:hover .mega,
  .nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
  .mega-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 28px;
    display: grid; grid-template-columns: 240px 1fr; gap: 50px;
  }
  .mega-head h5 {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: var(--forest-deep);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .mega-head .mono { color: var(--tan); display: block; margin-bottom: 16px; }
  .mega-head p { color: var(--ink-soft); font-size: .9rem; line-height: 1.55; margin: 0 0 18px; }
  .mega-head a.see-all {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--forest); font-size: .88rem; font-weight: 500;
    border-bottom: 1px solid var(--forest);
    padding-bottom: 4px;
  }
  .mega-head a.see-all svg { width: 14px; height: 14px; }

  .mega-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  }
  .mega-tile {
    display: block;
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s ease;
  }
  .mega-tile:hover { transform: translateY(-2px); }
  .mega-tile .mt-img {
    aspect-ratio: 4 / 3;
    background:
      radial-gradient(ellipse 80% 60% at 30% 20%, rgba(168,123,75,0.14), transparent 70%),
      linear-gradient(160deg, #EADFC4 0%, #D9C9A3 100%);
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid var(--rule);
    position: relative;
    transition: background .3s ease;
  }
  .mega-tile:hover .mt-img {
    background:
      radial-gradient(ellipse 80% 60% at 30% 20%, rgba(196,153,104,0.28), transparent 70%),
      linear-gradient(160deg, #2D5A3D 0%, #1C2A20 100%);
  }
  .mega-tile .mt-name {
    font-family: 'Fraunces', serif;
    font-size: .98rem; color: var(--forest-deep);
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .mega-tile .mt-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem; letter-spacing: .05em;
    color: var(--ink-soft); opacity: .7;
    text-transform: uppercase;
  }
  @media (max-width: 1024px) {
    .mega { display: none; }
  }

  /* =================== SEARCH =================== */
  .search-wrap { position: relative; }
  .search-input {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 9px 16px 9px 38px;
    font-family: inherit;
    font-size: .9rem;
    color: var(--forest-deep);
    width: 240px;
    transition: border-color .2s, width .3s ease, background .2s;
  }
  .search-input:focus { outline: none; border-color: var(--forest); background: #fff; width: 300px; }
  .search-input::placeholder { color: var(--ink-soft); opacity: .55; }
  .search-icon {
    position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px;
    color: var(--ink-soft); opacity: .6;
    pointer-events: none;
  }

  .search-results {
    position: absolute; top: calc(100% + 8px); right: 0;
    width: 380px; max-height: 460px; overflow-y: auto;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 10px;
    box-shadow: 0 24px 50px -20px rgba(28,42,32,0.35);
    padding: 8px;
    z-index: 70;
    display: none;
  }
  .search-results.open { display: block; }
  .search-results .sr-empty {
    padding: 18px; text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--ink-soft); opacity: .7;
  }
  .sr-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background .15s;
  }
  .sr-item:hover { background: var(--cream); }
  .sr-thumb {
    width: 8px; height: 48px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--forest) 0%, var(--tan) 100%);
    flex-shrink: 0;
  }
  .sr-info { flex: 1; min-width: 0; }
  .sr-name { font-family: 'Fraunces', serif; color: var(--forest-deep); font-size: 1rem; line-height: 1.2; }
  .sr-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem; letter-spacing: .05em; text-transform: uppercase;
    color: var(--tan); margin-top: 3px;
  }

  @media (max-width: 1100px) { .search-input { width: 180px; } .search-input:focus { width: 220px; } }
  @media (max-width: 900px) { .search-wrap { display: none; } }

  /* =================== SECTIONS =================== */
  .section { padding: 110px 0; position: relative; z-index: 2; }
  .section-head { margin-bottom: 60px; max-width: 760px; }
  .section-head .mono { color: var(--tan); display: block; margin-bottom: 18px; }
  .section-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); color: var(--forest-deep); margin-bottom: 18px; }
  .section-head p { color: var(--ink-soft); font-size: 1.08rem; max-width: 58ch; }
  .section-head.center { margin: 0 auto 60px; text-align: center; }
  .section-head.center .hero-eyebrow { justify-content: center; }
  .section-head.center .hero-eyebrow::before { display: none; }
  .section-head.center p { margin: 0 auto; }

  /* =================== CATEGORY ROW (Valencia 4-up) =================== */
  .cat-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    margin-bottom: 80px;
  }
  .cat-tile {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background:
      radial-gradient(ellipse 80% 60% at 30% 20%, rgba(168,123,75,0.18), transparent 70%),
      linear-gradient(160deg, #2D5A3D 0%, #1C2A20 100%);
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: inset 0 0 0 1px rgba(168,123,75,0.18);
  }
  .cat-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px -20px rgba(28,42,32,.45), inset 0 0 0 1px rgba(196,153,104,0.4);
  }
  .cat-tile .overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 80%, rgba(168,123,75,0.14), transparent 70%);
    z-index: 1;
  }
  .cat-tile .content {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 26px;
    z-index: 2;
    color: var(--cream);
  }
  .cat-tile .content .mono { color: var(--tan-light); display: block; margin-bottom: 10px; }
  .cat-tile .content h3 { font-size: 1.7rem; color: var(--cream); }
  .cat-tile .arrow {
    position: absolute; top: 22px; right: 22px;
    width: 40px; height: 40px;
    background: var(--cream); color: var(--forest-deep);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .3s, background .2s;
    z-index: 2;
  }
  .cat-tile:hover .arrow { transform: rotate(-45deg); background: var(--tan); color: var(--cream); }
  @media (max-width: 980px) { .cat-row { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .cat-row { grid-template-columns: 1fr; } }

  /* =================== PRODUCT GRID (Veneer faces) =================== */
  .group-head {
    display: flex; align-items: end; justify-content: space-between;
    margin: 80px 0 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
  }
  .group-head h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); color: var(--forest-deep); }
  .group-head .mono { color: var(--tan); }

  .prod-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .prod-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex; flex-direction: column;
  }
  .prod-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(28,42,32,0.3);
  }
  .prod-card .img-wrap { display: none; }
  .prod-card { position: relative; }
  .prod-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest) 0%, var(--tan) 100%);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
  }
  .prod-card:hover::before { transform: scaleX(1); }
  .prod-card .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
  .prod-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem; color: var(--forest-deep);
    margin-bottom: 4px;
  }
  .prod-card .meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem; letter-spacing: .06em; text-transform: uppercase;
    color: var(--tan); margin-bottom: 12px;
  }
  .prod-card .specs {
    margin-top: auto;
    display: flex; flex-wrap: wrap; gap: 5px;
  }
  .prod-card .spec {
    font-family: 'JetBrains Mono', monospace;
    font-size: .66rem; letter-spacing: .04em;
    border: 1px solid var(--rule);
    padding: 3px 8px; border-radius: 999px;
    color: var(--ink-soft);
  }
  @media (max-width: 900px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 640px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 380px) { .prod-grid { grid-template-columns: 1fr; } }

  /* =================== BUILT FOR =================== */
  .built {
    background: var(--forest-deep);
    color: var(--cream);
    position: relative; overflow: hidden;
  }
  .built::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(244,236,216,0.04) 39px, rgba(244,236,216,0.04) 40px);
    pointer-events: none;
  }
  .built .section-head h2 { color: var(--cream); }
  .built .section-head .mono { color: var(--tan-light); }
  .built .section-head p { color: var(--cream-deep); opacity: .85; }
  .built-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 60px; position: relative; z-index: 2; }
  .built-item .num { font-family: 'Fraunces', serif; font-size: 3.4rem; color: var(--tan-light); line-height: 1; display: block; margin-bottom: 18px; font-style: italic; font-weight: 500; }
  .built-item h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: 10px; }
  .built-item p { color: var(--cream-deep); opacity: .8; font-size: .98rem; }
  @media (max-width: 820px) { .built-grid { grid-template-columns: 1fr; gap: 36px; } }

  /* =================== VISIT =================== */
  .visit { background: var(--cream); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  .visit h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); color: var(--forest-deep); margin-bottom: 24px; }
  .visit p.lede { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 36px; max-width: 50ch; }
  .visit-info { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
  .info-row { display: flex; gap: 18px; align-items: flex-start; }
  .info-row .icon {
    width: 40px; height: 40px;
    border: 1px solid var(--forest-deep); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--forest-deep);
  }
  .info-row .icon svg { width: 18px; height: 18px; }
  .info-row .mono { display: block; color: var(--tan); margin-bottom: 4px; }
  .info-row .val { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--forest-deep); }
  .info-row .val.large { font-size: 1.4rem; }
  .hours-list { font-family: 'JetBrains Mono', monospace; font-size: .85rem; color: var(--ink-soft); letter-spacing: .04em; }
  .hours-list div { display: flex; justify-content: space-between; padding: 4px 0; max-width: 260px; }
  .hours-list .closed { color: var(--tan); }
  .map-card {
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--rule);
    box-shadow: 0 30px 60px -30px rgba(28,42,32,0.3);
    background: var(--cream-deep);
  }
  .map-card iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.7) sepia(0.15); }
  @media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; gap: 50px; } .map-card { aspect-ratio: 4/3; } }

  /* =================== FOOTER =================== */
  footer { background: var(--forest-deep); color: var(--cream-deep); padding: 80px 0 40px; position: relative; z-index: 2; }
  .foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(244,236,216,0.15); }
  .foot-brand img { height: 70px; margin-bottom: 20px; }
  .foot-brand p { font-size: .92rem; opacity: .75; max-width: 38ch; }
  footer h4 { font-family: 'JetBrains Mono', monospace; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tan-light); margin-bottom: 16px; }
  footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  footer ul a { font-size: .92rem; opacity: .8; transition: opacity .2s; }
  footer ul a:hover { opacity: 1; color: var(--tan-light); }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; font-family: 'JetBrains Mono', monospace; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-deep); opacity: .55; }
  @media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; } .foot-bottom { flex-direction: column; gap: 12px; } }

  /* =================== REVEAL =================== */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: .08s; }
  .reveal[data-delay="2"] { transition-delay: .18s; }
  .reveal[data-delay="3"] { transition-delay: .28s; }
  .reveal[data-delay="4"] { transition-delay: .38s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-bg-ca path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
    .hero-bear { display: none; }
    .cat-tile, .prod-card { transition: none; }
    .cat-tile:hover, .prod-card:hover { transform: none; }
  }
