/* ========================================
   BLACK DIAMOND ESPRESSO — STYLES
   Bold Editorial · Plum + Amber
======================================== */

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

:root {
  --plum-deep: #2d1f3d;
  --plum: #4a2d5e;
  --plum-mid: #6b3f7a;
  --plum-light: #8b5a9e;
  --plum-pale: #f3e8f9;
  --plum-ghost: #faf5fd;
  --amber: #d97706;
  --amber-light: #f59e0b;
  --amber-pale: #fef3c7;
  --amber-glow: #fbbf24;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --charcoal: #1a1a1a;
  --text: #2a2a2a;
  --text-light: #5a5a5a;
  --text-muted: #8a8a8a;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(45, 31, 61, 0.06);
  --shadow-md: 0 8px 30px rgba(45, 31, 61, 0.10);
  --shadow-lg: 0 20px 60px rgba(45, 31, 61, 0.14);
  --shadow-xl: 0 30px 80px rgba(45, 31, 61, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* ---------- LOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--plum-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-logo {
  animation: loaderPulse 1s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.site-header.scrolled .logo {
  color: var(--plum-deep);
}

.logo-dot {
  color: var(--amber);
}

.logo:hover .logo-dot {
  transform: scale(1.3);
  display: inline-block;
  transition: transform 0.2s ease;
}

/* ---------- NAV ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after {
  background: var(--plum-deep);
}

.site-header.scrolled .nav-toggle[aria-expanded="true"] .hamburger,
.site-header.scrolled .nav-toggle[aria-expanded="true"] .hamburger::before,
.site-header.scrolled .nav-toggle[aria-expanded="true"] .hamburger::after {
  background: var(--plum-deep);
}

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .nav-link {
  color: var(--text-light);
}

.site-header.scrolled .nav-link:hover {
  color: var(--plum);
  background: var(--plum-pale);
}

.nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  font-weight: 600;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: var(--plum-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--amber) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--white) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--amber);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline .accent-italic {
  font-style: italic;
  font-weight: 600;
  color: var(--amber-light);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.825rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

/* ---------- HERO VISUAL ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-card-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  width: 380px;
  max-width: 90vw;
}

.hero-card-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.hero-card-main-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(45, 31, 61, 0.9), transparent);
  color: var(--white);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
}

.stat-cards {
  position: absolute;
  top: 0;
  left: -40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  padding: 20px 24px;
  border-radius: var(--radius);
  min-width: 170px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.stat-card:nth-child(2) {
  animation-delay: -1.3s;
  margin-left: 20px;
}

.stat-card:nth-child(3) {
  animation-delay: -2.6s;
}

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

.stat-card--amber {
  background: var(--amber);
  color: var(--white);
}

.stat-card--plum {
  background: var(--plum);
  color: var(--white);
}

.stat-card--dark {
  background: var(--plum-deep);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-unit {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.7;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* ---------- HERO SCROLL ---------- */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

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

/* ---------- SECTION HEADLINES ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--plum-deep);
  letter-spacing: -0.02em;
}

.section-headline .accent-italic {
  font-style: italic;
  font-weight: 600;
  color: var(--plum-mid);
}

/* ---------- ABOUT ---------- */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-eyebrow-wrap {
  margin-bottom: 48px;
}

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

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

.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: var(--radius);
  opacity: 0.15;
  z-index: -1;
}

.about-text {
  max-width: 520px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-text p:first-of-type {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 400;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.feature-item svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* ---------- MENU ---------- */
.menu {
  padding: 120px 0;
  background: var(--plum-deep);
  position: relative;
  overflow: hidden;
}

.menu::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 30% 30%, var(--amber) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, var(--white) 1px, transparent 1px);
  background-size: 50px 50px, 70px 70px;
  pointer-events: none;
}

.menu .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.menu .section-header {
  margin-bottom: 72px;
}

.menu .section-headline {
  color: var(--white);
}

.menu .section-headline .accent-italic {
  color: var(--amber-light);
}

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

.menu-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}

.menu-category:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-category-header svg {
  color: var(--amber);
  flex-shrink: 0;
}

.menu-category-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.menu-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-items li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-items li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.menu-item-desc {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}

.gallery .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
}

.gallery-item--large img {
  height: 420px;
}

.gallery-item:not(.gallery-item--large) img {
  height: 280px;
}

.gallery-item--wide {
  grid-column: 1 / 13;
  grid-row: 2 / 3;
}

.gallery-item--wide img {
  height: 360px;
}

/* ---------- VISIT ---------- */
.visit {
  padding: 120px 0;
  background: var(--plum-pale);
}

.visit-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.visit-content .eyebrow {
  margin-bottom: 16px;
}

.visit-content .section-headline {
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.visit-detail svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum-mid);
  margin-bottom: 4px;
}

.visit-detail p,
.visit-detail a {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.visit-detail a:hover {
  color: var(--amber);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  background: var(--plum);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}

.map-placeholder svg {
  color: var(--amber);
  margin-bottom: 20px;
  opacity: 0.8;
}

.map-placeholder p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-content .eyebrow {
  margin-bottom: 16px;
}

.contact-content .section-headline {
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 480px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-mid);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

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

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

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  color: #065f46;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- CONTACT SIDEBAR ---------- */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--plum-deep);
  margin-bottom: 20px;
}

.contact-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-card li svg {
  color: var(--amber);
  flex-shrink: 0;
}

.contact-card li a:hover {
  color: var(--amber);
}

.contact-card--accent {
  background: var(--plum);
  border: none;
  color: var(--white);
}

.contact-card--accent h4 {
  color: var(--white);
}

.contact-card--accent p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.contact-card--accent .btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.contact-card--accent .btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--plum-deep);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* ---------- MOBILE NAV OVERLAY ---------- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--plum-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 14px 28px;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .nav-link:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    background: var(--amber);
    color: var(--white) !important;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    justify-content: center;
  }

  .stat-cards {
    position: relative;
    top: auto;
    left: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
  }

  .stat-card:nth-child(2) {
    margin-left: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap img {
    height: 400px;
  }

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

  .gallery-item--large img {
    height: 320px;
  }

  .gallery-item:not(.gallery-item--large) img {
    height: 220px;
  }

  .gallery-item--wide img {
    height: 280px;
  }

  .visit-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 8vw, 3.25rem);
  }

  .hero-card-main {
    width: 100%;
    max-width: 400px;
  }

  .hero-card-main img {
    height: 360px;
  }

  .stat-cards {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-card {
    min-width: auto;
    width: 100%;
  }

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

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

  .gallery-item--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-item--large img {
    height: 280px;
  }

  .gallery-item--wide {
    grid-column: 1 / -1;
  }

  .gallery-item--wide img {
    height: 240px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: 1 / -1;
  }
}
