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

/* ===== CSS VARIABLES ===== */
:root {
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --bg-surface: #161616;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --text-primary: #f0ece4;
  --text-muted: #888580;
  --text-subtle: #555250;
  --border: rgba(201, 168, 76, 0.12);
  --border-hover: rgba(201, 168, 76, 0.35);
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  /* Only on HTML to allow body stickiness */
}

html,
body {
  width: 100%;
  min-width: 100%;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

body {
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

@media (max-width: 768px) {
  body::before {
    display: none !important;
  }
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  object-fit: cover;
}

.nav-logo span {
  color: var(--text-primary);
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  opacity: 0.8;
  margin-left: -2px;
}

.nav-links {
  display: flex;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-reserve {
  padding: 12px 28px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--text-primary) !important;
  font-size: 0.72rem !important;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.6s ease !important;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-reserve::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s ease;
  z-index: -1;
}

.nav-reserve:hover {
  border-color: var(--gold);
  color: var(--bg-dark) !important;
}

.nav-reserve:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-reserve::after {
  display: none !important;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-left {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 8% 80px 12%;
  position: relative;
  z-index: 5;
  background: var(--bg-dark);
  /* Ensure it overlaps the right side cleanly */
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-animate .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-animate .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

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

.hero-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-animate .hero-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-animate .hero-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.6s ease;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--bg-dark);
}

.btn-primary:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition), gap var(--transition);
}

.btn-ghost:hover {
  color: var(--text-primary);
  gap: 16px;
}

.btn-arrow {
  font-size: 1rem;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.hero-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-animate+.hero-right,
.hero.loaded .hero-right {
  opacity: 1;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero-img-wrap img.loaded {
  transform: scale(1);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-dark) 0%, transparent 40%),
    linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, transparent 50%);
}

.hero-vertical-edge {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  border-right: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 80px;
  gap: 20px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.vert-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s ease 1s, transform 1s ease 1s;
}

.hero.loaded .vert-text {
  opacity: 1;
  transform: translateY(0);
}

.vert-line {
  width: 1px;
  height: 0;
  background: var(--gold);
  transition: height 1s ease 1s;
}

.hero.loaded .vert-line {
  height: 60px;
}

/* ===== SECTION SHARED ===== */
section {
  position: relative;
  z-index: 1;
}

/* Ensure sections span the full width */
section,
.press-strip {
  width: 100%;
  position: relative;
  z-index: 1;
}

.section-pad {
  padding: 120px 60px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
}

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

.section-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.8;
}

/* ===== PRESS STRIP ===== */
.press-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.press-item {
  flex: 1;
  text-align: center;
  padding: 0 48px;
}

.press-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

.press-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.press-source {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== MENU ===== */
.menu-section {
  background: var(--bg-dark);
}

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

.menu-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--bg-card);
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition), filter 0.7s ease;
  filter: brightness(0.75) saturate(0.9);
}

.menu-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.6) saturate(1.1);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 10, 0.98) 0%,
      rgba(10, 10, 10, 0.6) 40%,
      rgba(10, 10, 10, 0.2) 75%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: background 0.4s ease;
}

.menu-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.menu-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.4s var(--transition), opacity 0.4s ease;
  margin-bottom: 16px;
}

.menu-card:hover .menu-card-desc {
  transform: translateY(0);
  opacity: 1;
}

.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.4s var(--transition) 0.05s, opacity 0.4s ease 0.05s;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.menu-card:hover .menu-price {
  transform: translateY(0);
  opacity: 1;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.08);
  z-index: 5;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover::before {
  opacity: 0.7;
  transform: scale(1);
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  padding: 16px;
  /* space for wireframe */
}

.about-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 0;
  bottom: 32px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.8s ease;
}

.about-visual:hover::before {
  transform: translate(-12px, 12px);
}

.about-img-main {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--transition);
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-accent {
  position: absolute;
  left: -24px;
  top: 10%;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.about-accent-num {
  writing-mode: vertical-rl;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-accent-text {
  writing-mode: vertical-rl;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 24px;
}

.about-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-muted);
}

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

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
}

.about-sig-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 4px;
}

/* ===== PHILOSOPHY SECTION (Editorial Asymmetric Layout) ===== */
.philosophy-section {
  padding: 240px 60px;
  background: var(--bg-dark);
}

.philosophy-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  /* Skip top padding and account for fixed header */
  scroll-margin-top: 100px;
}

.editorial-layout {
  position: relative;
  /* Ensure container height fits the overlapping absolute elements */
  min-height: 800px;
}

/* Layer 1: Accent Visual (Background) */
.accent-fig {
  position: absolute;
  top: -100px;
  right: 0;
  width: 42%;
  aspect-ratio: 4/5;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  filter: brightness(0.5);
  transition: filter var(--transition), transform var(--transition);
}

.accent-fig:hover {
  filter: brightness(0.8);
}

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

/* Layer 2: Anchor Visual (Primary Focus) */
.anchor-fig {
  position: relative;
  width: 62%;
  aspect-ratio: 4/3;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
}

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

