/* ========================================
   ANGEL'S BAKERY & CAFE — STYLESHEET
   Bold Editorial · Teal + Slate Grey
======================================== */

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1e293b;
  background-color: #fafaf9;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* --- Section Tags --- */
.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #475569;
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 4rem;
}

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

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.0);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}

.nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #f5f5f4;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-brand-icon {
  color: #2dd4bf;
}

.nav-brand-accent {
  color: #2dd4bf;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 245, 244, 0.75);
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: #f5f5f4;
}

.nav-cta {
  background: #0d9488;
  color: #f5f5f4 !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.25s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: #0f766e;
  transform: translateY(-1px);
}

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

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5f5f4;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(2, 6, 23, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #f5f5f4;
  transition: color 0.25s ease;
}

.mobile-nav-link:hover {
  color: #2dd4bf;
}

.mobile-nav-cta {
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: #0d9488;
  color: #f5f5f4;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-weight: 600;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f172a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.55) 0%,
    rgba(2, 6, 23, 0.45) 40%,
    rgba(2, 6, 23, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2dd4bf;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 100px;
  background: rgba(45, 212, 191, 0.08);
}

.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #f5f5f4;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-accent {
  color: #5eead4;
  font-style: italic;
  font-weight: 600;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245, 245, 244, 0.7);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: #0d9488;
  color: #f5f5f4;
}

.btn-primary:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: #f5f5f4;
  border: 1.5px solid rgba(245, 245, 244, 0.35);
}

.btn-outline-light:hover {
  border-color: #f5f5f4;
  background: rgba(245, 245, 244, 0.08);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

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

.btn-icon {
  flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5f5f4;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(245, 245, 244, 0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(245, 245, 244, 0.15);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 245, 244, 0.4);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(45, 212, 191, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* --- Divider --- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #d6d3d1, transparent);
}

.divider-icon {
  color: #0d9488;
  flex-shrink: 0;
}

/* --- Menu Section --- */
.menu-section {
  padding: 7rem 0;
  background: #fafaf9;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.menu-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.1);
}

.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.15), transparent 50%);
}

.menu-card-body {
  padding: 1.75rem;
}

.menu-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.menu-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
}

.menu-card-icon {
  color: #0d9488;
  flex-shrink: 0;
}

.menu-card-desc {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.menu-card-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-card-items li {
  font-size: 0.875rem;
  color: #334155;
  padding-left: 1.25rem;
  position: relative;
}

.menu-card-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  background: #0d9488;
  border-radius: 50%;
}

/* --- About Section --- */
.about-section {
  padding: 7rem 0;
  background: #0f172a;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.about-image {
  position: relative;
}

.about-image-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

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

.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border: 4px solid #0f172a;
}

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

.about-badge {
  position: absolute;
  top: -1.5rem;
  left: 1rem;
  background: #0d9488;
  color: #f5f5f4;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.about-badge-line {
  width: 24px;
  height: 1px;
  background: rgba(245, 245, 244, 0.4);
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content .section-title {
  color: #f5f5f4;
}

.about-content .text-teal {
  color: #2dd4bf;
}

.about-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #0d9488, #2dd4bf);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.0625rem;
  color: rgba(245, 245, 244, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  color: #2dd4bf;
  flex-shrink: 0;
  margin-top: 0.15rem;
  background: rgba(45, 212, 191, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
}

.about-feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f5f5f4;
  display: block;
}

.about-feature-desc {
  font-size: 0.875rem;
  color: rgba(245, 245, 244, 0.5);
  display: block;
  margin-top: 0.2rem;
}

/* --- Gallery --- */
.gallery-section {
  padding: 7rem 0;
  background: #fafaf9;
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f5f5f4;
}

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 6 / 8; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 8 / 13; grid-row: 2 / 3; }

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.88) 0%, rgba(13, 148, 136, 0.75) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content .section-tag {
  margin-bottom: 1.25rem;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #f5f5f4;
  margin-bottom: 1.25rem;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(245, 245, 244, 0.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* --- Visit Section --- */
.visit-section {
  padding: 7rem 0;
  background: #f1f5f9;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.visit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.09);
}

.visit-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  margin-bottom: 1.25rem;
}

.visit-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.visit-card-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.visit-card-text a,
.visit-link {
  color: #0d9488;
  font-weight: 500;
  transition: color 0.2s ease;
}

.visit-card-text a:hover,
.visit-link:hover {
  color: #0f766e;
  text-decoration: underline;
}

.visit-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  transition: color 0.2s ease;
}

.visit-card-link:hover {
  color: #0d9488;
}

.visit-hours-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 0.4rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Contact Section --- */
.contact-section {
  padding: 7rem 0;
  background: #fafaf9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #0d9488, #2dd4bf);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.contact-text {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  color: #334155;
}

.contact-detail-icon {
  color: #0d9488;
  flex-shrink: 0;
}

.contact-detail a {
  color: #0d9488;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: #0f766e;
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.07);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  background: #ffffff;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

/* Form Success */
.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success-icon {
  color: #0d9488;
  margin: 0 auto 1rem;
}

.form-success-title {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.form-success-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

.form-success-text a {
  color: #0d9488;
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: #020617;
  padding: 5rem 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f5f5f4;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  color: #2dd4bf;
}

.footer-logo-accent {
  color: #2dd4bf;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(245, 245, 244, 0.5);
  line-height: 1.75;
  max-width: 300px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 245, 244, 0.35);
  margin-bottom: 1.25rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a {
  font-size: 0.9375rem;
  color: rgba(245, 245, 244, 0.65);
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #2dd4bf;
}

.footer-address {
  font-size: 0.9375rem;
  color: rgba(245, 245, 244, 0.65);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-phone,
.footer-email {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.footer-phone a,
.footer-email a {
  color: #2dd4bf;
  transition: color 0.2s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
  color: #5eead4;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(245, 245, 244, 0.3);
}

.footer-location {
  font-size: 0.8125rem;
  color: rgba(245, 245, 244, 0.3);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
  }

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

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

  .about-grid {
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .gallery-item:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 7 / 10; grid-row: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1 / 2; }
  .gallery-item:nth-child(4) { grid-column: 1 / 7; grid-row: 2 / 3; }
  .gallery-item:nth-child(5) { grid-column: 7 / 13; grid-row: 2 / 3; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-accent {
    width: 60%;
    bottom: -1.5rem;
    right: -0.5rem;
  }

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

  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: auto; }

  .gallery-item:nth-child(1) .gallery-item-overlay,
  .gallery-item:nth-child(2) .gallery-item-overlay,
  .gallery-item:nth-child(3) .gallery-item-overlay,
  .gallery-item:nth-child(4) .gallery-item-overlay,
  .gallery-item:nth-child(5) .gallery-item-overlay {
    opacity: 1;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

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

  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}
