/* ============================================
   LATERAL DELUXE — Café & Bar · Adra
   Modern, vibrant, forest green + off-white
   ============================================ */

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

:root {
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --green-pale: #52B788;
  --green-accent: #74C69D;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --warm: #D4A574;
  --warm-light: #E8C9A0;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 8px 30px rgba(27, 67, 50, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ---------- GEOMETRIC BACKGROUND SHAPES ---------- */
.geo-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.04;
}

.shape--circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--green-dark);
  top: -200px;
  right: -150px;
}

.shape--circle-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--warm);
  bottom: 10%;
  left: -100px;
}

.shape--rect-1 {
  width: 200px;
  height: 200px;
  background: var(--green-pale);
  top: 50%;
  right: 5%;
  transform: rotate(45deg);
}

.shape--triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100px 173px 100px;
  border-color: transparent transparent var(--warm-light) transparent;
  top: 30%;
  left: 3%;
  opacity: 0.03;
}

.shape--dot-grid {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--green-dark) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  top: 60%;
  right: 8%;
  opacity: 0.06;
}

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

.header.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo__mark {
  width: 40px;
  height: 40px;
  background: var(--green-dark);
  color: var(--warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  transition: var(--transition);
}

.logo:hover .logo__mark {
  transform: rotate(-5deg) scale(1.05);
  background: var(--green-mid);
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
}

.logo__accent {
  color: var(--warm);
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover {
  color: var(--green-dark);
  background: rgba(27, 67, 50, 0.06);
}

.nav__link--cta {
  background: var(--green-dark);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle__line {
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active .nav-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn--primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}

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

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

/* ---------- SECTION COMMON ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(64, 145, 108, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

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

.text-accent {
  color: var(--warm);
  position: relative;
}

.text-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(212, 165, 116, 0.25);
  border-radius: 3px;
  z-index: -1;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-mid) 30%,
    #1a5c3a 60%,
    var(--green-dark) 100%
  );
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(82, 183, 136, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.hero__content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title-accent {
  color: var(--warm);
  position: relative;
}

.hero__title-accent--alt {
  color: var(--green-accent);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__actions .btn--ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.hero__actions .btn--ghost:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.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.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), 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: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- ABOUT ---------- */
.about {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

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

.about__image-stack {
  position: relative;
  height: 640px;
}

.about__img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img--main {
  width: 340px;
  height: 440px;
  top: 0;
  left: 0;
}

.about__img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img--accent {
  width: 260px;
  height: 200px;
  bottom: 40px;
  right: 0;
  border: 6px solid var(--cream-light);
}

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

.about__float-card {
  position: absolute;
  bottom: 200px;
  left: -20px;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.float-card__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--warm);
  line-height: 1;
}

.float-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.about__text .section-title {
  margin-bottom: 24px;
}

.about__text > p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(27, 67, 50, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---------- MENU ---------- */
.menu {
  padding: 120px 0;
  background: var(--green-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.menu::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(212, 165, 116, 0.06);
  border-radius: 50%;
}

.menu::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(82, 183, 136, 0.08);
  border-radius: 50%;
}

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

.menu .section-tag {
  background: rgba(255,255,255,0.1);
  color: var(--green-accent);
}

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

.menu .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu__tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: var(--transition);
}

.menu__tab:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.menu__tab.active {
  background: var(--warm);
  color: var(--green-dark);
  border-color: var(--warm);
  font-weight: 600;
}

.menu__panel {
  display: none;
}

.menu__panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 48px;
  max-width: 800px;
  margin: 0 auto;
}

.menu__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.menu__item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.menu__item-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.menu__item-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.menu__item-dot {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  min-width: 24px;
}

.menu__note {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-top: 40px;
  font-style: italic;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.gallery .container {
  margin-bottom: 48px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.gallery__item--wide {
  grid-column: span 7;
}

.gallery__item--tall {
  grid-column: span 5;
  grid-row: span 2;
}

/* ---------- SCHEDULE ---------- */
.schedule {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.schedule__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.schedule__accent {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  position: relative;
  overflow: hidden;
}

.schedule__accent::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(212, 165, 116, 0.15);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.schedule__accent::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(82, 183, 136, 0.15);
  border-radius: 50%;
  bottom: -40px;
  left: -40px;
}

.schedule__content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule__table {
  margin: 32px 0;
}

.schedule__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

.schedule__row:last-child {
  border-bottom: none;
}

.schedule__day {
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.schedule__time {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.schedule__note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

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

.contact__desc {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact__detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
}

.contact__detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact__detail p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact__detail a {
  color: var(--green-mid);
  transition: var(--transition);
}

.contact__detail a:hover {
  color: var(--green-dark);
}

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(27, 67, 50, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream-light);
  transition: var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

.form__input::placeholder {
  color: var(--text-light);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__success {
  text-align: center;
  padding: 40px 20px;
}

.form__success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(27, 67, 50, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.form__success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form__success p {
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---------- MAP ---------- */
.map-section {
  position: relative;
  z-index: 1;
}

.map-section iframe {
  display: block;
  filter: saturate(0.7) contrast(1.05);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--warm), var(--green-pale), var(--warm));
}

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

.footer__brand p {
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm);
  margin-bottom: 20px;
}

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

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

.footer ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer ul li:not(:has(a)) {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s 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; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__grid {
    gap: 48px;
  }
  
  .about__image-stack {
    height: 500px;
  }
  
  .contact__grid {
    gap: 48px;
  }
  
  .schedule__card {
    grid-template-columns: 1fr;
  }
  
  .schedule__accent {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(20px);
    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;
  }

  .nav__link {
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 16px;
  }
  
  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about__image-stack {
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about__img--main {
    width: 260px;
    height: 340px;
  }
  
  .about__img--accent {
    width: 200px;
    height: 160px;
  }
  
  .about__float-card {
    left: -10px;
    bottom: 160px;
  }
  
  .menu__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 0 16px;
  }
  
  .gallery__item--wide {
    grid-column: span 2;
  }
  
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .gallery__item {
    height: 220px;
  }
  
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact__form-wrap {
    padding: 32px 24px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 100px 16px 60px;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .menu__tabs {
    gap: 6px;
  }
  
  .menu__tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .schedule__content {
    padding: 40px 28px;
  }
}
