/* ============================================================
   NURHAYAT MEYHANE "” style.css
   Awwwwards-level CSS | v2.0
   ============================================================ */

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

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Background Colors */
  --bg-primary:       #fbf9f5;
  --bg-secondary:     #f5f1e8;
  --bg-card:          #ffffff;
  --bg-card-hover:    #faf7f0;

  /* Text Colors */
  --text-primary:     #1c1a17;
  --text-secondary:   #4a4640;
  --text-muted:       #878177;

  /* Accent Colors */
  --sage:             #7e8f75;
  --maroon:           #8a2525;
  --maroon-light:     #a53535;
  --maroon-dark:      #6e1c1c;
  --gold:             #cfa263;
  --gold-light:       #e0b87c;
  --gold-dark:        #b5894b;

  /* Typography */
  --font-serif:       'Playfair Display', Georgia, serif;
  --font-sans:        'Inter', system-ui, -apple-system, sans-serif;
  --font-cursive:     'Great Vibes', cursive;

  /* Font Sizes (fluid) */
  --fs-xs:   clamp(0.7rem,  1.2vw, 0.75rem);
  --fs-sm:   clamp(0.85rem, 1.5vw, 0.9rem);
  --fs-base: clamp(0.95rem, 1.8vw, 1rem);
  --fs-md:   clamp(1.05rem, 2vw,   1.125rem);
  --fs-lg:   clamp(1.2rem,  2.5vw, 1.4rem);
  --fs-xl:   clamp(1.5rem,  3vw,   1.875rem);
  --fs-2xl:  clamp(2rem,    4vw,   2.5rem);
  --fs-3xl:  clamp(2.5rem,  5vw,   3.25rem);
  --fs-4xl:  clamp(3rem,    6vw,   4.5rem);
  --fs-hero: clamp(4rem,    9vw,   8rem);

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(28,26,23,.08), 0 1px 2px rgba(28,26,23,.06);
  --shadow-md:  0 4px 16px rgba(28,26,23,.10), 0 2px 6px rgba(28,26,23,.06);
  --shadow-lg:  0 10px 40px rgba(28,26,23,.14), 0 4px 12px rgba(28,26,23,.08);
  --shadow-xl:  0 20px 60px rgba(28,26,23,.18), 0 8px 24px rgba(28,26,23,.10);
  --shadow-maroon: 0 8px 32px rgba(138,37,37,.22);
  --shadow-gold:   0 8px 32px rgba(207,162,99,.25);

  /* Border Radius */
  --radius-xs:  2px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(.4,0,.2,1);
  --transition-base:   280ms cubic-bezier(.4,0,.2,1);
  --transition-slow:   500ms cubic-bezier(.4,0,.2,1);
  --transition-spring: 600ms cubic-bezier(.34,1.56,.64,1);
  --transition-smooth: 800ms cubic-bezier(.25,.46,.45,.94);

  /* Z-Index Scale */
  --z-base:    1;
  --z-raised:  10;
  --z-overlay: 100;
  --z-modal:   200;
  --z-header:  500;
  --z-preload: 9999;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 3rem);
  --header-h:      72px;
  --header-h-sm:   56px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--text-primary);
  background-color: #2b2a27;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: default;
}

/* Boxed Layout Container */
.site-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-primary);
  position: relative;
  z-index: 1;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: transparent;
}

button {
  cursor: pointer;
}

::selection {
  background-color: var(--maroon);
  color: #fff;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-primary);
}

.cursive {
  font-family: var(--font-cursive);
  font-weight: 400;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
}

.section-title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.8;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }

