/* =============================================
   BRASSERIE OOSTPOORT — Redesign Stylesheet
   Warm terracotta · Mobile-first
   ============================================= */

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

:root {
  --amber:        #C4622D;
  --amber-dark:   #9E4A1F;
  --amber-light:  #E8956D;
  --gold:         #D4A853;
  --dark:         #1C1410;
  --charcoal:     #2E1F14;
  --warm-mid:     #4A3020;
  --cream:        #FAF6EF;
  --sand:         #F0E6D3;
  --white:        #FFFDF9;
  --text:         #2E1F14;
  --text-light:   #7A6248;
  --border:       rgba(196,98,45,0.18);
  --border-light: rgba(196,98,45,0.1);

  --font-script:  'Great Vibes', cursive;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 12px rgba(28,20,16,0.08);
  --shadow-md:  0 8px 32px rgba(28,20,16,0.14);
  --shadow-lg:  0 20px 60px rgba(28,20,16,0.22);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--dark);
  margin-top: 0.4rem;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 1.4rem 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--amber);
  opacity: 0.3;
}

.section-divider .fork-icon {
  color: var(--amber);
  font-size: 1rem;
  opacity: 0.7;
}

/* ── LOGO ────────────────────────────────────── */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 0;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--amber-light);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  line-height: 1.1;
}

.navbar.scrolled .logo-sub  { color: var(--text-light); }
.navbar.scrolled .logo-name { color: var(--amber); }

/* Legacy logo classes (footer / inner pages) */
.logo-text  { font-family: var(--font-body); font-size: 0.56rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.logo-accent { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--amber-light); letter-spacing: 0.03em; }

/* Hide diamond icon if still present */
.logo-diamond { display: none; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  min-height: 48px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,98,45,0.35);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,98,45,0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}

.btn-outline:hover {
  background: var(--amber);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--amber-dark);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  color: var(--amber-dark);
}

/* ── NAVIGATION ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255,253,249,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(28,20,16,0.1);
  padding: 0.6rem 0;
}

.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover { color: var(--amber); }

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: color var(--transition);
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber-light);
  transition: width var(--transition);
}

.navbar.scrolled .nav-link::after { background: var(--amber); }

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

.nav-social {
  display: flex;
  gap: 0.7rem;
}

.nav-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  transition: all var(--transition);
}

.navbar.scrolled .nav-social a {
  border-color: rgba(196,98,45,0.35);
  color: var(--amber);
}

.nav-social a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── HAMBURGER ───────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .hamburger span { background: var(--dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,98,45,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  padding: 0.7rem 2rem;
  position: relative;
}

.mobile-menu a:hover { color: var(--amber-light); }

.mobile-menu-footer {
  position: absolute;
  bottom: 2.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18,10,6,0.5) 0%,
    rgba(18,10,6,0.2) 50%,
    rgba(18,10,6,0.55) 100%
  );
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url('../images/gebouw.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}

/* Real photo helpers */
.intro-real-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.private-real-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: block;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  animation: heroFadeUp 1.2s ease-out 0.3s both;
  max-width: 600px;
  width: 100%;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  color: rgba(255,255,255,0.88);
  display: block;
  margin-bottom: 0.3rem;
  animation: heroFadeUp 1.2s ease-out 0.5s both;
}

.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
  animation: heroFadeUp 1.2s ease-out 0.7s both;
}

.hero-logo-icon {
  width: 68px; height: 68px;
  border: 1.5px solid var(--amber-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  font-size: 1.7rem;
}

.hero-brand { text-align: left; }

.hero-brand-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.15rem;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  font-weight: 600;
  color: var(--amber-light);
  letter-spacing: 0.03em;
  line-height: 1;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 1.5rem 0;
  animation: heroFadeUp 1.2s ease-out 0.9s both;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,98,45,0.6));
}

.hero-divider::after { background: linear-gradient(90deg, rgba(196,98,45,0.6), transparent); }

.hero-divider svg {
  color: var(--amber-light);
  width: 18px; height: 18px;
}

.hero-hours {
  animation: heroFadeUp 1.2s ease-out 1.1s both;
}

.hero-hours-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.3rem;
}

.hero-hours-time {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
}

.hero-cta {
  margin-top: 2.5rem;
  animation: heroFadeUp 1.2s ease-out 1.3s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll svg { width: 20px; color: var(--amber-light); }

/* ── SECTIONS ────────────────────────────────── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark   { background: var(--dark); }
.section-cream  { background: var(--cream); }
.section-sand   { background: var(--sand); }
.section-white  { background: var(--white); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── INTRO / OVER ONS ────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.intro-badge {
  position: absolute;
  bottom: -2rem; right: -1.5rem;
  width: 120px; height: 120px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  box-shadow: 0 12px 40px rgba(196,98,45,0.4);
}

.intro-badge-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; font-family: var(--font-body); }
.intro-badge-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; line-height: 1; margin-top: 2px; }

.intro-text p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.intro-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.highlight-icon {
  width: 36px; height: 36px;
  background: rgba(196,98,45,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.highlight-text span   { font-size: 0.76rem; color: var(--text-light); }

/* ── MENU CARDS ──────────────────────────────── */
.menu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.menu-card {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  display: block;
}

.menu-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s ease;
}

.menu-card:hover .menu-card-bg { transform: scale(1.06); }

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,0.78) 0%, rgba(28,20,16,0.12) 60%);
  display: flex;
  align-items: flex-end;
  padding: 2.2rem;
  transition: background var(--transition);
}

