/* ============================================================
   Salt & Tide — "Shoreline" (Beach Kitchen & Bar)
   Coastal Kitchen & Cocktail Bar — Gulf-inspired, upscale-casual
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Caveat:wght@400;500;600;700&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Custom Properties --- */
:root {
  /* Colors */
  --warm-white: #FEFCF8;
  --seafoam: #E8F0EC;
  --coral: #E06D5B;
  --coral-dark: #c95a49;
  --deep-teal: #1A7A6D;
  --teal-dark: #145f55;
  --sand: #C7A97B;
  --sand-light: #d9c4a0;
  --dark: #1a1a1a;
  --dark-muted: #3a3a3a;
  --text-body: #2c2c2c;
  --text-light: #5a5a5a;

  /* Fonts */
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Karla', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 7rem);
  --container-max: 1200px;
  --container-narrow: 900px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --card-radius: 12px;
  --pill-radius: 999px;

  /* Shadows */
  --shadow-coral: 4px 4px 0 var(--coral);
  --shadow-teal: 4px 4px 0 var(--deep-teal);
  --shadow-soft: 0 2px 16px rgba(0,0,0,0.06);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

/* --- Utility --- */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.container--narrow {
  max-width: var(--container-narrow);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Eyebrow / Caveat Labels --- */
.eyebrow {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.5rem);
  color: var(--coral);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
  display: block;
}

.eyebrow--teal {
  color: var(--deep-teal);
}

/* --- Section Headings --- */
.section-heading {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 800;
  text-transform: lowercase;
  margin-bottom: 0.5rem;
}

.section-subheading {
  font-size: clamp(1rem, 1.2vw + 0.3rem, 1.15rem);
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.6;
}

.section-subheading.centered {
  margin-left: auto;
  margin-right: auto;
}

/* --- Sections --- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--white {
  background-color: var(--warm-white);
}

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

.section--teal {
  background-color: var(--deep-teal);
  color: var(--warm-white);
}

.section--teal h2,
.section--teal h3,
.section--teal .section-heading {
  color: var(--warm-white);
}

.section--teal .eyebrow {
  color: var(--sand);
}

.section--teal .section-subheading {
  color: rgba(254, 252, 248, 0.8);
}

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

.btn--coral {
  background-color: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.btn--coral:hover {
  background-color: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 109, 91, 0.35);
}

.btn--teal {
  background-color: var(--deep-teal);
  color: #fff;
  border-color: var(--deep-teal);
}

.btn--teal:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 122, 109, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--deep-teal);
  border-color: var(--deep-teal);
}

.btn--outline:hover {
  background-color: var(--deep-teal);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-white {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

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

.btn--white {
  background-color: #fff;
  color: var(--deep-teal);
  border-color: #fff;
}

.btn--white:hover {
  background-color: var(--warm-white);
  border-color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--warm-white);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: var(--container-max);
  width: 90%;
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.3rem, 1.8vw + 0.5rem, 1.65rem);
  text-transform: lowercase;
  letter-spacing: -0.01em;
  color: var(--dark);
  flex-shrink: 0;
}

.nav__logo .amp {
  color: var(--coral);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--coral);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--coral);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background-color: var(--warm-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--seafoam);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 1rem;
  }
}

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.3);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav__overlay.visible {
  display: block;
  opacity: 1;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--warm-white);
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 2vw + 0.5rem, 1.8rem);
  color: var(--deep-teal);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw + 1rem, 5.5rem);
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.hero__title .amp {
  color: var(--coral);
}

.hero__tagline {
  font-size: clamp(1.05rem, 1.2vw + 0.4rem, 1.25rem);
  color: var(--text-light);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Decorative blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero__blob--1 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: radial-gradient(circle, rgba(224, 109, 91, 0.1) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.hero__blob--2 {
  width: clamp(250px, 35vw, 500px);
  height: clamp(250px, 35vw, 500px);
  background: radial-gradient(circle, rgba(26, 122, 109, 0.08) 0%, transparent 70%);
  bottom: -5%;
  right: 15%;
}

.hero__blob--3 {
  width: clamp(150px, 20vw, 350px);
  height: clamp(150px, 20vw, 350px);
  background: radial-gradient(circle, rgba(224, 109, 91, 0.07) 0%, transparent 70%);
  top: 30%;
  right: 30%;
}

.hero__blob--4 {
  width: clamp(100px, 15vw, 250px);
  height: clamp(100px, 15vw, 250px);
  background: radial-gradient(circle, rgba(199, 169, 123, 0.12) 0%, transparent 70%);
  bottom: 20%;
  left: 40%;
}

.hero__blob--5 {
  width: clamp(180px, 25vw, 400px);
  height: clamp(180px, 25vw, 400px);
  background: radial-gradient(circle, rgba(26, 122, 109, 0.06) 0%, transparent 70%);
  top: 5%;
  left: 55%;
}

/* --- Page Hero (Subpages) --- */
.page-hero {
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  background-color: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.page-hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-hero__blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 109, 91, 0.08) 0%, transparent 70%);
  top: -20%;
  right: -5%;
}