/* ============================================================
   5. PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preload);
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-logo .logo-cursive {
  font-family: var(--font-cursive);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--maroon);
  line-height: 1;
}

.preloader-logo .logo-sub {
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.preloader-bar {
  width: 220px;
  height: 1px;
  background: rgba(138,37,37,.12);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon-light));
  background-size: 200% 100%;
  border-radius: var(--radius-full);
  animation: preloaderFill 2.4s cubic-bezier(.4,0,.2,1) forwards,
             gradientShift 1.5s linear infinite;
}

.preloader-dots {
  display: flex;
  gap: 6px;
}

.preloader-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotBounce 1.2s ease-in-out infinite;
}
.preloader-dots span:nth-child(2) { animation-delay: .2s; }
.preloader-dots span:nth-child(3) { animation-delay: .4s; }

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .85; transform: scale(.98); }
}
@keyframes preloaderFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes dotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: .5; }
  40%           { transform: translateY(-8px); opacity: 1; }
}

/* ============================================================
   6. CUSTOM CURSOR
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: calc(var(--z-preload) - 1);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--maroon);
  border-radius: 50%;
  transition: transform 0.1s ease, opacity 0.2s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--maroon);
  border-radius: 50%;
  opacity: .5;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94),
              width 0.3s ease, height 0.3s ease,
              border-color 0.3s ease, opacity 0.3s ease;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: var(--gold);
  opacity: .8;
}

/* ============================================================
   7. SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon-light));
  background-size: 200% 100%;
  z-index: calc(var(--z-header) + 1);
  transition: width 0.1s linear;
  animation: gradientShift 2s linear infinite;
}

/* ============================================================
   8. HEADER & NAVIGATION
   ============================================================ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all var(--transition-slow);
  background: rgba(251,249,245,.95);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(207,162,99,.15);
}

#main-header.scrolled {
  height: var(--header-h-sm);
  box-shadow: 0 4px 24px rgba(28,26,23,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline: var(--container-pad);
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  transition: transform var(--transition-base);
  text-decoration: none;
}

.logo:hover { transform: scale(1.02); }

.logo-main {
  font-family: var(--font-cursive);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--maroon);
  line-height: 1;
  transition: font-size var(--transition-slow);
}

.logo-sub {
  font-family: var(--font-serif);
  font-size: var(--fs-xs);
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
  transition: opacity var(--transition-base);
}

#main-header.scrolled .logo-main { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
#main-header.scrolled .logo-sub  { opacity: 0; margin-top: 0; }

/* NAV */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--maroon);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* --- Header Transition Setup --- */
#main-header .header-logo img {
  transition: all var(--transition-base);
}

/* Header CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: var(--maroon);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: color var(--transition-base), transform var(--transition-fast);
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
  border-radius: inherit;
}

.nav-cta:hover::before { transform: scaleX(1); transform-origin: left; }
.nav-cta span         { position: relative; z-index: 1; }
.nav-cta:hover        { transform: translateY(-1px); }
.nav-cta:active       { transform: translateY(0); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV OVERLAY */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-header) - 1);
  background: rgba(251,249,245,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav .nav-link {
  font-size: var(--fs-xl);
  font-family: var(--font-serif);
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 45vh; /* Reduced height for welcome banner */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--text-primary);
  padding: calc(var(--header-h) + var(--space-2xl)) 0 var(--space-xl) 0;
}

