/* ============================================
   THE AVON & EMBER — Stylesheet
   Seasonal Restaurant · Old Mill Hotel & Lodge
   ============================================ */

/* --- Custom Properties --- */

:root {
  --bg-deep:      #110f0d;
  --bg-primary:   #1a1714;
  --bg-surface:   #231f1c;
  --bg-elevated:  #2d2825;

  --text-primary:   #f4ede4;
  --text-secondary: #c4b5a4;
  --text-tertiary:  #9a8b7c;

  --accent:       #a58241;
  --accent-hover: #bfa05a;

  --border:       rgba(255, 245, 230, 0.08);
  --border-light: rgba(255, 245, 230, 0.14);

  --font-serif:  'Cormorant Garamond', 'Georgia', serif;
  --font-sans:   'Hanken Grotesk', 'Helvetica Neue', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-height:  100px;
}


/* --- Reset & Base --- */

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }


/* --- Skip Link --- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.skip-link:focus {
  top: 12px;
}


/* --- Utilities --- */

.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;
}


/* --- Typography --- */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}


/* --- Layout --- */

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

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

.section {
  padding: 120px 0;
  position: relative;
}

.section--alt {
  background-color: var(--bg-deep);
}

.section__header {
  margin-bottom: 64px;
}

.section__title {
  margin-bottom: 16px;
}

.section__divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 24px 0;
}

.section__header--center {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 64px;
}

.section__divider--center {
  margin: 24px auto;
}


/* --- Buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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


/* --- Navigation --- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background-color 0.4s ease, border-color 0.4s ease;
  background: linear-gradient(to bottom, rgba(17, 15, 13, 0.7) 0%, transparent 100%);
}

.nav--solid {
  background-color: rgba(17, 15, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: transparent;
}

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

.nav__logo {
  display: flex;
  align-items: center;
  height: 100%;
  transition: opacity 0.3s ease;
}
.nav__logo:hover { opacity: 0.7; }

.nav__logo-img {
  height: 150px;
  width: auto;
  object-fit: contain;
}

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

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link:active { color: var(--text-primary); }
.nav__link:hover::after,
.nav__link:active::after { width: 100%; }

.nav__link--cta {
  color: var(--accent);
  padding: 8px 20px;
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--accent);
  color: #fff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__toggle--open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav__toggle--open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}


/* --- Hero --- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-deep);
  overflow: hidden;
}

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

.hero__bg-img,
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

/* Video paints over the poster image; the image stays as fallback
   for load failures and reduced-motion users. */
