/* ===== MANZIL RESTAURANT - GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #c9a96e;
  --gold-light: #e2c99a;
  --dark: #0e0f08;
  --dark2: #161710;
  --dark3: #1e2016;
  --cream: #f5f0e8;
  --text: #d4cfc7;
  --white: #faf8f4;
  --orange: #c87428;
  --orange2: #a85e18;
  --olive: #4a5530;
  --olive2: #3d4828;
  --olive3: #323d22;
  --red: #7c2020;
  --red2: #631818;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  transition: background 0.4s, padding 0.4s;
}

.navbar.scrolled {
  background: rgba(14, 15, 8, 0.97);
  padding: 12px 48px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.nav-logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange) !important;
  padding: 8px 20px;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 500;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.nav-mobile-close {
  position: absolute;
  top: 30px;
  right: 48px;
  font-size: 40px;
  cursor: pointer;
  color: var(--white);
  line-height: 1;
  transition: color 0.3s;
}

.nav-mobile-close:hover {
  color: var(--gold);
}

/* ===== HERO - SPLIT ===== */
.hero {
  min-height: 75vh;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}


.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 100px 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: clamp(28px, 3.5vw, 50px);
  color: var(--white);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
}

.hero-left p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250, 248, 244, 0.72);
  margin-bottom: 36px;
  max-width: 380px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--orange);
  color: var(--white);
  padding: 12px 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid var(--orange);
  display: inline-block;
  cursor: pointer;
}

.btn-gold:hover {
  background: transparent;
  color: var(--orange);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(250, 248, 244, 0.4);
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  padding: 12px 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid var(--red);
  display: inline-block;
  cursor: pointer;
}

.btn-red:hover {
  background: transparent;
  color: var(--white);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 40px;
}

.hero-right img {
  width: 100%;
  max-width: 440px;
  height: 580px;
  object-fit: cover;
  object-position: center;
  border-radius: 220px 220px 0 0;
}

.hero-right::after {
  display: none;
}

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--orange);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 80px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item:last-child {
  border-right: none;
}

.info-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(10);
}

.info-item h3 {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 2px;
  font-family: 'Cormorant Garamond', serif;
}

.info-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

/* ===== SECTION SHARED ===== */
.section {
  padding: 80px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--white);
  margin-bottom: 20px;
}

.divider {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
}

.divider-left {
  margin: 0 0 36px;
}

/* ===== STORY ===== */
.story-section {
  background: var(--orange);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-images {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-images img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
  /* Optional slight curve for aesthetics */
}

.story-text .section-label {
  color: var(--gold-light);
}

.story-text h2 {
  color: var(--white);
}

.story-text p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}

.story-attribution {
  font-size: 13px;
  color: var(--gold-light);
  margin-top: 28px;
  font-style: italic;
}

/* ===== MENU CATEGORIES (big split panels) ===== */
.menu-categories-section {
  background: var(--olive3);
}

.menu-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.menu-cat {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
  border-right: 2px solid var(--olive3);
}

.menu-cat:last-child {
  border-right: none;
}

.menu-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.4s, transform 0.5s;
}

.menu-cat:hover img {
  opacity: 0.6;
  transform: scale(1.04);
}

.menu-cat-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.menu-cat-label h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--olive);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.menu-cat-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* ===== MENU LISTS ===== */
.menu-list-section {
  background: var(--olive3);
  padding: 64px 0;
}

.menu-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.menu-list-col {
  padding: 0 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-list-col:last-child {
  border-right: none;
}

.menu-col-header {
  margin-bottom: 28px;
}

.menu-col-header h3 {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.menu-col-header p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
}

.menu-list-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.menu-list-item:last-of-type {
  border-bottom: none;
}

.menu-list-img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-list-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 3px;
}

.menu-list-info p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.menu-list-btn {
  text-align: center;
  margin-top: 28px;
}

/* Fine dining section */
.fine-section {
  background: var(--olive3);
  padding: 70px 0;
}

.fine-section-header {
  text-align: center;
  margin-bottom: 44px;
}

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

.fine-card {
  position: relative;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.fine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.fine-card:hover img {
  transform: scale(1.06);
}

.fine-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 5, 0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.fine-card-overlay p {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fine-card-overlay h3 {
  font-size: 20px;
  color: var(--white);
}

/* ===== LUXURY BANNER ===== */
.luxury-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.luxury-bg {
  position: absolute;
  inset: 0;
  background: url('uploads/hermes-afternoon-tea.webp') bottom/cover no-repeat;
}

.luxury-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 5, 0.78);
}

