/* ============================================
   PESCADO KW — Redesigned Website
   ============================================ */

:root {
  --ocean-deep: #0B2447;
  --ocean-mid: #19376D;
  --ocean-light: #1B6FA8;
  --teal: #0EA5A0;
  --teal-light: #14C8C2;
  --sand: #FFF8F0;
  --sand-dark: #F0E6D4;
  --coral: #FF6B35;
  --coral-dark: #E55A25;
  --gold: #FFB627;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A68;
  --text-light: #7A7A98;
  --bg-light: #F7F8FC;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-pad: clamp(64px, 10vw, 120px);
  --container-max: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(11, 36, 71, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 36, 71, 0.1);
  --shadow-lg: 0 20px 60px rgba(11, 36, 71, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--ocean-deep);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* --- Section Common --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-tag.light {
  color: var(--teal-light);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--ocean-deep);
  margin-bottom: 16px;
}

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-desc {
  color: var(--text-mid);
  font-size: 1.1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(11, 36, 71, 0.08);
  padding: 8px 0;
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  z-index: 1001;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  transition: var(--transition);
}

.nav.scrolled .nav-logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.nav.scrolled .nav-links a {
  color: var(--text-mid);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav.scrolled .nav-links a:hover {
  color: var(--ocean-deep);
  background: var(--sand-dark);
}

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
}

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

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
  background: var(--ocean-deep);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 36, 71, 0.75) 0%,
    rgba(11, 36, 71, 0.6) 40%,
    rgba(11, 36, 71, 0.85) 100%
  );
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
  fill: var(--sand);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 140px 24px 120px;
}

.hero-logo-wrap {
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease;
}

.hero-logo {
  height: 80px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.hero-meta-item svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.hero-meta-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

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

.about-images {
  position: relative;
}

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

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

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--sand);
}

.about-img-secondary img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.about-badge-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--coral);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.3;
}

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

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

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

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-dark);
  border-radius: 14px;
  flex-shrink: 0;
  color: var(--ocean-light);
}

.feature div {
  display: flex;
  flex-direction: column;
}

.feature strong {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ocean-deep);
}

.feature span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--sand-dark);
  background: var(--white);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-btn.active {
  background: var(--ocean-deep);
  border-color: var(--ocean-deep);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

.menu-card-img.no-img {
  height: 200px;
  background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-light));
}

.menu-card-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 1.1rem;
}

.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--ocean-deep);
  color: var(--white);
}

.menu-badge.accent {
  background: linear-gradient(135deg, var(--gold), var(--coral));
}

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

.menu-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-card-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ocean-deep);
}

.menu-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--coral);
  white-space: nowrap;
}

.menu-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

.menu-card.hidden {
  display: none;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

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

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

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

/* ============================================
   SOCIAL
   ============================================ */
.social {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.social-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.social-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(11, 36, 71, 0.55), rgba(255, 107, 53, 0.45));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-tile:hover img {
  transform: scale(1.06);
}

.social-tile:hover .social-tile-overlay,
.social-tile:focus-visible .social-tile-overlay {
  opacity: 1;
}

.social-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ocean-deep);
  background: var(--white);
  border: 1px solid var(--sand-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-btn-ig {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--gold));
  border-color: transparent;
}

.social-btn-ig:hover {
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.stars {
  display: flex;
  gap: 2px;
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--ocean-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ocean-deep);
}

.review-author div span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.reviews-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.reviews-platforms a {
  color: var(--teal);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--teal);
  font-size: 0.85rem;
}

.reviews-platforms a:hover {
  background: var(--teal);
  color: var(--white);
}

/* ============================================
   ORDER
   ============================================ */
.order {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

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

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

.order-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 36, 71, 0.92) 0%,
    rgba(25, 55, 109, 0.88) 100%
  );
}

.order-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.order-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.order-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.order-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--white);
}

.order-card svg {
  opacity: 0.7;
}

.order-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.order-card:hover svg {
  opacity: 1;
}

.order-card-featured {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.4);
}

.order-card-featured:hover {
  background: rgba(255, 107, 53, 0.35);
}

.order-card strong {
  font-size: 1.05rem;
}