.hero__bg-video {
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-video {
    display: none;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(17, 15, 13, 0.3) 0%, rgba(17, 15, 13, 0.55) 70%),
    linear-gradient(to bottom, rgba(17, 15, 13, 0.15) 0%, rgba(17, 15, 13, 0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  margin-top: 40px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1.4s var(--ease-out) 0.3s forwards;
}

.hero__rule {
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin: 28px auto;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 0.7s forwards;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 44px;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeIn 1s var(--ease-out) 0.9s forwards;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 2s forwards;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
  background: var(--border);
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}


/* --- Experience --- */

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

.experience__text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.experience__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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


/* --- Kitchen Split (From the Kitchen) --- */

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

.kitchen-split__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.dish {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.dish:last-of-type { border-bottom: none; }

.dish__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.dish__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.kitchen-split__cta {
  margin-top: 40px;
}


/* --- Hours & Location --- */

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

.hours__block {
  margin-bottom: 32px;
}

.hours__block:last-child { margin-bottom: 0; }

.hours__block--cta {
  margin-top: 32px;
}

.hours__label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.hours__value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.hours__note {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: 8px;
}

.hours__map {
  aspect-ratio: 4 / 3;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.hours__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.85);
}


/* --- Hotel Cross-promo --- */

.hotel-promo {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hotel-promo__text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hotel-promo__name {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-primary);
}


/* --- Footer --- */

.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}

.footer__inner {
  text-align: center;
}

.footer__top {
  margin-bottom: 32px;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.footer__about {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  line-height: 1.7;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer__link:hover { color: var(--accent); }

.footer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.footer__contact .footer__link {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.footer__sep {
  color: var(--border-light);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.footer__bottom a {
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}
.footer__bottom a:hover { color: var(--accent); }


/* --- Menu Page --- */

.menu-hero {
  position: relative;
  padding: calc(var(--nav-height) + 48px) 0 56px;
  text-align: center;
  overflow: hidden;
}

.menu-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.menu-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.menu-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(17, 15, 13, 0.5) 0%, rgba(17, 15, 13, 0.85) 70%),
    linear-gradient(to bottom, rgba(17, 15, 13, 0.6) 0%, rgba(17, 15, 13, 0.8) 100%);
}

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

.menu-hero__logo {
  height: 100px;
  width: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}

.menu-hero__divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 20px;
}

.menu-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 8px;
}

.menu-hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.cat-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: rgba(17, 15, 13, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cat-nav::-webkit-scrollbar { display: none; }

.cat-nav__inner {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-width: max-content;
}

.cat-nav__link {
  flex-shrink: 0;
  padding: 16px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.cat-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.cat-nav__link:hover { color: var(--text-secondary); }

.cat-nav__link--active {
  color: var(--text-primary);
}

.cat-nav__link--active::after {
  transform: scaleX(1);
}

.menu-category {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.menu-category:last-of-type { border-bottom: none; }

.menu-category__header {
  margin-bottom: 40px;
}

.menu-category__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 4px;
}

.menu-category__subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.menu-subcategory {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 32px 0 12px;
  border-bottom: 1px solid var(--border);
}

.menu-subcategory:first-of-type {
  padding-top: 0;
}

.menu-subcategory__note {
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  text-transform: none;
  font-style: italic;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 8px;
  margin: 0 -8px;
  border-bottom: 1px solid var(--border);
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.menu-item:hover {
  background-color: var(--bg-surface);
}

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

.menu-item__info {
  flex: 1;
  min-width: 0;
}

.menu-item__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-item__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.menu-item__price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.diet-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 3px 10px;
  border-radius: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}

.diet-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.diet-badge--v  { background: rgba(104, 159, 56, 0.15); color: #8bc34a; }
.diet-badge--vg { background: rgba(76, 175, 80, 0.15); color: #66bb6a; }
.diet-badge--gf { background: rgba(255, 183, 77, 0.15); color: #ffb74d; }

.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 500;
}

.floating-cta .btn {
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.menu-item--wine .menu-item__price {
  font-size: 0.95rem;
}


/* --- Back to Top --- */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}


/* --- Animations --- */

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.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; }

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


/* --- Responsive --- */

@media (max-width: 768px) {
  :root { --nav-height: 80px; }

  .section { padding: 80px 0; }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: rgba(17, 15, 13, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
  }

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

  .nav__links .nav__link {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
  }

  .nav__toggle {
    display: flex;
  }

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

  .experience__image {
    aspect-ratio: 4 / 3;
    order: -1;
  }

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

  .kitchen-split__image {
    aspect-ratio: 3 / 2;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer__contact {
    flex-direction: column;
    gap: 4px;
  }

  .footer__sep { display: none; }

  .back-to-top { bottom: 24px; right: 16px; }
  .menu-category { padding: 48px 0; }
  .cat-nav__link { padding: 16px 16px; font-size: 0.75rem; min-height: 44px; }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
  }

  .hero__ctas .btn { width: 100%; }

  .nav__logo-img { height: 110px; }
}

@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; }

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


/* --- Reservations Placeholder (remove when online booking goes live) --- */

.reserve {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 64px) 24px 96px;
}

.reserve__inner { max-width: 540px; }

.reserve__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.reserve__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
}

.reserve__rule {
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin: 28px auto;
}

.reserve__text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 32px;
}

.reserve__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 44px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.reserve__contact a { color: var(--text-primary); transition: color 0.3s ease; }
.reserve__contact a:hover { color: var(--accent); }

.reserve__contact-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.reserve__contact-label--spaced { margin-top: 12px; }

.reserve__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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