.hero-bg,
#parallaxHero,
.parallax-hero {
  position: absolute;
  inset: -10%;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: scale(1.15);
  transition: transform 0.1s linear;
  filter: brightness(.45) saturate(0.8);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,26,23,.15) 0%,
    rgba(28,26,23,.35) 40%,
    rgba(28,26,23,.75) 100%
  );
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.particle:nth-child(1)  { width:4px; height:4px; background:var(--gold);  left:12%; animation-duration:12s; animation-delay:-2s; }
.particle:nth-child(2)  { width:3px; height:3px; background:#fff;         left:25%; animation-duration:15s; animation-delay:-5s; }
.particle:nth-child(3)  { width:5px; height:5px; background:var(--gold-light); left:40%; animation-duration:10s; animation-delay:-1s; }
.particle:nth-child(4)  { width:2px; height:2px; background:#fff;         left:55%; animation-duration:18s; animation-delay:-8s; }
.particle:nth-child(5)  { width:4px; height:4px; background:var(--gold);  left:68%; animation-duration:13s; animation-delay:-3s; }
.particle:nth-child(6)  { width:3px; height:3px; background:#fff;         left:80%; animation-duration:11s; animation-delay:-6s; }
.particle:nth-child(7)  { width:2px; height:2px; background:var(--gold-light); left:90%; animation-duration:16s; animation-delay:-4s; }
.particle:nth-child(8)  { width:5px; height:5px; background:var(--gold);  left:5%;  animation-duration:9s;  animation-delay:-7s; }
.particle:nth-child(9)  { width:3px; height:3px; background:#fff;         left:35%; animation-duration:14s; animation-delay:-9s; }
.particle:nth-child(10) { width:4px; height:4px; background:var(--gold-dark); left:72%; animation-duration:17s; animation-delay:-2s; }
.particle:nth-child(11) { width:2px; height:2px; background:#fff;         left:48%; animation-duration:12s; animation-delay:-11s; }
.particle:nth-child(12) { width:3px; height:3px; background:var(--gold);  left:88%; animation-duration:15s; animation-delay:-4s; }

@keyframes particleFloat {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  5%   { opacity: .8; }
  95%  { opacity: .6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: var(--z-raised);
  text-align: center;
  color: #fff;
  padding: var(--space-4xl) var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease forwards 0.3s;
}

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

.hero-title {
  font-family: var(--font-cursive);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,.3);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: heroReveal 1.2s cubic-bezier(.25,.46,.45,.94) forwards 0.6s;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: heroReveal 1s ease forwards 0.9s;
}

.hero-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-divider-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-divider-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease forwards 1.1s;
}

.hero-desc {
  font-size: var(--fs-base);
  color: rgba(255,255,255,.7);
  max-width: 44ch;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease forwards 1.3s;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease forwards 1.5s;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-raised);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroReveal 1s ease forwards 2s, scrollBounce 2s ease 3s infinite;
  opacity: 0;
}

.hero-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-mouse::before {
  content: '';
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: var(--radius-full);
  animation: scrollDot 1.5s ease-in-out 3s infinite;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  100%      { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   10. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-base);
  border: 2px solid transparent;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
  border-radius: inherit;
  z-index: 0;
}

.btn span { position: relative; z-index: 1; }
.btn svg  { position: relative; z-index: 1; width: 16px; height: 16px; transition: transform var(--transition-base); }

.btn:hover::before       { transform: scaleX(1); transform-origin: left; }
.btn:hover               { transform: translateY(-2px); }
.btn:hover svg           { transform: translateX(4px); }
.btn:active              { transform: translateY(0); }

/* Primary Button */
.btn-primary {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}
.btn-primary::before { background: var(--maroon-dark); }
.btn-primary:hover   { box-shadow: var(--shadow-maroon); }

/* Gold Button */
.btn-gold {
  background: var(--gold);
  color: var(--text-primary);
  border-color: var(--gold);
}
.btn-gold::before { background: var(--gold-dark); }
.btn-gold:hover   { box-shadow: var(--shadow-gold); color: #fff; }

/* Outline Button */
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline::before  { background: rgba(255,255,255,.1); }
.btn-outline:hover    { border-color: #fff; }

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}
.btn-ghost::before { background: var(--maroon); }
.btn-ghost:hover   { color: #fff; }

/* ============================================================
   11. SECTION SHARED STYLES
   ============================================================ */
section {
  position: relative;
  overflow: hidden;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header.left {
  align-items: flex-start;
  text-align: left;
}

/* Parallax container */
.parallax-section {
  will-change: transform;
  transform: translateZ(0);
}

.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* ============================================================
   12. INTRO / FEATURES STRIP
   ============================================================ */
#intro {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(207,162,99,.15);
  border-bottom: 1px solid rgba(207,162,99,.15);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(207,162,99,.18);
}

.intro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-2xl) var(--space-xl);
  background: var(--bg-secondary);
  transition: background var(--transition-base);
}

.intro-item:hover {
  background: var(--bg-card-hover);
}

.intro-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(138,37,37,.08), rgba(207,162,99,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(207,162,99,.25);
}

.intro-icon svg {
  width: 24px;
  height: 24px;
  color: var(--maroon);
}

.intro-item h3 {
  font-size: var(--fs-md);
  color: var(--text-primary);
}

.intro-item p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  max-width: 24ch;
}

/* ============================================================
   13. ABOUT SECTION
   ============================================================ */
#about {
  padding: var(--space-4xl) 0;
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-image-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--bg-primary);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  top: var(--space-lg);
  left: -24px;
  background: var(--maroon);
  color: #fff;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-maroon);
}

