:root {
  --color-navy: #12294d;
  --color-navy-dark: #0c1e3a;
  --color-accent: #c8352b;
  --color-accent-dark: #a82a21;
  --color-gold: #d99a3d;
  --color-cream: #f7ecd9;
  --color-cream-dark: #efdfc0;
  --color-ink: #2a2420;
  --color-white: #ffffff;

  --font-display: 'Playfair Display', serif;
  --font-script: 'Caveat', cursive;
  --font-body: 'Poppins', sans-serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 12px 30px rgba(18, 41, 77, 0.15);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }

.icon {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 14px 26px; font-size: 0.9rem; }

.btn-accent { background: var(--color-accent); color: var(--color-white); }
.btn-accent:hover { background: var(--color-accent-dark); }

.btn-navy { background: var(--color-navy); color: var(--color-white); }
.btn-navy:hover { background: var(--color-navy-dark); }

/* ---------- Logo ---------- */
.logo { display: flex; align-items: center; }
.logo img { height: 46px; width: auto; display: block; }
.logo-footer {
  background: var(--color-white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}
.logo-footer img { height: 40px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav { flex: 1; display: flex; justify-content: center; gap: 28px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-navy);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-navy); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,20,30,0.88) 0%, rgba(12,20,30,0.6) 45%, rgba(12,20,30,0.15) 75%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto;
  padding: 60px 24px; width: 100%; color: var(--color-white);
}
.hero-flourish { font-size: 1.6rem; margin-bottom: 10px; filter: grayscale(0.15); }
.hero-kicker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 4px;
  max-width: 620px;
  line-height: 1.1;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.hero-script {
  font-family: var(--font-script);
  color: var(--color-gold);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin: 0 0 20px;
  line-height: 1;
}
.hero-subtitle { font-size: 1.05rem; max-width: 460px; margin: 0 0 28px; opacity: 0.95; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Section titles ---------- */
.section-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 0 6px;
}
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-navy);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin: 0 0 40px;
}
.section-cta { text-align: center; margin-top: 32px; }

/* ---------- Locations ---------- */
.locations-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px 24px 60px;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.location-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(18,41,77,0.06);
}
.location-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
}
.location-photo img { width: 100%; height: 100%; object-fit: cover; }
.location-photo.no-photo {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
}
.location-photo.no-photo svg { width: 56px; height: 56px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.location-pin {
  position: absolute;
  left: 50%; bottom: -22px;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 4px solid var(--color-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.location-pin svg { width: 18px; height: 18px; fill: none; stroke: var(--color-white); stroke-width: 2; }
.location-body { padding: 34px 24px 22px; text-align: center; }
.location-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-navy);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.location-address { font-size: 0.88rem; color: #5a5048; margin: 0 0 18px; line-height: 1.4; }
.location-actions {
  display: flex;
  border-top: 1px solid rgba(18,41,77,0.1);
  margin: 0 -24px -22px;
}
.location-actions a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-navy);
  border-right: 1px solid rgba(18,41,77,0.1);
  transition: background 0.15s ease;
}
.location-actions a:last-child { border-right: none; color: var(--color-accent); }
.location-actions a:hover { background: var(--color-cream); }
.location-actions svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ---------- Menu highlights ---------- */
.menu-highlights {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px 70px;
  scroll-margin-top: 90px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}
.menu-item { text-align: center; }
.menu-item-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
.menu-item-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-name {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.menu-item-price { color: var(--color-accent); font-weight: 700; }

/* ---------- Our Story ---------- */
.our-story { background: var(--color-cream-dark); padding: 70px 24px; scroll-margin-top: 90px; }
.our-story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
.our-story-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-navy);
  font-size: 1.6rem;
  margin: 0 0 14px;
}
.our-story-text .section-kicker { text-align: left; }
.our-story-text p:not(.section-kicker):not(.story-quote) {
  font-size: 0.95rem;
  color: #4a4038;
  margin: 0 0 16px;
}
.story-quote {
  font-family: var(--font-script);
  color: var(--color-accent);
  font-size: 1.5rem;
  margin: 12px 0 0;
}

.story-features {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.story-feature { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; flex: 1; }
.story-feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  background: var(--color-navy);
}
.story-feature:nth-child(2) .story-feature-icon { background: var(--color-accent); }
.story-feature-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.story-feature-label { font-size: 0.78rem; font-weight: 700; color: var(--color-navy); text-transform: uppercase; letter-spacing: 0.02em; }

.story-visit {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.story-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-height: 220px;
  background: var(--color-cream);
}
.story-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.story-visit-title {
  font-family: var(--font-script);
  color: var(--color-accent);
  font-size: 1.5rem;
  margin: 0 0 6px;
}
.story-visit-text p { font-size: 0.85rem; color: #4a4038; margin: 0 0 14px; }

/* ---------- Contact ---------- */
.contact-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 70px 24px 80px;
  scroll-margin-top: 90px;
}
.contact-title {
  text-align: center;
  font-family: var(--font-script);
  color: var(--color-accent);
  font-size: 2.4rem;
  margin: 0 0 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-navy);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid rgba(18,41,77,0.2);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-ink);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,53,43,0.15);
}
.form-field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form .btn { align-self: center; margin-top: 8px; }
.contact-form .btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-status {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  min-height: 1.2em;
}
.form-status.success { color: #2f7d4f; }
.form-status.error { color: var(--color-accent); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 30px 24px 0;
  scroll-margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-social { display: flex; align-items: center; gap: 14px; }
.footer-social-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.75; }
.footer-social-icons { display: flex; gap: 10px; }
.footer-social-icons a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  transition: background 0.15s ease;
}
.footer-social-icons a:hover { background: var(--color-accent); }
.footer-social-icons svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  width: 100%;
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  opacity: 0.85;
}
.footer-powered { display: flex; align-items: center; gap: 8px; }
.powered-label { opacity: 0.7; }
.powered-brand { display: flex; align-items: center; gap: 6px; font-weight: 800; }
.powered-brand svg { width: 16px; height: 16px; fill: #4caf6d; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .our-story-inner { grid-template-columns: 1fr; }
  .story-visit { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .btn-order-header { display: none; }
  .story-features { flex-direction: column; }
}
@media (max-width: 780px) {
  .site-header.nav-open .main-nav {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-cream);
    flex-direction: column; padding: 16px 24px; gap: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  }
}
