@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Outfit:wght@400;500;600&display=swap');

/* ═══════════════════════════════════════
   EL PEZ VELA — Coastal Dusk
   Deep ocean blues, sunset terracotta,
   golden hour warmth
   ═══════════════════════════════════════ */

:root {
  --bg-deep: #0B1823;
  --bg-night: #101E2B;
  --bg-warm: #F7F0E4;
  --bg-sand: #EDE5D6;
  --accent: #D4603A;
  --accent-hover: #B84E2D;
  --gold: #C8A96E;
  --gold-light: #D9C08F;
  --teal: #1B6B6B;
  --teal-light: #2A8A8A;
  --text-dark: #1A1412;
  --text-muted: #4A423B;
  --text-light: #F7F0E4;
  --text-light-muted: #C5BDB2;
  --divider-dark: rgba(200, 169, 110, 0.2);
  --divider-light: rgba(26, 20, 18, 0.12);
  --shadow-warm: 0 4px 30px rgba(212, 96, 58, 0.1);
  --radius: 4px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-warm);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h4 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  max-width: 62ch;
}

.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }

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

.container--wide {
  max-width: 1400px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── Grain overlay ── */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ═══════════════════
   NAVIGATION
   ═══════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(11, 24, 35, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav__brand span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--text-light) !important;
  font-size: 0.82rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════
   HERO
   ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--bg-deep);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroReveal 1.5s ease-out 0.3s forwards;
}

@keyframes heroReveal {
  to { opacity: 0.55; }
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 24, 35, 0.95) 0%,
    rgba(11, 24, 35, 0.6) 35%,
    rgba(11, 24, 35, 0.3) 60%,
    rgba(11, 24, 35, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  color: var(--text-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.8s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--text-light-muted);
  max-width: 50ch;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 1s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 1.2s forwards;
}

.hero__hours {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 1.4s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: var(--text-light);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 96, 58, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--bg-deep);
  color: var(--text-light);
}

.btn--dark:hover {
  background: var(--bg-night);
  transform: translateY(-2px);
}

.btn--teal {
  background: var(--teal);
  color: var(--text-light);
}

.btn--teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}

.btn--ghost:hover {
  background: var(--text-dark);
  color: var(--bg-warm);
}

/* ═══════════════════
   SECTION: INTRO
   ═══════════════════ */
.intro {
  padding: 100px 0;
  background: var(--bg-warm);
  position: relative;
}

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

.intro__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.intro__heading {
  color: var(--text-dark);
  margin-bottom: 28px;
  text-wrap: balance;
}

.intro__heading em {
  font-style: italic;
  color: var(--teal);
}

.intro__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 32px;
  text-wrap: pretty;
}

.intro__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.intro__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11, 24, 35, 0.3), transparent);
  pointer-events: none;
}

.intro__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(11, 24, 35, 0.85);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.intro__badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.intro__badge-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ═══════════════════
   SECTION: SPECIALTIES
   ═══════════════════ */
.specialties {
  padding: 120px 0;
  background: var(--bg-deep);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.specialties::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 107, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-inline: auto;
}

.section-header__title {
  margin-bottom: 20px;
}

.section-header__line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto;
}

.section-header--light .section-header__label {
  color: var(--accent);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.spec-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-night);
  border: 1px solid rgba(200, 169, 110, 0.08);
  transition: transform var(--transition), border-color var(--transition);
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 110, 0.2);
}

.spec-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.spec-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.spec-card__body {
  padding: 28px;
}

.spec-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.spec-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.spec-card__desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* Featured card spans full width */
.spec-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.spec-card--featured .spec-card__image {
  aspect-ratio: auto;
  min-height: 300px;
}

.spec-card--featured .spec-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.specialties__cta {
  text-align: center;
  margin-top: 48px;
}

.specialties .btn--ghost {
  color: var(--text-light);
  border-color: var(--gold);
}

.specialties .btn--ghost:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

/* ═══════════════════
   SECTION: MENU CTA
   ═══════════════════ */
.menu-cta {
  padding: 100px 0;
  background: var(--bg-sand);
  position: relative;
}

.menu-cta--inline {
  padding: 64px 0 0;
  background: transparent;
}

.menu-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.menu-cta__inner--centered {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.menu-cta__text h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.menu-cta__text p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.menu-cta__note {
  color: var(--text-muted);
  font-size: 1rem;
}

.menu-cta__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.menu-cta__actions--centered {
  justify-content: center;
}

/* Decorative wave divider */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  fill: var(--bg-warm);
}

.wave-divider--dark {
  fill: var(--bg-deep);
}

.wave-divider--sand {
  fill: var(--bg-sand);
}

/* ═══════════════════
   SECTION: REVIEWS
   ═══════════════════ */