.about-badge .badge-number {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1;
}

.about-badge .badge-text {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .85;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about-quote {
  position: relative;
  padding: var(--space-xl) var(--space-xl) var(--space-xl) calc(var(--space-xl) + 16px);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--maroon);
}

.about-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: var(--space-lg);
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--maroon);
  opacity: .15;
  line-height: 1;
}

.about-quote blockquote {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-quote cite {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.about-stat {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid rgba(207,162,99,.15);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-stat .stat-number {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}

.about-stat .stat-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   14. MENU SECTION
   ============================================================ */
#menu-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-primary);
}

/* Category Tabs */
.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.menu-tab,
.menu-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  border: 1.5px solid rgba(207,162,99,.2);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.menu-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.menu-tab span { position: relative; z-index: 1; }

.menu-tab:hover,
.menu-tab-btn:hover,
.menu-tab.active,
.menu-tab-btn.active {
  color: #fff;
  border-color: var(--maroon);
  box-shadow: var(--shadow-maroon);
}

.menu-tab:hover::before,
.menu-tab-btn:hover::before,
.menu-tab.active::before,
.menu-tab-btn.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Menu Category Panel */
.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* Menu Items Grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  column-gap: var(--space-4xl);
  row-gap: var(--space-2xl);
  padding: var(--space-xl) 0;
}

.menu-item-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: none;
  position: relative;
  overflow: visible;
}

.menu-item-card::before {
  display: none;
}

.menu-item-card:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
}

.menu-item-top {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-bottom: 4px;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
}

.menu-item-leader {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(207,162,99,.5);
  margin: 0 12px;
  position: relative;
  top: -4px;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--maroon);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

.menu-item-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.menu-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(138,37,37,.08);
  color: var(--maroon);
  border: 1px solid rgba(138,37,37,.12);
}

/* Menu decorative divider */
.menu-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-md);
}

.menu-divider::before,
.menu-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(207,162,99,.4), transparent);
}

/* ============================================================
   15. PARALLAX BANNER
   ============================================================ */
.parallax-banner {
  position: relative;
  height: clamp(300px, 45vw, 550px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-banner-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  filter: brightness(.45) saturate(.8);
  will-change: transform;
}

.parallax-banner-content {
  position: relative;
  z-index: var(--z-raised);
  text-align: center;
  color: #fff;
  padding: var(--space-xl) var(--container-pad);
}

.parallax-banner-content h2 {
  font-family: var(--font-cursive);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
  margin-bottom: var(--space-md);
}

.parallax-banner-content p {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.8);
  font-size: var(--fs-lg);
}

/* ============================================================
   16. GALLERY SECTION
   ============================================================ */
#gallery {
  padding: var(--space-4xl) 0;
  background: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
}

.gallery-item:nth-child(1) {
  grid-row: 1 / 3;
  aspect-ratio: 4/5;
}

.gallery-item:nth-child(2) { aspect-ratio: 4/3; }
.gallery-item:nth-child(3) { aspect-ratio: 4/3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth), filter var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl);
  color: #fff;
}

.gallery-overlay-text {
  transform: translateY(12px);
  transition: transform var(--transition-base);
}

.gallery-overlay-text h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: #fff;
  margin-bottom: 4px;
}

.gallery-overlay-text p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
}

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

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay-text { transform: translateY(0); }

/* Gallery expand button */
.gallery-expand {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}

