/* ========================================================================
   Salt & Tide — "The Pearl Room" (Coastal Fine Dining)
   ======================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* --- Custom Properties --- */
:root {
  /* Colors */
  --ivory:       #FAF7F2;
  --linen:       #F0EBE3;
  --navy:        #1B2838;
  --brass:       #B8965A;
  --brass-light: #D4B47A;
  --brass-dark:  #9A7A42;
  --blush:       #C9908F;
  --white:       #FFFFFF;
  --charcoal:    #2C2C2C;
  --muted:       #8A8477;
  --overlay:     rgba(27, 40, 56, 0.65);

  /* Fonts */
  --font-heading: 'Fraunces', serif;
  --font-body:    'Source Sans 3', sans-serif;
  --font-accent:  'Libre Baskerville', serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Sizing */
  --max-width:  1200px;
  --nav-height: 80px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med:  0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Borders */
  --border-brass: 1px solid var(--brass);
  --border-linen: 1px solid var(--linen);
}

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

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

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--navy);
  background-color: var(--ivory);
}

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

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

ul, ol {
  list-style: none;
}

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

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

h1 {
  font-size: clamp(2.75rem, 2rem + 3.5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  font-weight: 400;
}

h4 {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 500;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1.1rem);
  color: var(--brass);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-xs);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  color: var(--muted);
  max-width: 600px;
}

.text-brass {
  color: var(--brass);
}

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

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 900px;
}

.section {
  padding: var(--space-2xl) 0;
}

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

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

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--ivory);
}

/* --- Brass Rule --- */
.brass-rule {
  border: none;
  height: 1px;
  background-color: var(--brass);
  opacity: 0.5;
  margin: var(--space-lg) 0;
}

.brass-rule--short {
  max-width: 80px;
  margin: var(--space-md) auto;
}

.brass-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: 2px;
  transition: all var(--transition-fast);
  position: relative;
}

.btn--brass {
  background-color: var(--brass);
  color: var(--white);
}

.btn--brass:hover {
  background-color: var(--brass-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 150, 90, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--brass);
  border: 1px solid var(--brass);
}

.btn--outline:hover {
  background-color: var(--brass);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-ivory {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--ivory);
}

.btn--outline-ivory:hover {
  background-color: var(--ivory);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ========================================================================
   Navigation
   ======================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background-color: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  transition: box-shadow var(--transition-med);
}

.nav.scrolled {
  box-shadow: 0 1px 0 rgba(184, 150, 90, 0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__logo .amp {
  color: var(--brass);
  font-style: italic;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

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

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

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

.nav__cta {
  margin-left: var(--space-sm);
  flex-shrink: 0;
}

.nav__cta .btn {
  padding: 0.7rem 1.8rem;
  font-size: 0.75rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--navy);
  transition: all var(--transition-fast);
  transform-origin: center;
}

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

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

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

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

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 85vw);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    background-color: var(--ivory);
    transform: translateX(100%);
    transition: transform var(--transition-med);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  }

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

  .nav__link {
    font-size: 0.95rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-sm);
  }
}

/* ========================================================================
   Hero
   ======================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--ivory);
  padding: var(--nav-height) var(--space-md) var(--space-xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 150, 90, 0.12) 0%,
    rgba(184, 150, 90, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.15rem);
  color: var(--brass);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.04em;
}

.hero__title {
  font-size: clamp(3.25rem, 2.25rem + 4.5vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-sm);
}

.hero__title .amp {
  color: var(--brass);
  font-style: italic;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-xl);
}

.hero__cta {
  margin-top: var(--space-md);
}

/* Page Hero (smaller, for inner pages) */
.hero--page {
  min-height: 50vh;
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
}

.hero--page::before {
  width: 60vw;
  height: 60vw;
  max-width: 600px;
  max-height: 600px;
}

.hero--page .hero__title {
  font-size: clamp(2.5rem, 1.75rem + 3.5vw, 4.5rem);
  margin-bottom: var(--space-xs);
}

/* ========================================================================
   Double-Frame Cards
   ======================================================================== */
.card {
  background-color: var(--ivory);
  border: 1px solid var(--brass);
  padding: var(--space-lg);
  position: relative;
  transition: all var(--transition-med);
}

.card::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(184, 150, 90, 0.35);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 40, 56, 0.08);
}

.card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 400;
  margin-bottom: var(--space-xs);
  color: var(--navy);
}

.card__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--brass);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

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

/* ========================================================================
   Menu Items (dotted leader lines)
   ======================================================================== */
.menu-section {
  margin-bottom: var(--space-2xl);
}

.menu-section:last-child {
  margin-bottom: 0;
}

.menu-category {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-xs);
}

.menu-category + .brass-rule {
  max-width: 120px;
  margin: 0 auto var(--space-lg);
}

.menu-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(184, 150, 90, 0.12);
}

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

.menu-item__header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--brass);
  min-width: 30px;
  position: relative;
  top: -4px;
  opacity: 0.5;
}

.menu-item__price {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  font-weight: 400;
  color: var(--brass);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
}

/* Side items (compact row) */
.menu-sides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm) var(--space-lg);
}

.menu-sides .menu-item {
  padding: var(--space-sm) 0;
  border-bottom: none;
}

/* ========================================================================
   Testimonials / Reviews
   ======================================================================== */