.order-card span:last-child {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

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

.location-details {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.loc-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  color: var(--ocean-light);
}

.location-item strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.location-item span,
.location-item a {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.location-item a:hover {
  color: var(--coral);
}

.location-item em {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
  font-style: italic;
}

.location-map {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ocean-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-wrap {
  flex-shrink: 0;
}

.footer-logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--coral);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col strong {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-col a,
.footer-col span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 50px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-wide {
    grid-column: span 1;
  }
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-images {
    max-width: 420px;
    margin: 0 auto;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 320px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--ocean-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
  }

  .nav-links a:hover {
    color: var(--white) !important;
    background: none !important;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center !important;
    padding: 14px 24px !important;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .hero-content {
    padding: 120px 24px 100px;
  }

  .hero-logo {
    height: 60px;
  }

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

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

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

  .menu-filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-actions {
    gap: 10px;
  }

  .social-btn {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

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

  .reviews-rating {
    flex-direction: column;
    gap: 6px;
  }

  .order-options {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .fcc-card {
    padding: 32px 24px;
  }

  .fcc-popup {
    max-height: 94vh;
  }

  .fcc-popup-img {
    min-height: 160px;
    flex-basis: 100%;
  }

  .fcc-popup-content {
    padding: 28px 24px;
  }
}

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

  .about-img-secondary {
    right: -10px;
    bottom: -20px;
    width: 50%;
  }

  .about-badge {
    top: -10px;
    left: -10px;
    padding: 14px 18px;
  }

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

/* ============================================
   FRESH CATCH CLUB (email capture)
   ============================================ */
.fcc {
  padding: calc(var(--section-pad) * 0.6) 0;
  background: var(--sand);
}

.fcc-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--ocean-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  background-image: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
}

.fcc-text {
  flex: 1 1 360px;
}

.fcc-text .section-tag {
  color: var(--teal-light);
}

.fcc-text .section-title {
  color: var(--white);
  margin-bottom: 12px;
}

.fcc-sub {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 440px;
}

.fcc-form {
  flex: 1 1 380px;
  max-width: 440px;
}

.fcc-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.fcc-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fcc-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.fcc-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.fcc-input:focus {
  outline: none;
  border-color: var(--teal-light);
  background: rgba(255, 255, 255, 0.18);
}

.fcc-submit {
  width: 100%;
  padding: 14px 24px;
}

.fcc-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.fcc-success,
.fcc-error {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.fcc-success {
  background: rgba(14, 165, 160, 0.2);
  color: var(--teal-light);
}

.fcc-error {
  background: rgba(255, 107, 53, 0.2);
  color: var(--coral);
}

.fcc-form.fcc-submitted .fcc-fields,
.fcc-form.fcc-submitted .fcc-note {
  display: none;
}

/* --- Footer inline signup --- */
.fcc-form-footer {
  max-width: 320px;
  margin: 18px 0 20px;
}

.fcc-footer-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.fcc-footer-row {
  display: flex;
  gap: 8px;
}

.fcc-form-footer .fcc-input {
  padding: 12px 16px;
  font-size: 0.88rem;
}

.fcc-footer-submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--coral);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.fcc-footer-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.fcc-form-footer.fcc-submitted .fcc-footer-row,
.fcc-form-footer.fcc-submitted .fcc-footer-label {
  display: none;
}

/* --- Popup --- */
.fcc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 36, 71, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  animation: fccFadeIn 0.3s ease forwards;
}

.fcc-popup-overlay[hidden] {
  display: none;
}

@keyframes fccFadeIn {
  to { opacity: 1; }
}

.fcc-popup {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: translateY(16px);
  animation: fccPopIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fccPopIn {
  to { transform: translateY(0); }
}

.fcc-popup-img {
  flex: 1 1 260px;
  min-height: 220px;
  position: relative;
}

.fcc-popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fcc-popup-content {
  flex: 1 1 320px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fcc-popup-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--ocean-deep);
  margin-bottom: 10px;
}

.fcc-popup-sub {
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.fcc-form-popup .fcc-input {
  color: var(--text-dark);
  background: var(--bg-light);
  border-color: var(--sand-dark);
  margin-bottom: 12px;
}

.fcc-form-popup .fcc-input::placeholder {
  color: var(--text-light);
}

.fcc-form-popup .fcc-input:focus {
  border-color: var(--teal);
  background: var(--white);
}

.fcc-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(11, 36, 71, 0.06);
  color: var(--ocean-deep);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.fcc-popup-close:hover {
  background: rgba(11, 36, 71, 0.12);
}

.fcc-popup-close:focus-visible,
.fcc-input:focus-visible,
.fcc-footer-submit:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-mid);
  line-height: 1.65;
}

.faq-item p a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.faq-item p a:hover {
  text-decoration: underline;
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Mobile polish --- */
@media (max-width: 768px) {
  /* Nav already shows the logo — the hero copy deserves the space */
  .hero-logo-wrap {
    display: none;
  }

  /* Comfortable thumb targets for the menu filter chips */
  .filter-btn {
    min-height: 44px;
    padding: 10px 18px;
  }
}

@media (max-width: 768px) {
  /* Full-screen nav overlay — the 280px drawer left clipped hero text
     visible beside it, which read as broken */
  .nav-links {
    width: 100%;
    background: rgba(11, 36, 71, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    gap: 10px;
    box-shadow: none;
  }

  .nav-links a {
    font-size: 1.3rem;
    padding: 12px 28px;
  }

  .nav-links .nav-cta {
    margin-top: 14px;
  }
}