.gallery-expand svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.gallery-item:hover .gallery-expand {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   17. RESERVATION SECTION
   ============================================================ */
#reservation {
  padding: var(--space-4xl) 0;
  background: var(--bg-secondary);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Contact Info Side */
.reservation-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.reservation-info-header .cursive-title {
  font-family: var(--font-cursive);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--maroon);
  display: block;
  margin-bottom: var(--space-sm);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(207,162,99,.12);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(138,37,37,.1), rgba(207,162,99,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(207,162,99,.2);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--maroon);
}

.contact-detail h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-detail p,
.contact-detail a {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.contact-detail a:hover { color: var(--maroon); }

/* Hours */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(207,162,99,.2);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.hours-row .day { font-weight: 500; color: var(--text-primary); }
.hours-row .time { color: var(--maroon); }

/* Form Side */
.reservation-form-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(207,162,99,.12);
}

.form-title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1.5px solid rgba(207,162,99,.15);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(138,37,37,.1);
  background: var(--bg-card);
  outline: none;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}

.form-select { padding-right: 40px; cursor: pointer; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--maroon);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-base);
  margin-top: var(--space-md);
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maroon-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.form-submit span { position: relative; z-index: 1; }
.form-submit:hover::before { transform: scaleX(1); transform-origin: left; }
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-maroon); }

/* ============================================================
   18. INSTAGRAM SECTION
   ============================================================ */
#instagram {
  padding: var(--space-4xl) 0;
  background: var(--bg-primary);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.insta-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(138,37,37,.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.insta-overlay svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.insta-overlay span {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.85);
}

.insta-item:hover img        { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; transform: scale(1); }

.instagram-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-lg);
  color: var(--maroon);
  font-family: var(--font-serif);
  font-style: italic;
  transition: color var(--transition-base);
}

.instagram-handle:hover { color: var(--gold); }

/* ============================================================
   19. FOOTER
   ============================================================ */
#footer {
  background: var(--bg-primary);
  color: var(--text-secondary);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.footer-brand .logo-main {
  color: var(--maroon);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.footer-brand .logo-sub { color: var(--text-muted); }

.footer-brand p {
  margin-top: var(--space-md);
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 32ch;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(28,26,23,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-maroon);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast), padding-left var(--transition-base);
  position: relative;
}

.footer-link:hover {
  color: var(--maroon);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(207,162,99,.15);
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--maroon);
  transition: opacity var(--transition-fast);
}

.footer-bottom a:hover { opacity: .75; }

.footer-credits {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.25);
}

/* Footer Gold Separator */
.footer-gold-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--maroon), var(--gold), transparent);
  margin-bottom: var(--space-4xl);
  opacity: .35;
}

/* ============================================================
   20. SCROLL REVEAL ANIMATIONS
   ============================================================ */


/* ============================================================
   21. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(28,26,23,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  backdrop-filter: blur(12px);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: scale(.95);
  transition: transform var(--transition-spring);
}

.lightbox.open .lightbox-content { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--maroon);
  transform: rotate(90deg);
}

/* ============================================================
   22. TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--maroon);
  min-width: 280px;
  max-width: 360px;
  transform: translateX(120%);
  transition: transform var(--transition-spring);
}

.toast.show { transform: translateX(0); }
.toast.success { border-left-color: var(--sage); }
.toast.error   { border-left-color: var(--maroon); }

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast.success .toast-icon { background: rgba(126,143,117,.12); color: var(--sage); }
.toast.error   .toast-icon { background: rgba(138,37,37,.1);    color: var(--maroon); }

.toast-text { flex: 1; }
.toast-title { font-weight: 600; font-size: var(--fs-sm); color: var(--text-primary); }
.toast-msg   { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   23. BACK TO TOP BUTTON
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-raised);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-maroon);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.9);
  transition: all var(--transition-spring);
  cursor: pointer;
  border: none;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#back-to-top:hover {
  background: var(--gold);
  transform: translateY(-4px) scale(1.08);
  box-shadow: var(--shadow-gold);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   24. MISC UTILITIES
   ============================================================ */
