/* ============================================
   MARISOL — Coastal Seafood & Raw Bar
   Design System & Complete Stylesheet
   ============================================ */

/* --- Design Tokens --- */
:root {
  --ocean: #1a6985;
  --ocean-light: #e8f4f8;
  --ocean-dark: #145570;
  --ocean-rgb: 26, 105, 133;
  --sand: #faf8f4;
  --sand-dark: #f0ece4;
  --coral: #e8705a;
  --coral-light: #fbe8e4;
  --coral-dark: #d45a44;
  --seafoam: #7ec8b5;
  --seafoam-light: #e5f5f0;
  --navy: #0d2b3e;
  --navy-light: #1a3d55;
  --warm-sand: #d4c5a9;
  --warm-sand-light: #e8dcc8;
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-light: #8a8a8a;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.5s ease;
  --font-heading: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1200px;
  --container-wide: 1400px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  --spacing-3xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  color: var(--text-primary);
  background: var(--sand);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 400;
}

::selection {
  background: rgba(var(--ocean-rgb), 0.15);
  color: var(--navy);
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.section-label-light {
  color: var(--seafoam);
}

.section-title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.2rem);
  color: var(--navy);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.01em;
}

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

.section-subtitle {
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232, 112, 90, 0.3);
}

.btn-ocean {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.btn-ocean:hover {
  background: var(--ocean-dark);
  border-color: var(--ocean-dark);
}

.btn-header {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
}
.btn-header:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

.btn-full {
  width: 100%;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--coral);
}

/* --- Promo Banner --- */
.promo-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 0.7rem 2.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 1001;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.promo-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.promo-banner span {
  color: var(--coral);
  font-weight: 700;
}
.promo-banner .promo-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color var(--transition-fast);
}
.promo-banner .promo-close:hover {
  color: var(--white);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 1rem 0;
}

.header.has-promo {
  top: 37px;
}

.header.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  padding: 0.6rem 0;
  top: 0 !important;
}

.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
  transition: color var(--transition-base);
}

.header.scrolled .logo {
  color: var(--navy);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav {
  display: none;
}

@media (min-width: 992px) {
  .nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.header.scrolled .nav-link {
  color: var(--text-secondary);
}

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

.header.scrolled .nav-link:hover {
  color: var(--navy);
}

.header .btn-header {
  display: none;
}

@media (min-width: 992px) {
  .header .btn-header {
    display: inline-flex;
  }
}

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

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header.scrolled .mobile-toggle span {
  background: var(--navy);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--navy);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--navy);
}

/* --- Mobile Overlay --- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  display: block;
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--ocean);
}

.mobile-nav .btn {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-top: 1rem;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 248, 244, 0.25) 0%,
    rgba(250, 248, 244, 0.1) 35%,
    rgba(13, 43, 62, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 3rem + 5vw, 7rem);
  color: var(--white);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: heroScroll 2s ease-in-out infinite;
}

@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* --- Story --- */
.story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
  }
}

.story-content {
  max-width: 540px;
}

.story-lead {
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.story-signature {
  margin-top: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signature-line {
  width: 40px;
  height: 2px;
  background: var(--coral);
}

.signature-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ocean);
}

.story-images {
  position: relative;
  min-height: 450px;
}

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

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-img:hover img {
  transform: scale(1.03);
}

.story-img-main {
  width: 85%;
  height: 380px;
  border-radius: var(--radius-lg);
}

.story-img-accent {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 45%;
  height: 200px;
  border-radius: var(--radius-md);
  border: 4px solid var(--white);
  z-index: 2;
}

@media (max-width: 767px) {
  .story-img-main {
    width: 100%;
    height: 300px;
  }
  .story-img-accent {
    width: 50%;
    height: 160px;
    bottom: -10px;
    right: 0;
  }
}

/* --- Menu Section --- */
.menu-section {
  background: var(--sand);
}

.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--spacing-xl);
}

.menu-filter {
  padding: 0.55rem 1.25rem;
  border: 1.5px solid var(--warm-sand);
  border-radius: var(--radius-xl);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.menu-filter:hover {
  border-color: var(--ocean);
  color: var(--ocean);
}

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

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

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

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

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

.menu-card-wide {
  grid-column: 1 / -1;
}

.menu-card-img {
  height: 240px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.menu-card-body {
  padding: var(--spacing-lg);
}

.menu-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-body);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.menu-items-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .menu-items-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-items-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.menu-item {
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.menu-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.menu-items-row .menu-item {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
  gap: 0.75rem;
}

.menu-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
}

.menu-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--coral);
  white-space: nowrap;
}

.menu-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- Raw Bar Feature --- */
.rawbar-feature {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

.rawbar-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .rawbar-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
}

.rawbar-image {
  height: 350px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .rawbar-image {
    height: auto;
  }
}

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

.rawbar-content {
  padding: var(--spacing-xl) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rawbar-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--spacing-md);
  font-size: 1.05rem;
  line-height: 1.8;
}

.rawbar-highlights {
  display: flex;
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  flex-wrap: wrap;
}

.rawbar-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.highlight-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--seafoam);
}