.luxury-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 40px;
}

.luxury-content h2 {
  font-size: clamp(28px, 4vw, 54px);
  color: var(--white);
  margin-bottom: 20px;
  font-style: italic;
}

.luxury-content p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(250, 248, 244, 0.78);
}

/* ===== MACKINTOSH CAKE SECTION ===== */
.cake-section {
  background: #fdfaf5; /* Soft Cream */
  padding: 80px 0;
}

.cake-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.cake-img {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
}

.cake-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cake-text {
  padding-right: 40px;
}

.cake-text .tag {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cake-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--dark);
  margin-bottom: 24px;
}

.cake-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.btn-cake {
  background: var(--dark);
  color: var(--white);
  padding: 14px 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cake:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}


/* ===== VENUE - RED ===== */
.venue-section {
  background: var(--red);
}

.venue-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-row:last-child {
  border-bottom: none;
}

.venue-row.flip {
  grid-template-columns: 280px 1fr;
}

.venue-row.flip .venue-row-text {
  order: 2;
}

.venue-row.flip .venue-row-img {
  order: 1;
}

.venue-row-text .section-label {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.venue-row-text h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--white);
  margin-bottom: 14px;
}

.venue-row-text p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}

.venue-row-img img,
.venue-row-img video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.btn-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 11px 26px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}

.btn-white:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

/* ===== AFTERNOON TEA ===== */
.tea-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.tea-row.flip {
  grid-template-columns: 340px 1fr;
}

.tea-row.flip .tea-text {
  order: 2;
}

.tea-row.flip .tea-img {
  order: 1;
}

.tea-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.tea-text h3 {
  font-size: clamp(24px, 3vw, 40px);
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
}

.tea-text .tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  margin-bottom: 12px;
}

.tea-text p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
}

.tea-img {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.tea-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tea-bg-dark {
  background: var(--dark);
}

.tea-bg-hermes {
  background: #FF7701;
  /* Signature Hermes Orange */
}

.tea-bg-hermes .tea-text p {
  color: rgba(255, 255, 255, 0.95);
}

.tea-bg-hermes .tea-text .tag {
  color: var(--white);
  opacity: 0.9;
}


/* ===== EVENTS ===== */
.events-section {
  background: var(--dark2);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 52px;
}

.event-card {
  position: relative;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
}

.event-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.event-card:hover video {
  transform: scale(1.04);
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 5, 0.9) 0%, rgba(10, 12, 5, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 22px;
}

.event-overlay h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}

.event-overlay a {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 52px;
}

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

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 5, 0);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(10, 12, 5, 0.5);
}

.gallery-item-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay span {
  opacity: 1;
}

.gallery-center {
  text-align: center;
  margin-top: 44px;
}

/* ===== COLLABORATIONS ===== */
.collaborations-section {
  background: var(--dark3);
  padding: 80px 0;
}

.collabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 52px;
}

.collab-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: all 0.4s ease;
}

.collab-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
}

.collab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collab-card:hover img {
  transform: scale(1.1);
}

.collab-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 15, 8, 0.95) 0%, rgba(14, 15, 8, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.collab-overlay .collab-event {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.collab-overlay h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.collab-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.collab-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.collab-logos-grid img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.8);
  transition: all 0.3s ease;
  opacity: 0.6;
}

.collab-logos-grid img:hover {
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: scale(1.05);
}

/* ===== MANZIL ART CLUB TEASER ===== */
.artclub-teaser {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.artclub-teaser-bg {
  position: absolute;
  inset: 0;
  background: url('uploads/artclub_teaser_bg.png') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.artclub-teaser:hover .artclub-teaser-bg {
  transform: scale(1.12);
}

.artclub-teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,3,0.88) 0%, rgba(14,15,8,0.75) 60%, rgba(30,24,10,0.85) 100%);
}

.artclub-teaser-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 40px;
}

.artclub-eyebrow {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}

.artclub-teaser-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 80px);
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.1;
}

.artclub-teaser-content p {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(250, 248, 244, 0.72);
  max-width: 580px;
  margin: 0 auto 40px;
}

.artclub-teaser-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-artclub-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 36px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.35s;
  border: 1px solid var(--gold);
  display: inline-block;
}