.gold-text   { color: var(--gold); }
.maroon-text { color: var(--maroon); }
.sage-text   { color: var(--sage); }
.muted-text  { color: var(--text-muted); }

.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite;
}

.separator {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(207,162,99,.3), transparent);
}

.separator-ornament {
  color: var(--gold);
  font-size: var(--fs-lg);
  opacity: .7;
}

/* ============================================================
   25. KEYFRAME ANIMATIONS LIBRARY
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(1deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

@keyframes ripple {
  from { transform: scale(0); opacity: 1; }
  to   { transform: scale(4); opacity: 0; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* ============================================================
   26. LOADING SKELETON
   ============================================================ */
.skeleton {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.5) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ============================================================
   27. SPECIAL DECORATIVE ELEMENTS
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--gold);
  opacity: .6;
}

.ornament::before,
.ornament::after {
  content: 'âœ¦';
  font-size: 10px;
}

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

/* Gold shimmer badge */
.shimmer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  color: var(--text-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: gradientShift 3s linear infinite;
}

/* ============================================================
   28. RESPONSIVE "” TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --space-4xl: 96px;
    --space-3xl: 72px;
  }

  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .about-grid    { grid-template-columns: 1fr; }
  .reservation-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .about-image-main { aspect-ratio: 16/9; }

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

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

  .gallery-item:nth-child(1) {
    grid-row: auto;
    aspect-ratio: 16/9;
  }
}

/* ============================================================
   29. RESPONSIVE "” MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-h:    64px;
    --header-h-sm: 56px;
    --space-4xl:   72px;
    --space-3xl:   56px;
    --space-2xl:   40px;
  }

  /* Header "” show hamburger */
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Grids */
  .grid-2        { grid-template-columns: 1fr; }
  .grid-3        { grid-template-columns: 1fr; }
  .about-stats   { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
  .intro-grid    { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .form-grid     { grid-template-columns: 1fr; }
  .hours-grid    { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    aspect-ratio: 4/3;
  }

  /* Instagram */
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }

  /* Menu categories swipe-scroll on mobile */
  .menu-tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    margin-bottom: var(--space-md);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }
  .menu-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }
  .menu-tab, .menu-tab-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 10px 20px;
    font-size: var(--fs-xs);
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Cursor "” hide on touch */
  .cursor-dot, .cursor-ring { display: none; }

  /* Section header */
  .section-title { font-size: var(--fs-2xl); }

  /* About badge */
  .about-badge { left: 0; top: var(--space-md); }

  /* Reserve form */
  .reservation-form-wrap { padding: var(--space-xl); }
}

/* ============================================================
   30. RESPONSIVE "” SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --space-3xl: 48px;
    --space-2xl: 32px;
  }

  .hero-title          { line-height: 1; }
  .about-stats         { grid-template-columns: 1fr 1fr; }
  .instagram-grid      { grid-template-columns: repeat(2, 1fr); }
  .section-label       { font-size: 9px; }
  .reservation-form-wrap { padding: var(--space-lg); }
  .gallery-grid        { gap: var(--space-sm); }
}

/* ============================================================
   31. PRINT STYLES
   ============================================================ */
