/* ============================================
   Nora's Tacos — Stylesheet
   Palette: Emerald (#1B5E20 / #2E7D32) + Cream (#F5F0E8 / #FAF7F0)
   Fonts: Cormorant Garamond (serif) + Lato (sans)
============================================ */

/* ── 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;
}

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  background-color: #F5F0E8;
  color: #2C2C2C;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.15;
  color: #1B3A1C;
}

em {
  font-style: italic;
  color: #2E7D32;
}

.text-emerald {
  color: #2E7D32;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 64px;
  }
}

/* ── Section Eyebrow ── */
.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2E7D32;
  margin-bottom: 16px;
  display: block;
}

/* ── Section Title ── */
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  margin-bottom: 32px;
  color: #1B3A1C;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background-color: #1B5E20;
  color: #F5F0E8;
  border-color: #1B5E20;
}

.btn-primary:hover {
  background-color: #2E7D32;
  border-color: #2E7D32;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: #1B5E20;
  border-color: #1B5E20;
}

.btn-outline:hover {
  background-color: #1B5E20;
  color: #F5F0E8;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 0.9rem;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 94, 32, 0.1);
  transition: all 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(27, 94, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1B3A1C;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: #1B5E20;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border: 1.5px solid #F5F0E8;
  border-radius: 50%;
}

/* ── Navigation ── */
.nav-list {
  display: none;
  align-items: center;
  gap: 36px;
}

@media (min-width: 900px) {
  .nav-list {
    display: flex;
  }
}

.nav-list a {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2C2C2C;
  transition: color 0.3s ease;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #2E7D32;
  transition: width 0.3s ease;
}

.nav-list a:hover {
  color: #2E7D32;
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: #1B5E20;
  color: #F5F0E8 !important;
  padding: 10px 24px;
  border-radius: 2px;
  transition: all 0.3s ease !important;
}

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

.nav-cta:hover {
  background-color: #2E7D32 !important;
  color: #F5F0E8 !important;
  transform: translateY(-1px);
}

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle-bar {
  width: 24px;
  height: 1.5px;
  background-color: #1B3A1C;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Nav Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 58, 28, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Main Nav Mobile ── */
.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #F5F0E8;
  z-index: 1000;
  padding: 100px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 30px rgba(0,0,0,0.1);
}

.main-nav.active {
  transform: translateX(0);
}

.nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.nav-list a {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.nav-cta {
  margin-top: 16px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  background: #F5F0E8;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
  flex: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #2E7D32;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  color: #1B3A1C;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A4A4A;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #4A4A4A;
}

.detail-icon {
  width: 20px;
  height: 20px;
  color: #2E7D32;
  flex-shrink: 0;
}

/* ── Hero Image ── */
.hero-image {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 94, 32, 0.15);
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 600/750;
}

.hero-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #1B5E20;
  border-radius: 50%;
  opacity: 0.08;
  z-index: -1;
}

@media (min-width: 900px) {
  .hero-img-wrapper {
    height: 600px;
  }
}

/* ── Hero Wave ── */
.hero-wave {
  margin-top: auto;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

@media (min-width: 768px) {
  .hero-wave svg {
    height: 80px;
  }
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: #F5F0E8;
}

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

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(27, 94, 32, 0.12);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 500/620;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 60%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(27, 94, 32, 0.18);
  border: 4px solid #F5F0E8;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 340/420;
}

.about-img-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: #1B5E20;
  opacity: 0.06;
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 600px) {
  .about-img-secondary {
    right: 0;
    bottom: -30px;
  }
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.about-signature {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.signature-line {
  width: 48px;
  height: 1px;
  background: #2E7D32;
}

.signature-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #1B3A1C;
}

/* ── Menu ── */
.menu {
  padding: 100px 0;
  background: #1B3A1C;
  color: #F5F0E8;
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.menu-header .section-eyebrow {
  color: #81C784;
}

.menu-header .section-title {
  color: #F5F0E8;
}

.menu-header .section-title em {
  color: #A5D6A7;
}

.menu-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
}

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

@media (min-width: 900px) {
  .menu-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #F5F0E8;
  margin-bottom: 8px;
}

.category-note {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 28px;
  font-style: italic;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.menu-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #F5F0E8;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.5;
}

.menu-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 48px;
  font-style: italic;
}

/* ── Craft ── */
.craft {
  padding: 100px 0;
  background: #F5F0E8;
}

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

@media (min-width: 900px) {
  .craft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.craft-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.craft-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .craft-values {
    grid-template-columns: repeat(4, 1fr);
  }
}

.craft-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.craft-value-icon {
  width: 40px;
  height: 40px;
  color: #2E7D32;
}

.craft-value span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2C2C2C;
}

.craft-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.craft-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.craft-img-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 400/500;
}

.craft-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 600/280;
}

/* ── Visit ── */
.visit {
  padding: 100px 0;
  background: #FAF7F0;
}

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

@media (min-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.visit-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  background: #1B5E20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-detail-icon svg {
  width: 20px;
  height: 20px;
  color: #F5F0E8;
}

.visit-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2E7D32;
  margin-bottom: 4px;
}

.visit-detail-value {
  font-size: 1rem;
  line-height: 1.7;
  color: #2C2C2C;
}

.hours-note {
  font-size: 0.85rem;
  color: #6B6B6B;
  font-style: italic;
}

.visit-detail-link {
  color: #2E7D32;
  font-weight: 500;
  transition: color 0.3s ease;
}

.visit-detail-link:hover {
  color: #1B5E20;
  text-decoration: underline;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.visit-map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(27, 94, 32, 0.12);
}

.map-wrapper {
  position: relative;
  aspect-ratio: 4/3;
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Footer ── */
.site-footer {
  background: #1B3A1C;
  color: #F5F0E8;
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.footer-brand .logo {
  color: #F5F0E8;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.5);
  font-style: italic;
}

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.6);
}

.footer-contact a {
  color: #A5D6A7;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #F5F0E8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 28px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s 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; }

/* ── Selection ── */
::selection {
  background: #2E7D32;
  color: #F5F0E8;
}