.testimonial {
  position: relative;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: clamp(4rem, 3rem + 3vw, 7rem);
  color: var(--brass);
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.testimonial__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial__author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Review Card (double-frame + quote) */
.review-card {
  background-color: var(--ivory);
  border: 1px solid var(--brass);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  position: relative;
  transition: all var(--transition-med);
  text-align: center;
}

.review-card::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(184, 150, 90, 0.35);
  pointer-events: none;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--brass);
  opacity: 0.25;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 40, 56, 0.08);
}

.review-card__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.review-card__author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  position: relative;
  z-index: 2;
}

/* ========================================================================
   Cocktail / Drink Cards
   ======================================================================== */
.drink-card {
  background-color: var(--ivory);
  border: 1px solid var(--brass);
  padding: var(--space-lg);
  position: relative;
  transition: all var(--transition-med);
}

.drink-card::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(184, 150, 90, 0.35);
  pointer-events: none;
}

.drink-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 40, 56, 0.08);
}

.drink-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: 0.35rem;
}

.drink-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  font-weight: 500;
  color: var(--navy);
}

.drink-card__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--brass);
  flex-shrink: 0;
}

.drink-card__ingredients {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--brass);
  margin-bottom: var(--space-sm);
}

.drink-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================================================
   CTA Section
   ======================================================================== */
.cta-section {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--navy);
  color: var(--ivory);
}

.cta-section h2 {
  color: var(--ivory);
  margin-bottom: var(--space-xs);
}

.cta-section p {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: var(--space-lg);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
}

/* ========================================================================
   About / Team
   ======================================================================== */
.team-card {
  text-align: center;
}

.team-card .card__title {
  margin-top: var(--space-sm);
}

/* ========================================================================
   Find Us / Location
   ======================================================================== */
.map-embed {
  width: 100%;
  height: 450px;
  border: 1px solid var(--brass);
  position: relative;
}

.map-embed::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(184, 150, 90, 0.35);
  pointer-events: none;
  z-index: 1;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.info-block h3 {
  margin-bottom: var(--space-sm);
}

.info-block p,
.info-block address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.info-block a {
  color: var(--brass);
  transition: color var(--transition-fast);
}

.info-block a:hover {
  color: var(--brass-dark);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(184, 150, 90, 0.1);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 120px;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table .closed {
  color: var(--blush);
  font-style: italic;
}

/* ========================================================================
   Footer
   ======================================================================== */
.footer {
  background-color: var(--navy);
  color: rgba(250, 247, 242, 0.65);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: var(--space-sm);
}

.footer__logo .amp {
  color: var(--brass);
  font-style: italic;
}

.footer__text {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer__text a {
  color: var(--brass-light);
  transition: color var(--transition-fast);
}

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

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

.footer__links li {
  margin-bottom: 0.5rem;
}

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

.footer__links a:hover {
  color: var(--ivory);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copy {
  font-size: 0.82rem;
}

.footer__social a {
  font-size: 0.85rem;
  color: var(--brass-light);
  transition: color var(--transition-fast);
}

.footer__social a:hover {
  color: var(--ivory);
}

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

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

/* ========================================================================
   Scroll Animations
   ======================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* Staggered children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0ms; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 100ms; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 200ms; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 300ms; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 400ms; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 500ms; }

/* ========================================================================
   Kitchen / Bar Notes
   ======================================================================== */
.note {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
  padding: var(--space-lg) 0;
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(184, 150, 90, 0.15);
}

/* ========================================================================
   Philosophy / Callout Block
   ======================================================================== */
.callout {
  border: 1px solid var(--brass);
  padding: var(--space-xl);
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

.callout::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(184, 150, 90, 0.35);
  pointer-events: none;
}

.callout p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  line-height: 1.9;
  color: var(--navy);
}

/* ========================================================================
   Featured Section (home page featured dishes / cocktails)
   ======================================================================== */
.featured-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.featured-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.featured-item__name {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.featured-item__price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--brass);
  margin-bottom: var(--space-sm);
}

.featured-item__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================================================
   Concept / Intro Section
   ======================================================================== */
.intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.intro p {
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
  line-height: 1.8;
  color: var(--muted);
}

/* ========================================================================
   Google Review CTA
   ======================================================================== */
.review-cta {
  text-align: center;
  padding: var(--space-xl) 0;
}

.review-cta p {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--muted);
  margin-bottom: var(--space-md);
}

/* ========================================================================
   Origin Story
   ======================================================================== */
.origin-story {
  max-width: 750px;
  margin: 0 auto;
}

.origin-story p {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  line-height: 1.9;
  color: var(--muted);
}

/* ========================================================================
   Reservation Policy
   ======================================================================== */
.policy {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.policy p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ========================================================================
   Wine / Beer / NA Lists
   ======================================================================== */
.beverage-list {
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================================================
   Responsive Utilities
   ======================================================================== */
@media (max-width: 600px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .hero {
    min-height: 90vh;
  }

  .hero--page {
    min-height: 40vh;
  }

  .card {
    padding: var(--space-md);
  }

  .card::after {
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
  }

  .review-card {
    padding: var(--space-lg) var(--space-md) var(--space-md);
  }

  .callout {
    padding: var(--space-lg) var(--space-md);
  }

  .drink-card {
    padding: var(--space-md);
  }

  .map-embed {
    height: 300px;
  }
}