.reviews {
  padding: 120px 0;
  background: var(--bg-warm);
}

.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.reviews__summary-rating {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.reviews__summary-stars {
  display: flex;
  gap: 4px;
}

.reviews__summary-stars .review-card__star {
  width: 24px;
  height: 24px;
}

.reviews__summary-count {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: -4px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.review-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--divider-light);
  position: relative;
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-warm);
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.review-card__star {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.review-card__star--partial {
  fill: url(#star-partial);
}

.review-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.review-card__author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card__source {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.reviews__cta {
  text-align: center;
  margin-top: 48px;
}

/* ═══════════════════
   SECTION: LOCATION
   ═══════════════════ */
.location {
  padding: 120px 0;
  background: var(--bg-deep);
  color: var(--text-light);
}

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

.location__info h2 {
  margin-bottom: 32px;
}

.location__detail {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--divider-dark);
}

.location__detail:first-of-type {
  border-top: 1px solid var(--divider-dark);
}

.location__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--gold);
}

.location__detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.location__detail-value {
  font-size: 1rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.location__detail-value a {
  color: var(--text-light);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.location__detail-value a:hover {
  color: var(--gold);
}

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bg-night);
  border: 1px solid rgba(200, 169, 110, 0.1);
}

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

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.location__whatsapp {
  margin-top: 40px;
}

/* ═══════════════════
   SECTION: SERVICES
   ═══════════════════ */
.services {
  padding: 100px 0;
  background: var(--bg-sand);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.service-item {
  position: relative;
  padding: 36px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid var(--divider-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}

.service-item__icon {
  margin-bottom: 20px;
  opacity: 0.7;
}

.service-item__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.service-item__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-item__desc {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

.services__hours {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ═══════════════════
   FOOTER
   ═══════════════════ */
.footer {
  padding: 60px 0 40px;
  background: #060E15;
  color: var(--text-light-muted);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
}

.footer__brand span {
  color: var(--gold);
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-light-muted);
  transition: color var(--transition);
}

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

.footer__info {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.footer__info p {
  max-width: none;
}

.footer__info a {
  color: var(--text-light-muted);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.footer__info a:hover {
  color: var(--gold);
}

.footer__copy {
  width: 100%;
  max-width: none;
  text-align: center;
  font-size: 0.75rem;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
  color: rgba(184, 175, 163, 0.5);
}

.footer__copy a {
  color: rgba(184, 175, 163, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__copy a:hover {
  color: var(--gold);
}

/* ═══════════════════
   WHATSAPP FLOATING
   ═══════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ═══════════════════
   DESIGN POLISH
   ═══════════════════ */

/* Section wave dividers */
.section-divider {
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.section-divider svg {
  width: 100%;
  height: clamp(40px, 5vw, 80px);
  display: block;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* Text selection */
::selection {
  background: rgba(200, 169, 110, 0.3);
  color: var(--text-dark);
}

/* Gold accent line on specialty cards */
.spec-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.spec-card:hover::after {
  transform: scaleX(1);
}

/* Decorative quotation mark on review cards */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
}

/* Service item accent line */
.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 36px;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Focus styles (WCAG AA) */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.2);
}

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

  html {
    scroll-behavior: auto;
  }

  .hero__bg img {
    opacity: 0.55;
    animation: none;
  }

  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__hours {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════
   RESPONSIVE
   ═══════════════════ */
@media (max-width: 1024px) {
  .intro__grid {
    gap: 48px;
  }

  .location__grid {
    gap: 48px;
  }

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

  .spec-card--featured {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(11, 24, 35, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__content {
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro__image {
    order: -1;
    aspect-ratio: 3/2;
  }

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

  .spec-card--featured {
    grid-template-columns: 1fr;
  }

  .spec-card--featured .spec-card__image {
    min-height: 220px;
  }

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

  .menu-cta__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

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

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

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

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

  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

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

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .review-card {
    padding: 28px;
  }

  .spec-card__body {
    padding: 20px;
  }

  .reviews__summary-rating {
    font-size: 2.5rem;
  }
}

/* ═══════════════════
   PAGE: MENU
   ═══════════════════ */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-deep);
  color: var(--text-light);
  text-align: center;
}

.page-header__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-header__title {
  margin-bottom: 20px;
}

.page-header__subtitle {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}

.menu-section {
  padding: 80px 0;
  background: var(--bg-warm);
}

.menu-category {
  margin-bottom: 64px;
}

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

.menu-category__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-category__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--divider-light);
}

.menu-category__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.menu-item {
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--divider-light);
  transition: border-color var(--transition);
}

.menu-item:hover {
  border-color: var(--gold);
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.menu-item__desc {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

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

/* ═══════════════════
   ANIMATION: SCROLL REVEAL
   ═══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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