/* ============================================================
   Casa Loma Italiana — Design System & Styles
   Premium Visual Upgrade — Award-winning luxury aesthetics
   ============================================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Palette */
  --navy:       #0B2540;
  --seafoam:    #4F9B96;
  --seafoam-dark:#2F6F6B;
  --brass:      #C9A45A;
  --brass-light:#D4AF5E;
  --brass-dark: #8A692A;
  --sand:       #F5EDE6;
  --off-white:  #FAF9F6;
  --charcoal:   #121212;
  --white:      #FFFFFF;
  --overlay:    rgba(11, 37, 64, 0.60);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Type Scale (major third — 1.25) */
  --text-xs:   0.64rem;
  --text-sm:   0.8rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.563rem;
  --text-2xl:  1.953rem;
  --text-3xl:  2.441rem;
  --text-4xl:  3.052rem;
  --text-5xl:  3.815rem;
  --text-6xl:  4.768rem;

  /* Spacing Scale (8-point grid) — generous luxury spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.5rem;
  --sp-6:  2rem;
  --sp-7:  3rem;
  --sp-8:  4rem;
  --sp-9:  6rem;
  --sp-10: 8rem;
  --sp-11: 10rem;
  --sp-12: 12rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.10);
  --shadow-lift:0 16px 48px rgba(0,0,0,0.12);
  --shadow-glow:0 0 40px rgba(201,164,90,0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
  --duration: 0.4s;
  --duration-slow: 0.7s;
  --duration-slower: 1.2s;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
}
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; }

/* Skip link */
.skip-link {
  position: fixed;
  top: var(--sp-2);
  left: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  background: var(--navy);
  color: var(--off-white);
  z-index: 300;
  white-space: nowrap;
  transform: translateY(-220%);
  transition: transform var(--duration) var(--ease-out);
}
.skip-link:focus-visible {
  transform: translateY(0);
}

/* Screen-reader only */
.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;
}

