﻿:root {
  --ink: #2b3e2d;
  --cream: #f6f0e6;
  --accent: #2f4a35;
  --accent-dark: #233728;
  --charcoal: #1f2a24;
  --leaf: #6f8c6a;
  --shadow: rgba(31, 42, 36, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--accent);
  background: radial-gradient(circle at top left, #fbf6ef 0%, #f6f0e6 55%, #efe6d6 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

main {
  flex: 1;
  padding: 0 6vw 6rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 6vw 1.2rem;
  position: sticky;
  top: 0;
  background: rgba(246, 240, 230, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-image {
  height: 84px;
  width: 190px;
  display: block;
  object-fit: cover;
  object-position: 50% 34%;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.logo-font {
  font-family: "Cormorant Garamond", serif;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(47, 74, 53, 0.35);
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--accent);
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-link {
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem;
  padding: 3.5rem 0 2rem;
  align-items: center;
}

.hero-content h1,
.story-text h2,
.order-card h2,
.section-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 38rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(47, 74, 53, 0.7);
}

.hero-meta span {
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(47, 74, 53, 0.2);
  border-radius: 999px;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px -32px var(--shadow);
  border: 1px solid rgba(47, 74, 53, 0.12);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.video-audio-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(246, 240, 230, 0.9);
  border: 1px solid rgba(47, 74, 53, 0.25);
  color: var(--accent);
  font: inherit;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}

.video-audio-toggle.is-muted::after {
  content: "";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--cream);
  font-weight: 600;
  border: none;
  box-shadow: 0 12px 30px -18px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px var(--shadow);
  background: var(--accent-dark);
}

.button-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(47, 74, 53, 0.35);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-weight: 600;
  color: var(--accent);
  margin-top: 1rem;
}

.text-link::after {
  content: "->";
}

.story-section {
  margin-top: 5rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.story-image {
  background: rgba(244, 239, 229, 0.92);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 20px 50px -32px var(--shadow);
}

.story-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.story-text {
  color: var(--accent);
}

.story-text p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.order-section {
  margin-top: 4.5rem;
}

.order-card {
  background: var(--accent);
  color: var(--cream);
  border-radius: 24px;
  padding: 2.6rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 24px 70px -32px var(--shadow);
}

.order-card p {
  max-width: 32rem;
  line-height: 1.7;
}

.contact-section {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2.5rem;
  align-items: start;
}

.section-header {
  margin-bottom: 2rem;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px -30px var(--shadow);
  display: grid;
  gap: 1.2rem;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(31, 42, 36, 0.15);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(47, 74, 53, 0.25);
  border-color: var(--accent-dark);
}

.form-note {
  font-size: 0.9rem;
  color: rgba(43, 43, 42, 0.6);
}

.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 18px 40px -28px var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 0.6rem;
}

.map-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px -22px var(--shadow);
  margin-top: 0.4rem;
}

.map-card iframe {
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
}

.map-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.hours-block {
  display: grid;
  gap: 0.4rem;
}

.hours-list {
  list-style: none;
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  font-weight: 500;
}

.hours-list span:first-child {
  color: var(--accent);
  min-width: 110px;
}

.hours-note {
  font-size: 0.9rem;
  color: rgba(31, 42, 36, 0.7);
}

.contact-card .text-link {
  color: var(--accent);
}

.site-footer {
  padding: 2rem 6vw 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(47, 74, 53, 0.7);
}

.fine-print {
  color: rgba(47, 74, 53, 0.6);
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .hero,
  .story-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .order-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  main {
    padding: 0 5vw 4rem;
  }

  .site-header {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: rgba(246, 240, 230, 0.98);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -24px 0 60px -30px var(--shadow);
    z-index: 20;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .logo-image {
    height: 68px;
    width: 150px;
    object-position: 50% 32%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.story-section,
.order-section,
.contact-section {
  animation: fadeUp 0.8s ease both;
}
