
  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

  :root {
    /* ── Core Palette ── */
    --ink:        #0E0C0A;
    --ivory:      #FAF7F2;
    --warm-white: #FDFCFA;

    /* ── Jewel Accents ── */
    --gold:       #D4A843;
    --gold-light: #ECC96A;
    --rose:       #E85D82;
    --sapphire:   #2E6BC4;
    --emerald:    #1E8A63;
    --amber:      #E08A2B;
    --plum:       #9B3B7A;

    /* ── Section Backgrounds ── */
    --hero-bg:    #163A73;   /* deep navy */
    --section-2:  #1A0A0E;   /* deep plum-black */
    --section-3:  #0B1F0F;   /* deep forest */
    --houses-bg:  #3A1A54;   /* deep indigo-black */
    --rest-bg:    #5E1528;   /* deep amber-black */
    --pov-bg:     #FAF7F2;   /* ivory — contrast break */
    --look-bg:    #125944;   /* navy again */
    --news-bg:    #4A143A;   /* plum-black */
    --about-bg:   #114F3C;   /* forest */
    --footer-bg:  #060408;   /* near-black */

    /* ── Text on dark ── */
    --on-dark:    #EDE9E0;
    --on-dark-2:  rgba(237,233,224,0.55);
    --border-dark: rgba(237,233,224,0.12);
    --border-light: #E2DDD8;

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Raleway', sans-serif;
    --body:  'Libre Baskerville', Georgia, serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--ink);
    color: var(--on-dark);
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
  }

  /* ══════════════════════════════
     NAVIGATION
  ══════════════════════════════ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    background: rgba(6,4,8,0.88);
    border-bottom: 1px solid var(--border-dark);
    backdrop-filter: blur(16px);
  }

  .nav-logo {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ivory);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-logo .slash {
    color: var(--gold);
    font-size: 20px;
    font-weight: 300;
  }

  /* screen-reader / SEO only, invisible on screen */
  .visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ── Inline desktop nav ── */
  .nav-inline {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0 auto;
  }
  .nav-inline-link {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--on-dark-2);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 3px;
    white-space: nowrap;
  }
  .nav-inline-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold-light);
    transition: width 0.25s;
  }
  .nav-inline-link:hover { color: var(--gold-light); }
  .nav-inline-link:hover::after { width: 100%; }
  .nav-inline-link.active { color: var(--gold-light); }
  .nav-inline-link.active::after { width: 100%; }
  /* hidden on smaller screens — hamburger takes over */
  @media (max-width: 1200px) {
    .nav-inline { display: none; }
  }
  .nav-menu-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .nav-menu-btn span:not(.menu-label) {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
  }

  /* Stack the three lines vertically */
  .nav-menu-btn {
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
  }

  .nav-menu-btn span:nth-child(1) { width: 22px; }
  .nav-menu-btn span:nth-child(2) { width: 15px; }
  .nav-menu-btn span:nth-child(3) { width: 22px; }

  .menu-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    margin-top: 4px;
  }

  .nav-menu-btn:hover span:not(.menu-label) { background: var(--gold-light); }
  .nav-menu-btn:hover .menu-label { color: var(--gold-light); }

  /* ══════════════════════════════
     FULL-SCREEN MENU OVERLAY
  ══════════════════════════════ */
  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: linear-gradient(135deg, #060210 0%, #0C1A2E 40%, #1A0A14 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
  }

  .menu-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .menu-close {
    position: absolute;
    top: 28px;
    right: 48px;
    background: none;
    border: none;
    color: var(--on-dark-2);
    font-size: 22px;
    cursor: pointer;
    font-family: var(--sans);
    letter-spacing: 0;
    transition: color 0.2s, transform 0.2s;
  }

  .menu-close:hover { color: var(--gold); transform: rotate(90deg); }

  .menu-overlay-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 900px;
    width: 90%;
    align-items: center;
  }

  .menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .menu-link {
    display: flex;
    align-items: baseline;
    gap: 20px;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
    color: var(--ivory);
    text-decoration: none;
    line-height: 1.15;
    transition: color 0.2s, transform 0.2s;
    opacity: 0;
    transform: translateX(-20px);
  }

  .menu-overlay.open .menu-link {
    opacity: 1;
    transform: translateX(0);
  }

  .menu-overlay.open .menu-link:nth-child(1) { transition: color 0.2s, transform 0.2s, opacity 0.4s 0.1s; }
  .menu-overlay.open .menu-link:nth-child(2) { transition: color 0.2s, transform 0.2s, opacity 0.4s 0.17s; }
  .menu-overlay.open .menu-link:nth-child(3) { transition: color 0.2s, transform 0.2s, opacity 0.4s 0.24s; }
  .menu-overlay.open .menu-link:nth-child(4) { transition: color 0.2s, transform 0.2s, opacity 0.4s 0.31s; }
  .menu-overlay.open .menu-link:nth-child(5) { transition: color 0.2s, transform 0.2s, opacity 0.4s 0.38s; }
  .menu-overlay.open .menu-link:nth-child(6) { transition: color 0.2s, transform 0.2s, opacity 0.4s 0.45s; }

  .menu-link:hover { color: var(--gold); transform: translateX(8px); }

  .menu-num {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .menu-aside {
    border-left: 1px solid var(--border-dark);
    padding-left: 60px;
  }

  .menu-aside-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .menu-aside-desc {
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    color: var(--on-dark-2);
    margin-bottom: 32px;
  }

  .menu-aside-vol {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(237,233,224,0.25);
  }

  /* ══════════════════════════════
     HERO  — deep navy with gradient orbs
  ══════════════════════════════ */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 80px 100px;
    position: relative;
    overflow: hidden;
    background: var(--hero-bg);
  }

  /* Glowing gradient orbs */
  .hero::before {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse at 60% 30%,
      rgba(212,168,67,0.22) 0%,
      rgba(27,58,107,0.18) 45%,
      transparent 75%);
    z-index: 0;
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 5%; left: -5%;
    width: 45%;
    height: 60%;
    background: radial-gradient(ellipse at 30% 70%,
      rgba(200,75,110,0.18) 0%,
      rgba(91,26,74,0.12) 50%,
      transparent 75%);
    z-index: 0;
    pointer-events: none;
  }

  /* Subtle noise texture overlay */
  .hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
  }

  .hero-ticker {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
  }

  .hero-ticker-inner {
    display: inline-block;
    animation: ticker 28s linear infinite;
  }

  @keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
  }

  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
  }

  .hero-title {
    font-family: var(--serif);
    font-weight: 300;
    line-height: 1.04;
    margin-bottom: 36px;
  }

  .hero-title .line {
    display: block;
    font-size: clamp(76px, 9vw, 124px);
    color: var(--ivory);
    letter-spacing: -0.01em;
  }

  .hero-title .line.italic {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--on-dark-2);
    max-width: 440px;
    margin-bottom: 52px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 16px 32px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(212,168,67,0.35);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212,168,67,0.5);
  }

  /* ── Redesigned hero: editorial split with portrait ── */
  .hero-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 64px;
  }

  .hero-content { max-width: 640px; }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--on-dark);
    text-decoration: none;
    padding: 15px 26px;
    border: 1px solid var(--border-dark);
    border-radius: 2px;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(212,168,67,0.06);
  }

  /* Portrait */
  .hero-portrait {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 620px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 26px;
  }
  .hero-pcol {
    flex: 0 0 340px;
    max-width: 340px;
  }
  .hero-portrait .hero-creed {
    flex: 1 1 auto;
    align-self: center;
    margin-top: 0;
  }

  .hero-portrait-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow:
      0 30px 80px rgba(0,0,0,0.55),
      0 0 0 1px rgba(212,168,67,0.25);
    isolation: isolate;
  }

  /* thin gold inner frame */
  .hero-portrait-frame::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(236,201,106,0.45);
    border-radius: 2px;
    z-index: 3;
    pointer-events: none;
  }

  .hero-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;   /* keep the face high & safe */
    display: block;
    z-index: 1;
    filter: saturate(1.03) contrast(1.02);
  }

  /* warm gradient wash so type/frame read against the photo */
  .hero-portrait-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(12,26,46,0) 55%, rgba(12,26,46,0.35) 100%),
      radial-gradient(ellipse at 70% 20%, rgba(212,168,67,0.12) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-portrait-hint {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 3;
    padding: 34px 18px 15px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-align: center;
    background: linear-gradient(180deg, rgba(11,31,15,0) 0%, rgba(11,31,15,0.82) 100%);
    opacity: 1;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    pointer-events: none;
  }
  .hero-portrait-frame:hover .hero-portrait-hint,
  .hero-portrait-frame:focus .hero-portrait-hint {
    color: #fff;
    letter-spacing: 0.22em;
  }

  .hero-portrait-cap {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hpc-rule {
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.8;
    margin-bottom: 8px;
  }
  .hpc-name {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .hpc-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--on-dark-2);
  }

  /* dressing-up tile under the portrait */
  .hero-creed {
    margin-top: 26px;
    padding: 22px 24px;
    border: 1px solid rgba(236,201,106,0.30);
    border-radius: 4px;
    background:
      linear-gradient(180deg, rgba(212,168,67,0.06) 0%, rgba(12,26,46,0.0) 100%);
  }
  .hero-creed-kicker {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .hero-creed-line {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.5;
    color: var(--on-dark);
  }
  .hero-creed-line em {
    font-style: italic;
    color: var(--gold-light);
  }

  /* ══════════════════════════════
     SHARED SECTION LABEL
  ══════════════════════════════ */
  .section-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
    flex-shrink: 0;
  }

  /* ══════════════════════════════
     EDITOR'S PICK  — deep plum-black
  ══════════════════════════════ */
  .editors-pick {
    padding: 110px 80px;
    background: var(--section-2);
    position: relative;
    overflow: hidden;
  }

  .editors-pick::after {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,75,110,0.14) 0%, transparent 70%);
    pointer-events: none;
  }

  .editors-pick-inner {
    max-width: 760px;
    position: relative;
    z-index: 1;
  }

  .article-title {
    font-family: var(--serif);
    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--ivory);
    margin-bottom: 24px;
  }

  .article-title em {
    font-style: italic;
    color: var(--gold);
  }

  .article-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--on-dark-2);
    max-width: 560px;
    margin-bottom: 40px;
  }

  /* ══════════════════════════════
     SECTION HEADER (shared)
  ══════════════════════════════ */
  .section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 64px;
  }

  .section-header .section-title {
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--ivory);
  }

  .section-header .section-title em {
    font-style: italic;
    color: var(--rose);
  }

  /* Did You Know — exclusive section accents */
  .didyouknow-section .dyk-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .didyouknow-section .dyk-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.5;
    color: var(--on-dark-2);
    max-width: 560px;
    margin: 18px 0 0;
  }
  .didyouknow-section .section-title em {
    color: var(--gold-light);
  }

  .all-link {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212,168,67,0.4);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
  }

  .all-link:hover { border-color: var(--gold); }

  /* ══════════════════════════════
     ARTICLES GRID — deep forest
  ══════════════════════════════ */
  .articles-section {
    padding: 110px 80px;
    background: var(--section-3);
    position: relative;
    overflow: hidden;
  }

  .articles-section::before {
    content: '';
    position: absolute;
    bottom: -20%; left: -5%;
    width: 600px; height: 500px;
    background: radial-gradient(circle, rgba(26,92,69,0.25) 0%, transparent 65%);
    pointer-events: none;
  }

  .articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    position: relative;
    z-index: 1;
  }

  .article-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    padding: 48px 40px;
    border-top: 2px solid transparent;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
  }

  .article-card:hover {
    background: rgba(255,255,255,0.07);
    border-top-color: var(--emerald);
    transform: translateY(-3px);
  }

  /* Feature card — stands apart from the grid pair */
  .article-card--feature {
    grid-column: 1 / -1;
    text-align: center;
    padding: 54px 40px;
    margin: 3px 0;
    background: rgba(212,168,67,0.05);
    border-top: 1px solid rgba(212,168,67,0.4);
    border-bottom: 1px solid rgba(212,168,67,0.4);
    position: relative;
  }
  .article-card--feature::before {
    content: "\2726";
    display: block;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.75;
  }
  .article-card--feature:hover {
    background: rgba(212,168,67,0.09);
    border-top-color: var(--gold);
    transform: translateY(-2px);
  }
  .article-card--feature .article-card-desc {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .article-card-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }

  .article-card-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.22;
    color: var(--ivory);
    margin-bottom: 14px;
  }

  .article-card-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--on-dark-2);
    margin-bottom: 20px;
  }

  .article-meta {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(237,233,224,0.3);
  }

  /* ══════════════════════════════
     WSY EDIT — rich sapphire
  ══════════════════════════════ */
  .wsy-edit {
    padding: 110px 80px;
    background: linear-gradient(135deg, #0D2040 0%, #1B3A6B 60%, #0D2040 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .wsy-edit::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 65%);
    pointer-events: none;
  }

  .wsy-edit-quote {
    border-left: 4px solid var(--gold);
    padding-left: 44px;
    position: relative;
    z-index: 1;
  }

  .wsy-edit-title {
    font-family: var(--serif);
    font-size: clamp(40px, 3.8vw, 56px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--ivory);
    margin-bottom: 28px;
  }

  .wsy-edit-title em {
    font-style: italic;
    color: var(--gold);
  }

  .wsy-edit-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--on-dark-2);
  }

  .wsy-edit-articles {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .wsy-article-item {
    border-top: 1px solid var(--border-dark);
    padding: 28px 0;
    transition: background 0.2s;
  }

  .wsy-article-item:last-child { border-bottom: 1px solid var(--border-dark); }
  a.wsy-article-item:hover h3 { color: var(--gold); }
  a.wsy-article-item:hover .article-meta { color: var(--gold-light); }
  a.wsy-article-item .article-meta { transition: color 0.2s; }

  .wsy-article-item h3 {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .wsy-article-item p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--on-dark-2);
    margin-bottom: 10px;
  }

  /* ══════════════════════════════
     INTERVIEWS — near-black with rose accent
  ══════════════════════════════ */
  .interviews-section {
    padding: 110px 80px;
    background: var(--section-2);
    position: relative;
    overflow: hidden;
  }

  .interviews-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--rose), var(--gold), var(--rose));
  }

  .interviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 64px;
  }

  .interview-card {
    background: rgba(255,255,255,0.04);
    padding: 60px 52px;
    position: relative;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }

  .interview-card:hover {
    background: rgba(200,75,110,0.08);
    border-bottom-color: var(--rose);
  }

  .interview-number {
    font-family: var(--serif);
    font-size: 90px;
    font-weight: 300;
    color: rgba(212,168,67,0.08);
    position: absolute;
    top: 32px;
    right: 36px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .interview-card .section-label { margin-bottom: 18px; }

  .interview-card h3 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--ivory);
    margin-bottom: 16px;
  }

  .interview-card h3 em {
    font-style: italic;
    color: var(--rose);
  }

  .interview-card p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--on-dark-2);
  }

  /* Interviews — coming soon state */
  .interviews-soon {
    margin-top: 48px;
    padding: 64px 48px;
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(200,75,110,0.05) 0%, rgba(0,0,0,0) 100%);
  }
  .interviews-soon-label {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
  }
  .interviews-soon-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 1.5;
    color: var(--on-dark-2);
    max-width: 460px;
    margin: 0 auto;
  }
  @media (max-width: 700px) {
    .interviews-soon { padding: 44px 24px; }
  }

  /* ══════════════════════════════
     THE HOUSES INTRO — deep indigo-black
  ══════════════════════════════ */
  .houses-intro {
    padding: 110px 80px 70px;
    background: var(--houses-bg);
    position: relative;
    overflow: hidden;
  }

  .houses-intro::before {
    content: '';
    position: absolute;
    top: -20%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(92,26,74,0.22) 0%, transparent 65%);
    pointer-events: none;
  }

  .houses-intro-inner {
    max-width: 680px;
    position: relative;
    z-index: 1;
  }

  .houses-subtitle {
    font-size: 15px;
    line-height: 1.85;
    color: var(--on-dark-2);
    font-style: italic;
    margin-top: 24px;
  }

  /* ── Houses category tiles ── */
  .houses-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
  }

  .house-cat-tile {
    background: rgba(255,255,255,0.04);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
    border-bottom: 2px solid transparent;
  }

  .house-cat-tile:hover {
    background: rgba(212,168,67,0.1);
    border-bottom-color: var(--gold);
    transform: translateY(-3px);
  }

  .house-cat-tile .cat-label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--on-dark-2);
    transition: color 0.25s;
  }

  .house-cat-tile:hover .cat-label { color: var(--gold); }

  .house-cat-tile svg {
    width: 36px; height: 36px;
    stroke: rgba(237,233,224,0.35);
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s;
  }

  .house-cat-tile:hover svg { opacity: 1; filter: brightness(1.25); }

  /* ── Individual category section headers ── */
  .category-section {
    padding: 80px 80px 0;
    background: var(--houses-bg);
  }

  .category-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-dark);
  }

  .category-section-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .cat-icon-large {
    width: 38px; height: 38px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .category-section-header h2 {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
    color: var(--ivory);
  }

  .house-count {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,168,67,0.1);
    padding: 6px 14px;
    border: 1px solid rgba(212,168,67,0.25);
  }

  /* ── House cards ── */
  .houses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    padding-top: 3px;
  }

  .house-card {
    background: rgba(255,255,255,0.03);
    padding: 44px 40px;
    border-left: 3px solid transparent;
    transition: background 0.25s, border-color 0.25s;
  }

  .house-card:hover {
    background: rgba(212,168,67,0.07);
    border-left-color: var(--gold);
  }

  .house-card-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 12px;
  }

  .house-card-name {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--ivory);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .house-card-location {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--on-dark-2);
    opacity: 0.5;
    margin-bottom: 16px;
  }

  .house-card-desc {
    font-size: 13px;
    line-height: 1.78;
    color: var(--on-dark-2);
    margin-bottom: 22px;
  }

  /* photo variant for a house card */
  .house-card-img-wrap {
    margin: 0 0 20px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212,168,67,0.28);
    box-shadow: 0 14px 36px rgba(0,0,0,0.45);
  }
  .house-card-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center center;
  }
  .house-card-img-cap {
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 1;
    margin: 10px 0 18px;
  }
  /* video inside a house card */
  .hc-video {
    margin: 4px 0 20px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212,168,67,0.28);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  }
  .hc-video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
  }
  .hc-video-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
  }
  .hc-video-cap {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-align: center;
    padding: 9px 4px 4px;
  }

  /* multi-photo gallery inside a house card */
  .hc-gallery-lead-cap {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    color: var(--gold-light);
    margin: 10px 0 22px;
  }
  .hc-gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 14px;
  }
  .hc-gallery-item {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212,168,67,0.28);
    box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  }
  .hc-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center center;
  }
  .hc-gallery-item p {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 1;
    text-align: center;
    padding: 8px 4px 10px;
  }
  .hc-gallery-note {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--on-dark);
    opacity: 1;
    margin: 0 0 20px;
  }
  @media (max-width: 600px) {
    .hc-gallery-row { grid-template-columns: 1fr; gap: 14px; }
    .hc-gallery-item img { aspect-ratio: 4 / 5; }
  }

  .house-link {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212,168,67,0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s;
  }

  .house-link:hover { border-color: var(--gold); }

  /* ══════════════════════════════
     RESTAURANTS — deep amber-black
  ══════════════════════════════ */
  .restaurants-section {
    padding: 110px 80px;
    background: var(--rest-bg);
    position: relative;
    overflow: hidden;
  }

  .restaurants-section::before {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(196,107,26,0.2) 0%, transparent 65%);
    pointer-events: none;
  }

  .restaurants-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
  }

  .restaurant-card {
    background: rgba(255,255,255,0.04);
    padding: 48px 40px;
    border-right: 3px solid transparent;
    transition: background 0.25s, border-color 0.25s;
  }

  .restaurant-card:hover {
    background: rgba(196,107,26,0.1);
    border-right-color: var(--amber);
  }

  .restaurant-type {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
  }

  .restaurant-name {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .restaurant-location {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--on-dark-2);
    opacity: 0.5;
    margin-bottom: 18px;
  }

  .restaurant-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--on-dark-2);
    margin-bottom: 28px;
  }

  .reserve-link {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1px solid rgba(196,107,26,0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s;
  }

  .reserve-link:hover { border-color: var(--amber); }

  /* ══════════════════════════════
     POINT OF VIEW — bright ivory contrast break
  ══════════════════════════════ */
  .pov-section {
    padding: 130px 80px;
    background: var(--ivory);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }

  .pov-text .section-label {
    color: var(--sapphire);
    margin-bottom: 32px;
  }

  .pov-text .section-label::before { background: var(--sapphire); }

  .pov-title {
    font-family: var(--serif);
    font-size: clamp(44px, 4.2vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 36px;
  }

  .pov-title em {
    font-style: italic;
    color: var(--rose);
  }

  .pov-body {
    font-size: 15px;
    line-height: 1.95;
    color: #5A5450;
  }

  /* Personal portrait in the POV section */
  .pov-figure {
    margin-top: 40px;
    position: relative;
  }
  .pov-figure img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 4px;
    display: block;
    box-shadow: 0 22px 56px rgba(14,12,10,0.22);
  }
  .pov-figure figcaption {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8A847E;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .pov-figure figcaption::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--sapphire);
    display: inline-block;
  }

  .pov-visual {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .pov-stat {
    padding: 40px 44px;
    border-left: 4px solid transparent;
    transition: border-color 0.25s, background 0.25s;
    background: #F0EDE6;
  }

  .pov-stat:nth-child(1) { border-left-color: var(--gold); }
  .pov-stat:nth-child(2) { border-left-color: var(--rose); }
  .pov-stat:nth-child(3) { border-left-color: var(--sapphire); }

  .pov-stat-number {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 8px;
  }

  .pov-stat:nth-child(1) .pov-stat-number { color: var(--gold); }
  .pov-stat:nth-child(2) .pov-stat-number { color: var(--rose); }
  .pov-stat:nth-child(3) .pov-stat-number { color: var(--sapphire); }

  .pov-stat-label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7A7470;
  }

  /* ══════════════════════════════
     MONTBLANC LIMITED EDITIONS — onyx
  ══════════════════════════════ */
  .mb-le-section {
    padding: 110px 80px;
    background:
      radial-gradient(circle at 80% 10%, rgba(212,168,67,0.10) 0%, transparent 45%),
      linear-gradient(165deg, #0B0B0D 0%, #131217 55%, #0C0A10 100%);
    position: relative;
    overflow: hidden;
  }
  .mb-le-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
  }
  .mb-le-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(212,168,67,0.18);
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    padding: 40px 34px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1), border-color 0.3s, box-shadow 0.3s;
  }
  .mb-le-card::after {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
  }
  .mb-le-card:hover {
    transform: translateY(-6px);
    border-color: rgba(236,201,106,0.5);
    box-shadow: 0 28px 60px rgba(0,0,0,0.45);
  }
  .mb-le-year {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
  }
  .mb-le-name {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.18;
    color: var(--ivory);
    margin-bottom: 12px;
  }
  .mb-le-name em { font-style: italic; color: var(--gold-light); }
  .mb-le-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--on-dark-2);
  }

  /* ══════════════════════════════
     THE CONSIDERED MAN — essay
  ══════════════════════════════ */
  .considered-section {
    padding: 130px 80px;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
  }
  .considered-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .considered-inner .section-label { color: var(--plum); }
  .considered-inner .section-label::before { background: var(--plum); }
  .considered-title {
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 66px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .considered-title em { font-style: italic; color: var(--rose); }
  .considered-standfirst {
    font-family: var(--serif);
    font-size: 21px;
    font-style: italic;
    line-height: 1.55;
    color: #5A5450;
    margin-bottom: 44px;
  }
  .considered-body p {
    font-size: 16px;
    line-height: 1.95;
    color: #46413D;
    margin-bottom: 26px;
  }
  .considered-body p:first-of-type::first-letter {
    font-family: var(--serif);
    float: left;
    font-size: 74px;
    line-height: 0.78;
    padding: 8px 14px 0 0;
    color: var(--plum);
    font-weight: 500;
  }
  .considered-body .pull {
    font-family: var(--serif);
    font-size: 27px;
    font-style: italic;
    line-height: 1.4;
    color: var(--plum);
    border-left: 3px solid var(--gold);
    padding-left: 28px;
    margin: 40px 0;
  }
  .considered-signoff {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8A847E;
    margin-top: 44px;
  }

  /* Essay lead portrait */
  .considered-figure {
    margin: 8px 0 40px;
    position: relative;
  }
  .considered-figure img {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 4px;
    display: block;
    box-shadow: 0 24px 60px rgba(14,12,10,0.28);
  }
  .considered-figure figcaption {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8A847E;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .considered-figure figcaption::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--plum);
    display: inline-block;
  }

  /* ══════════════════════════════
     CIGAR BARS — smoke + ember
  ══════════════════════════════ */
  .cigar-section {
    padding: 110px 80px;
    background:
      radial-gradient(circle at 20% 80%, rgba(196,107,26,0.14) 0%, transparent 48%),
      radial-gradient(circle at 75% 15%, rgba(92,26,74,0.22) 0%, transparent 50%),
      linear-gradient(160deg, #120D0A 0%, #1A100C 50%, #0F0A0E 100%);
    position: relative;
    overflow: hidden;
  }
  .cigar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
  }
  .cigar-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(196,107,26,0.20);
    background: rgba(255,255,255,0.03);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 42px 38px;
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1), border-color 0.3s, box-shadow 0.3s;
  }
  .cigar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(196,107,26,0.55);
    box-shadow: 0 26px 56px rgba(0,0,0,0.5);
  }
  .cigar-city {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
  }
  .cigar-name {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.18;
    color: var(--ivory);
    margin-bottom: 12px;
  }
  .cigar-desc {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--on-dark-2);
  }
  .cigar-link {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1px solid rgba(196,107,26,0.4);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .cigar-link:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
  }

  /* ══════════════════════════════
     TRAVEL PACKING LIST — emerald
  ══════════════════════════════ */
  .packing-section {
    padding: 110px 80px;
    background:
      radial-gradient(circle at 18% 22%, rgba(26,92,69,0.22) 0%, transparent 50%),
      radial-gradient(circle at 82% 85%, rgba(212,168,67,0.10) 0%, transparent 52%),
      linear-gradient(155deg, #0A1710 0%, #0B1F0F 52%, #08130C 100%);
    position: relative;
    overflow: hidden;
  }
  .packing-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
  .packing-intro { max-width: 620px; margin: 24px 0 0; font-size: 15px; line-height: 1.85; color: var(--on-dark-2); }
  .packing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 56px;
  }
  .packing-card {
    border-radius: 16px;
    border: 1px solid rgba(26,92,69,0.28);
    background: rgba(255,255,255,0.03);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 34px 32px 36px;
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1), border-color 0.3s, box-shadow 0.3s;
  }
  .packing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,168,67,0.5);
    box-shadow: 0 26px 56px rgba(0,0,0,0.5);
  }
  .packing-card-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }
  .packing-card-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--ivory);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(237,233,224,0.10);
  }
  .packing-list { list-style: none; }
  .packing-list li {
    font-size: 14px;
    line-height: 1.55;
    color: var(--on-dark);
    padding: 7px 0 7px 24px;
    position: relative;
  }
  .packing-list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 14px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--gold);
    border-radius: 2px;
  }
  .packing-list li span { color: var(--on-dark-2); font-style: italic; }
  .packing-note {
    margin-top: 44px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--on-dark-2);
    text-align: center;
  }

  /* ══════════════════════════════
     NAPA WINE — burgundy
  ══════════════════════════════ */
  .wine-section {
    padding: 110px 80px;
    background:
      radial-gradient(circle at 22% 18%, rgba(124,26,58,0.28) 0%, transparent 52%),
      radial-gradient(circle at 80% 88%, rgba(92,26,30,0.30) 0%, transparent 50%),
      linear-gradient(158deg, #160A0D 0%, #20090F 52%, #100609 100%);
    position: relative;
    overflow: hidden;
  }
  .wine-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
  .wine-intro { max-width: 660px; margin: 24px 0 0; font-size: 15px; line-height: 1.85; color: var(--on-dark-2); }
  .wine-note-novice {
    max-width: 660px; margin: 22px 0 0;
    font-size: 13.5px; line-height: 1.8; color: var(--on-dark-2);
    border-left: 2px solid rgba(200,75,110,0.5); padding-left: 20px; font-style: italic;
  }
  .wine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 56px;
  }
  .wine-card {
    border-radius: 16px;
    border: 1px solid rgba(200,75,110,0.22);
    background: rgba(255,255,255,0.03);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 36px 34px;
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1), border-color 0.3s, box-shadow 0.3s;
  }
  .wine-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,75,110,0.55);
    box-shadow: 0 26px 56px rgba(0,0,0,0.5);
  }
  .wine-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; gap: 12px; }
  .wine-region {
    font-family: var(--sans); font-size: 9px; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose);
  }
  .wine-price {
    font-family: var(--sans); font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; color: var(--gold-light); white-space: nowrap;
  }
  .wine-name {
    font-family: var(--serif); font-size: 28px; font-weight: 500;
    line-height: 1.16; color: var(--ivory); margin-bottom: 12px;
  }
  .wine-desc { font-size: 13.5px; line-height: 1.78; color: var(--on-dark-2); }
  .wine-desc strong { color: var(--ivory); font-weight: 600; }

  /* ══════════════════════════════
     WORLD WHISKEY — amber
  ══════════════════════════════ */
  .whiskey-section {
    padding: 110px 80px;
    background:
      radial-gradient(circle at 18% 80%, rgba(196,107,26,0.20) 0%, transparent 50%),
      radial-gradient(circle at 78% 16%, rgba(212,168,67,0.16) 0%, transparent 52%),
      linear-gradient(160deg, #16100A 0%, #1E1408 52%, #120C06 100%);
    position: relative;
    overflow: hidden;
  }
  .whiskey-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
  .whiskey-intro { max-width: 680px; margin: 24px 0 0; font-size: 15px; line-height: 1.85; color: var(--on-dark-2); }
  .whiskey-note-novice {
    max-width: 680px; margin: 22px 0 0;
    font-size: 13.5px; line-height: 1.8; color: var(--on-dark-2);
    border-left: 2px solid rgba(212,168,67,0.5); padding-left: 20px; font-style: italic;
  }
  .whiskey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 56px;
  }
  .whiskey-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(212,168,67,0.20);
    background: rgba(255,255,255,0.03);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 34px 34px 36px;
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1), border-color 0.3s, box-shadow 0.3s;
  }
  .whiskey-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,168,67,0.55);
    box-shadow: 0 26px 56px rgba(0,0,0,0.5);
  }
  .whiskey-rank {
    font-family: var(--serif); font-size: 13px; font-weight: 600;
    color: var(--amber); letter-spacing: 0.04em;
  }
  .whiskey-cat {
    font-family: var(--sans); font-size: 9px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
    margin: 8px 0 10px;
  }
  .whiskey-name {
    font-family: var(--serif); font-size: 25px; font-weight: 500;
    line-height: 1.18; color: var(--ivory); margin-bottom: 12px;
  }
  .whiskey-desc { font-size: 13.5px; line-height: 1.78; color: var(--on-dark-2); }
  .whiskey-desc strong { color: var(--ivory); font-weight: 600; }

  /* ══════════════════════════════
     LOOKBOOK — navy
  ══════════════════════════════ */
  .lookbook-section {
    padding: 110px 80px;
    background: var(--look-bg);
    position: relative;
    overflow: hidden;
  }

  .lookbook-section::before {
    content: '';
    position: absolute;
    top: -20%; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(27,58,107,0.4) 0%, transparent 70%);
    pointer-events: none;
  }

  .lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
  }

  /* Give each lookbook tile a unique color accent */
  .lookbook-item {
    padding: 60px 36px 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .lookbook-item:hover { transform: scale(1.02); z-index: 2; }

  /* Rotating background colors */
  .lookbook-item:nth-child(1)  { background: linear-gradient(145deg, #12203A 0%, #1B3A6B 100%); }
  .lookbook-item:nth-child(2)  { background: linear-gradient(145deg, #1A0A14 0%, #5C1A4A 100%); }
  .lookbook-item:nth-child(3)  { background: linear-gradient(145deg, #0B1F0F 0%, #1A5C45 100%); }
  .lookbook-item:nth-child(4)  { background: linear-gradient(145deg, #1A0C06 0%, #C46B1A 60%, #1A0C06 100%); }
  .lookbook-item:nth-child(5)  { background: linear-gradient(145deg, #12203A 0%, #1B3A6B 100%); }
  .lookbook-item:nth-child(6)  { background: linear-gradient(145deg, #1A0A14 0%, #5C1A4A 100%); }
  .lookbook-item:nth-child(7)  { background: linear-gradient(145deg, #0B1F0F 0%, #1A5C45 100%); }
  .lookbook-item:nth-child(8)  { background: linear-gradient(145deg, #1A0A0E 0%, #6B1A30 100%); }
  .lookbook-item:nth-child(9)  { background: linear-gradient(145deg, #0F0A18 0%, #2E1A5C 100%); }
  .lookbook-item:nth-child(10) { background: linear-gradient(145deg, #1A0C06 0%, #8B3A10 100%); }
  .lookbook-item:nth-child(11) { background: linear-gradient(145deg, #12203A 0%, #1B3A6B 100%); }
  .lookbook-item:nth-child(12) { background: linear-gradient(145deg, #1A0A14 0%, #5C1A4A 100%); }
  .lookbook-item:nth-child(13) { background: linear-gradient(145deg, #0B1F0F 0%, #1A5C45 100%); }

  .lookbook-number {
    font-family: var(--serif);
    font-size: 110px;
    font-weight: 300;
    color: rgba(255,255,255,0.06);
    position: absolute;
    top: 16px;
    left: 20px;
    line-height: 1;
    user-select: none;
  }

  .lookbook-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }

  .lookbook-caption {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.35;
    position: relative;
    z-index: 1;
  }

  /* ══════════════════════════════
     NEWSLETTER — deep plum
  ══════════════════════════════ */
  .newsletter-section {
    padding: 120px 80px;
    background: linear-gradient(135deg, #1A0A14 0%, #300A22 50%, #1A0A14 100%);
    position: relative;
    overflow: hidden;
  }

  .newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%,
      rgba(212,168,67,0.1) 0%, transparent 65%);
    pointer-events: none;
  }

  .newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .newsletter-inner .section-label {
    justify-content: center;
    color: var(--gold);
  }

  .newsletter-title {
    font-family: var(--serif);
    font-size: clamp(44px, 4.5vw, 62px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--ivory);
    margin-bottom: 24px;
  }

  .newsletter-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .newsletter-desc {
    font-size: 14px;
    line-height: 1.85;
    color: var(--on-dark-2);
    margin-bottom: 52px;
  }

  .newsletter-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(212,168,67,0.35);
    max-width: 500px;
    margin: 0 auto 20px;
  }

  .newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: none;
    padding: 18px 24px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--ivory);
    outline: none;
  }

  .newsletter-form input::placeholder { color: var(--on-dark-2); font-style: italic; }

  .newsletter-form button {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    padding: 18px 30px;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .newsletter-form button:hover { opacity: 0.85; }

  .newsletter-note {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(237,233,224,0.25);
  }

  /* ══════════════════════════════
     ABOUT — deep forest
  ══════════════════════════════ */
  .about-section {
    padding: 130px 80px;
    background: var(--about-bg);
    position: relative;
    overflow: hidden;
  }

  .about-section::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(26,92,69,0.25) 0%, transparent 65%);
    pointer-events: none;
  }

  .about-inner {
    max-width: 700px;
    position: relative;
    z-index: 1;
  }

  .about-headline {
    font-family: var(--serif);
    font-size: clamp(54px, 5.5vw, 78px);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 44px;
  }

  .about-headline span { display: block; color: var(--ivory); }

  .about-headline em {
    font-style: italic;
    display: block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .about-body {
    font-size: 15px;
    line-height: 1.95;
    color: var(--on-dark-2);
    margin-bottom: 20px;
  }

  .about-body strong { color: var(--ivory); }

  .divider {
    text-align: center;
    padding: 44px 0;
    color: var(--gold);
    font-size: 22px;
  }

  /* ══════════════════════════════
     FOOTER — near-black
  ══════════════════════════════ */
  footer {
    background: var(--footer-bg);
    padding: 80px;
    border-top: 1px solid var(--border-dark);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 40px;
  }

  .footer-brand .footer-logo {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 16px;
    display: block;
  }

  .footer-tagline {
    font-family: var(--serif);
    font-size: 14px;
    font-style: italic;
    color: var(--on-dark-2);
    line-height: 1.65;
  }

  .footer-nav { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }

  .footer-nav-col h4 {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-nav-col ul { list-style: none; }
  .footer-nav-col li { margin-bottom: 10px; }

  .footer-nav-col a {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--on-dark-2);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-nav-col a:hover { color: var(--gold); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(237,233,224,0.25);
  }

  .footer-actions { display: flex; gap: 24px; }

  .footer-actions a {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--on-dark-2);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-actions a:hover { color: var(--gold); }

  /* ══════════════════════════════
     FROM THE BLOG
  ══════════════════════════════ */
  .blog-section {
    padding: 110px 80px;
    background:
      radial-gradient(circle at 15% 20%, rgba(212,168,67,0.10) 0%, transparent 42%),
      radial-gradient(circle at 85% 80%, rgba(200,75,110,0.12) 0%, transparent 45%),
      radial-gradient(circle at 60% 0%, rgba(27,58,107,0.18) 0%, transparent 50%),
      linear-gradient(155deg, #0A0712 0%, #150913 48%, #0A1424 100%);
    position: relative;
    overflow: hidden;
  }

  .blog-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 78%);
            mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 78%);
    pointer-events: none;
  }

  .blog-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
  }

  .blog-card {
    display: flex;
    flex-direction: column;
    padding: 38px 34px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.035);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 18px 40px rgba(0,0,0,0.28);
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1), border-color 0.3s, background 0.3s, box-shadow 0.3s;
  }

  .blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.35s;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 60%);
  }

  .blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 28px 60px rgba(0,0,0,0.42);
  }
  .blog-card:hover::before { opacity: 1; }

  .blog-card--fashion:hover { border-color: rgba(212,168,67,0.45); }
  .blog-card--style:hover   { border-color: rgba(107,159,228,0.45); }
  .blog-card--music:hover   { border-color: rgba(200,75,110,0.45); }
  .blog-card--life:hover    { border-color: rgba(77,184,140,0.45); }
  .blog-card--travel:hover  { border-color: rgba(196,107,26,0.45); }

  .blog-card-cat {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .blog-card--fashion .blog-card-cat  { color: var(--gold); }
  .blog-card--style   .blog-card-cat  { color: #6B9FE4; }
  .blog-card--music   .blog-card-cat  { color: var(--rose); }
  .blog-card--life    .blog-card-cat  { color: #4DB88C; }
  .blog-card--travel  .blog-card-cat  { color: var(--amber); }

  .blog-card-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.22;
    color: var(--ivory);
    margin-bottom: 14px;
    flex-grow: 1;
  }

  .blog-card-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--on-dark-2);
    margin-bottom: 24px;
    flex-grow: 2;
  }

  .blog-card-link {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--on-dark-2);
    transition: color 0.2s;
  }

  .blog-card:hover .blog-card-link { color: var(--ivory); }

  .blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-dark);
    position: relative;
    z-index: 1;
  }

  .blog-footer-text {
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
    line-height: 1.75;
    color: var(--on-dark-2);
    max-width: 560px;
  }

  .blog-footer-text em { color: var(--rose); font-style: normal; }


  /* ══════════════════════════════
     THE EDIT — PHOTO SECTION
  ══════════════════════════════ */
  .the-edit-section {
    padding: 110px 80px;
    background: var(--section-2);
    position: relative;
    overflow: hidden;
  }

  .the-edit-section::before {
    content: '';
    position: absolute;
    bottom: -20%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 65%);
    pointer-events: none;
  }

  .the-edit-header {
    max-width: 680px;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
  }

  .the-edit-title {
    font-family: var(--serif);
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 20px;
  }

  .the-edit-title em {
    font-style: italic;
    color: var(--gold);
  }

  .the-edit-subtitle {
    font-size: 15px;
    line-height: 1.85;
    color: var(--on-dark-2);
    max-width: 540px;
  }

  .the-edit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
  }

  /* A LIFE IN COLOUR — single-row photo band */
  .colour-row-section {
    padding: 80px 40px 70px;
    background: var(--houses-bg);
  }
  .colour-row-header { max-width: 1200px; margin: 0 auto 34px; text-align: center; }
  .colour-row-title {
    font-family: var(--serif); font-size: clamp(28px, 4vw, 44px);
    font-weight: 400; color: var(--ivory); line-height: 1.05; margin-top: 8px;
  }
  .colour-row-title em { font-style: italic; color: var(--gold-light); }
  .colour-row-subtitle {
    font-family: var(--serif); font-size: 16px; font-style: italic;
    color: var(--on-dark); opacity: 0.8; max-width: 600px; margin: 14px auto 0; line-height: 1.5;
  }
  .colour-row {
    display: flex; gap: 10px; overflow-x: auto; padding: 6px 4px 14px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    max-width: 1280px; margin: 0 auto;
  }
  .colour-row::-webkit-scrollbar { height: 6px; }
  .colour-row::-webkit-scrollbar-thumb { background: rgba(212,168,67,0.35); border-radius: 3px; }
  .colour-row-item {
    flex: 0 0 auto; width: 132px; aspect-ratio: 3/4;
    border-radius: 4px; overflow: hidden; scroll-snap-align: start;
    box-shadow: 0 8px 20px rgba(0,0,0,0.28); border: 1px solid rgba(212,168,67,0.18);
  }
  .colour-row-item img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    display: block; transition: transform 0.5s;
  }
  .colour-row-item:hover img { transform: scale(1.06); }
  @media (max-width: 720px) {
    .colour-row-section { padding: 56px 16px 50px; }
    .colour-row-item { width: 112px; }
  }


  .edit-photo-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .the-edit-grid > .edit-photo-card:last-child:nth-child(even),
  .the-edit-grid > .edit-photo-card.edit-photo-full {
    grid-column: 1 / -1;
  }
  .the-edit-grid > .edit-photo-card.edit-photo-full .edit-photo-wrap {
    aspect-ratio: 16 / 9;
    max-height: 620px;
  }
  .the-edit-grid > .edit-photo-card.edit-photo-full .edit-photo {
    object-position: center 30%;
  }

  .edit-photo-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #0a0a0a;
    max-height: 540px;
  }

  .edit-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
    filter: contrast(1.05) saturate(0.92);
  }

  .edit-photo-card:hover .edit-photo {
    transform: scale(1.04);
  }

  /* Individually tuned framing so faces/details aren't clipped */
  .edit-photo--cucinelli {
    object-position: center 30%;
  }
  .edit-photo--bowtie {
    object-position: center center;
  }
  /* On mobile, show the whole photo rather than cropping key detail out.
     Both images are 3:4, matching the wrap, so contain shows them fully with no bars. */
  @media (max-width: 640px) {
    .edit-photo--cucinelli,
    .edit-photo--bowtie {
      object-fit: contain;
      object-position: center center;
      background: #0a0a0a;
    }
  }

  .edit-photo-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .edit-photo-card:hover .edit-photo-overlay {
    opacity: 1;
  }

  .edit-photo-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .edit-photo-caption {
    padding: 32px 36px 40px;
    background: rgba(255,255,255,0.04);
    border-top: 2px solid var(--gold);
    flex: 1;
  }

  .edit-caption-category {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .edit-caption-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .edit-caption-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--on-dark-2);
  }

  /* ══════════════════════════════
     FADE IN
  ══════════════════════════════ */
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ══════════════════════════════
     SCROLLBAR
  ══════════════════════════════ */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--ink); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  /* ── section-pad utility ── */
  .section-pad { padding: 0 80px; }

  /* ══════════════════════════════════════════
     RESPONSIVE — base overrides
     Breakpoints:
       1280px  laptop
       1024px  small laptop / large tablet
        768px  tablet
        480px  mobile landscape
        390px  mobile portrait
  ══════════════════════════════════════════ */

  /* ── 1280px: laptop ── */
  @media (max-width: 1280px) {
    nav { padding: 18px 36px; }

    .hero { padding: 120px 48px 80px; }

    .editors-pick,
    .articles-section,
    .wsy-edit,
    .interviews-section,
    .houses-intro,
    .restaurants-section,
    .pov-section,
    .blog-section,
    .the-edit-section,
    .newsletter-section,
    .about-section,
    .lookbook-section { padding-left: 48px; padding-right: 48px; }

    .category-section { padding-left: 48px; padding-right: 48px; }

    footer { padding: 60px 48px; }

    .houses-categories { grid-template-columns: repeat(3, 1fr); }

    .blog-grid { grid-template-columns: repeat(3, 1fr); }
  }

  /* ── 1024px: small laptop / large tablet ── */
  @media (max-width: 1024px) {
    nav { padding: 16px 28px; }

    .hero { padding: 110px 36px 80px; }
    .hero-title .line { font-size: clamp(60px, 8vw, 96px); }

    .editors-pick,
    .articles-section,
    .wsy-edit,
    .interviews-section,
    .houses-intro,
    .restaurants-section,
    .pov-section,
    .blog-section,
    .the-edit-section,
    .newsletter-section,
    .about-section,
    .lookbook-section { padding-left: 36px; padding-right: 36px; padding-top: 80px; padding-bottom: 80px; }

    .category-section { padding-left: 36px; padding-right: 36px; }

    footer { padding: 56px 36px; }

    /* Two-col grids → stay 2 col but breathe more */
    .wsy-edit { gap: 48px; }
    .pov-section { gap: 56px; }

    /* Three-col grids → 2 col */
    .articles-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .mb-le-grid { grid-template-columns: 1fr 1fr; }
    .houses-categories { grid-template-columns: repeat(3, 1fr); }

    /* Footer grid */
    .footer-top { grid-template-columns: 1fr 2fr; gap: 40px; }
    .footer-top > div:last-child { display: none; }

    /* Menu overlay */
    .menu-overlay-inner { gap: 40px; }
    .menu-aside { padding-left: 40px; }
  }

  /* ── 768px: tablet ── */
  @media (max-width: 768px) {
    /* Nav */
    nav { padding: 16px 20px; }
    .nav-logo { font-size: 10px; letter-spacing: 0.15em; }

    /* Menu overlay → single column */
    .menu-overlay-inner { grid-template-columns: 1fr; gap: 0; padding: 80px 32px 40px; }
    .menu-aside { display: none; }
    .menu-link { font-size: clamp(36px, 8vw, 52px); }

    /* Hero */
    .hero { padding: 100px 24px 70px; }
    .hero-title .line { font-size: clamp(52px, 11vw, 80px); }
    .hero-desc { max-width: 100%; font-size: 14px; }
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: left;
    }
    .hero-content { max-width: 100%; order: 2; }
    .hero-portrait {
      order: 1;
      justify-self: center;
      max-width: 320px;
      flex-direction: column;
      gap: 0;
      align-items: stretch;
    }
    .hero-pcol { flex: none; max-width: 100%; }
    .hero-portrait .hero-creed { margin-top: 22px; }
    .hero-portrait-frame { aspect-ratio: 4 / 5; }
    .hero-portrait-img { object-position: center 28%; }

    /* All sections → single column padding */
    .editors-pick,
    .articles-section,
    .wsy-edit,
    .interviews-section,
    .houses-intro,
    .restaurants-section,
    .pov-section,
    .blog-section,
    .the-edit-section,
    .newsletter-section,
    .about-section,
    .lookbook-section { padding: 64px 24px; }

    .category-section { padding: 48px 24px 0; }
    footer { padding: 48px 24px; }

    /* All 2-col grids → single column */
    .wsy-edit { grid-template-columns: 1fr; gap: 48px; }
    .pov-section { grid-template-columns: 1fr; gap: 48px; }
    .pov-figure img, .considered-figure img { aspect-ratio: 4 / 5; object-position: center 18%; }
    .considered-figure img { max-width: 100%; }
    .interviews-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .houses-grid { grid-template-columns: 1fr; }
    .restaurants-grid { grid-template-columns: 1fr; }
    .the-edit-grid { grid-template-columns: 1fr; }

    /* 3-col grids → single column */
    .blog-grid { grid-template-columns: 1fr; }
    .mb-le-grid { grid-template-columns: 1fr; }
    .cigar-grid { grid-template-columns: 1fr; }
    .packing-section { padding: 64px 24px; }
    .packing-grid { grid-template-columns: 1fr; }
    .wine-section, .whiskey-section { padding: 64px 24px; }
    .wine-grid, .whiskey-grid { grid-template-columns: 1fr; }
    .houses-categories { grid-template-columns: repeat(2, 1fr); }

    /* Section header stack */
    .section-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }

    /* Category section header */
    .category-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }

    /* POV stats */
    .pov-visual { gap: 3px; }

    /* Edit photo */
    .edit-photo-wrap { aspect-ratio: 4 / 3; }

    /* Blog footer */
    .blog-footer { flex-direction: column; gap: 32px; align-items: flex-start; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-top > div:last-child { display: none; }
    .footer-nav { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }

    /* Newsletter form */
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; padding: 16px; }

    /* Houses intro subtitle */
    .houses-subtitle { font-size: 14px; }

    /* About headline */
    .about-headline { font-size: clamp(44px, 9vw, 62px); }
  }

  /* ── 480px: mobile landscape / small phones ── */
  @media (max-width: 480px) {
    /* Nav */
    nav { padding: 14px 16px; }
    .nav-logo { font-size: 9px; gap: 6px; }

    /* Hero */
    .hero { padding: 88px 16px 64px; }
    .hero-title .line { font-size: clamp(44px, 12vw, 64px); }
    .hero-eyebrow { font-size: 9px; margin-bottom: 24px; }
    .hero-desc { font-size: 13px; margin-bottom: 36px; }
    .btn-primary { padding: 14px 24px; font-size: 9px; }
    .hero-grid { gap: 32px; }
    .hero-portrait { max-width: 260px; }
    .hero-portrait-frame::after { inset: 9px; }
    .hero-portrait-img { object-position: center 26%; }
    .hero-actions { gap: 12px; }
    .btn-ghost { padding: 13px 20px; font-size: 9px; }
    .hpc-sub { font-size: 14px; }
    .hero-creed { margin-top: 22px; padding: 18px 18px; }
    .hero-creed-line { font-size: 16px; line-height: 1.45; }
    .hero-creed-kicker { font-size: 9px; margin-bottom: 10px; }

    /* Sections */
    .editors-pick,
    .articles-section,
    .wsy-edit,
    .interviews-section,
    .houses-intro,
    .restaurants-section,
    .pov-section,
    .blog-section,
    .the-edit-section,
    .newsletter-section,
    .about-section,
    .lookbook-section { padding: 52px 16px; }

    .category-section { padding: 40px 16px 0; }
    footer { padding: 40px 16px; }

    /* Houses categories 2→1 col on tiny screens */
    .houses-categories { grid-template-columns: repeat(2, 1fr); }
    .house-cat-tile { padding: 28px 16px; }
    .house-cat-tile svg { width: 28px; height: 28px; }
    .house-cat-tile .cat-label { font-size: 9px; }

    /* House cards */
    .house-card { padding: 32px 20px; }
    .house-card-name { font-size: 24px; }
    .house-card-desc { font-size: 12px; }

    /* Article cards */
    .article-card { padding: 28px 0; }
    .article-card-title { font-size: 22px; }

    /* Interview cards */
    .interview-card { padding: 40px 24px; }
    .interview-card h3 { font-size: 32px; }
    .interview-number { font-size: 60px; top: 20px; right: 20px; }

    /* Restaurant cards */
    .restaurant-card { padding: 32px 20px; }
    .restaurant-name { font-size: 24px; }

    /* Blog cards */
    .blog-card { padding: 32px 20px; }
    .blog-card-title { font-size: 22px; }

    /* Section titles */
    .section-header .section-title { font-size: clamp(36px, 8vw, 48px); }
    .article-title { font-size: clamp(30px, 7vw, 44px); }
    .wsy-edit-title { font-size: clamp(32px, 7vw, 46px); }
    .the-edit-title { font-size: clamp(30px, 7vw, 44px); }
    .pov-title { font-size: clamp(32px, 7vw, 46px); }
    .newsletter-title { font-size: clamp(34px, 8vw, 48px); }
    .about-headline { font-size: clamp(38px, 9vw, 54px); }

    /* POV stats */
    .pov-stat { padding: 28px 24px; }
    .pov-stat-number { font-size: 48px; }

    /* Edit photo */
    .edit-photo-wrap { aspect-ratio: 1 / 1; }
    .edit-photo-caption { padding: 24px 20px 28px; }
    .edit-caption-title { font-size: 22px; }

    /* Footer */
    .footer-nav { grid-template-columns: 1fr; gap: 28px; }
    .footer-copy { font-size: 9px; }
    .footer-actions { flex-wrap: wrap; gap: 16px; }

    /* Category section header */
    .category-section-header h2 { font-size: 26px; }
    .house-count { font-size: 8px; }

    /* Menu overlay */
    .menu-overlay-inner { padding: 80px 20px 40px; }
    .menu-link { font-size: clamp(32px, 9vw, 48px); gap: 12px; }

    /* Ticker */
    .hero-ticker { font-size: 8px; letter-spacing: 0.2em; }

    /* Newsletter */
    .newsletter-section { padding: 52px 16px; }
    .newsletter-inner { padding: 0; }
  }

  /* ── 390px: tight portrait phones ── */
  @media (max-width: 390px) {
    .hero-title .line { font-size: clamp(40px, 11vw, 56px); }
    .houses-categories { grid-template-columns: 1fr 1fr; }
    .edit-photo-wrap { aspect-ratio: 4 / 3; }
    .nav-logo span.slash { display: none; }
  }


/* ===== Inline article overlays ===== */
.article-overlay{position:fixed;inset:0;z-index:2000;background:var(--ivory);overflow-y:auto;display:none;}
.article-overlay.open{display:block;}
.article-overlay-bar{position:sticky;top:0;z-index:10;background:rgba(250,247,242,0.9);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);border-bottom:1px solid #E2DDD8;padding:16px 40px;}
.article-overlay-close{display:inline-flex;align-items:center;gap:8px;font-family:var(--sans);font-size:12px;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:#0E0C0A;background:linear-gradient(135deg,#ECC96A,#D4A843);border:none;border-radius:999px;padding:11px 22px;cursor:pointer;box-shadow:0 4px 14px rgba(212,168,67,0.45);transition:transform .18s ease, box-shadow .18s ease, background .18s ease;}
.article-overlay-close:hover{background:linear-gradient(135deg,#F2D583,#E0B451);color:#0E0C0A;transform:translateY(-1px);box-shadow:0 7px 22px rgba(212,168,67,0.6);}
.article-overlay-close:active{transform:translateY(0);box-shadow:0 3px 10px rgba(212,168,67,0.5);}
.article-overlay-content{color:#3D3833;font-family:var(--body);}
body.article-open{overflow:hidden;}
@media(max-width:600px){.article-overlay-bar{padding:14px 20px;}}
.article-overlay *{margin:0;padding:0;box-sizing:border-box;}.article-overlay .nav{position:sticky;top:0;z-index:50;display:flex;align-items:center;justify-content:space-between;
    padding:20px 40px;background:rgba(250,247,242,0.82);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
    border-bottom:1px solid #E2DDD8;}.article-overlay .nav-logo{font-family:var(--sans);font-size:13px;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:var(--ink);text-decoration:none;display:flex;align-items:center;gap:10px;}.article-overlay .nav-logo span{color:var(--accent);font-size:16px;}.article-overlay .nav-back{font-family:var(--sans);font-size:10px;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;color:#8A847E;text-decoration:none;transition:color .2s;}.article-overlay .nav-back:hover{color:var(--accent);}.article-overlay .av-hero{padding:96px 24px 56px;text-align:center;position:relative;overflow:hidden;}
.prince-hero-graphic{width:100%;max-width:820px;margin:0 auto 34px;border-radius:6px;overflow:hidden;box-shadow:0 18px 50px rgba(74,20,120,0.4);line-height:0;}
.prince-hero-graphic svg{width:100%;height:auto;display:block;}
  .prince-hero-graphic{width:100%;max-width:900px;margin:0 auto 8px;border-radius:6px;overflow:hidden;box-shadow:0 18px 50px rgba(74,26,107,0.45);border:1px solid rgba(212,168,67,0.25);}
  .prince-hero-graphic svg{max-height:340px;}.article-overlay .av-hero::after{content:'';position:absolute;top:-20%;left:50%;transform:translateX(-50%);width:680px;height:520px;
    background:radial-gradient(ellipse,color-mix(in srgb,var(--accent) 14%,transparent) 0%,transparent 68%);pointer-events:none;}.article-overlay .av-kicker{font-family:var(--sans);font-size:10px;font-weight:700;letter-spacing:0.3em;text-transform:uppercase;color:var(--accent);margin-bottom:24px;
    display:inline-flex;align-items:center;gap:10px;position:relative;z-index:1;}.article-overlay .av-kicker::before, .article-overlay .av-kicker::after{content:'';width:20px;height:1px;background:var(--accent);display:inline-block;}.article-overlay .av-headline{font-family:var(--serif);font-size:clamp(40px,6vw,72px);font-weight:400;line-height:1.04;color:var(--ink);
    max-width:880px;margin:0 auto 22px;position:relative;z-index:1;}.article-overlay .av-headline em{font-style:italic;color:var(--accent);}.article-overlay .av-standfirst{font-family:var(--body);font-weight:300;font-size:clamp(20px,2.3vw,25px);font-style:italic;line-height:1.55;color:#6A645E;
    max-width:620px;margin:0 auto;position:relative;z-index:1;}.article-overlay .av-byline{font-family:var(--sans);font-size:10px;letter-spacing:0.2em;text-transform:uppercase;color:#9A948E;margin-top:34px;position:relative;z-index:1;}.article-overlay .av-article{max-width:640px;margin:0 auto;padding:8px 24px 40px;}.article-overlay .av-article p{font-size:18.5px;line-height:1.78;color:#3A352F;margin-bottom:26px;letter-spacing:0.002em;}.article-overlay .av-article p:first-of-type{margin-top:8px;}.article-overlay .av-article p:first-of-type::first-letter{font-family:var(--serif);float:left;font-size:78px;line-height:0.72;padding:10px 14px 0 0;color:var(--accent);font-weight:600;}.article-overlay .av-article h2{font-family:var(--serif);font-size:clamp(29px,3.4vw,40px);font-weight:600;line-height:1.15;color:var(--ink);margin:52px 0 18px;letter-spacing:-0.005em;}.article-overlay .av-pull{font-family:var(--body);font-weight:300;font-size:clamp(24px,3vw,32px);font-style:italic;line-height:1.42;color:var(--accent);
    border-left:3px solid var(--gold);padding-left:32px;margin:52px 0;letter-spacing:0.003em;}.article-overlay .av-article em{font-style:italic;}.article-overlay .av-divider{text-align:center;color:var(--accent);font-size:18px;letter-spacing:1em;margin:48px 0 8px;opacity:.7;}.article-overlay .av-signoff{font-family:var(--sans);font-size:10px;letter-spacing:0.22em;text-transform:uppercase;color:#9A948E;text-align:center;margin-top:28px;}.article-overlay .av-foot{background:#060408;color:rgba(237,233,224,0.55);text-align:center;padding:54px 24px;margin-top:40px;}.article-overlay .av-foot-logo{font-family:var(--serif);font-size:26px;color:var(--ivory);margin-bottom:10px;}.article-overlay .av-foot-sub{font-family:var(--sans);font-size:10px;letter-spacing:0.18em;text-transform:uppercase;}.article-overlay .av-foot a{color:var(--gold-light);text-decoration:none;}
.article-overlay .av-figure{margin:44px auto;max-width:560px;}
.article-overlay .av-figure img{display:block;width:100%;height:auto;border-radius:5px;box-shadow:0 18px 44px rgba(0,0,0,0.28);}
.article-overlay .av-figure figcaption{font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:#6B6259;text-align:center;margin-top:12px;}
.article-overlay .av-video{margin:44px auto;max-width:600px;}
.article-overlay .av-video-frame{position:relative;width:100%;padding-bottom:56.25%;height:0;border-radius:5px;overflow:hidden;box-shadow:0 18px 44px rgba(0,0,0,0.28);}
.article-overlay .av-video-frame iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0;}
.article-overlay .av-video-cap{font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:#6B6259;text-align:center;margin-top:12px;}
.plate-video{max-width:340px;margin:26px auto 4px;border-radius:6px;overflow:hidden;border:1px solid rgba(212,168,67,0.30);box-shadow:0 16px 40px rgba(0,0,0,0.45);}
.plate-video-frame{position:relative;width:100%;padding-bottom:177.78%;height:0;}
.plate-video-frame iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0;}
.plate-video-cap{font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:#6B6259;text-align:center;margin:10px 0 4px;}
@media(max-width:600px){.plate-video{max-width:280px;}}
.plate-img{max-width:420px;margin:26px auto 4px;border-radius:6px;overflow:hidden;border:1px solid rgba(212,168,67,0.30);box-shadow:0 16px 40px rgba(0,0,0,0.45);}
.plate-img img{display:block;width:100%;height:auto;}
.plate-img-cap{font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:#6B6259;text-align:center;margin:10px 0 4px;}
@media(max-width:600px){.plate-img{max-width:100%;}}
  @.article-overlay media(max-width:600px){.article-overlay .nav{padding:16px 20px;}.article-overlay .av-hero{padding:64px 20px 40px;}.article-overlay .av-article{padding:8px 22px 32px;}.article-overlay .av-article p{font-size:17.5px;line-height:1.72;}.article-overlay .av-article p:first-of-type::first-letter{font-size:62px;padding:8px 12px 0 0;}.article-overlay .av-article h2{margin:40px 0 16px;}.article-overlay .av-pull{padding-left:22px;margin:40px 0;}}



/* --- standalone article page support --- */
.article-static{position:static!important;transform:none!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important;display:block!important;height:auto!important;max-height:none!important;overflow:visible!important;inset:auto!important;}
.wsy-page-bar{position:sticky;top:0;z-index:50;display:flex;align-items:center;justify-content:space-between;gap:16px;background:rgba(14,12,10,0.92);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border-bottom:1px solid rgba(212,168,67,0.25);padding:14px 30px;}
.wsy-page-bar a.wsy-home{font-family:var(--serif);font-style:italic;font-size:20px;color:var(--gold-light);text-decoration:none;}
.wsy-page-bar .wsy-page-tag{font-family:var(--sans);font-size:10px;font-weight:700;letter-spacing:0.22em;text-transform:uppercase;color:var(--on-dark-2);}
body.wsy-article-page{background:var(--ivory);}

/* --- landing-page section tabs --- */
.section-tabs{background:#0b0a0c;border-top:1px solid rgba(212,168,67,0.18);border-bottom:1px solid rgba(212,168,67,0.18);}
.section-tabs.visible{opacity:1;visibility:visible;transform:none;}
.section-tabs-inner{display:flex;gap:2px;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;max-width:1400px;margin:0 auto;padding:0 16px;}
.section-tabs-inner::-webkit-scrollbar{display:none;}
.section-tabs a.section-tab{flex:0 0 auto;white-space:nowrap;font-family:var(--sans);font-size:12px;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;color:rgba(237,233,224,0.82);text-decoration:none;padding:15px 15px;border-bottom:2px solid transparent;transition:color .2s ease,border-color .2s ease;}
.section-tabs a.section-tab:hover{color:var(--ivory);}
.section-tabs a.section-tab.active{color:var(--gold-light);border-bottom-color:var(--gold);}
section[id]{scroll-margin-top:118px;}
@media(max-width:700px){.section-tabs{top:62px;}.section-tab{font-size:11px;padding:13px 12px;letter-spacing:0.09em;}section[id]{scroll-margin-top:96px;}}