/* Focus ring (accessibility) */
:focus-visible {
  outline: 3px solid var(--seafoam);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  z-index: 200;
  width: 0%;
  transition: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
h1 { font-size: var(--text-5xl); letter-spacing: -0.03em; }
h2 { font-size: var(--text-3xl); letter-spacing: -0.02em; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
.subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  opacity: 0.75;
  line-height: 1.7;
}
.overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7A5B24;
  margin-bottom: var(--sp-3);
  display: block;
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin: var(--sp-4) auto var(--sp-5);
  max-width: 200px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.divider__ornament {
  width: 6px;
  height: 6px;
  background: var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.section {
  padding: var(--sp-11) 0;
  position: relative;
}
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: var(--off-white); }
.section--navy h2, .section--navy h3 { color: var(--off-white); }
.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn--brass {
  background: var(--brass);
  color: #191000;
  box-shadow: 0 6px 20px rgba(201, 164, 90, 0.3), 0 0 0 2px rgba(201, 164, 90, 0.6);
}
.btn--brass::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: transform 0.7s var(--ease-out);
}
.btn--brass:hover {
  background: #b8933f;
  box-shadow: 0 10px 32px rgba(201, 164, 90, 0.4), 0 0 0 3px rgba(201, 164, 90, 0.75);
  transform: translateY(-3px);
}
.btn--brass:hover::after {
  transform: translateX(240%) skewX(-20deg);
}
.btn--seafoam {
  background: transparent;
  color: var(--off-white);
  border: 2px solid rgba(79, 155, 150, 0.6);
  backdrop-filter: blur(4px);
}
.btn--seafoam:hover {
  background: var(--seafoam);
  color: var(--navy);
  border-color: var(--seafoam);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(79, 155, 150, 0.25);
}
.btn--navy {
  background: var(--navy);
  color: var(--off-white);
}
.btn--navy:hover {
  background: #0d3058;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn--lg {
  padding: var(--sp-4) var(--sp-7);
  font-size: var(--text-base);
}
.btn:focus-visible {
  outline: 3px solid var(--seafoam);
  outline-offset: 2px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 37, 64, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.5s var(--ease-smooth);
}
.nav.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--off-white);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: opacity var(--duration);
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo svg {
  flex-shrink: 0;
  margin: 0;
  transform: translateY(3px);
  background: radial-gradient(circle at 30% 28%, #274668 0%, #163454 48%, #0b2540 100%);
  border-radius: 50%;
  overflow: hidden;
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  filter: drop-shadow(0 2px 10px rgba(201, 164, 90, 0.28));
  transition: transform var(--duration) var(--ease-out), filter var(--duration) var(--ease-out);
}
.nav__logo:hover svg {
  transform: translateY(3px) scale(1.04);
  filter: drop-shadow(0 4px 14px rgba(201, 164, 90, 0.4));
}
.nav__logo span { color: var(--brass); }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  position: relative;
  transition: color var(--duration);
  padding: var(--sp-2) 0;
}
.nav__links a.btn--brass {
  color: #191000;
  padding: var(--sp-3) var(--sp-6);
}
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--brass);
  transition: all var(--duration) var(--ease-out);
  transform: translateX(-50%);
}
.nav__links a:not(.btn):hover { color: var(--brass); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__links a.active::after { width: 100%; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 38px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-sm);
  background: rgba(11, 37, 64, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 101;
}
.nav__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease-out);
}

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 78px;
  right: 12px;
  left: 12px;
  background: rgba(11, 37, 64, 0.97);
  z-index: 100;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
  pointer-events: none;
}
.nav__mobile.active { display: flex; opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav__mobile a {
  font-family: var(--font-body);
  font-size: var(--text-base);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--off-white);
  transition: color var(--duration);
  padding: var(--sp-3) var(--sp-2);
  border-radius: var(--radius-sm);
}
.nav__mobile a:hover {
  color: var(--brass);
  background: rgba(255,255,255,0.06);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0B2540 0%, #1a4a6e 40%, #C9A45A 100%);
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 37, 64, 0.72) 0%, rgba(11, 37, 64, 0.45) 60%, rgba(11, 37, 64, 0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: var(--sp-7);
  padding-top: var(--sp-10);
  isolation: isolate;
  text-align: center;
  margin-inline: auto;
}
.hero__content::before {
  content: '';
  position: absolute;
  inset: -24px -28px;
  background: rgba(11, 37, 64, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  z-index: -1;
  pointer-events: none;
}
.hero__content--center {
  text-align: center;
  margin-inline: auto;
  max-width: 720px;
}
.hero__content--center .hero__ctas {
  justify-content: center;
}
.hero__content h1 {
  color: var(--off-white);
  margin-bottom: var(--sp-5);
  line-height: 1.05;
}
/* Hero text line reveal */
.hero__content h1 .line {
  display: block;
  overflow: hidden;
}
.hero__content h1 .line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.hero__content h1 .line-inner.revealed {
  transform: translateY(0);
}
.hero__content .subtitle {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-7);
  font-size: var(--text-md);
}
.hero__ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}
/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-7);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--duration) var(--ease-out);
  animation: scroll-bounce 2s ease-in-out infinite;
}
.hero__scroll:hover {
  color: rgba(255,255,255,0.95);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,164,90,0.85), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scroll-line {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* --- Immersive Image Band --- */
.image-band {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
}
.image-band__img {
  position: absolute;
  inset: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  object-fit: cover;
  object-position: center;
}
.image-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,37,64,0.3) 0%, transparent 30%, transparent 70%, rgba(11,37,64,0.3) 100%);
}
.image-band__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.image-band__text blockquote {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-style: italic;
  color: var(--off-white);
  text-align: center;
  max-width: 760px;
  padding: var(--sp-6) var(--sp-7);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  position: relative;
  display: inline-block;
  border-radius: var(--radius-lg);
}
.image-band__text blockquote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 64, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  z-index: -1;
}

/* --- Signature Dishes --- */
.dish-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-out);
}
.dish-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lift);
}
.dish-card__img-wrap {
  overflow: hidden;
  position: relative;
}
.dish-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
  pointer-events: none;
}
.dish-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.dish-card:hover .dish-card__img {
  transform: scale(1.08);
}
.dish-card__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
}
.dish-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.dish-card__desc {
  font-size: var(--text-sm);
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}
.dish-card__price {
  font-weight: 700;
  color: var(--brass-dark);
  font-size: var(--text-md);
  letter-spacing: 0.02em;
}

