/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #2C2C2C;
  background: #FAF6F1;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Palette ────────────────────────────────────────── */
:root {
  --terra:    #B8542F;
  --terra-dk: #8B3E1F;
  --sand:     #E8D5C0;
  --sand-lt:  #FAF6F1;
  --cream:    #F5EDE3;
  --charcoal: #2C2C2C;
  --warm-gray:#6B6560;
  --white:    #FFFFFF;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(44,44,44,.08);
  --shadow-lg:0 8px 40px rgba(44,44,44,.12);
}

/* ── Header ─────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,241,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--terra);
  border-radius: 8px;
  display: block;
  background-image: linear-gradient(135deg, var(--terra) 0%, var(--terra-dk) 100%);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.logo-accent { color: var(--terra); }

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background .2s, color .2s;
}
.nav-link:hover { background: var(--sand); color: var(--terra); }
.nav-link--cta {
  background: var(--terra);
  color: var(--white) !important;
}
.nav-link--cta:hover { background: var(--terra-dk); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  position: absolute;
  left: 9px;
}
.hamburger { top: 19px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding: 80px 0 96px;
  background: var(--sand-lt);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.12;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; flex-direction: column; gap: 8px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--warm-gray);
}
.trust-icon { width: 18px; height: 18px; color: var(--terra); flex-shrink: 0; }

/* Hero image */
.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 640/720;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--terra);
  box-shadow: var(--shadow);
}
.hero-badge svg { width: 16px; height: 16px; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn--primary:hover { background: var(--terra-dk); border-color: var(--terra-dk); }
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover { background: var(--charcoal); color: var(--white); }
.btn--full { width: 100%; }

/* ── Section shared ─────────────────────────────────── */
.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Products ───────────────────────────────────────── */
.products { padding: 96px 0; background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--sand-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img { aspect-ratio: 480/360; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 24px; }
.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.product-body p { font-size: .92rem; color: var(--warm-gray); line-height: 1.6; }

/* ── About ──────────────────────────────────────────── */
.about { padding: 96px 0; background: var(--sand-lt); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-image { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 600/700;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--sand-lt);
  aspect-ratio: 400/300;
  width: 55%;
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: var(--warm-gray); margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terra);
}
.stat-label { font-size: .82rem; color: var(--warm-gray); }

/* ── Visit ──────────────────────────────────────────── */
.visit { padding: 96px 0; background: var(--white); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; }
.visit-desc { color: var(--warm-gray); margin-bottom: 32px; }
.visit-details { display: flex; flex-direction: column; gap: 24px; }
.visit-detail { display: flex; gap: 16px; align-items: flex-start; }
.detail-icon { width: 24px; height: 24px; color: var(--terra); flex-shrink: 0; margin-top: 2px; }
.visit-detail dd { font-size: .95rem; color: var(--charcoal); line-height: 1.7; }
.visit-detail a { color: var(--terra); font-weight: 600; }
.visit-detail a:hover { text-decoration: underline; }
.hours-row { display: flex; justify-content: space-between; gap: 24px; }
.hours-day { font-weight: 600; color: var(--charcoal); }
.hours-time { color: var(--warm-gray); }
.visit-map { min-height: 400px; }

/* ── Contact ────────────────────────────────────────── */
.contact { padding: 96px 0; background: var(--charcoal); color: var(--white); }
.contact .section-eyebrow { color: var(--sand); }
.contact .section-title { color: var(--white); }
.contact .section-sub, .contact-desc { color: rgba(255,255,255,.6); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: .95rem;
  transition: color .2s;
}
.contact-method:hover { color: var(--sand); }
.method-icon { width: 22px; height: 22px; color: var(--sand); flex-shrink: 0; }
.contact-method span a { color: inherit; }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s, background .2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--terra); background: rgba(255,255,255,.12); }
.form-group textarea { resize: vertical; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(76,175,80,.15);
  border: 1px solid rgba(76,175,80,.3);
  border-radius: 8px;
  color: #81C784;
  font-size: .9rem;
  font-weight: 500;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────── */
.footer { padding: 64px 0 0; background: #1E1E1E; color: rgba(255,255,255,.6); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-desc { font-size: .9rem; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-links li { font-size: .9rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid, .visit-grid { gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--sand-lt);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--sand);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .3s, opacity .3s;
    z-index: 99;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; }
  .nav-link { width: 100%; padding: 12px 16px; }

  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-img-wrap { aspect-ratio: 4/3; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .products { padding: 72px 0; }
  .products-grid { grid-template-columns: 1fr; }

  .about { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-small { position: static; width: 100%; margin-top: 16px; }

  .visit { padding: 72px 0; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }

  .contact { padding: 72px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.8rem; }
  .about-stats { flex-direction: column; gap: 20px; }
}