.page-hero__blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 122, 109, 0.06) 0%, transparent 70%);
  bottom: -20%;
  left: 10%;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(2.2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 800;
  text-transform: lowercase;
  margin-bottom: 0.5rem;
}

.page-hero__subtitle {
  font-size: clamp(1rem, 1.2vw + 0.3rem, 1.15rem);
  color: var(--text-light);
  max-width: 550px;
}

/* --- Wavy SVG Dividers --- */
.wave-divider {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  position: relative;
  z-index: 2;
  margin-bottom: -1px;
}

.wave-divider--flip {
  transform: scaleY(-1);
  margin-bottom: 0;
  margin-top: -1px;
  vertical-align: top;
}

.wave-divider--top {
  margin-top: -1px;
  vertical-align: top;
}

/* --- Cards --- */
.card {
  background-color: #fff;
  border: 2px solid var(--deep-teal);
  border-radius: var(--card-radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-coral);
  transition: all var(--transition);
  position: relative;
}

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

.card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.3vw + 0.3rem, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.card__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* --- Grid Layouts --- */
.grid {
  display: grid;
  gap: var(--gap);
}

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

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

.grid--4 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

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

@media (max-width: 600px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

/* --- Menu Item --- */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(26, 122, 109, 0.12);
}

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

.menu-item__info {
  flex: 1;
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.2vw + 0.2rem, 1.2rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.menu-item__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
}

.menu-item__price {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--coral);
  padding: 0.3rem 0.9rem;
  border-radius: var(--pill-radius);
  white-space: nowrap;
  line-height: 1.3;
}

/* --- Drink Card --- */
.drink-card {
  background-color: #fff;
  border: 2px solid var(--deep-teal);
  border-radius: var(--card-radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-coral);
  transition: all var(--transition);
}

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

.drink-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.3vw + 0.2rem, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.drink-card__ingredients {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--deep-teal);
  margin-bottom: 0.6rem;
}

.drink-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.drink-card__price {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--coral);
  padding: 0.3rem 0.9rem;
  border-radius: var(--pill-radius);
}

/* --- Testimonial / Review Card --- */
.review-card {
  background-color: #fff;
  border: 2px solid var(--deep-teal);
  border-radius: var(--card-radius);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: var(--shadow-coral);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.review-card__stars {
  color: var(--sand);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-card__author {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-teal);
}

/* --- Team Card --- */
.team-card {
  background-color: #fff;
  border: 2px solid var(--deep-teal);
  border-radius: var(--card-radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-coral);
  transition: all var(--transition);
  text-align: center;
}

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

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--seafoam), var(--deep-teal));
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.3vw + 0.2rem, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--dark);
}

.team-card__role {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* --- Feature Callouts --- */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--seafoam);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-section .section-heading {
  margin-bottom: 0.75rem;
}

