/*
Theme Name: Nacho Average Fries
Theme URI: https://nachoaveragefries.com
Author: Nacho Average Fries
Description: Premium craft food catering — Riverside County & San Diego County
Version: 2.0
*/

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

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --ink:        #0a0906;
  --void:       #111009;
  --coal:       #1a1710;
  --ember:      #221e13;
  --gold:       #c9973a;
  --gold-light: #e8b84b;
  --gold-pale:  #f5dfa0;
  --cream:      #f2ead8;
  --warm:       #d4c9a8;
  --ash:        #7a7060;
  --ghost:      rgba(242,234,216,0.06);
  --hairline:   rgba(201,151,58,0.18);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-display:'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1280px;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   CUSTOM CURSOR
============================================= */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.18s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.6;
}
.cursor-ring.hovering {
  width: 56px; height: 56px;
  border-color: var(--gold-light);
  opacity: 1;
}

/* =============================================
   GRAIN 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.4'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9990;
}

/* =============================================
   TYPOGRAPHY SYSTEM
============================================= */
.t-overline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.t-display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.t-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
}

.t-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.t-body {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm);
  letter-spacing: 0.02em;
}

/* =============================================
   LAYOUT
============================================= */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

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

/* Gold rule divider */
.rule {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rule::before, .rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 0;
  cursor: none;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::after { transform: translateX(0); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(201,151,58,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--hairline);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}

/* =============================================
   SITE HEADER
============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 48px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease-out);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,6,0.95) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.site-header.scrolled::before { opacity: 1; }

.site-header.scrolled {
  height: 88px;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
}

/* Logo */
.header-logo {
  height: 130px !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  transition: height 0.4s var(--ease-out), opacity 0.3s;
  filter: drop-shadow(0 2px 16px rgba(201,151,58,0.25));
}
.site-header.scrolled .header-logo { height: 88px !important; }
.header-logo:hover { opacity: 0.88; }

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav a {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  position: relative;
  transition: color 0.3s;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s var(--ease-out);
}

.header-nav a:hover { color: var(--gold-pale); }
.header-nav a:hover::after { right: 0; }

.header-cta {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--hairline) !important;
  padding: 10px 24px;
  font-size: 0.65rem !important;
  letter-spacing: 0.22em !important;
  transition: all 0.3s !important;
}
.header-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-color: var(--gold) !important;
}
.header-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cream);
  transition: all 0.4s var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

/* Cinematic dark background with vignette */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,151,58,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(10,9,6,0.9) 0%, transparent 60%),
    var(--ink);
}

/* Decorative gold lines */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: 18%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hairline) 20%, var(--hairline) 80%, transparent 100%);
  animation: lineReveal 2s var(--ease-out) 0.5s both;
}
.hero-lines::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--hairline) 20%, var(--hairline) 80%, transparent 100%);
  animation: lineReveal 2s var(--ease-out) 0.8s both;
}
@keyframes lineReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 48px 100px;
  min-height: 100vh;
}

.hero-overline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}

.hero-overline span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-overline::before, .hero-overline::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.5s both;
}

.hero-title .line-italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 0.75em;
  margin: 8px 0;
}

.hero-title .line-bold {
  display: block;
  -webkit-text-stroke: 1px rgba(242,234,216,0.3);
  color: transparent;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm);
  max-width: 520px;
  line-height: 1.6;
  margin: 40px auto 0;
  animation: fadeUp 1.2s var(--ease-out) 0.8s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  animation: fadeUp 1.2s var(--ease-out) 1s both;
}

/* Corner ornaments */
.hero-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
  opacity: 0.4;
}
.hero-corner.tl { top: 32px; left: 48px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-corner.tr { top: 32px; right: 48px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.hero-corner.bl { bottom: 32px; left: 48px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-corner.br { bottom: 32px; right: 48px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s var(--ease-out) 1.4s both;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ash);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =============================================
   MARQUEE
============================================= */
.marquee-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  overflow: hidden;
  background: var(--coal);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--warm);
  padding: 0 32px;
}
.marquee-track span.sep {
  color: var(--gold);
  font-style: normal;
  font-size: 0.6rem;
  padding: 0 4px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION COMMON
============================================= */
.section {
  padding: 130px 0;
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.section-label-row::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

/* =============================================
   ABOUT SPLIT
============================================= */
.about-section {
  background: var(--void);
}

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

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 32px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.about-text p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.85;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--hairline);
}

.about-stat {
  padding: 28px 24px;
  border-right: 1px solid var(--hairline);
  text-align: center;
}
.about-stat:last-child { border-right: none; }

.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 6px;
}