@media print {
  #preloader,
  #main-header,
  #back-to-top,
  .cursor-dot,
  .cursor-ring,
  #scroll-progress { display: none; }

  body { background: #fff; color: #000; }
  a    { color: #000; text-decoration: underline; }
}

/* ============================================================
   32. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .hero-bg    { transform: none !important; }
  .parallax-bg { transform: none !important; }
}

/* ============================================================
   33. DARK MODE (optional enhancement)
   ============================================================ */
@media (prefers-color-scheme: dark) {
  /* Uncomment to enable automatic dark mode */
  /*
  :root {
    --bg-primary:    #1a1816;
    --bg-secondary:  #201e1b;
    --bg-card:       #252320;
    --bg-card-hover: #2a2825;
    --text-primary:  #f5f1e8;
    --text-secondary:#c5bfb5;
    --text-muted:    #8a8278;
  }
  */
}

/* ============================================================
   34. HIGH-DPI / RETINA
   ============================================================ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-bg,
  .parallax-bg,
  .parallax-banner-bg {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ============================================================
   35. FOCUS STYLES (ACCESSIBILITY)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.nav-link:focus-visible,
.footer-link:focus-visible,
.social-link:focus-visible {
  outline-offset: 4px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  z-index: var(--z-preload);
  background: var(--maroon);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus { top: var(--space-md); }

/* ============================================================
   END OF style.css "” Nurhayat Meyhane
   Lines: ~1100+ | Version: 2.0
   ============================================================ */


/* ============================================================
   36. INDEX.PHP UYUM KATMANI - Eksik class tanimlari
   ============================================================ */

/* --- Preloader fade-out --- */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- Header Logo (img tag ile) --- */
.header-logo {
  display: flex;
  align-items: center;
  height: 120px;
  text-decoration: none;
  transition: height var(--transition-slow), opacity var(--transition-base);
}
.header-logo:hover { opacity: 0.85; }
.header-logo img {
  height: 100%;
  width: auto;
  mix-blend-mode: multiply;
}

#main-header.scrolled .header-logo {
  height: 85px;
}

/* --- Header Badge --- */
.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-secondary);
  border: 1px solid rgba(207,162,99,.25);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* --- Header Right Wrapper --- */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --- Header CTA button (btn-header) --- */
.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--maroon);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
}
.btn-header:hover {
  background: var(--maroon-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-maroon);
}

/* --- Hero cursive (p.hero-cursive) --- */
.hero-cursive {
  font-family: var(--font-cursive);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--gold-light);
  line-height: 0.9;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1.2s cubic-bezier(.25,.46,.45,.94) forwards 0.4s;
}

/* --- Hero title (h1.hero-title) override --- */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s cubic-bezier(.25,.46,.45,.94) forwards 0.7s;
}

/* --- Hero subtitle --- */
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-style: italic;
  color: rgba(255,255,255,.8);
  max-width: 50ch;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease forwards 0.2s;
}

/* --- Hero Buttons --- */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease forwards 0.4s;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base);
}

.btn-primary {
  background: var(--maroon);
  color: #fff;
  border: 2px solid var(--maroon);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-maroon);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* --- Hero Badges --- */
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease forwards 0.6s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}

/* --- Hero scroll down arrow --- */
.hero-scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  animation: scrollBounce 2s ease infinite 2.5s;
  transition: background var(--transition-base);
  opacity: 0;
  animation: heroReveal 1s ease forwards 2s, scrollBounce 2s ease 3.5s infinite;
}
.hero-scroll-down:hover { background: rgba(255,255,255,.2); }

/* --- section-padding --- */
.section-padding {
  padding: var(--space-4xl) 0;
}
.section-padding-sm {
  padding: var(--space-3xl) 0;
}

/* --- About section overrides for index.php layout --- */
.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.about-text h2 { font-size: var(--fs-3xl); }
.about-text p  { color: var(--text-secondary); line-height: 1.8; }

.about-images { position: relative; }

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.img-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.img-item:hover img { transform: scale(1.06); }

.img-large {
  grid-row: 1 / 3;
  aspect-ratio: 3/4;
}
.img-item:not(.img-large) { aspect-ratio: 4/3; }

/* --- About Stats (index.php version) --- */
.about-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.stat-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- section-label (index.php uses span.section-label) --- */
.section-desc {
  font-family: var(--font-cursive);
  color: var(--maroon);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  max-width: 55ch;
  margin: 0 auto;
  text-align: center;
}

/* --- Menu section bg --- */
.menu-section-bg {
  background: var(--bg-primary);
}

/* --- Menu note --- */
.menu-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-2xl);
  padding: var(--space-md) var(--space-xl);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(207,162,99,.15);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.menu-note i { color: var(--gold-dark); flex-shrink: 0; }

/* --- Instagram section (index.php) --- */
.instagram-section {
  background: var(--bg-primary);
  border-top: 1px solid rgba(207,162,99,.12);
  border-bottom: 1px solid rgba(207,162,99,.12);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}

