  :root {
    --cream: #F8F5F0;
    --cream-2: #F2EDE4;
    --olive: #4A5D3A;
    --olive-dark: #3A4A2E;
    --olive-ink: #6B7D5C;
    --charcoal: #2A2A2A;
    --charcoal-2: #3D3D3D;
    --charcoal-mute: #6A6A6A;
    --border: #E0D9CE;
    --border-2: #CEC5B6;
    --white: #ffffff;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--cream);
    color: var(--charcoal-2);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

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

  /* === TYPOGRAPHY === */
  .serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; letter-spacing: -0.01em; }
  .label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--olive);
  }
  .divider {
    width: 56px; height: 1px; background: var(--olive); display: block;
  }

  /* === LAYOUT === */
  .container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
  .container-wide { max-width: 1600px; margin: 0 auto; padding: 0 48px; }
  @media (max-width: 768px) {
    .container, .container-wide { padding: 0 24px; }
  }

  /* === ANNOUNCEMENT BAR === */
  .announce {
    background: var(--olive);
    color: #EFEAE0;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 24px;
    text-align: center;
    position: relative;
    z-index: 60;
  }
  .announce .sep { opacity: 0.45; margin: 0 14px; }
  .announce a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

  /* === NAVBAR === */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.25s ease, background 0.25s ease;
  }
  .nav.scrolled {
    box-shadow: 0 4px 24px rgba(42,42,42,0.06);
    background: rgba(248,245,240,0.96);
    backdrop-filter: blur(8px);
  }
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 48px;
    gap: 32px;
  }
  .nav-links {
    display: flex; align-items: center; gap: 36px;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.06em;
  }
  .nav-links.right { justify-content: flex-end; }
  .nav-links a { color: var(--charcoal); position: relative; padding: 6px 0; transition: color 0.2s; }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--olive); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: var(--olive); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 0.18em;
    color: var(--charcoal);
    white-space: nowrap;
    text-align: center;
    line-height: 1;
  }
  .logo .mark {
    display: block;
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--olive);
    margin-top: 6px;
  }

  .cart-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px;
    border: 1px solid transparent;
    color: var(--charcoal);
    font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    transition: all 0.2s;
  }
  .cart-btn:hover { border-color: var(--olive); color: var(--olive); }
  .cart-btn .count {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--olive); color: var(--cream);
    font-size: 10px; font-weight: 600;
    min-width: 18px; height: 18px; padding: 0 5px;
  }

  .mobile-toggle { display: none; }

  @media (max-width: 960px) {
    .nav-inner { grid-template-columns: auto 1fr auto; padding: 16px 24px; }
    .nav-links.left { display: none; }
    .nav-links.right { gap: 14px; }
    .nav-links.right a:not(.cart-btn) { display: none; }
    .logo { font-size: 18px; }
    .logo .mark { font-size: 9px; }
    .mobile-toggle {
      display: inline-flex; flex-direction: column; gap: 5px;
      width: 28px; padding: 4px;
    }
    .mobile-toggle span { width: 20px; height: 1.5px; background: var(--charcoal); display: block; }
  }

  /* === BUTTONS === */
  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 30px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
  }
  .btn-primary { background: var(--olive); color: var(--cream); border-color: var(--olive); }
  .btn-primary:hover { background: var(--olive-dark); border-color: var(--olive-dark); }
  .btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }
  .btn-outline-light:hover { background: #fff; color: var(--charcoal); }
  .btn-outline { background: transparent; color: var(--olive); border-color: var(--olive); }
  .btn-outline:hover { background: var(--olive); color: var(--cream); }
  .btn-white { background: #fff; color: var(--charcoal); border-color: #fff; }
  .btn-white:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
  .btn .arrow { transition: transform 0.25s; }
  .btn:hover .arrow { transform: translateX(4px); }

  /* === HERO === */
  .hero {
    position: relative; height: 85vh; min-height: 620px;
    overflow: hidden;
    display: flex; align-items: flex-end;
    color: #fff;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.02);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(20,20,18,0.35) 0%,
      rgba(20,20,18,0.15) 40%,
      rgba(20,20,18,0.7) 100%
    );
  }
  .hero-content {
    position: relative; z-index: 2;
    padding-bottom: 90px;
    max-width: 780px;
  }
  .hero .label { color: rgba(255,255,255,0.85); margin-bottom: 26px; }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(44px, 6.5vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-wrap: balance;
    max-width: 900px;
  }
  .hero h1 em {
    font-style: italic; font-weight: 400;
    color: #E8DEC4;
  }
  .hero p {
    font-size: 17px;
    max-width: 520px;
    color: rgba(255,255,255,0.88);
    line-height: 1.65;
    margin-bottom: 38px;
    font-weight: 300;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

  .hero-meta {
    position: absolute; right: 48px; bottom: 90px; z-index: 2;
    text-align: right; color: rgba(255,255,255,0.82);
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 500;
    line-height: 1.8;
  }
  .hero-meta .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; letter-spacing: 0; text-transform: none;
    color: #E8DEC4; font-weight: 400;
    display: block; line-height: 1;
    margin-bottom: 8px;
  }

  .hero-scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .hero-scroll::after {
    content: ''; width: 1px; height: 28px; background: rgba(255,255,255,0.5);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%,100% { transform: scaleY(0.3); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
  }
  @media (max-width: 768px) {
    .hero-content { padding: 0 24px 60px; }
    .hero-meta { display: none; }
  }

  /* === SECTION STRUCTURE === */
  section { position: relative; }
  .section-pad { padding: 110px 0; }
  .section-head { margin-bottom: 64px; }
  .section-head .label { margin-bottom: 18px; display: inline-block; }
  .section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    max-width: 720px;
    text-wrap: balance;
  }
  .section-head .divider { margin-top: 28px; }

  .head-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 64px; gap: 32px; flex-wrap: wrap;
  }

  /* === OUR STORY === */
  .story {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px;
    align-items: center;
  }
  .story-img {
    position: relative;
    aspect-ratio: 4/5;
    background-size: cover; background-position: center;
    overflow: hidden;
  }
  .story-img::after {
    content: ''; position: absolute; inset: 0;
    box-shadow: inset 0 0 0 1px rgba(42,42,42,0.04);
  }
  .story-tag {
    position: absolute; top: 24px; left: 24px;
    background: var(--cream); color: var(--charcoal);
    padding: 10px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .story-tag::before {
    content: ''; width: 6px; height: 6px; background: var(--olive);
  }
  .story-body .label { margin-bottom: 20px; display: inline-block; }
  .story-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: 28px;
    text-wrap: balance;
  }
  .story-body .divider { margin-bottom: 32px; }
  .story-body p {
    font-size: 17px; line-height: 1.75; color: var(--charcoal-2);
    margin-bottom: 18px;
    max-width: 520px;
  }
  .story-body p.lede {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .link-olive {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 20px;
    color: var(--olive); font-size: 12px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    border-bottom: 1px solid var(--olive);
    padding-bottom: 6px;
    transition: gap 0.25s;
  }
  .link-olive:hover { gap: 16px; }

  .story-stats {
    margin-top: 40px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    padding-top: 28px;
    gap: 24px;
    max-width: 520px;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px; font-weight: 500;
    color: var(--olive);
    line-height: 1;
  }
  .stat-label {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--charcoal-mute);
    margin-top: 8px;
    font-weight: 500;
  }
  @media (max-width: 900px) {
    .story { grid-template-columns: 1fr; gap: 48px; }
  }

  /* === CATEGORIES === */
  .categories-section { background: var(--cream-2); }
  .cat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .cat-card {
    background: var(--cream);
    padding: 32px;
    display: flex; flex-direction: column;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.3s;
    position: relative;
  }
  .cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(42,42,42,0.08);
    z-index: 2;
  }
  .cat-img {
    aspect-ratio: 4/3;
    background-size: cover; background-position: center;
    margin-bottom: 28px;
    overflow: hidden;
    position: relative;
  }
  .cat-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(42,42,42,0.15));
    opacity: 0; transition: opacity 0.3s;
  }
  .cat-card:hover .cat-img::after { opacity: 1; }
  .cat-num {
    position: absolute; top: 24px; right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    mix-blend-mode: difference;
  }
  .cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 28px;
    color: var(--charcoal);
    margin-bottom: 6px;
    line-height: 1.1;
  }
  .cat-sub {
    font-size: 14px; color: var(--charcoal-mute); line-height: 1.55;
    margin-bottom: 24px;
    flex: 1;
  }
  .cat-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .cat-count {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--charcoal-mute);
    font-weight: 500;
  }
  .cat-arrow {
    color: var(--olive);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    transition: transform 0.3s;
  }
  .cat-card:hover .cat-arrow { transform: translateX(6px); }

  @media (max-width: 900px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .cat-grid { grid-template-columns: 1fr; }
  }

  /* === POPULAR PRODUCTS === */
  .prod-filters {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .prod-filter {
    padding: 10px 18px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--charcoal-mute);
    border: 1px solid var(--border);
    background: transparent;
    transition: all 0.2s;
  }
  .prod-filter.active,
  .prod-filter:hover {
    color: var(--cream);
    background: var(--olive);
    border-color: var(--olive);
  }
  .prod-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .prod-card {
    cursor: pointer;
    position: relative;
    display: flex; flex-direction: column;
  }
  .prod-img-wrap {
    aspect-ratio: 1/1;
    background: var(--cream-2);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
  }
  .prod-img {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
  }
  .prod-card:hover .prod-img { transform: scale(1.04); }
  .prod-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--cream); color: var(--olive);
    padding: 6px 10px;
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 600;
  }
  .prod-badge.dark { background: var(--charcoal); color: var(--cream); }
  .prod-quick {
    position: absolute; inset: auto 14px 14px;
    background: var(--charcoal);
    color: var(--cream);
    padding: 12px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-align: center;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .prod-card:hover .prod-quick { opacity: 1; transform: translateY(0); }
  .prod-quick:hover { background: var(--olive); }

  .prod-origin {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--olive); font-weight: 600;
    margin-bottom: 6px;
  }
  .prod-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 6px;
  }
  .prod-desc {
    font-size: 13px; color: var(--charcoal-mute);
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .prod-price-row {
    display: flex; justify-content: space-between; align-items: baseline;
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }
  .prod-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--olive);
  }
  .prod-unit {
    font-size: 11px; color: var(--charcoal-mute);
    letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500;
  }
  @media (max-width: 1100px) {
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 800px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }

  /* === CATERING BANNER === */
  .catering {
    position: relative;
    min-height: 560px;
    background-attachment: fixed;
    background-size: cover; background-position: center;
    display: flex; align-items: center;
    color: #fff;
    overflow: hidden;
  }
  .catering::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
      110deg,
      rgba(15,15,13,0.85) 0%,
      rgba(15,15,13,0.6) 55%,
      rgba(15,15,13,0.35) 100%
    );
  }
  .catering-inner {
    position: relative; z-index: 2;
    max-width: 720px;
    padding: 120px 48px;
  }
  .catering .label { color: #D9C89C; margin-bottom: 24px; display: inline-block; }
  .catering h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    text-wrap: balance;
  }
  .catering h2 em { font-style: italic; color: #E8DEC4; font-weight: 400; }
  .catering p {
    font-size: 17px; line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 38px;
    font-weight: 300;
  }
  .catering-list {
    display: flex; gap: 40px; margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .catering-list div {
    font-size: 13px; color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500;
    display: flex; align-items: center; gap: 10px;
  }
  .catering-list div::before {
    content: ''; width: 6px; height: 6px; background: #D9C89C;
  }

  /* === VISIT US === */
  .visit { background: var(--cream); }
  .visit-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
  }
  .visit-info .label { display: inline-block; margin-bottom: 18px; }
  .visit-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .visit-info .divider { margin-bottom: 36px; }

  .info-block {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    display: grid; grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: start;
  }
  .info-block:last-child { border-bottom: 1px solid var(--border); }
  .info-block .k {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--olive); font-weight: 600;
    padding-top: 4px;
  }
  .info-block .v {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 1.4;
    color: var(--charcoal);
  }
  .info-block .v small {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--charcoal-mute);
    display: block;
    margin-top: 4px;
  }
  .hours-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 15px; font-family: 'Inter', sans-serif; }
  .hours-row .day { color: var(--charcoal-mute); }
  .hours-row .time { color: var(--charcoal); font-variant-numeric: tabular-nums; }
  .hours-row.today { color: var(--olive); font-weight: 600; }
  .hours-row.today .day, .hours-row.today .time { color: var(--olive); }

  .visit-cta {
    margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap;
  }

  .map-wrap {
    position: relative;
    aspect-ratio: 4/5;
    background: #E8E4D9;
    overflow: hidden;
  }
  .map-placeholder {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, #E8E4D9 0%, #DDD5C2 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .map-svg { width: 100%; height: 100%; }
  .map-pin {
    position: absolute; top: 48%; left: 52%;
    transform: translate(-50%, -100%);
    display: flex; flex-direction: column; align-items: center;
    z-index: 2;
  }
  .map-pin-dot {
    width: 14px; height: 14px; background: var(--olive);
    border: 3px solid var(--cream);
    box-shadow: 0 4px 12px rgba(42,42,42,0.3);
  }
  .map-pin-label {
    background: var(--cream);
    padding: 10px 16px;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--charcoal);
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(42,42,42,0.12);
    position: relative;
  }
  .map-pin-label::after {
    content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--cream);
  }
  .map-attribution {
    position: absolute; bottom: 16px; right: 16px;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--charcoal-mute); font-weight: 500;
    background: var(--cream); padding: 6px 10px;
  }
  @media (max-width: 900px) {
    .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  /* === FOOTER === */
  footer {
    background: var(--charcoal);
    color: #C8C1B4;
  }
  .foot-top {
    padding: 90px 0 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 56px;
  }
  .foot-brand .logo { color: #EFE8DA; }
  .foot-brand .logo .mark { color: #D9C89C; }
  .foot-brand {
    border-right: 1px solid rgba(255,255,255,0.08);
    padding-right: 40px;
  }
  .foot-brand-logo { text-align: left; margin-bottom: 22px; }
  .foot-brand-logo .logo { text-align: left; }
  .foot-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    color: #E8DEC4;
    max-width: 320px;
    margin-bottom: 24px;
  }
  .foot-social { display: flex; gap: 10px; }
  .foot-social a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    color: #C8C1B4;
    transition: all 0.2s;
  }
  .foot-social a:hover { background: #D9C89C; color: var(--charcoal); border-color: #D9C89C; }

  .foot-col h4 {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: #D9C89C; font-weight: 600;
    margin-bottom: 24px;
  }
  .foot-col ul { list-style: none; }
  .foot-col li { margin-bottom: 12px; }
  .foot-col a {
    font-size: 14px; color: #C8C1B4;
    transition: color 0.2s;
  }
  .foot-col a:hover { color: #EFE8DA; }

  .foot-news p {
    font-size: 14px; color: #A9A192;
    line-height: 1.6; margin-bottom: 20px;
    max-width: 320px;
  }
  .news-form {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    transition: border-color 0.2s;
  }
  .news-form:focus-within { border-color: #D9C89C; }
  .news-form input {
    flex: 1; background: transparent; border: none; outline: none;
    padding: 12px 0;
    color: #EFE8DA; font-family: inherit;
    font-size: 14px;
  }
  .news-form input::placeholder { color: #6F6858; }
  .news-form button {
    color: #D9C89C; font-size: 11px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 0 4px;
  }
  .news-form button:hover { color: #EFE8DA; }
  .news-success {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: #D9C89C;
    padding: 12px 0;
    display: none;
  }
  .news-success.show { display: block; }
  .news-form.hide { display: none; }

  .foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: #8F8778;
    letter-spacing: 0.05em;
    flex-wrap: wrap; gap: 16px;
  }
  .foot-bottom a:hover { color: #C8C1B4; }
  .foot-meta { display: flex; gap: 24px; }

  @media (max-width: 900px) {
    .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .foot-brand { grid-column: 1 / -1; border-right: none; padding-right: 0; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  }
  @media (max-width: 560px) {
    .foot-top { grid-template-columns: 1fr; }
  }

  /* === CART DRAWER === */
  .cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 420px; max-width: 92vw;
    background: var(--cream);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
    display: flex; flex-direction: column;
    border-left: 1px solid var(--border);
  }
  .cart-drawer.open { transform: translateX(0); }
  .cart-backdrop {
    position: fixed; inset: 0;
    background: rgba(42,42,42,0.4);
    z-index: 99;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .cart-backdrop.open { opacity: 1; pointer-events: auto; }
  .cart-head {
    padding: 24px 28px; border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
  }
  .cart-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 500;
    color: var(--charcoal);
  }
  .cart-close {
    font-size: 20px; color: var(--charcoal-mute);
    width: 32px; height: 32px; display: inline-flex;
    align-items: center; justify-content: center;
  }
  .cart-close:hover { color: var(--olive); }
  .cart-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
  .cart-empty {
    text-align: center; padding: 60px 20px;
  }
  .cart-empty p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--charcoal-mute);
    margin-bottom: 24px;
  }
  .cart-item {
    display: grid; grid-template-columns: 70px 1fr auto; gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }
  .cart-item-img {
    width: 70px; height: 70px;
    background-size: cover; background-position: center;
    background-color: var(--cream-2);
  }
  .cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .cart-item-desc { font-size: 12px; color: var(--charcoal-mute); margin-bottom: 8px; }
  .qty-ctrl {
    display: inline-flex; align-items: center; border: 1px solid var(--border);
    font-size: 13px;
  }
  .qty-ctrl button {
    width: 28px; height: 28px; color: var(--charcoal-2);
  }
  .qty-ctrl button:hover { color: var(--olive); }
  .qty-ctrl .q { min-width: 22px; text-align: center; }
  .cart-item-price {
    text-align: right;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--olive); font-weight: 600;
  }
  .cart-item-remove {
    font-size: 11px; color: var(--charcoal-mute);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-top: 8px;
    display: block;
  }
  .cart-item-remove:hover { color: var(--olive); }
  .cart-foot {
    padding: 24px 28px; border-top: 1px solid var(--border);
    background: var(--cream-2);
  }
  .cart-total-row {
    display: flex; justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
  }
  .cart-total-row.big {
    margin: 12px 0 20px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .cart-total-row .k { font-size: 13px; color: var(--charcoal-mute); }
  .cart-total-row .v { font-variant-numeric: tabular-nums; }
  .cart-total-row.big .k {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; color: var(--charcoal);
  }
  .cart-total-row.big .v {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; color: var(--olive); font-weight: 600;
  }

  /* === TOAST === */
  .toast {
    position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px);
    background: var(--charcoal); color: var(--cream);
    padding: 14px 24px;
    z-index: 200;
    font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    display: flex; align-items: center; gap: 12px;
  }
  .toast.show { opacity: 1; transform: translate(-50%, 0); }
  .toast::before { content: ''; width: 8px; height: 8px; background: #D9C89C; }

  /* === Reveal === */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* SVG icons */
  .icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

  /* === GRAIN TEXTURE === */
  body::before { content: ''; display: none; }
  .nav, .announce, .ticker, .cart-drawer, .cart-backdrop, .toast, .sec-index, .status-pill, .cursor-tag { z-index: 45; }
  .nav { z-index: 50; } .announce { z-index: 60; } .ticker { z-index: 55; }
  .cart-backdrop { z-index: 99; } .cart-drawer { z-index: 100; } .toast { z-index: 200; }

  /* === ORNAMENT DIVIDER === */
  .ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; padding: 0 0 40px; color: var(--olive);
  }
  .ornament .line { width: 80px; height: 1px; background: var(--border-2); }
  .ornament .mark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 20px;
    letter-spacing: 0.15em;
    color: var(--olive);
  }
  .ornament .diamond { width: 5px; height: 5px; background: var(--olive); transform: rotate(45deg); }

  /* === CHAPTER MARK === */
  .chapter {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--olive);
    display: inline-flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
  }
  .chapter::before, .chapter::after { content: ''; width: 28px; height: 1px; background: var(--olive); opacity: 0.5; }

  /* === MAGNETIC CURSOR TAG === */
  .cursor-tag {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s cubic-bezier(.2,.7,.3,1);
    z-index: 45;
    background: var(--cream);
    color: var(--charcoal);
    padding: 10px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    display: flex; align-items: center; gap: 10px;
  }
  .cursor-tag::before { content: ''; width: 5px; height: 5px; background: var(--olive); }
  .cursor-tag.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }

  /* === HERO KINETIC === */
  .hero h1 .word {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(.2,.7,.3,1), color 0.3s, font-style 0.3s;
  }
  .hero h1 .word:hover {
    font-style: italic;
    color: #E8DEC4;
    transform: translateY(-3px);
  }

  /* === HERO SIDE PANEL === */
  .hero-side {
    position: absolute;
    right: 48px; top: 50%; transform: translateY(-50%);
    z-index: 2;
    width: 260px;
    background: rgba(248,245,240,0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 28px;
  }
  .hero-side-lbl {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: #D9C89C; font-weight: 600;
    margin-bottom: 14px; display: block;
  }
  .hero-side-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
  }
  .hero-side-title em { font-style: italic; color: #E8DEC4; }
  .hero-side-row {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .hero-side-row span:last-child { color: #E8DEC4; font-family: 'Cormorant Garamond', serif; text-transform: none; letter-spacing: 0; font-size: 16px; }
  .hero-side-foot {
    margin-top: 18px; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center; gap: 10px;
  }
  .hero-side-foot::before { content: ''; width: 6px; height: 6px; background: #D9C89C; border-radius: 50%; animation: statusPulse 2s ease-in-out infinite; }
  @media (max-width: 960px) { .hero-side { display: none; } }

  /* === PRODUCT CARD FLIP === */
  .prod-card { perspective: 1200px; }
  .prod-img-wrap {
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
    position: relative;
  }
  .prod-card:hover .prod-img-wrap { transform: rotateY(180deg); }
  .prod-img, .prod-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .prod-img {
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
  }
  .prod-back {
    background: var(--charcoal);
    color: var(--cream);
    padding: 24px;
    display: flex; flex-direction: column; justify-content: space-between;
    transform: rotateY(180deg);
  }
  .prod-back-label {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: #D9C89C; font-weight: 600;
  }
  .prod-back-origin {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
    margin: 12px 0 8px;
  }
  .prod-back-note {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
  }
  .prod-back-pair {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }
  .prod-back-pair em {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
    color: #E8DEC4;
    margin-top: 4px;
  }
  /* hide quick-add during flip since it's on the front */
  .prod-card:hover .prod-quick { opacity: 0 !important; }

  /* === CATEGORY DIAGONAL REVEAL === */
  .cat-img { position: relative; overflow: hidden; }
  .cat-img-overlay {
    position: absolute; inset: 0;
    background: var(--olive);
    clip-path: polygon(0 100%, 0 100%, 0 100%);
    transition: clip-path 0.6s cubic-bezier(.65,.05,.36,1);
    display: flex; align-items: center; justify-content: center;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
  }
  .cat-card:hover .cat-img-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .cat-img-overlay span {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s 0.25s, transform 0.4s 0.25s;
  }
  .cat-card:hover .cat-img-overlay span {
    opacity: 1;
    transform: translateY(0);
  }

  /* === FOOTER WATERMARK === */
  footer { position: relative; overflow: hidden; }
  .foot-mark {
    position: absolute;
    right: -60px; bottom: -120px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(240px, 28vw, 460px);
    line-height: 0.85;
    color: rgba(255,255,255,0.035);
    pointer-events: none;
    letter-spacing: -0.05em;
    z-index: 0;
    user-select: none;
  }
  .foot-top, .foot-bottom { position: relative; z-index: 1; }

  /* === TICKER UPGRADE === */
  .ticker-item em::before {
    content: ''; display: inline-block;
    width: 1px; height: 11px;
    background: var(--border-2);
    margin: 0 10px 0 0;
    vertical-align: middle;
  }

  /* === TICKER === */
  .ticker {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    z-index: 55;
  }
  .ticker-inner {
    display: flex;
    white-space: nowrap;
    padding: 12px 0;
    gap: 48px;
    animation: tickerScroll 60s linear infinite;
    width: max-content;
  }
  .ticker:hover .ticker-inner { animation-play-state: paused; }
  .ticker-item {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--charcoal-2);
    font-weight: 500;
  }
  .ticker-item::before {
    content: ''; width: 5px; height: 5px; background: var(--olive);
    flex-shrink: 0;
  }
  .ticker-item em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 400;
    color: var(--olive);
    text-transform: none;
    letter-spacing: 0;
    font-size: 15px;
    margin-left: 4px;
  }
  @keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* === OPEN NOW PILL === */
  .status-pill {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 10px 18px 10px 32px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--charcoal);
    z-index: 40;
    display: flex; align-items: center; gap: 10px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(42,42,42,0.06);
  }
  .status-pill::before {
    content: '';
    position: absolute;
    left: 14px; top: 50%; transform: translateY(-50%);
    width: 8px; height: 8px;
    background: var(--olive);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(74,93,58,0.15);
    animation: statusPulse 2.4s ease-in-out infinite;
  }
  .status-pill.closed::before {
    background: #B8695A;
    box-shadow: 0 0 0 4px rgba(184,105,90,0.18);
  }
  .status-pill .detail {
    color: var(--charcoal-mute);
    font-weight: 500;
    letter-spacing: 0.12em;
  }
  @keyframes statusPulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(74,93,58,0.15); }
    50% { box-shadow: 0 0 0 7px rgba(74,93,58,0.05); }
  }
  @media (max-width: 1100px) {
    .status-pill { display: none; }
  }

  /* === SECTION INDEX === */
  .sec-index {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex; flex-direction: column; gap: 2px;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
  }
  .sec-index-item {
    display: flex; align-items: center; gap: 12px;
    color: var(--charcoal-mute);
    padding: 6px 0;
    justify-content: flex-end;
    transition: color 0.25s, gap 0.25s;
    cursor: pointer;
  }
  .sec-index-item .num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 400;
    font-size: 13px;
    color: var(--charcoal-mute);
    letter-spacing: 0;
    min-width: 22px; text-align: right;
    transition: color 0.25s;
  }
  .sec-index-item .name {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.25s, max-width 0.3s;
    order: -1;
  }
  .sec-index-item .bar {
    width: 22px; height: 1px; background: currentColor;
    opacity: 0.35;
    transition: width 0.3s, opacity 0.25s;
  }
  .sec-index-item:hover .name,
  .sec-index-item.active .name {
    opacity: 1;
    max-width: 160px;
  }
  .sec-index-item.active {
    color: var(--olive);
  }
  .sec-index-item.active .num { color: var(--olive); }
  .sec-index-item.active .bar { width: 36px; opacity: 1; background: var(--olive); }
  .sec-index-item.dark {
    color: rgba(255,255,255,0.7);
  }
  .sec-index-item.dark .num { color: rgba(255,255,255,0.85); }
  .sec-index-item.dark.active { color: #E8DEC4; }
  .sec-index-item.dark.active .num { color: #E8DEC4; }
  .sec-index-item.dark.active .bar { background: #E8DEC4; }
  @media (max-width: 1100px) {
    .sec-index { display: none; }
  }