/* Fusion list on right */
.fusion-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fusion-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0;
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: border-color 0.3s;
}
.fusion-item:hover { border-color: rgba(201,151,58,0.45); }

.fusion-num {
  background: var(--coal);
  border-right: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
}

.fusion-content {
  padding: 28px 32px;
  background: var(--ember);
  transition: background 0.3s;
}
.fusion-item:hover .fusion-content { background: rgba(34,30,19,0.8); }

.fusion-content-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 8px;
}

.fusion-content-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--warm);
  line-height: 1.5;
  margin-bottom: 12px;
}

.fusion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fusion-tag {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 3px 10px;
  border: 1px solid var(--hairline);
}

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

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

.menu-header h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  margin-top: 20px;
}

.menu-header h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.menu-header p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ash);
  margin-top: 24px;
  letter-spacing: 0.02em;
}

/* Asymmetric menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

/* First item spans 2 rows */
.menu-card:first-child {
  grid-row: span 2;
}

.menu-card {
  position: relative;
  overflow: hidden;
  background: var(--coal);
  cursor: none;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
  filter: brightness(0.75) saturate(0.9);
}

.menu-card:first-child .menu-card-img { min-height: 600px; }

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

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,6,0.96) 0%, rgba(10,9,6,0.3) 50%, transparent 100%);
  transition: background 0.4s;
}
.menu-card:hover .menu-card-overlay {
  background: linear-gradient(to top, rgba(10,9,6,0.98) 0%, rgba(10,9,6,0.6) 60%, rgba(10,9,6,0.2) 100%);
}

.menu-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out);
}
.menu-card:hover .menu-card-body { transform: translateY(0); }

.menu-card-category {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 0;
  transition: margin-bottom 0.4s var(--ease-out);
}
.menu-card:first-child .menu-card-title { font-size: 2.2rem; }

.menu-card-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--warm);
  line-height: 1.6;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s, margin-top 0.3s;
}
.menu-card:hover .menu-card-desc {
  max-height: 100px;
  opacity: 1;
}

.menu-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* =============================================
   SERVICES
============================================= */
.services-section {
  background: var(--void);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}

.service-card {
  padding: 56px 40px;
  background: var(--ember);
  border-top: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--coal); }

.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4rem;
  color: var(--hairline);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(201,151,58,0.2); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
}

.service-desc {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.85;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}

.service-list li {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ash);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   HOW IT WORKS
============================================= */
.how-section {
  background: var(--coal);
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: 'IV';
  position: absolute;
  font-family: var(--font-display);
  font-size: 40vw;
  font-style: italic;
  color: rgba(201,151,58,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

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

.how-step {
  padding: 48px 32px;
  border: 1px solid var(--hairline);
  position: relative;
  background: var(--ink);
  transition: border-color 0.3s, background 0.3s;
}
.how-step:hover {
  border-color: rgba(201,151,58,0.4);
  background: var(--ember);
}

.how-step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 28px;
  transition: opacity 0.3s;
}
.how-step:hover .how-step-num { opacity: 0.6; }

.how-step-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}

.how-step-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.65;
}

/* =============================================
   INQUIRY / FORM
============================================= */
.inquiry-section {
  background: var(--void);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.inquiry-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 24px;
}
.inquiry-left h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.inquiry-left p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 48px;
}

.inquiry-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inquiry-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.inquiry-detail-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.inquiry-detail-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.5;
}

.inquiry-detail-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

/* Form */
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.form-field {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  background: var(--ember);
  border: 1px solid var(--hairline);
  transition: border-color 0.3s;
}
.form-field:focus-within { border-color: rgba(201,151,58,0.5); }

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 20px 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  padding: 8px 20px 14px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--cream);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-field select option {
  background: var(--coal);
  color: var(--cream);
  font-style: normal;
}