/* --- Chef's Note / About Snapshot --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.split__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(201,164,90,0.15);
  pointer-events: none;
}
.split__img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.split__img:hover img {
  transform: scale(1.03);
}
.split__text blockquote {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--brass);
  padding-left: var(--sp-5);
  margin-bottom: var(--sp-5);
  line-height: 1.55;
}

/* --- About Page Enhancements --- */
.about-story__text {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 37, 64, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
}
.about-story__title {
  margin-bottom: var(--sp-5);
}
.about-story__copy {
  line-height: 1.85;
  opacity: 0.82;
}
.about-story__copy + .about-story__copy {
  margin-top: var(--sp-4);
}
.about-pillars {
  margin-top: var(--sp-7);
}
.about-pillars .pillar {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(11, 37, 64, 0.07);
  box-shadow: var(--shadow-sm);
}
.about-pillars__title {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}
.about-pillars__copy {
  opacity: 0.72;
  line-height: 1.7;
}
.about-gallery__item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 37, 64, 0.08);
}
.about-gallery__img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* --- Menu Highlights --- */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid rgba(11, 37, 64, 0.06);
  transition: all var(--duration) var(--ease-out);
  border-radius: var(--radius-sm);
  margin: 0 calc(-1 * var(--sp-5));
}
.menu-item:hover {
  background: rgba(79, 155, 150, 0.06);
  padding-left: var(--sp-6);
}
.menu-item.is-hidden {
  display: none !important;
}
.menu-item__name {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  color: var(--navy);
}
.menu-item__desc {
  font-size: var(--text-sm);
  opacity: 0.7;
  margin-top: var(--sp-1);
  line-height: 1.5;
}
.menu-item__price {
  font-weight: 700;
  color: var(--brass-dark);
  white-space: nowrap;
  margin-left: var(--sp-6);
  font-size: var(--text-md);
  transition: all var(--duration) var(--ease-out);
}
.menu-item:hover .menu-item__price {
  color: var(--seafoam-dark);
}
.menu-filters {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
  flex-wrap: wrap;
}
.menu-filters button {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(11,37,64,0.2);
  color: var(--navy);
  transition: all var(--duration) var(--ease-out);
}
.menu-filters button.active,
.menu-filters button:hover {
  background: var(--navy);
  color: var(--off-white);
  border-color: var(--navy);
}

/* --- Form Inputs (Global) --- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  border: 1px solid rgba(11, 37, 64, 0.12);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-out);
  font-family: var(--font-body);
}
input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="tel"]:focus-visible,
input[type="date"]:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--seafoam);
  box-shadow: 0 0 0 4px rgba(79, 155, 150, 0.1), inset 0 0 0 1px var(--seafoam);
}

/* --- Reservation Block Form --- */
.reserve-block {
  text-align: center;
  padding: var(--sp-10) var(--sp-7);
  background: var(--navy);
  color: var(--off-white);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.reserve-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,164,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.reserve-block h2 { color: var(--off-white); margin-bottom: var(--sp-3); }
.reserve-block p { opacity: 0.7; margin-bottom: var(--sp-7); max-width: 500px; margin-inline: auto; }
.reserve-form {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
}
.reserve-form button[type="submit"] {
  min-width: 160px;
}
.reserve-form input,
.reserve-form select {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  min-width: 150px;
  transition: all var(--duration) var(--ease-out);
}
.reserve-form input::placeholder { color: rgba(255,255,255,0.4); }
.reserve-form input:focus-visible,
.reserve-form select:focus-visible {
  outline: none;
  border-color: var(--seafoam);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 4px rgba(79, 155, 150, 0.15);
}

/* --- Testimonials --- */
.testimonials { overflow: hidden; position: relative; padding-top: 10px; }
.testimonials__track {
  display: flex;
  gap: var(--sp-6);
  transition: transform 0.8s var(--ease-out);
}
.testimonial-card {
  min-width: 100%;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  border-top: 3px solid var(--brass);
  transition: all 0.5s var(--ease-out);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--brass);
  opacity: 0.1;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.testimonial-card__stars {
  color: var(--brass-dark);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.1em;
}
.testimonial-card__text {
  font-style: italic;
  margin-bottom: var(--sp-5);
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.85;
}
.testimonial-card__author {
  font-weight: 600;
  color: var(--navy);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
}
.testimonials__controls {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-7);
  padding: 6px;
}
.testimonials__controls button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease-out);
}
.testimonials__controls button:hover {
  background: var(--navy);
  color: var(--off-white);
  transform: scale(1.06);
}

