/* ============================================
   Blendz Juice Bar — Styles
   ============================================ */

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

:root {
  --coral: #F9756E;
  --coral-light: #FDEDEB;
  --coral-lighter: #FFF5F4;
  --charcoal: #2D2D2D;
  --charcoal-light: #4A4A4A;
  --cream: #FDF8F5;
  --cream-dark: #F7F0EB;
  --white: #FFFFFF;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --text-lighter: #999999;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
  --shadow-md: 0 8px 30px rgba(45, 45, 45, 0.08);
  --shadow-lg: 0 20px 60px rgba(45, 45, 45, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg-cream, var(--cream));
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 16px;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(249, 117, 110, 0.1);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
}
.logo-text {
  letter-spacing: -0.02em;
}
.logo-dot {
  color: var(--coral);
}
.logo-text--light .logo-dot {
  color: var(--coral);
}

/* Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger {
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.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);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  border-radius: 100px;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--coral);
  background: var(--coral-light);
}
.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: #e8645d;
  color: var(--white) !important;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-link {
    font-size: 1.1rem;
    padding: 12px 16px;
    width: 100%;
  }
  .nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 16px;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-overlay.active {
    display: block;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(249, 117, 110, 0.3);
}
.btn-primary:hover {
  background: #e8645d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 117, 110, 0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid rgba(45, 45, 45, 0.15);
}
.btn-secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
}

/* ---------- Section Shared ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em {
  color: var(--coral);
  font-style: italic;
}
.section-header--center {
  text-align: center;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 60px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--coral-lighter) 50%, var(--cream) 100%);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(249, 117, 110, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 117, 110, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-visual {
  position: relative;
  height: 600px;
}
.hero-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  top: 30px;
  right: 30%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-badge svg {
  color: #FBBF24;
}

.hero-content {
  padding: 20px 0;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 24px;
}
.tag-line {
  width: 40px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-headline em {
  color: var(--coral);
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-divider {
  position: relative;
  padding-left: 32px;
}
.stat-divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 1px;
  height: 40px;
  background: rgba(45, 45, 45, 0.15);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    height: 400px;
    order: -1;
  }
  .hero-content {
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    height: 300px;
  }
  .hero-stats {
    gap: 20px;
  }
}

/* ---------- Menu ---------- */
.menu {
  padding: 100px 0;
  background: var(--cream);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  margin-bottom: 60px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.menu-card--feature {
  grid-column: 1 / 8;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.menu-card--feature .menu-card-img {
  border-radius: var(--radius) 0 0 var(--radius);
}
.menu-card:not(.menu-card--feature) {
  grid-column: span 4;
}
.menu-card-img {
  height: 260px;
  overflow: hidden;
}
.menu-card--feature .menu-card-img {
  height: 100%;
  min-height: 340px;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}
.menu-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-light);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}
.menu-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}
.menu-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.menu-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--coral-light) 0%, var(--coral-lighter) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.menu-cta p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .menu-card--feature {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
  .menu-card--feature .menu-card-img {
    border-radius: var(--radius) var(--radius) 0 0;
    min-height: 240px;
  }
  .menu-card:not(.menu-card--feature) {
    grid-column: span 6;
  }
}
@media (max-width: 600px) {
  .menu-card:not(.menu-card--feature) {
    grid-column: 1 / -1;
  }
  .menu-cta {
    padding: 32px 24px;
  }
}

/* ---------- About ---------- */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 600px;
}
.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-img-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}
.about-img-1 img,
.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content {
  padding: 20px 0;
}
.about-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--coral-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-stack {
    height: 400px;
  }
}

/* ---------- Why Us ---------- */
.why-us {
  padding: 100px 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--coral-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.why-card:hover .why-card-icon {
  background: var(--coral);
}
.why-card:hover .why-card-icon svg {
  stroke: var(--white);
}
.why-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.why-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

/* ---------- Gallery ---------- */
.gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.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.05);
}
.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 1 / 5; grid-row: 2 / 3; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item {
    height: 220px;
  }
  .gallery-item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 280px;
  }
  .gallery-item:nth-child(6) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

/* ---------- Visit / Contact ---------- */
.visit {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--coral-lighter) 100%);
}
.visit-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-info {
  padding: 20px 0;
}
.visit-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
  box-shadow: var(--shadow-sm);
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-lighter);
  margin-bottom: 2px;
}
.contact-item span,
.contact-item a {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-item a:hover {
  color: var(--coral);
}
.hours {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.hours-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.06);
  font-size: 0.95rem;
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row span:first-child {
  color: var(--text-light);
}
.hours-row span:last-child {
  font-weight: 600;
  color: var(--charcoal);
}

/* Form */
.visit-form-wrapper {
  position: sticky;
  top: 100px;
}
.visit-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}
.form-input::placeholder {
  color: var(--text-lighter);
}
.form-input:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(249, 117, 110, 0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #ECFDF5;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: #065F46;
  font-weight: 500;
}
.form-success svg {
  color: #10B981;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .visit-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .visit-form-wrapper {
    position: static;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  max-width: 280px;
}
.logo-text--light {
  color: var(--white);
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--coral);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--coral);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ---------- 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; }
.reveal-delay-4 { transition-delay: 0.4s; }