.insta-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.insta-item:hover img { transform: scale(1.08); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(138,37,37,.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.insta-item:hover .insta-overlay { opacity: 1; }

.insta-icons {
  display: flex;
  gap: 1rem;
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.insta-icons span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --- Contact section --- */
.contact-section {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* --- Info cards --- */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(207,162,99,.12);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(138,37,37,.08);
  border: 1px solid rgba(138,37,37,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition-base), color var(--transition-base);
}
.info-card:hover .info-icon {
  background: var(--maroon);
  color: #fff;
}
.info-content h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-content p, .info-content a {
  font-size: var(--fs-base);
  color: var(--text-primary);
  line-height: 1.6;
}
.info-content a:hover { color: var(--maroon); }

/* --- Reservation form wrapper/card --- */
.reservation-form-wrapper {
  position: relative;
}
.reservation-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(207,162,99,.15);
}
.reservation-form-card h3 {
  font-size: var(--fs-xl);
  color: var(--maroon);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-subtitle {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xl);
}

/* Form rows and groups */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}
.form-group label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-group label i { color: var(--maroon); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1.5px solid rgba(207,162,99,.2);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(138,37,37,.08);
  outline: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--maroon);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  margin-top: var(--space-sm);
}
.btn-submit:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-maroon);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form success / error messages */
.form-success,
.form-error {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-md);
}
.form-success {
  background: rgba(126,143,117,.06);
  border: 1px solid rgba(126,143,117,.2);
}
.form-success i {
  font-size: 3rem;
  color: var(--sage);
  display: block;
  margin-bottom: var(--space-md);
}
.form-success h4 {
  font-size: var(--fs-xl);
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-secondary); }

.form-error {
  background: rgba(138,37,37,.04);
  border: 1px solid rgba(138,37,37,.15);
}
.form-error i {
  font-size: 2rem;
  color: var(--maroon);
  margin-bottom: var(--space-sm);
  display: block;
}
.form-error p { color: var(--maroon); font-weight: 500; }

/* --- Footer inner / grid --- */
footer {
  background: var(--bg-primary);
  color: var(--text-secondary);
  padding: var(--space-4xl) 0 var(--space-xl);
}
footer p { color: var(--text-secondary); }
footer a { color: var(--text-secondary); transition: color var(--transition-base); }
footer a:hover { color: var(--maroon); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  height: 120px;
  width: auto;
  mix-blend-mode: multiply;
  margin-bottom: 5px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--maroon);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(28,26,23,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background var(--transition-base), color var(--transition-base);
}
.footer-social a:hover { background: var(--maroon); color: #fff; }

.footer-nav-col h5,
.footer-contact-col h5 {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: var(--space-lg);
}

.footer-nav-col ul,
.footer-contact-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-col li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--fs-sm);
}
.footer-contact-col li i { color: var(--maroon); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-credit a { color: var(--maroon); font-weight: 600; }

/* --- Main nav overrides (index.php) --- */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}
.main-nav.open {
  transform: translateX(0);
}

/* --- Hamburger button (index.php uses 3x span) --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- menu-tab-btn::before alias --- */
.menu-tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}
.menu-tab-btn span { position: relative; z-index: 1; }
.menu-tab-btn i    { position: relative; z-index: 1; }

/* --- Responsive fixes for new classes --- */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .img-grid { grid-template-columns: 1fr 1fr; }
  .img-large { grid-row: auto; aspect-ratio: 4/3; }
  .about-stats { flex-wrap: wrap; gap: var(--space-md); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-right {
    position: relative;
    z-index: 501; /* Stacks header icons/hamburger above the fullscreen menu */
  }
  .hamburger    { display: flex; }
  
  /* Smooth fade/slide mobile overlay nav */
  .main-nav ul  {
    position: fixed;
    inset: 0;
    background: rgba(251, 249, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 400;
    font-size: var(--fs-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  }
  .main-nav.open ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .header-badge { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .img-grid  { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-badges { flex-wrap: wrap; }
}