.btn-artclub-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-artclub-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(250, 248, 244, 0.35);
  transition: all 0.35s;
  display: inline-block;
}

.btn-artclub-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== ART CLUB PAGE ===== */
.ac-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.ac-hero-bg {
  position: absolute;
  inset: 0;
  background: url('uploads/artclub_hero.png') center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 10s ease;
}

.ac-hero.in-view .ac-hero-bg {
  transform: scale(1);
}

.ac-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,3,0.6) 0%, rgba(5,5,3,0.85) 100%);
}

.ac-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}

.ac-hero-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.5);
  padding: 7px 22px;
  margin-bottom: 32px;
}

.ac-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 100px);
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.ac-hero-content .ac-hero-sub {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: 48px;
}

.ac-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ac-hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.ac-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* AC INTRO STRIP */
.ac-intro {
  background: var(--dark);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.ac-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

.ac-intro-stat {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(201, 169, 110, 0.12);
}

.ac-intro-stat:last-child {
  border-right: none;
}

.ac-intro-stat .ac-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
}

.ac-intro-stat p {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* AC MANIFESTO */
.ac-manifesto {
  background: var(--dark2);
  padding: 110px 0;
}

.ac-manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.ac-manifesto-img {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.ac-manifesto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.6s ease;
}

.ac-manifesto-img:hover img {
  transform: scale(1.04);
}

.ac-manifesto-img::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  pointer-events: none;
}

.ac-manifesto-text .section-label {
  color: var(--gold);
}

.ac-manifesto-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.2;
}

.ac-manifesto-text p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}

.ac-gold-rule {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0 36px;
}

/* AC EXPERIENCE PILLS */
.ac-experience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.ac-pill {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 7px 16px;
}

/* AC MENU */
.ac-menu-section {
  background: #050503;
  padding: 110px 0;
}

.ac-menu-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.ac-menu-header {
  text-align: center;
  margin-bottom: 64px;
}

.ac-menu-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 62px);
  color: var(--white);
  font-style: italic;
  font-weight: 300;
}

.ac-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ac-menu-card {
  position: relative;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}

.ac-menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: brightness(0.75);
}

.ac-menu-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.ac-menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,3,0.97) 0%, rgba(5,5,3,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: background 0.4s;
}

.ac-menu-card:hover .ac-menu-card-overlay {
  background: linear-gradient(to top, rgba(5,5,3,0.99) 0%, rgba(5,5,3,0.5) 65%, rgba(5,5,3,0.1) 100%);
}

.ac-menu-card-course {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.ac-menu-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--white);
  font-style: italic;
  margin-bottom: 10px;
}

.ac-menu-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.ac-menu-card:hover .ac-menu-card-desc {
  max-height: 80px;
  opacity: 1;
}

/* AC GALLERY */
.ac-gallery {
  background: var(--dark3);
  padding: 110px 0;
}

.ac-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.ac-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  margin-top: 52px;
  height: 680px;
}

.ac-gallery-grid .ac-gallery-item {
  position: relative;
  overflow: hidden;
}

.ac-gallery-grid .ac-gallery-item:first-child {
  grid-row: 1 / 3;
}

.ac-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.ac-gallery-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(5,5,3,0.8), transparent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--white);
  font-style: italic;
  opacity: 0;
  transition: opacity 0.3s;
}

.ac-gallery-item:hover .ac-gallery-item-label {
  opacity: 1;
}

/* AC MEMBERSHIP CTA */
.ac-membership {
  background: var(--dark);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ac-membership::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.ac-membership-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
  padding: 0 40px;
}

.ac-membership h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px);
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.15;
}

.ac-membership p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}

.ac-membership-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* AC PAGE RESPONSIVE */
@media (max-width: 1024px) {
  .ac-manifesto-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ac-manifesto-img {
    height: 400px;
  }
  .ac-menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ac-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .ac-gallery-grid .ac-gallery-item:first-child {
    grid-row: auto;
  }
  .ac-gallery-item {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .ac-intro-inner {
    grid-template-columns: 1fr;
  }
  .ac-intro-stat {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  }
  .ac-intro-stat:last-child { border-bottom: none; }
  .ac-menu-grid {
    grid-template-columns: 1fr;
  }
  .ac-gallery-grid {
    grid-template-columns: 1fr;
  }
  .ac-hero-content h1 {
    font-size: clamp(40px, 10vw, 64px);
  }
  .artclub-teaser-content h2 {
    font-size: clamp(36px, 8vw, 56px);
  }
}

/* ===== INITIATIVE ===== */
.initiative-section {
  text-align: center;
  padding: 56px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.initiative-section p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 22px;
}

.initiative-section img {
  height: 70px;
  margin: 0 auto;
}

/* ===== PARTNERS ===== */
.partners-section {
  background: var(--dark3);
  padding: 72px 0;
}

.partners-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.social-bar {
  text-align: center;
  margin-bottom: 52px;
}

.social-bar a {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  font-weight: 600;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.partners-logos img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.65);
  transition: filter 0.3s;
}