/* Layer 3: Philosophy Text Box (Overlap Accent) */
.philosophy-box {
  position: absolute;
  top: 15%;
  left: 52%;
  width: 480px;
  background: #111111;
  padding: 72px 64px;
  z-index: 10;
  border: 1px solid var(--border-hover);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.7);
}

.editorial-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.15;
  color: var(--gold);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.editorial-text {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.editorial-text strong {
  color: var(--gold-light);
  font-weight: 400;
}

/* Layer 4: Sourcing Symmetrically Broken Block */
.sourcing-block {
  position: absolute;
  bottom: 0;
  left: 8%;
  display: flex;
  align-items: flex-end;
  gap: 48px;
  z-index: 15;
}

.sourcing-content {
  max-width: 400px;
  background: var(--bg-dark);
  padding: 32px 0;
}

.editorial-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.editorial-text-sm {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.abalone-visual {
  width: 160px;
  transform: translateY(40px);
}

.abalone-visual img {
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
  transition: transform 0.8s var(--transition);
}

.abalone-visual:hover img {
  transform: scale(1.1) rotate(-5deg);
}

.abalone-visual:hover img {
  transform: scale(1.1) rotate(-5deg);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-logo span {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: block;
  margin-top: -4px;
  opacity: 0.7;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.footer-tagline {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-top: 12px;
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.75rem;
  color: var(--text-subtle);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
  transition: color var(--transition);
}

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

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ===== GOLD SHIMMER TEXT ===== */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}


/* ===== SOCIAL ICONS ===== */
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  color: var(--text-subtle);
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.social-icon-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.social-icon-link svg {
  display: block;
}

/* ===== HAMBURGER MENU ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===== MOBILE OVERLAY MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(25px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow-y: auto;
  padding: 80px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}

.mobile-menu-close {
  position: absolute;
  top: clamp(24px, 8vw, 48px);
  right: clamp(24px, 8vw, 48px);
  background: none;
  border: none;
  color: var(--gold);
  font-size: 3.2rem;
  font-weight: 200;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.4s var(--transition), color 0.4s var(--transition);
  z-index: 1001;
}

.mobile-menu-close:hover {
  transform: scale(1.1) rotate(90deg);
  color: var(--text-primary);
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 8vw, 2.4rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
  transform: translateY(-4px);
}

.mobile-menu .mobile-reserve {
  padding: 16px 48px;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 12px;
}

@media (max-height: 500px) {
  .mobile-menu {
    gap: 20px;
    padding: 60px 24px;
    justify-content: flex-start;
  }

  .mobile-menu a {
    font-size: 1.4rem;
  }

  .mobile-menu .mobile-reserve {
    padding: 12px 32px;
  }
}

/* ===== RESPONSIVE: TABLET (≤1024px) ===== */
@media (max-width: 1024px) {

  /* NAV — hide links, show hamburger */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .nav-logo {
    font-size: 1.4rem;
    gap: 12px;
  }

  .nav-logo-icon {
    width: 40px;
    height: 40px;
  }

  nav {
    padding: 16px 32px;
  }

  nav.scrolled {
    padding: 12px 32px;
  }

  .hero-title {
    font-size: clamp(3rem, 10vw, 4.5rem);
  }

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

  .press-strip {
    padding: 48px 40px;
    gap: 0;
  }

  .press-item {
    padding: 0 32px;
  }

  .press-quote {
    font-size: 0.95rem;
  }

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

  .about-inner {
    gap: 48px;
  }

  .about-accent {
    width: 140px;
    height: 140px;
    right: -16px;
    bottom: -16px;
  }

  .exp-strip {
    padding: 60px 40px;
  }

  .exp-item {
    padding: 36px 28px;
  }

  .footer-top {
    gap: 40px;
  }

  .stats-strip {
    padding: 40px;
  }
}

/* Landscape phones — keep 2 columns for readability on wide/short screens */
@media (max-width: 1024px) and (max-height: 600px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-card-overlay {
    padding: 24px 20px;
  }

  .menu-tag {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
  }

  /* Philosophy - Optimized Compact Asymmetric Design for Landscape */
  .philosophy-section {
    padding: 80px 40px;
  }

  .editorial-layout {
    position: relative;
    min-height: 550px;
    display: block;
  }

  .accent-fig {
    position: absolute;
    top: -40px;
    right: 0;
    width: 38%;
    aspect-ratio: 4/5;
    z-index: 1;
    display: block;
  }

  .anchor-fig {
    position: relative;
    width: 60%;
    aspect-ratio: 4/3;
    z-index: 2;
  }

  .philosophy-box {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 42%;
    min-width: 300px;
    background: #111111;
    padding: 40px 32px;
    z-index: 10;
    border: 1px solid var(--border-hover);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  }

  .editorial-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 20px;
    line-height: 1.15;
  }

  .editorial-text {
    font-size: 0.8rem;
    line-height: 1.8;
  }

  .sourcing-block {
    position: absolute;
    bottom: -10px;
    left: 5%;
    display: flex;
    align-items: flex-end;
    gap: 24px;
    z-index: 15;
  }

  .sourcing-content {
    max-width: 300px;
    padding: 16px 0;
  }

  .abalone-visual {
    width: 80px;
  }
}

/* ===== RESPONSIVE: MOBILE (≤768px) ===== */
@media (max-width: 768px) {

  /* Sections stack to full width */
  .hero-badges {
    display: none;
  }

  nav {
    padding: 16px max(16px, env(safe-area-inset-right)) 16px max(16px, env(safe-area-inset-left));
  }

  nav.scrolled {
    padding: 12px max(16px, env(safe-area-inset-right)) 12px max(16px, env(safe-area-inset-left));
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-menu {
    background: rgba(10, 10, 10, 0.99);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* HERO — stack vertically */
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .hero-left {
    padding: 140px 24px 80px 72px;
    /* Increased left padding to clear vertical bar (48px) */
    z-index: 2;
    position: relative;
    justify-content: flex-start;
  }

  .hero-right {
    position: absolute;
    inset: 0;
    opacity: 1 !important;
  }

  .hero-img-wrap {
    clip-path: none;
  }

  .hero-img-overlay {
    background: linear-gradient(to top,
        rgba(10, 10, 10, 0.98) 20%,
        rgba(10, 10, 10, 0.8) 50%,
        rgba(10, 10, 10, 0.4) 100%);
  }

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  }

  .hero-desc {
    max-width: 100%;
    font-size: 0.85rem;
    color: var(--text-primary);
  }

  .hero-badge {
    width: 72px;
    height: 72px;
    bottom: 32px;
    right: 24px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
  }

  /* PRESS STRIP — stack vertically and bleed backgrounds */
  .press-strip {
    flex-direction: column;
    padding: 48px max(24px, env(safe-area-inset-right)) 48px max(24px, env(safe-area-inset-left));
    width: 100%;
    min-width: 100%;
  }

  .press-item {
    padding: 32px 0;
    width: 100%;
  }

  .press-divider {
    width: 48px;
    height: 1px;
    align-self: center;
  }

  /* MENU — single column */
  .menu-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .section-pad {
    padding: 64px max(24px, env(safe-area-inset-right)) 64px max(24px, env(safe-area-inset-left));
    width: 100%;
    min-width: 100%;
  }

  /* ABOUT — stack vertically with offset */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 max(12px, env(safe-area-inset-right)) 0 max(12px, env(safe-area-inset-left));
  }

  .about-visual {
    order: 0;
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .about-accent {
    width: 120px;
    height: auto;
    right: 0;
    bottom: 20px;
    border-left: 1px solid var(--gold);
    background: transparent;
    padding: 10px 0;
  }

  .about-accent-num {
    font-size: 2rem;
  }

  .about-content {
    text-align: left;
    padding: 0;
  }

  /* PHILOSOPHY — Editorial Mobile Portrait: TRUE Asymmetric Overlap */
  .philosophy-section {
    padding: 80px 0 60px;
    width: 100%;
  }

  .philosophy-container {
    padding: 0 24px;
  }

  .editorial-layout {
    position: relative;
    display: block;
    height: 1020px;
    /* Full canvas holding all 4 absolutely-positioned layers */
    width: 100%;
  }

  /* Layer 1 — Primary image: large, left-anchored, top half */
  .anchor-fig {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 360px;
    aspect-ratio: unset;
    z-index: 2;
  }

  /* Layer 2 — Accent image: right-aligned, dimmed background */
  .accent-fig {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 240px;
    aspect-ratio: unset;
    z-index: 1;
    filter: brightness(0.4);
  }

  /* Layer 3 — Text box: starts at 220px, bridges imagery */
  .philosophy-box {
    position: absolute;
    top: 220px;
    left: 5%;
    right: 0;
    width: auto;
    padding: 40px 24px;
    z-index: 10;
    background: rgba(17, 17, 17, 0.96);
    border: 1px solid var(--border-hover);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  }

  .editorial-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    line-height: 1.12;
  }

  .editorial-text {
    font-size: 0.78rem;
    line-height: 1.75;
  }

  /* Layer 4 — Sourcing block: positioned at bottom of canvas */
  .sourcing-block {
    position: absolute;
    top: 700px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 0;
  }

  .abalone-visual {
    width: 90px;
    margin-top: -10px;
  }

  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 max(24px, env(safe-area-inset-right)) 48px max(24px, env(safe-area-inset-left));
  }

  .footer-top>div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 32px max(24px, env(safe-area-inset-right)) 32px max(24px, env(safe-area-inset-left));
  }

  .footer-socials {
    justify-content: center;
  }
}

/* ===== RESPONSIVE: SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .press-quote {
    font-size: 0.9rem;
  }

  .menu-card-overlay {
    padding: 24px;
  }

  .menu-card-title {
    font-size: 1.4rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top>div:first-child {
    grid-column: 1;
  }
}

.footer-top>div:first-child {
  grid-column: 1;
}