/* ============================================
   Solera v2 — Minimal & Elegant
   Palette: Deep Navy, Warm Gold, Cream, Stone
   Fonts: Cormorant Garamond + Outfit
   ============================================ */

:root {
  --navy: #0B1D33;
  --gold: #C6A94E;
  --gold-hover: #d4b962;
  --cream: #FAF6F0;
  --stone: #EDE8E0;
  --charcoal: #2A2A2A;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-pad: clamp(80px, 10vw, 160px);
  --page-pad: clamp(24px, 5vw, 80px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Containers ---- */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.container-mid {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.container-signup {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* ---- Gold Rules ---- */
.gold-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 0 auto;
}

.gold-rule-sm {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto 0;
}

.gold-rule-animated {
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gold-rule-animated.animate {
  width: 60px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(11, 29, 51, 0.96);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(198, 169, 78, 0.1);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(42, 42, 42, 0.6);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

/* Switch to light text when nav is scrolled onto dark sections */
.nav.scrolled .nav-links a {
  color: rgba(250, 246, 240, 0.65);
}

.nav.scrolled .nav-links a:hover {
  color: var(--cream);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.25s, transform 0.25s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-1px);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  padding: 120px var(--page-pad) 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo wrapper — centers the image on white background */
.hero-logo-wrap {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: clamp(280px, 35vw, 420px);
  height: auto;
  display: block;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.hero-tagline em {
  font-style: italic;
}

.hero-content .gold-rule-animated {
  margin-bottom: 24px;
}

.hero-opening {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

/* Hero email signup */
.hero-signup {
  max-width: 420px;
  width: 100%;
}

.hero-signup-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 20px;
}

.hero-signup-fields {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-signup-fields input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: transparent;
  border: 1px solid var(--stone);
  border-radius: 4px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
}

.hero-signup-fields input[type="email"]::placeholder {
  color: rgba(42, 42, 42, 0.35);
}

.hero-signup-fields input[type="email"]:focus {
  border-color: var(--gold);
}

.hero-signup-thanks {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
}

.hero-signup-fine {
  font-size: 0.6875rem;
  color: rgba(42, 42, 42, 0.3);
  letter-spacing: 0.03em;
}

/* ---- Sections ---- */
.section {
  padding: var(--section-pad) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}

/* ---- About ---- */
.about {
  background: var(--cream);
  text-align: center;
}

.about .gold-rule-sm {
  margin-bottom: 48px;
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 24px;
}

.about-body {
  font-size: 1.0625rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: left;
}

.pull-quote {
  margin: 40px 0;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
  text-align: left;
}

.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--navy);
}

/* ---- Menu ---- */
.menu-section {
  background: var(--stone);
  text-align: center;
}

.menu-subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 48px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.menu-card {
  background: var(--cream);
  padding: 40px;
  border-radius: 4px;
  border-top: 2px solid var(--gold);
  text-align: left;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.menu-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  opacity: 0.75;
}

.menu-footnote {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  opacity: 0.5;
}

/* ---- Visit ---- */
.visit {
  background: var(--cream);
  text-align: center;
}

.visit .gold-rule-sm {
  margin-bottom: 24px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  text-align: center;
}

.visit-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.visit-block p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  opacity: 0.75;
}

.visit-block a {
  color: var(--gold);
  position: relative;
}

.visit-block a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.visit-block a:hover::after {
  width: 100%;
  left: 0;
}

.visit-map {
  width: 100%;
  height: 320px;
  background: var(--stone);
  border-radius: 8px;
  overflow: hidden;
}

.btn-gold {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  padding: 48px 0 36px;
  text-align: center;
  border-top: 1px solid rgba(250, 246, 240, 0.04);
}

.footer-address {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: rgba(250, 246, 240, 0.45);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 240, 0.4);
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 246, 240, 0.2);
}

/* ---- Scroll Reveals ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .hero-logo-wrap {
    width: 220px;
    height: 220px;
    margin-bottom: 32px;
  }

  .hero-signup-fields {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .signup-fields input[type="email"] {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.6875rem;
  }

  .nav-logo {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }

  .pull-quote p {
    font-size: 1.2rem;
  }

  .menu-card {
    padding: 32px 24px;
  }
}
