/* ============================================
   BARISTA — Lima, OH
   Clean minimalist · Burgundy + Blush
   ============================================ */

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

:root {
  --burgundy: #6B1D2A;
  --burgundy-deep: #4A1520;
  --blush: #F4E4DF;
  --blush-light: #FBF6F4;
  --cream: #FDF9F7;
  --white: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-light: #8A8A8A;
  --line: rgba(107, 29, 42, 0.12);
  --line-strong: rgba(107, 29, 42, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--burgundy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease-smooth);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(107, 29, 42, 0.06);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: 0.01em;
}

.nav-logo-icon {
  flex-shrink: 0;
}

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

.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.25s var(--ease-smooth);
  position: relative;
}

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

.nav-link:hover {
  color: var(--burgundy);
}

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

.nav-cta {
  margin-left: 8px;
  padding: 8px 20px;
  border: 1px solid var(--burgundy);
  border-radius: 100px;
  color: var(--burgundy);
  transition: background 0.25s, color 0.25s, transform 0.2s var(--ease-out);
}

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

.nav-cta:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.hamburger {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 18px;
  height: 1px;
  background: var(--burgundy);
  transition: transform 0.3s, top 0.3s, width 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--burgundy);
  transition: transform 0.3s, top 0.3s;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  display: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 88px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--line-strong);
  z-index: 1;
}

.hero-line::after {
  content: '';
  display: block;
  width: 1px;
  height: 0;
  background: var(--burgundy);
  animation: heroLineGrow 0.8s var(--ease-out) 0.3s forwards;
}

@keyframes heroLineGrow {
  to { height: 60px; }
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  padding-right: 16px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.4s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.55s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.85s forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 1s forwards;
}

.hero-meta-dot {
  color: var(--burgundy);
  font-size: 16px;
  line-height: 1;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 29, 42, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--burgundy);
  background: rgba(107, 29, 42, 0.04);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* HERO IMAGE */
.hero-image-wrap {
  position: relative;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 0.6s forwards;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.hero-image-frame img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.hero-image-frame:hover img {
  transform: scale(1.02);
}

.hero-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--burgundy);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

/* ============================================
   DIVIDER
   ============================================ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.divider-icon {
  color: var(--burgundy);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 520px;
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 100px 0;
}

.menu-header {
  text-align: center;
  margin-bottom: 64px;
}

.menu-header .section-desc {
  margin: 0 auto;
}

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

.menu-category {
  margin-bottom: 48px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 4px 0;
}

.menu-item-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
}

.menu-item-desc {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 300;
  text-align: right;
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 15px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--blush-light);
}

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

.about-image-group {
  position: relative;
}

.about-image-main {
  border-radius: 8px;
  overflow: hidden;
}

.about-image-main img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}

.about-image-small {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--blush-light);
  box-shadow: 0 16px 48px rgba(107, 29, 42, 0.1);
}

.about-image-small img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  display: block;
}

.about-content {
  padding: 16px 0;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-signature {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--burgundy);
  opacity: 0.7;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  padding: 100px 0;
}

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

.visit-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visit-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.visit-value {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
}

.visit-link {
  font-size: 16px;
  color: var(--burgundy);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.visit-link:hover {
  border-color: var(--burgundy);
  color: var(--burgundy-deep);
}

.visit-hours {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.visit-hours-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.visit-hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visit-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.visit-hours-list li span:first-child {
  color: var(--text-secondary);
  font-weight: 400;
}

.visit-hours-list li span:last-child {
  color: var(--text-primary);
  font-weight: 400;
}

.visit-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(107, 29, 42, 0.08);
}

.map-placeholder {
  position: relative;
  padding-bottom: 75%;
  height: 0;
}

.map-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 100px 0;
  background: var(--burgundy);
  text-align: center;
}

.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 600px;
}

.cta-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-primary);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.footer-logo-icon {
  color: var(--blush);
}

.footer-addr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-image-frame img {
    height: 500px;
  }

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

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

  .about-image-small {
    right: 0;
  }

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

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(253, 249, 247, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out), visibility 0.35s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-image-frame img {
    height: 400px;
  }

  .about-image-main img {
    height: 400px;
  }

  .about-image-small {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 12px;
    border: none;
    box-shadow: none;
  }

  .about-image-small img {
    width: 100%;
    height: 240px;
  }

  .section-divider {
    padding: 0 16px;
  }

  .menu, .about, .visit {
    padding: 72px 0;
  }

  .cta {
    padding: 72px 0;
  }
}