.highlight-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* --- Gallery --- */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 240px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.gallery-item-tall {
  grid-row: span 2;
  height: 100%;
  min-height: 480px;
}

@media (max-width: 767px) {
  .gallery-item {
    height: 180px;
  }
  .gallery-item-tall {
    min-height: 360px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,43,62,0.3) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 43, 62, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
}

.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

/* --- Testimonials --- */
.testimonials-section {
  background: var(--ocean-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f4b942;
  margin-bottom: var(--spacing-md);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: var(--spacing-md);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonial-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* --- Seasonal Notice --- */
.seasonal-notice {
  background: var(--ocean-light);
  border-top: 1px solid rgba(var(--ocean-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--ocean-rgb), 0.1);
  padding: 1rem 0;
  text-align: center;
}

.seasonal-notice p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ocean-dark);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}

.seasonal-notice svg {
  color: var(--ocean);
  flex-shrink: 0;
}

/* --- Trust Badges --- */
.trust-section {
  background: var(--white);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-base);
  border: 1.5px solid transparent;
}

.trust-badge:hover {
  border-color: rgba(var(--ocean-rgb), 0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.25rem;
}

.trust-rating {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.trust-source {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-count {
  font-size: 0.78rem;
  color: var(--text-light);
}

.trust-badge-award {
  gap: 0.5rem;
}

.trust-badge-award svg {
  color: var(--ocean);
}

.trust-award-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

/* --- Instagram Feed --- */
.instagram-section {
  background: var(--sand);
  padding-bottom: var(--spacing-xl);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.insta-post {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.insta-post:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.insta-post:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.insta-post:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay svg {
  color: var(--coral);
}

.insta-overlay svg path {
  fill: var(--coral);
}

.insta-overlay span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

/* --- Press & Awards --- */
.press-section {
  background: var(--white);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.press-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .press-logos {
    grid-template-columns: repeat(5, 1fr);
  }
}

.press-logo {
  text-align: center;
  padding: var(--spacing-md) var(--spacing-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.press-logo:hover {
  background: var(--sand);
}

.press-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.press-quote {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* --- Gift Card Banner --- */
.gift-card-banner {
  background: var(--coral);
  padding: var(--spacing-lg) 0;
}

.gift-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .gift-card-inner {
    flex-direction: column;
    text-align: center;
  }
}

.gift-card-text h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.gift-card-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  line-height: 1.6;
}

.gift-card-banner .btn-white {
  flex-shrink: 0;
  white-space: nowrap;
}

/* --- Map Container --- */
.map-container {
  margin-top: var(--spacing-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  display: block;
  border-radius: var(--radius-lg);
}

/* --- Reservation Partners --- */
.reservation-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--spacing-sm);
  font-size: 0.85rem;
  color: var(--text-light);
}

.reservation-partner-label {
  font-weight: 500;
}

.partner-link {
  color: var(--ocean);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.partner-link:hover {
  color: var(--ocean-dark);
  text-decoration: underline;
}

.partner-divider {
  color: var(--warm-sand);
}

/* --- Reservations --- */
.reservations-section {
  background: var(--sand-dark);
}

.reservations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .reservations-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: var(--spacing-3xl);
  }
}

.reservations-info p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  font-size: 1.05rem;
  line-height: 1.8;
}

.reservations-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.res-detail h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.5rem;
}

.res-detail p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  line-height: 1.6;
}

.reservations-form-wrap {
  position: relative;
}

.reservations-form {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 500px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--spacing-xs);
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--warm-sand-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--sand);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(var(--ocean-rgb), 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--coral);
}

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

.form-error {
  font-size: 0.78rem;
  color: var(--coral);
  display: none;
}

.form-group input.error ~ .form-error,
.form-group select.error ~ .form-error {
  display: block;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: var(--spacing-sm);
  line-height: 1.5;
}

.form-success {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.form-success svg {
  margin: 0 auto var(--spacing-md);
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: var(--spacing-sm);
}

.form-success p {
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto;
}

/* --- Contact --- */
.contact-section {
  background: var(--white);
  padding-bottom: var(--spacing-xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-sm);
  border-radius: var(--radius-md);
  background: var(--sand);
  transition: all var(--transition-base);
}

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

.contact-card svg {
  color: var(--ocean);
  margin-bottom: var(--spacing-sm);
}

.contact-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  position: relative;
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: 0;
}

.footer-wave {
  position: relative;
  top: 1px;
}

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

.footer-inner {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--spacing-sm);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

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

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--seafoam);
}

.newsletter-form button {
  padding: 0.7rem 1rem;
  background: var(--coral);
  border: 1.5px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--white);
  transition: background var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--coral-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Responsive Fine-Tuning --- */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }
  .rawbar-highlights {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  .menu-filters {
    gap: 0.35rem;
  }
  .menu-filter {
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
  }
  .testimonial-quote {
    font-size: 0.92rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-item-tall {
    min-height: 400px;
  }
}

/* --- Print --- */
@media print {
  .header, .promo-banner, .mobile-overlay, .lightbox, .hero-scroll, .footer-wave {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  .section {
    padding: 1.5rem 0;
    page-break-inside: avoid;
  }
  body {
    background: white;
    color: black;
  }
}