.form-field textarea {
  resize: none;
  min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ash);
  font-style: italic;
}

.form-submit {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 12px;
}

.form-note {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  color: var(--ash);
  letter-spacing: 0.1em;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-section {
  background: var(--coal);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}

.testimonial-card {
  padding: 48px 40px;
  background: var(--ember);
  border: 1px solid var(--hairline);
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(201,151,58,0.35);
  background: var(--coal);
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 0.6;
  margin-bottom: 24px;
  display: block;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--warm);
  line-height: 1.75;
  margin-bottom: 28px;
}

.testimonial-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.testimonial-event {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ash);
  margin-top: 4px;
}

/* =============================================
   FAQ
============================================= */
.faq-section {
  background: var(--void);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}

.faq-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.0;
}
.faq-left h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.faq-left p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ash);
  margin-top: 20px;
  line-height: 1.65;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--cream); }
.faq-item.open .faq-question { color: var(--gold-pale); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ash);
  line-height: 1.75;
}

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
  background: var(--gold);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'BOOK';
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28vw;
  color: rgba(10,9,6,0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.0;
  position: relative;
}
.cta-section h2 em {
  font-style: italic;
  font-weight: 400;
}

.cta-section p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(10,9,6,0.65);
  max-width: 480px;
  margin: 20px auto 44px;
  line-height: 1.6;
  position: relative;
}

.cta-section .btn-dark {
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 48px;
  position: relative;
  transition: background 0.3s, color 0.3s;
}
.cta-section .btn-dark:hover {
  background: var(--coal);
  color: var(--gold-light);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--void);
  border-top: 1px solid var(--hairline);
  padding: 80px 0 40px;
}

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

.footer-logo img {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-about {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ash);
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ash);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ash);
}
.footer-contact-item a { color: var(--ash); transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ash);
}

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

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .about-grid { gap: 64px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card:first-child { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .inquiry-grid { grid-template-columns: 1fr; gap: 56px; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 24px; height: 88px; }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px; left: 0; right: 0;
    background: rgba(10,9,6,0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    border-bottom: 1px solid var(--hairline);
    gap: 24px;
    z-index: 400;
  }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .inquiry-form { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .hero-corner { display: none; }
  .hero-inner { padding: 120px 24px 80px; }
  .hero-lines::after { display: none; }
  .section { padding: 88px 0; }
  .wrap { padding: 0 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* =============================================
   CF7 FORM OVERRIDES
============================================= */
.wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* Each CF7 <p> tag becomes a grid cell */
.wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--ember);
  border: 1px solid var(--hairline);
}

/* Full width fields */
.wpcf7-form p:has(textarea),
.wpcf7-form p:has(input[type="submit"]),
.wpcf7-form p:last-child {
  grid-column: 1 / -1;
}

/* All inputs, selects, textareas */
.wpcf7-form input:not([type="submit"]),
.wpcf7-form select,
.wpcf7-form textarea {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-size: 0.95rem !important;
  color: var(--cream) !important;
  width: 100% !important;
  padding: 14px 20px !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
}

.wpcf7-form select option {
  background: var(--coal);
  color: var(--cream);
  font-style: normal;
}

.wpcf7-form textarea {
  min-height: 140px !important;
  resize: none !important;
}

/* Remove CF7 span wrappers' default display */
.wpcf7-form span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 18px 48px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.3s !important;
  width: auto !important;
  margin: 12px 0 0 0 !important;
}
.wpcf7-form input[type="submit"]:hover {
  background: var(--gold-light) !important;
}

/* Validation messages */
.wpcf7-not-valid-tip {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: #e05a5a;
  padding: 4px 20px 8px;
}

.wpcf7-response-output {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 16px 20px !important;
  margin: 8px 0 0 !important;
  border: 1px solid var(--hairline) !important;
  grid-column: 1 / -1;
}

.wpcf7-mail-sent-ok {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(201,151,58,0.08) !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked {
  border-color: #e05a5a !important;
  color: #e05a5a !important;
}

/* Mobile */
@media (max-width: 768px) {
  .wpcf7-form {
    grid-template-columns: 1fr;
  }
}