.partners-logos img:hover {
  filter: brightness(0) invert(1);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 56px 0 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-logo img {
  height: 48px;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  font-size: 12px;
  color: var(--text);
  line-height: 2;
  display: block;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(212, 207, 199, 0.45);
}

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

/* ===== PAGE HERO ===== */
.page-hero {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 5, 0.68);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 58px);
  color: var(--white);
  font-style: italic;
}

.page-hero-content .breadcrumb {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 80px;
    /* Tighter navbar clearance */
  }

  .hero {
    min-height: auto;
  }

  .hero-right {
    order: 1;
    height: auto;
    padding-top: 0;
    padding-bottom: 20px;
    /* Reduced space after image */
  }

  .hero-left {
    order: 2;
    padding: 10px 0 50px;
    /* Tighter text spacing */
    text-align: center;
    align-items: center;
  }


  .hero-right img {
    height: 440px;
    max-width: 340px;
    border-radius: 170px 170px 0 0;
  }

  .hero-right::after {
    display: none;
  }

  .hero-left {
    padding: 120px 40px 60px;
  }

  .fine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collabs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .venue-row,
  .venue-row.flip {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .venue-row-img {
    order: 1;
  }

  .venue-row-text {
    order: 2;
  }

  .venue-row-img {
    order: 1;
    width: 100%;
    height: 260px !important;
    overflow: hidden;
  }

  .venue-row-img img,
  .venue-row-img video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tea-row,
  .tea-row.flip {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .cake-row {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .cake-img {
    height: 300px !important;
  }

  .cake-text {
    padding-right: 0;
  }

  .cake-text h2 {
    text-align: center !important;
  }

  .tea-text {
    padding: 60px 30px;
    order: 2;
  }

  .tea-img {
    order: 1;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

  .navbar.scrolled {
    padding: 12px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section-inner {
    padding: 0 24px;
  }

  .info-bar {
    flex-direction: column;
  }

  .info-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .info-item:last-child {
    border-bottom: none;
  }

  .menu-categories {
    grid-template-columns: 1fr;
  }

  .menu-list-grid {
    grid-template-columns: 1fr;
  }

  .menu-list-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .menu-list-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .tea-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  
  .collab-logos-grid {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .fine-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .collabs-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 20px 24px 48px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    /* Centered buttons */
  }
}

/* ===== PAGE HERO (GLOBAL) ===== */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.8s ease-out;
}

.page-hero:hover .page-hero-bg {
  transform: scale(1.05);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 15, 8, 0.7);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 8px;
}

.breadcrumb {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== LOCATIONS SECTION ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 52px;
}

.location-card {
  background: var(--dark3);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.location-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid var(--gold);
  width: fit-content;
}

.location-card h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 16px;
}

.location-details {
  margin-bottom: 24px;
  flex-grow: 1;
}

.location-details p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.location-actions .btn-gold,
.location-actions .btn-outline {
  padding: 10px 20px;
  font-size: 10px;
}

.coming-soon-card {
  opacity: 0.6;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.coming-soon-badge {
  color: var(--text) !important;
  border-color: var(--text) !important;
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LOCATIONS MODAL ===== */
.location-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.location-modal.open {
  display: flex;
}

.location-modal-content {
  background: var(--dark3);
  padding: 50px 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 4px;
}

.location-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

.location-modal-content h2 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(24px, 4vw, 36px);
}

.location-selection-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.selection-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white);
  text-align: left;
  font-size: 13px;
  transition: all 0.3s;
}

.selection-item:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.selection-item span.arrow {
  font-size: 18px;
}

.all-locations-link {
  margin-top: 24px;
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

@media (max-width: 480px) {
  .location-modal-content {
    padding: 60px 20px 40px;
  }
  .selection-item {
    font-size: 12px;
    padding: 14px 18px;
  }
}