/* ========================================
   FRUITLAND PARK CAFE — STYLESHEET
   Charcoal + Coral | Vibrant Modern
   ======================================== */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  --charcoal: #1A1A2E;
  --charcoal-light: #2D2D44;
  --charcoal-muted: #3D3D5C;
  --coral: #E8634A;
  --coral-light: #F2826C;
  --coral-pale: #FFF0ED;
  --coral-ghost: #FFF7F5;
  --white: #FFFFFF;
  --off-white: #F7F7F7;
  --gray-100: #F0F0F5;
  --gray-200: #E2E2EA;
  --gray-300: #C4C4D0;
  --gray-500: #8888A0;
  --gray-700: #555570;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(26,26,46,0.06), 0 1px 2px rgba(26,26,46,0.04);
  --shadow-md: 0 4px 16px rgba(26,26,46,0.08), 0 2px 6px rgba(26,26,46,0.04);
  --shadow-lg: 0 12px 40px rgba(26,26,46,0.12), 0 4px 12px rgba(26,26,46,0.06);
  --shadow-coral: 0 8px 30px rgba(232,99,74,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--off-white);
  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; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* --- GEOMETRIC BACKGROUND SHAPES --- */
.geo-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

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

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

.geo-shape.circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--coral);
  bottom: 20%;
  left: -80px;
}

.geo-shape.square-1 {
  width: 180px;
  height: 180px;
  background: var(--charcoal);
  top: 40%;
  right: 5%;
  transform: rotate(45deg);
  opacity: 0.025;
}

.geo-shape.triangle-1 {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid var(--coral);
  top: 60%;
  left: 8%;
  opacity: 0.03;
}

.geo-shape.dot-grid {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--charcoal) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  top: 25%;
  left: 3%;
  opacity: 0.06;
}

/* --- TYPOGRAPHY --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

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

.section-title .highlight {
  color: var(--coral);
  position: relative;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--coral-pale);
  border-radius: 3px;
  z-index: -1;
}

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

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232,99,74,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

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

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247,247,247,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,26,46,0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--charcoal);
}

.logo:hover .logo-text { color: var(--coral); }

.logo-text { transition: color var(--transition); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--coral);
  background: var(--coral-pale);
}

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

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

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: var(--coral-pale);
  color: var(--coral);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active { display: block; }

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.mobile-nav-link:last-child { border-bottom: none; }

.mobile-nav-link:hover { color: var(--coral); }

.mobile-nav-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 24px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-sm);
  text-align: center;
  width: 100%;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--coral-pale) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: -4px;
  right: -4px;
  height: 10px;
  background: var(--coral-pale);
  border-radius: 4px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--charcoal);
}

.stat-label {
  font-size: 13px;
  color: var(--gray-500);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-img-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 600/720;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.float-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}

.float-card-text {
  display: flex;
  flex-direction: column;
}

.float-card-text strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.float-card-text span {
  font-size: 13px;
  color: var(--gray-500);
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* --- ABOUT --- */
.about {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  z-index: 1;
}

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

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--off-white);
}

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

.about-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--coral);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-coral);
}

.about-content .section-title {
  margin-top: 8px;
}

.about-text {
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 14px;
  color: var(--gray-500);
}

/* --- MENU --- */
.menu {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.menu-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral-pale);
}

.menu-card--accent {
  background: var(--charcoal);
}

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

.menu-card--accent .menu-card-desc {
  color: var(--gray-300);
}

.menu-card--accent .menu-card-list li {
  color: var(--gray-300);
  border-color: var(--charcoal-light);
}

.menu-card--accent .menu-card-list li::before {
  color: var(--coral);
}

.menu-card-visual {
  overflow: hidden;
  aspect-ratio: 400/300;
}

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

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

.menu-card-body {
  padding: 28px;
}

.menu-card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-pale);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.menu-card--accent .menu-card-tag {
  background: rgba(232,99,74,0.15);
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.menu-card-desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 18px;
}

.menu-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-card-list li {
  font-size: 14px;
  color: var(--gray-700);
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 8px;
}

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

.menu-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* --- GALLERY --- */
.gallery {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  z-index: 1;
}

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

.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.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}

.gallery-item--large {
  grid-column: span 7;
  aspect-ratio: 600/500;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
  aspect-ratio: 400/300;
}

.gallery-item--tall {
  grid-column: span 5;
  aspect-ratio: 400/500;
}

/* --- VISIT --- */
.visit {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

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

.visit-text {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-card:hover {
  border-color: var(--coral-pale);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card div {
  display: flex;
  flex-direction: column;
}

.contact-card strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.contact-card span {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Hours Card */
.hours-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 16px;
}

.hours-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--charcoal-light);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-300);
  font-size: 14px;
}

.hours-time {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
}

.hours-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--charcoal-light);
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

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

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

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-left .section-title {
  margin-top: 8px;
}

.contact-desc {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--off-white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--coral-pale);
}

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

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

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--coral-pale);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.6;
}

.form-success strong {
  font-family: var(--font-heading);
}

/* --- FOOTER --- */
.footer {
  background: var(--charcoal);
  color: var(--gray-300);
  padding: 64px 0 0;
  position: relative;
  z-index: 1;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 300px;
}

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

.footer-links strong,
.footer-contact strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-links a,
.footer-contact a {
  font-size: 14px;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--coral);
}

.footer-contact span {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding: 24px 0;
}

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

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-700);
}

/* --- 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; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  }

  .menu-grid {
    gap: 20px;
  }

  .gallery-item--large {
    grid-column: span 8;
  }

  .gallery-item--tall {
    grid-column: span 4;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
    max-width: 500px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 36px;
  }
}

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

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero::before { display: none; }

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

  .hero-image { order: -1; }

  .hero-img-wrapper {
    aspect-ratio: 4/3;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-float-card {
    left: 16px;
    bottom: 20px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-wave svg { height: 50px; }

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

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

  .gallery-item--large,
  .gallery-item--tall {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

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

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

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

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

  .hero-title {
    font-size: 2.2rem;
  }

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

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-divider { display: none; }

  .about-img-accent {
    right: 0;
    bottom: -20px;
  }

  .about-badge {
    top: -12px;
    left: -8px;
  }

  .contact-wrapper {
    padding: 24px;
  }

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

  .gallery-item--large,
  .gallery-item--tall {
    grid-column: span 1;
  }
}
