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

:root {
  --emerald: #065f46;
  --emerald-dark: #044d38;
  --emerald-light: #047857;
  --cream: #faf8f4;
  --cream-dark: #f0ece4;
  --cream-mid: #f5f1ea;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--emerald);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 1000;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 16px;
}

/* ── Typography ───────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  color: var(--emerald);
  margin-bottom: 24px;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}

.btn-ghost:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--emerald);
  letter-spacing: -0.02em;
}

.logo-wordmark {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

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

.main-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s var(--ease);
  position: relative;
}

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

.main-nav a:hover {
  color: var(--emerald);
}

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

.nav-cta {
  color: var(--emerald) !important;
  border: 1px solid var(--emerald);
  padding: 8px 18px;
  border-radius: 3px;
  transition: all 0.2s var(--ease);
}

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

.nav-cta:hover {
  background: var(--emerald);
  color: var(--white) !important;
}

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

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

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

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

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250,248,244,0.3) 0%, rgba(250,248,244,0.85) 60%, var(--cream) 100%),
    url('https://images.pexels.com/photos/6097827/pexels-photo-6097827.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-light);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--emerald);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section Dividers ─────────────────────────────────────────── */
.section-divider {
  padding: 0 24px;
}

.divider-line {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,95,70,0.15), transparent);
}

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

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

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 75%;
  height: 450px;
  border-radius: 6px;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border: 4px solid var(--cream);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.about-features {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 400;
}

.feat-icon {
  color: var(--emerald);
  flex-shrink: 0;
}

/* ── Products ─────────────────────────────────────────────────── */
.products {
  padding: 100px 0;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.product-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6, 95, 70, 0.06);
  transition: all 0.3s var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6, 95, 70, 0.1);
}

.product-img {
  height: 240px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-body {
  padding: 28px;
}

.product-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--emerald);
  margin-bottom: 10px;
  font-weight: 400;
}

.product-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Hours ────────────────────────────────────────────────────── */
.hours {
  padding: 100px 0;
  background: var(--emerald);
  color: var(--white);
}

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hours-left .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.hours-left .section-title {
  color: var(--white);
}

.hours-left p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 400px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

.hours-table td {
  padding: 14px 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-weight: 300;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 400;
}

.hours-note {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

/* ── Location ─────────────────────────────────────────────────── */
.location {
  padding: 100px 0;
}

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

.location-address {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin: 24px 0;
  font-style: normal;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location-detail svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
  font-weight: 500;
}

.location-detail a,
.location-detail span {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 400;
}

.location-map {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background:
    linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--emerald);
  border: 1px solid rgba(6, 95, 70, 0.1);
  border-radius: 8px;
  text-align: center;
  padding: 40px;
}

.map-placeholder svg {
  opacity: 0.5;
}

.map-placeholder p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

.map-link {
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
  border-bottom: 1px solid var(--emerald);
  padding-bottom: 2px;
  transition: all 0.2s var(--ease);
}

.map-link:hover {
  color: var(--emerald-dark);
  border-color: var(--emerald-dark);
}

/* ── Contact ──────────────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--cream-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-phone a {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--emerald);
  transition: color 0.2s var(--ease);
}

.contact-phone a:hover {
  color: var(--emerald-dark);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(6, 95, 70, 0.06);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8125rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(6, 95, 70, 0.15);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  transition: all 0.2s var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--emerald);
  font-weight: 500;
  background: rgba(6, 95, 70, 0.06);
  border-radius: 4px;
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--emerald);
  color: var(--white);
  padding: 64px 0 40px;
}

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

.footer-brand .logo-mark {
  color: var(--white);
  font-size: 1.75rem;
}

.footer-brand .logo-wordmark {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
}

.footer-brand p,
.footer-brand a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 12px;
  display: block;
  font-weight: 300;
  transition: color 0.2s var(--ease);
}

.footer-brand a:hover {
  color: var(--white);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-nav a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
}

.footer-copy p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .hours-inner,
  .location-grid,
  .contact-inner {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s var(--ease);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .main-nav a {
    font-size: 1rem;
  }

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

  .hero {
    min-height: 90vh;
    padding: 100px 24px 60px;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .hero-scroll {
    display: none;
  }

  .about-grid,
  .hours-inner,
  .location-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 400px;
    order: -1;
  }

  .about-img-main {
    height: 320px;
    width: 100%;
  }

  .about-img-float {
    width: 60%;
    height: 200px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px;
  }

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

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .product-body {
    padding: 20px;
  }

  .hours-left p {
    max-width: none;
  }
}