.cta-section .section-subheading {
  margin-bottom: 2rem;
}

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

/* --- Info/Hours Table --- */
.hours-table {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(26, 122, 109, 0.12);
  vertical-align: top;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  padding-right: 2rem;
  white-space: nowrap;
}

.hours-table td:last-child {
  color: var(--text-light);
}

.hours-table tr.closed td:last-child {
  color: var(--coral);
  font-weight: 500;
}

/* --- Map Container --- */
.map-container {
  width: 100%;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 2px solid var(--deep-teal);
  box-shadow: var(--shadow-coral);
  aspect-ratio: 16 / 9;
  max-height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* --- Contact Info Block --- */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-block__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--seafoam);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--deep-teal);
}

.contact-block__text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  color: var(--dark);
}

.contact-block__text span,
.contact-block__text a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-block__text a:hover {
  color: var(--coral);
}

/* --- Philosophy / Callout Box --- */
.callout-box {
  background-color: var(--seafoam);
  border-radius: var(--card-radius);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.callout-box::before {
  content: '\201C';
  font-family: var(--font-accent);
  font-size: 4rem;
  color: var(--coral);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.5;
}

.callout-box p {
  font-size: clamp(1.05rem, 1.2vw + 0.3rem, 1.2rem);
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
}

/* --- Drinks List (Wine / Beer / NA) --- */
.drink-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drink-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 122, 109, 0.12);
  gap: 1rem;
}

.drink-list-item:last-child {
  border-bottom: none;
}

.drink-list-item__info {
  flex: 1;
}

.drink-list-item__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}

.drink-list-item__detail {
  font-size: 0.85rem;
  color: var(--text-light);
}

.drink-list-item__price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--coral);
  padding: 0.25rem 0.75rem;
  border-radius: var(--pill-radius);
  white-space: nowrap;
}

/* --- About Story Text --- */
.story-text {
  font-size: clamp(1rem, 1.1vw + 0.3rem, 1.1rem);
  line-height: 1.8;
  color: var(--text-body);
  max-width: 700px;
}

.story-text p + p {
  margin-top: 1.25rem;
}

/* --- Two-Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* --- Menu Category Header --- */
.menu-category {
  margin-bottom: 2rem;
}

.menu-category__heading {
  font-size: clamp(1.6rem, 2.5vw + 0.3rem, 2.2rem);
  font-weight: 800;
  text-transform: lowercase;
  margin-bottom: 0.25rem;
}

/* --- Reservation Policy --- */
.policy-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 0.5rem;
}

/* --- Kitchen Note / Bar Note --- */
.note-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--seafoam);
  border-radius: var(--pill-radius);
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--deep-teal);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  background-color: var(--deep-teal);
  color: var(--warm-white);
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
  position: relative;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: lowercase;
  margin-bottom: 1rem;
  color: var(--warm-white);
}

.footer__logo .amp {
  color: var(--coral);
}

.footer__text {
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.85;
}

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

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--warm-white);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}

.footer__links a:hover {
  opacity: 1;
  color: var(--coral);
}

.footer__bottom {
  border-top: 1px solid rgba(254, 252, 248, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copyright {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__social a {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}

.footer__social a:hover {
  opacity: 1;
  color: var(--coral);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Misc --- */
.section-spacer {
  height: clamp(1rem, 3vw, 2rem);
}

.menu-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

.inline-link {
  color: var(--coral);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.inline-link:hover {
  border-bottom-color: var(--coral);
}

/* --- Reservation Policy on Find Us --- */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

@media (max-width: 768px) {
  .info-section {
    grid-template-columns: 1fr;
  }
}

/* --- Print Styles --- */
@media print {
  .nav, .footer, .wave-divider, .hero__blob, .page-hero__blob {
    display: none !important;
  }

  .section {
    padding: 1rem 0;
  }

  .card, .review-card, .team-card, .drink-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}