/* --- Location & Hours --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: start;
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-info h3 { margin-bottom: var(--sp-5); }
.location-info p { margin-bottom: var(--sp-3); font-size: var(--text-md); line-height: 1.7; }
.location-info .hours-list { margin-top: var(--sp-5); }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(11, 37, 64, 0.06);
  font-size: var(--text-sm);
}

/* --- Values Pillars --- */
.pillar {
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease-out);
  position: relative;
}
.pillar:hover {
  background: rgba(255,255,255,0.5);
  transform: translateY(-6px);
}
.pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-5);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brass), var(--brass-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.pillar__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Photo hover */
.photo-hover img {
  transition: transform 0.7s var(--ease-out);
}
.photo-hover:hover img,
.photo-hover:focus-within img {
  transform: scale(1.05);
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: var(--off-white);
  padding: var(--sp-10) 0 var(--sp-5);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-7);
}
.footer__brand {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer__brand svg {
  display: block;
  flex-shrink: 0;
  transform: translateY(3px);
  background: radial-gradient(circle at 30% 28%, #274668 0%, #163454 48%, #0b2540 100%);
  border-radius: 50%;
  overflow: hidden;
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  filter: drop-shadow(0 2px 10px rgba(201, 164, 90, 0.2));
}
.footer__brand span {
  color: var(--brass);
  margin-left: 0.1em;
}
.footer__tagline { font-size: var(--text-sm); opacity: 0.6; line-height: 1.7; }
.footer h4 { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--sp-5); color: var(--brass); }
.footer a { font-size: var(--text-sm); opacity: 0.65; transition: all var(--duration); display: block; padding: var(--sp-1) 0; }
.footer a:hover { opacity: 1; color: var(--brass); transform: translateX(4px); }
.footer__newsletter input {
  width: 100%;
  padding: var(--sp-3);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--off-white);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-3);
  transition: all var(--duration) var(--ease-out);
}
.footer__newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer__newsletter input:focus-visible {
  outline: none;
  border-color: var(--seafoam);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(79, 155, 150, 0.15);
}
.footer__bottom {
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  opacity: 0.4;
}
.footer__social { display: flex; gap: var(--sp-3); }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all var(--duration) var(--ease-out);
}
.footer__social a:hover {
  opacity: 1;
  border-color: rgba(201,164,90,0.8);
  color: var(--brass);
  transform: translateY(-2px);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   Animations & Reveal Effects
   ============================================================ */

/* Base fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slower) var(--ease-out), transform var(--duration-slower) var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keep image-band glass quotes frosted immediately (no initial clear state). */
.image-band__text .fade-in {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Slide from left */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--duration-slower) var(--ease-out), transform var(--duration-slower) var(--ease-out);
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--duration-slower) var(--ease-out), transform var(--duration-slower) var(--ease-out);
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up reveal */
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--duration-slower) var(--ease-out), transform var(--duration-slower) var(--ease-out);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Image clip reveal */
.clip-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s var(--ease-out);
}
.clip-reveal.visible {
  clip-path: inset(0 0 0 0);
}

/* Staggered children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.36s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.48s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

/* Hero slow zoom */
@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero__bg {
  animation: slow-zoom 25s ease-in-out infinite alternate;
}

/* Page header entrance */
.page-header {
  padding-top: calc(80px + var(--sp-10));
  padding-bottom: var(--sp-9);
}

/* Smooth number counter */
.counter {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--brass-dark);
  font-weight: 700;
}

/* Floating decorative elements */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .hero__bg { animation: none; }
  .fade-in, .slide-left, .slide-right, .scale-in, .clip-reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
  .hero__content h1 .line-inner {
    transform: translateY(0);
    transition: none;
  }
  .hero__scroll { animation: none; }
  .hero__scroll-line { animation: none; }
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */

/* Tablet (<=960px) */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--sp-7); }
  .location-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  h1 { font-size: var(--text-4xl); }
  .section { padding: var(--sp-9) 0; }
  .image-band { height: 40vh; min-height: 300px; }
  .image-band__text blockquote { font-size: var(--text-2xl); }
  .about-story__text { padding: var(--sp-5); }
  .nav__mobile { top: 76px; max-width: 360px; left: auto; }
}

/* Mobile (<=640px) */
@media (max-width: 640px) {
  .nav__inner { height: 64px; }
  .nav__mobile { top: 60px; left: 10px; right: 10px; max-width: none; }
  .nav__logo { font-size: var(--text-lg); }
  .nav__logo svg { width: 30px; height: 30px; }
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  .hero { min-height: 100vh; }
  .hero__content { padding-top: var(--sp-9); }
  .hero__ctas { flex-direction: column; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .section { padding: var(--sp-8) 0; }
  .footer__inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer__bottom { flex-direction: column; gap: var(--sp-3); }
  .reserve-form { flex-direction: column; align-items: center; }
  .reserve-form button[type="submit"] { width: 100%; }
  .testimonial-card { min-width: 100%; }
  .hero__scroll { display: none; }
  .image-band { height: 35vh; min-height: 250px; }
  .image-band__text blockquote { font-size: var(--text-xl); padding: var(--sp-5); }
  .page-header { padding-top: calc(64px + var(--sp-8)); padding-bottom: var(--sp-7); }
  .hero__content::before { inset: -16px -16px; }
  .about-story__text { padding: var(--sp-4); }
}
.link-accent {
  color: var(--seafoam-dark);
}
.link-accent:hover,
.link-accent:focus-visible {
  color: var(--navy);
}
.hero .link-accent {
  color: #e6fffb;
}
.hero .link-accent:hover,
.hero .link-accent:focus-visible {
  color: var(--off-white);
}
