/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2D1F1F;
  background: #FDF8F5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2B;
  --blush: #F5E6D3;
  --blush-light: #FDF8F5;
  --cream: #FDF5EE;
  --text: #2D1F1F;
  --text-light: #6B5555;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.938rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.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(123,45,59,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn--nav {
  padding: 10px 24px;
  font-size: 0.875rem;
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn--nav:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
}
.btn--full { width: 100%; }

/* ── Section Eyebrow & Headline ── */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-headline { margin-bottom: 0; }

/* ── Section Base ── */
.section { padding: 100px 0; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,245,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(45,31,31,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--burgundy);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 10px;
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.logo-text { transition: opacity 0.3s; }
.primary-nav ul { display: flex; align-items: center; gap: 32px; }
.primary-nav a {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}
.primary-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width 0.3s;
}
.primary-nav a:not(.btn):hover { color: var(--burgundy); }
.primary-nav a:not(.btn):hover::after { width: 100%; }

/* ── Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92,31,43,0.82) 0%,
    rgba(123,45,59,0.65) 50%,
    rgba(45,31,31,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--blush);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(253,248,245,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253,248,245,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(253,248,245,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(45,31,31,0.12);
}
.about-text p {
  font-size: 1.063rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(123,45,59,0.12);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}
.stat-label {
  font-size: 0.813rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── PRODUCTS ── */
.products { background: var(--blush-light); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(45,31,31,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(45,31,31,0.12);
}
.product-card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-body { padding: 28px 32px 32px; }
.product-card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.product-card-desc {
  font-size: 0.938rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── GALLERY ── */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item--wide {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── VISIT ── */
.visit { background: var(--cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info { padding: 24px 0; }
.visit-details {
  font-size: 1.063rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text);
}
.visit-details a {
  color: var(--burgundy);
  transition: color 0.3s;
}
.visit-details a:hover { color: var(--burgundy-deep); }
.visit-hours h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.visit-hours ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(123,45,59,0.1);
  font-size: 0.938rem;
}
.visit-hours ul li span:first-child { color: var(--text-light); }
.visit-hours ul li span:last-child { font-weight: 500; color: var(--text); }
.visit-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 32px rgba(45,31,31,0.1);
}

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text p {
  font-size: 1.063rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-direct { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--burgundy);
  transition: color 0.3s, gap 0.3s;
}
.contact-link:hover { color: var(--burgundy-deep); gap: 16px; }

/* ── Form ── */
.contact-form-wrap {
  background: var(--blush-light);
  border: 1px solid rgba(123,45,59,0.08);
  border-radius: 16px;
  padding: 40px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(123,45,59,0.15);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(45,31,31,0.3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(123,45,59,0.06);
  border: 1px solid rgba(123,45,59,0.15);
  border-radius: 10px;
  font-size: 0.938rem;
  color: var(--burgundy);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--text);
  color: rgba(253,248,245,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .logo-mark { width: 48px; height: 48px; font-size: 1rem; }
.footer-brand .logo-text { color: var(--white); font-size: 1.25rem; }
.footer-brand p { font-size: 0.938rem; color: rgba(253,248,245,0.5); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.938rem;
  color: rgba(253,248,245,0.6);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover { color: var(--blush); padding-left: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.938rem; }
.footer-contact a {
  color: rgba(253,248,245,0.6);
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--blush); }
.footer-bottom {
  border-top: 1px solid rgba(253,248,245,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.813rem;
  color: rgba(253,248,245,0.35);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,245,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid rgba(123,45,59,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
  }
  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .primary-nav a:not(.btn) { font-size: 1.125rem; }

  .hero-headline { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { border-radius: 12px; }
  .about-stats { gap: 24px; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card-image img { height: 240px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item,
  .gallery-item--wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }
  .gallery-item--wide { aspect-ratio: 16/9; }

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

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 100px 16px 60px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { aspect-ratio: 16/9; }
}
