/* ============================================
   ESPRESSO AYLA — Design System & Styles
   Enhanced v2 — Modern & Dynamic
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Brand Colours — Official Brand Guidelines 2026 */
  --color-primary: #813405;
  --color-primary-dark: #6a2b04;
  --color-primary-light: #a04d1a;
  --color-heading: #37423d;
  --color-heading-light: #4d5a55;
  --color-bg: #fdf0d5;
  --color-surface: #f5e6c8;
  --color-text: #37423d;
  --color-text-light: #5a6360;
  --color-accent: #d7816a;
  --color-accent-dark: #c06a52;
  --color-accent-light: #e09d8a;
  --color-teal: #83c5be;
  --color-teal-dark: #6ab0a8;
  --color-teal-light: #a8d8d3;
  --color-white: #FFFFFF;
  --color-footer-bg: #37423d;
  --color-footer-text: #E8E0D8;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1100px;
  --nav-height: 72px;

  /* Effects */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(55, 66, 61, 0.06);
  --shadow-md: 0 8px 30px rgba(55, 66, 61, 0.1);
  --shadow-lg: 0 16px 48px rgba(55, 66, 61, 0.14);
  --shadow-glow: 0 4px 24px rgba(215, 129, 106, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: var(--space-sm);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--alt {
  background-color: var(--color-white);
}

.section--teal {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: var(--color-white);
}

.section--teal h2,
.section--teal h3,
.section--teal .section__subtitle {
  color: var(--color-white);
}

.section--teal .section__title::after {
  background: rgba(255, 255, 255, 0.5);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__title {
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section__subtitle {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-top: var(--space-sm);
}

/* ============================================
   WAVE DIVIDERS
   ============================================ */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave-divider--flip svg {
  transform: scaleY(-1);
}

@media (max-width: 768px) {
  .wave-divider svg {
    height: 50px;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background-color: rgba(253, 240, 213, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__logo img {
  height: 44px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.02em;
}

.nav__links {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-lg);
  background: rgba(253, 240, 213, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform var(--transition);
  padding: var(--space-xl);
  display: flex;
  align-items: flex-start;
  z-index: 1000;
}

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

.nav__link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-heading);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
  border-radius: 1px;
}

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

.nav__link:hover {
  color: var(--color-accent-dark);
}

.nav__cta {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: var(--space-sm);
  box-shadow: var(--shadow-glow);
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(215, 129, 106, 0.35);
}

/* Hamburger — always visible */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.nav__hamburger:hover {
  background: rgba(55, 66, 61, 0.06);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(55, 66, 61, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
}

.nav__overlay--visible {
  display: block;
}

/* ============================================
   HERO — Animated Gradient & Floating Shapes
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-xl);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Floating decorative shapes */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(131, 197, 190, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(215, 129, 106, 0.12) 0%, transparent 70%);
  bottom: -50px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__logo {
  width: min(380px, 75vw);
  margin: 0 auto var(--space-lg);
  animation: heroFadeUp 1s ease-out;
  mix-blend-mode: multiply;
}

.hero__slogan {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  color: var(--color-text-light);
  font-style: italic;
  font-weight: 400;
  margin-bottom: var(--space-xl);
  animation: heroFadeUp 1s ease-out 0.2s both;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1s ease-out 0.4s both;
}

/* ============================================
   BUTTONS — Modern Gradient Style
   ============================================ */
.btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(215, 129, 106, 0.4);
}

.btn--primary:active {
  transform: translateY(-1px);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-heading);
  border-color: var(--color-heading);
}

.btn--outline:hover {
  background: var(--color-heading);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

/* ============================================
   ABOUT — With Decorative Accent
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__text h2 {
  margin-bottom: var(--space-md);
}

.about__text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin-top: var(--space-sm);
  border-radius: 2px;
}

.about__text p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.about__highlight {
  color: var(--color-primary) !important;
  font-weight: 600;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Decorative accent behind image */
.about__image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-teal-light), var(--color-teal));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.about__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}

.about__image-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

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

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform var(--transition-slow);
  display: block;
}

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

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

.gallery__item--wide img {
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }

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

/* ============================================
   MENU — Glassmorphism Cards
   ============================================ */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.menu__card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

/* Accent stripe at top of card */
.menu__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-teal));
  opacity: 0;
  transition: opacity var(--transition);
}

.menu__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(215, 129, 106, 0.2);
}

.menu__card:hover::before {
  opacity: 1;
}

.menu__icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.menu__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
}

.menu__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.menu__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1024px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .menu__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ============================================
   FIND US — Bold Teal Section
   ============================================ */
.schedule__wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.schedule__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.schedule__table thead {
  background: rgba(255, 255, 255, 0.2);
}

.schedule__table th {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  font-size: 0.95rem;
  color: var(--color-white);
}

.schedule__table td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.schedule__table tbody tr:last-child td {
  border-bottom: none;
}

.schedule__table tbody tr {
  transition: background-color var(--transition);
}

.schedule__table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.schedule__day {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-white);
}

.schedule__note {
  text-align: center;
  margin-top: var(--space-md);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .schedule__table th,
  .schedule__table td {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.85rem;
  }
}

/* ============================================
   CONTACT — Glassmorphism Form
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__info h2 {
  margin-bottom: var(--space-md);
}

.contact__info h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin-top: var(--space-sm);
  border-radius: 2px;
}

.contact__info p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

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

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text);
  font-size: 1rem;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.contact__detail:hover {
  background: rgba(131, 197, 190, 0.08);
}

.contact__detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-teal-dark);
}

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

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

/* Form — Glassmorphism */
.contact__form {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.form__group {
  margin-bottom: var(--space-md);
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid rgba(55, 66, 61, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(253, 240, 213, 0.5);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(131, 197, 190, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.5;
}

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

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6360' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__submit {
  width: 100%;
  padding: 0.95rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-glow);
}

.form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(215, 129, 106, 0.4);
}

.form__submit:active {
  transform: translateY(0);
}

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-lg);
}

.form__success.is-visible {
  display: block;
}

.form__success-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.form__success h3 {
  margin-bottom: var(--space-xs);
}

.form__success p {
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer__logo img {
  height: 56px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.85;
}

.footer__tagline {
  font-style: italic;
  color: rgba(232, 224, 216, 0.7);
  font-size: 0.95rem;
  margin-top: var(--space-xs);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(131, 197, 190, 0.3);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-footer-text);
}

.footer__divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer__bottom {
  font-size: 0.85rem;
  color: rgba(232, 224, 216, 0.5);
}

/* ============================================
   ANIMATIONS — Scroll Reveals
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }
.fade-in--delay-5 { transition-delay: 0.5s; }
.fade-in--delay-6 { transition-delay: 0.6s; }

/* ============================================
   SCROLL INDICATOR (Hero)
   ============================================ */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-light);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll-hint svg {
  width: 20px;
  height: 20px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .hero {
    min-height: 92vh;
    min-height: 92dvh;
  }

  .hero__logo {
    width: min(300px, 70vw);
  }

  .hero::before {
    width: 250px;
    height: 250px;
    top: -60px;
    right: -60px;
  }

  .hero::after {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -50px;
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }
}