.menu-card:hover .menu-card-overlay {
  background: linear-gradient(to top, rgba(158,74,31,0.82) 0%, rgba(28,20,16,0.2) 60%);
}

.menu-card-label {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ── MENU PAGES ──────────────────────────────── */
.menu-header {
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.menu-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover;
  opacity: 0.15;
}

.menu-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(196,98,45,0.12) 0%, transparent 60%);
}

.menu-header-content { position: relative; z-index: 1; }
.menu-header h1 { font-size: clamp(2.8rem, 7vw, 4.8rem); color: var(--white); }
.menu-header .breadcrumb { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin-top: 0.5rem; }
.menu-header .breadcrumb a { color: var(--amber-light); }

.menu-nav {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.menu-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.menu-nav-btn {
  padding: 1rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  min-height: 48px;
}

.menu-nav-btn:hover,
.menu-nav-btn.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.menu-section { padding: 4.5rem 0; }
.menu-section:nth-child(even) { background: var(--sand); }

.menu-category-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--amber);
  margin-bottom: 0.3rem;
}

.menu-category-sub {
  color: var(--text-light);
  font-size: 0.82rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

.menu-items { display: grid; gap: 0; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  gap: 2rem;
}

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

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber-dark);
  white-space: nowrap;
  padding-top: 2px;
}

.menu-note-box {
  background: rgba(196,98,45,0.07);
  border-left: 3px solid var(--amber);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.4rem;
  margin: 0.5rem 0 2rem;
  font-size: 0.88rem;
  color: var(--text);
}

/* ── PRIVATE DINING ──────────────────────────── */
.private-banner {
  background: var(--dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.private-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/private-dining.jpg') center/cover;
  opacity: 0.18;
}

.private-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,98,45,0.08) 0%, transparent 60%);
}

.private-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.private-text .section-label { color: var(--amber-light); }
.private-text h2 { color: var(--white); }
.private-text p { color: rgba(255,255,255,0.68); margin: 1.1rem 0; line-height: 1.9; font-size: 0.95rem; }

/* ── GALLERY ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 3.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.65s ease;
  display: block;
}

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

/* ── REVIEWS ─────────────────────────────────── */
.reviews-section { background: var(--sand); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 3px solid var(--amber);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.4rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--amber);
  opacity: 0.12;
  line-height: 1;
}

.review-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.review-text  { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1rem; }
.review-author { font-size: 0.8rem; font-weight: 600; color: var(--dark); }
.review-via   { font-size: 0.7rem; color: var(--text-light); margin-top: 0.2rem; }

/* ── INFO BAR ────────────────────────────────── */
.info-bar {
  background: var(--charcoal);
  padding: 4rem 0;
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.info-item-icon {
  width: 52px; height: 52px;
  background: rgba(196,98,45,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--amber-light);
  font-size: 1.2rem;
}

.info-item-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.info-item-value {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.65;
}

.info-item-value a { color: rgba(255,255,255,0.8); }
.info-item-value a:hover { color: var(--amber-light); }

/* ── CONTACT PAGE ────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(196,98,45,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.contact-info-text strong { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.2rem; font-family: var(--font-body); }
.contact-info-text span   { color: var(--dark); font-size: 0.94rem; }

.contact-form .form-group { margin-bottom: 1.1rem; }

.contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  min-height: 48px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.12);
}

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

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: #110D0A;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2rem;
}

.footer-brand p { color: rgba(255,255,255,0.42); font-size: 0.88rem; line-height: 1.75; margin: 1.2rem 0 1.5rem; }

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.4rem;
}

.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--amber-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.28);
  font-size: 0.76rem;
}

.footer-bottom a { color: rgba(255,255,255,0.28); }
.footer-bottom a:hover { color: var(--amber-light); }

/* ── PAGE HEADER ─────────────────────────────── */
.page-header {
  padding: 9rem 1.5rem 5rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: url('../images/hero-bg.jpg') center/cover;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(196,98,45,0.1) 0%, transparent 55%);
}

.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); }
.page-header .breadcrumb { color: rgba(255,255,255,0.42); font-size: 0.82rem; margin-top: 0.5rem; }
.page-header .breadcrumb a { color: var(--amber-light); }

/* ── UTILITY ─────────────────────────────────── */
.text-center { text-align: center; }
.text-amber  { color: var(--amber); }
.text-teal   { color: var(--amber); } /* legacy alias */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ── REVEAL ANIMATIONS ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE — TABLET ─────────────────────── */
@media (max-width: 960px) {
  .intro-grid,
  .private-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu-cards     { grid-template-columns: 1fr 1fr; }
  .reviews-grid   { grid-template-columns: 1fr 1fr; }
  .info-bar-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .intro-badge    { display: none; }
  .intro-highlights { grid-template-columns: 1fr 1fr; }
}

/* ── RESPONSIVE — MOBILE ─────────────────────── */
@media (max-width: 680px) {
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }

  .section     { padding: 4.5rem 0; }
  .section-sm  { padding: 3rem 0; }

  .hero-brand-name { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .hero-logo-wrap  { flex-direction: column; align-items: center; gap: 0.8rem; }
  .hero-brand      { text-align: center; }

  .menu-cards    { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .info-bar-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2.5rem; }

  .gallery-grid              { grid-template-columns: 1fr; }
  .gallery-item:first-child  { grid-column: span 1; }

  .intro-highlights { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }

  .private-banner { padding: 5rem 0; }

  .menu-header { padding: 6.5rem 1.5rem 3rem; }
  .page-header { padding: 7rem 1.5rem 4rem; }

  .hero-divider::before,
  .hero-divider::after { width: 45px; }
}
