:root {
    --sand: #f5ede0;
    --blush: #e8c4a2;
    --terracotta: #c4734a;
    --dusk: #7a5c6e;
    --ocean: #3d6b7a;
    --twilight: #1a2a3a;
    --gold: #c9a96e;
    --cream: #fdf8f2;
    --coral: #d4826a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--twilight);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
  }

  /* ── STICKY NAV ── */
  .sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26,42,58,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0 40px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    color: var(--blush);
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .nav-socials {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav-social-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 9.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    white-space: nowrap;
    border: 1px solid transparent;
  }

  .nav-social-link.tiktok {
    color: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.1);
  }
  .nav-social-link.tiktok:hover {
    background: rgba(255,255,255,0.07);
    color: white;
    border-color: rgba(255,255,255,0.2);
  }

  .nav-social-link.instagram {
    color: var(--blush);
    border-color: rgba(232,196,162,0.2);
  }
  .nav-social-link.instagram:hover {
    background: rgba(232,196,162,0.08);
    color: var(--blush);
    border-color: rgba(232,196,162,0.4);
  }

  .nav-social-link.facebook {
    color: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.08);
  }
  .nav-social-link.facebook:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.18);
  }

  .nav-social-link.email {
    color: var(--gold);
    border-color: rgba(201,169,110,0.25);
  }
  .nav-social-link.email:hover {
    background: rgba(201,169,110,0.08);
    color: var(--gold);
    border-color: rgba(201,169,110,0.45);
  }

  .nav-social-icon {
    font-size: 12px;
    line-height: 1;
  }

  .nav-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    margin: 0 2px;
  }

  /* push content below fixed nav */
  body { padding-top: 52px; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    background: var(--twilight);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
  }

  .hero-left-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.45;
  }

  .hero-left-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.97) 0%, rgba(26,42,58,0.5) 50%, rgba(26,42,58,0.2) 100%);
  }

  .hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse at 20% 80%, rgba(196,115,74,0.25) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(61,107,122,0.2) 0%, transparent 50%);
  }

  .hero-left::after {
    content: '32°';
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 300;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    letter-spacing: -4px;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease 0.2s both;
  }

  .hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease 0.4s both;
  }

  .hero-name em {
    font-style: italic;
    color: var(--blush);
    display: block;
  }

  .hero-tagline {
    margin-top: 28px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    line-height: 2;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease 0.6s both;
  }

  .hero-divider {
    width: 40px;
    height: 1px;
    background: var(--terracotta);
    margin: 24px 0;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease 0.5s both;
  }

  .hero-right {
    background: var(--sand);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 60px 50px;
    position: relative;
    overflow: hidden;
  }

  .hero-right-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.22;
  }

  .hero-right::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.15), transparent 70%);
  }

  .location-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid rgba(196,115,74,0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    width: fit-content;
    margin-bottom: 40px;
    animation: fadeUp 1s ease 0.3s both;
  }

  .location-pill::before { content: '◈'; font-size: 12px; }

  .about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 300;
    line-height: 1.65;
    color: var(--twilight);
    animation: fadeUp 1s ease 0.5s both;
  }

  .about-text strong {
    font-weight: 500;
    color: var(--terracotta);
    font-style: italic;
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 44px;
    animation: fadeUp 1s ease 0.7s both;
  }

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

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--terracotta);
    line-height: 1;
  }

  .stat-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dusk);
    opacity: 0.7;
  }

  /* ── SUNSET SCROLL STRIP ── */
  .sunset-strip {
    background: linear-gradient(135deg, #c4734a 0%, #d4826a 25%, #c9a96e 50%, #7a5c6e 75%, #3d6b7a 100%);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
  }

  .strip-track {
    display: flex;
    gap: 0;
    animation: scrollLeft 18s linear infinite;
    width: max-content;
  }

  .strip-item {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 0 40px;
    white-space: nowrap;
  }

  .strip-item::after {
    content: ' ✦ ';
    color: rgba(255,255,255,0.4);
    margin-left: 40px;
  }

  /* ── SERIES SECTION ── */
  .series {
    padding: 100px 60px;
    background: var(--cream);
  }

  .section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 60px;
  }

  .section-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--terracotta);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    color: var(--twilight);
    line-height: 1.1;
  }

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

  .series-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .series-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
  }

  .series-card:hover { transform: translateY(-4px); }

  .series-card:first-child {
    grid-row: span 2;
  }

  .card-bg {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    position: relative;
    overflow: hidden;
  }

  .series-card:first-child .card-bg { min-height: 460px; }

  /* Sunset scene illustrations using CSS */
  .bg-sunset-1 {
    background: url('../images/bg-sunset-1.webp') center center / cover no-repeat;
  }

  .bg-sunset-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.92) 0%, rgba(26,42,58,0.4) 50%, rgba(26,42,58,0.15) 100%);
  }

  .bg-restaurant {
    background: url('../images/bg-restaurant.webp') center center / cover no-repeat;
  }

  .bg-restaurant::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.9) 0%, rgba(26,42,58,0.35) 55%, rgba(26,42,58,0.1) 100%);
  }

  .bg-beach {
    background: url('../images/bg-beach.webp') center center / cover no-repeat;
  }

  .bg-beach::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.85) 0%, rgba(61,107,122,0.3) 60%, transparent 100%);
  }

  .bg-kitchen {
    background: url('../images/bg-kitchen.webp') center center / cover no-repeat;
  }

  .bg-kitchen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.9) 0%, rgba(26,42,58,0.4) 55%, rgba(0,0,0,0.1) 100%);
  }

  .bg-table {
    background: url('../images/bg-table.webp') center center / cover no-repeat;
  }

  .bg-table::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.9) 0%, rgba(26,42,58,0.35) 55%, rgba(26,42,58,0.05) 100%);
  }

  .card-info {
    position: relative;
    z-index: 2;
  }

  .card-tag {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
  }

  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: white;
    line-height: 1.2;
  }

  .series-card:first-child .card-title {
    font-size: 32px;
  }

  .card-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    margin-top: 6px;
  }

  /* ── CONTENT CATEGORIES ── */
  .categories {
    background: var(--twilight);
    padding: 100px 60px;
  }

  .categories .section-title { color: var(--cream); }
  .categories .section-title em { color: var(--blush); }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    margin-top: 60px;
  }

  .cat-item {
    padding: 44px 36px;
    background: var(--twilight);
    transition: background 0.3s ease;
    cursor: pointer;
  }

  .cat-item:hover { background: rgba(255,255,255,0.04); }

  .cat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--terracotta);
    margin-bottom: 20px;
    font-style: italic;
  }

  .cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .cat-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    line-height: 2;
    letter-spacing: 0.5px;
  }

  .cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }

  .tag {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid rgba(196,115,74,0.3);
    color: var(--terracotta);
    border-radius: 2px;
  }

  /* ── VIRGIL SECTION ── */
  .virgil-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
  }

  .virgil-left {
    background: linear-gradient(135deg, #3d6b7a 0%, #2a4a5a 40%, #1a3040 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  .virgil-left-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.75;
  }

  .virgil-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.85) 0%, rgba(26,42,58,0.3) 50%, rgba(26,42,58,0.1) 100%);
  }

  .virgil-left::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61,107,122,0.5), transparent 70%);
  }

  .virgil-paw {
    font-size: 160px;
    opacity: 0.08;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: saturate(0);
  }

  .virgil-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .virgil-age {
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    font-weight: 300;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .virgil-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: white;
    font-style: italic;
    line-height: 1;
    position: relative;
  }

  .virgil-subtitle {
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 16px;
  }

  .virgil-right {
    background: var(--sand);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .virgil-story {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--twilight);
    margin-bottom: 40px;
  }

  .virgil-story strong {
    font-weight: 500;
    color: var(--ocean);
    font-style: italic;
  }

  .beach-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .beach-tag {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    background: white;
    color: var(--ocean);
    border: 1px solid rgba(61,107,122,0.2);
    border-radius: 2px;
  }

  /* ── BRAND COLLAB ── */
  .collab {
    padding: 100px 60px;
    background: var(--cream);
    text-align: center;
  }

  .collab-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    font-style: italic;
    color: var(--dusk);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.7;
  }

  .collab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  .collab-card {
    padding: 32px 20px;
    border: 1px solid rgba(196,115,74,0.15);
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .collab-card:hover {
    border-color: var(--terracotta);
    background: white;
    transform: translateY(-2px);
  }

  .collab-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .collab-type {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 8px;
  }

  .collab-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--twilight);
    line-height: 1.4;
  }

  /* ── CTA ── */
  .cta {
    background: var(--twilight);
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse at 0% 100%, rgba(196,115,74,0.12) 0%, transparent 50%),
      radial-gradient(ellipse at 100% 0%, rgba(61,107,122,0.1) 0%, transparent 50%);
  }

  .cta-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    position: relative;
    z-index: 1;
  }

  .cta-headline em {
    font-style: italic;
    color: var(--blush);
    display: block;
  }

  .cta-right {
    position: relative;
    z-index: 1;
  }

  .cta-body {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 2.2;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
  }

  .cta-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cta-detail {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .detail-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    min-width: 90px;
  }

  .detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 300;
    color: var(--cream);
  }

  .detail-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--twilight);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: var(--blush);
  }

  .footer-meta {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
  }

  .footer-location {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-bottom {
    font-family:'Cormorant Garamond',serif;
    font-size:15px;
    font-weight:300;
    font-style:italic;
    color:var(--gold); text-decoration:none;
  }

  .footer-location::before { content: '◈'; color: var(--terracotta); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }






  /* ── PARIS IDENTITY STRIP ── */
  .paris-strip {
    background: var(--twilight);
    padding: 0;
    overflow: hidden;
  }

  .paris-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
  }

  .paris-strip-photo {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .paris-strip-portrait {
    aspect-ratio: 3/4;
  }

  .paris-strip-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    display: block;
  }

  .paris-strip-photo:hover img { transform: scale(1.05); }

  .paris-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.88) 0%, rgba(26,42,58,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .paris-strip-photo:hover .paris-strip-overlay { opacity: 1; }

  .paris-strip-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: white;
    line-height: 1.2;
  }

  .paris-strip-sub {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
    margin-top: 4px;
  }

  @media (max-width: 768px) {
    .paris-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .paris-strip-overlay { opacity: 1; }
  }

  /* ── SOLO DINING CHEF'S EYE ── */
  .solo-section {
    background: var(--twilight);
    padding: 100px 60px;
  }

  .solo-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 50px;
  }

  .solo-intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
  }

  .solo-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    margin-bottom: 4px;
    cursor: pointer;
  }

  .solo-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.6s ease;
    display: block;
  }

  .solo-hero:hover img { transform: scale(1.03); }

  .solo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.88) 0%, rgba(26,42,58,0.15) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 44px 50px;
  }

  .solo-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    font-style: italic;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
  }

  .solo-hero-sub {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
  }

  .solo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .solo-item {
    position: relative;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    background: #0a1520;
  }

  .solo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
  }

  .solo-item:hover img { transform: scale(1.06); }

  .solo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px 18px 16px;
    background: linear-gradient(to top, rgba(26,42,58,0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
  }

  .solo-item:hover .solo-caption { opacity: 1; transform: translateY(0); }

  .solo-dish {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    color: white;
    font-weight: 400;
  }

  .solo-detail {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
  }

  @media (max-width: 768px) {
    .solo-header { grid-template-columns: 1fr; }
    .solo-hero { height: 300px; }
    .solo-grid { grid-template-columns: 1fr 1fr; }
    .solo-item { height: 220px; }
    .solo-caption { opacity: 1; transform: translateY(0); }
    .solo-section { padding: 60px 20px; }
  }

  /* ── KITCHEN GALLERY ── */
  .kitchen-gallery {
    background: var(--cream);
    padding: 100px 60px;
  }

  .kitchen-gallery-header {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
  }

  .kitchen-gallery-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 300;
    font-style: italic;
    color: var(--dusk);
    line-height: 1.75;
  }

  /* Hero full-width shot */
  .kg-hero {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-bottom: 4px;
    cursor: pointer;
  }

  .kg-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    transition: transform 0.6s ease;
    display: block;
  }

  .kg-hero:hover img { transform: scale(1.03); }

  .kg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.82) 0%, rgba(26,42,58,0.2) 45%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 50px;
  }

  .kg-hero-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    font-style: italic;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
  }

  .kg-hero-sub {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
  }

  /* 3-col grid */
  .kg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 4px;
  }

  .kg-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    background: var(--twilight);
  }

  .kg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
  }

  .kg-item:hover img { transform: scale(1.06); }

  .kg-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 18px 16px;
    background: linear-gradient(to top, rgba(26,42,58,0.92) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .kg-item:hover .kg-caption { opacity: 1; transform: translateY(0); }

  .kg-dish {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: white;
    font-style: italic;
  }

  .kg-detail {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
  }

  /* Bottom 2-col row */
  .kg-bottom {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4px;
  }

  .kg-bottom-item {
    position: relative;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    background: var(--twilight);
  }

  .kg-bottom-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
  }

  .kg-bottom-item:hover img { transform: scale(1.05); }
  .kg-bottom-item:hover .kg-caption { opacity: 1; transform: translateY(0); }

  @media (max-width: 768px) {
    .kitchen-gallery-header { grid-template-columns: 1fr; }
    .kg-hero { height: 280px; }
    .kg-grid { grid-template-columns: 1fr 1fr; }
    .kg-item { height: 200px; }
    .kg-caption { opacity: 1; transform: translateY(0); }
    .kg-bottom { grid-template-columns: 1fr; }
    .kg-bottom-item { height: 240px; }
    .kg-bottom-item .kg-caption { opacity: 1; transform: translateY(0); }
    .kitchen-gallery { padding: 60px 20px; }
  }

  /* ── DINING GALLERY ── */
  .dining-gallery {
    background: var(--twilight);
    padding: 100px 60px;
  }

  .dgallery-header {
    margin-bottom: 50px;
  }

  .dgallery-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    margin-top: 14px;
    max-width: 520px;
    line-height: 1.7;
  }

  .dgallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 4px;
    margin-bottom: 4px;
  }

  .dgallery-tall {
    grid-row: span 2;
  }

  .dgallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .dgallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
  }

  .dgallery-item:hover img { transform: scale(1.05); }

  .dgallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,58,0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .dgallery-item:hover .dgallery-overlay { opacity: 1; }

  .dgallery-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
  }

  .dgallery-kitchen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .dgallery-kitchen-photo {
    position: relative;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
  }

  .dgallery-kitchen-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
  }

  .dgallery-kitchen-photo:hover img { transform: scale(1.04); }

  .dgallery-kitchen-photo .dgallery-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .dgallery-kitchen-photo:hover .dgallery-overlay { opacity: 1; }

  @media (max-width: 768px) {
    .dgallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .dgallery-tall { grid-row: span 1; }
    .dgallery-kitchen { grid-template-columns: 1fr; }
    .dgallery-overlay { opacity: 1; }
    .dgallery-kitchen-photo .dgallery-overlay { opacity: 1; }
    .dining-gallery { padding: 60px 20px; }
  }

  /* ── VIRGIL PHOTO STRIP ── */
  .virgil-strip {
    background: var(--twilight);
    padding: 0 0 60px 0;
    overflow: hidden;
  }

  .virgil-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }

  .vstrip-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
  }

  .vstrip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
  }

  .vstrip-item:hover img { transform: scale(1.04); }

  .vstrip-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(to top, rgba(26,42,58,0.9), transparent);
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .vstrip-item:hover .vstrip-caption { opacity: 1; }

  @media (max-width: 768px) {
    .virgil-strip-inner { grid-template-columns: 1fr; }
    .vstrip-caption { opacity: 1; }
  }

  /* ── FOOTER SOCIALS ── */
  .footer-socials {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-social {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .footer-social-platform {
    font-size: 8px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
  }

  .footer-social-handle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    font-style: italic;
  }

  .footer-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.1);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .hero, .virgil-section, .cta { grid-template-columns: 1fr; }
    .series-grid { grid-template-columns: 1fr; }
    .series-card:first-child { grid-row: span 1; }
    .cat-grid { grid-template-columns: 1fr; }
    .collab-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-left, .hero-right { padding: 60px 30px; }
    .series, .categories, .virgil-right, .virgil-left, .collab, .cta { padding: 60px 30px; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
  }
