/* ── 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.6;
  color: #3D2B1F;
  background: #FDF6EE;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #A0522D; color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 8px 8px; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── Custom Properties ── */
:root {
  --terracotta: #A0522D;
  --terracotta-dark: #7A3E1F;
  --sand: #FDF6EE;
  --sand-dark: #F5E6D3;
  --sand-mid: #E8D5C0;
  --charcoal: #2C1810;
  --warm-gray: #6B5344;
  --cream: #FFFAF5;
  --accent-light: #F4C4A0;
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-eyebrow--light { color: var(--accent-light); }

.section-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.section-headline--light { color: #fff; }

.section { padding: var(--section-padding) 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  border: 2px solid var(--terracotta);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160, 82, 45, 0.35);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(253, 246, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(160, 82, 45, 0.1);
  padding: 0.875rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  transition: color var(--transition);
}
.site-header.scrolled .logo { color: var(--charcoal); }
.logo--light { color: #fff; }
.site-header.scrolled .logo--light { color: var(--charcoal); }
.logo-icon { flex-shrink: 0; }

/* ── Nav ── */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-light);
  transition: width var(--transition);
}
.nav-list a:hover { color: #fff; }
.nav-list a:hover::after { width: 100%; }
.site-header.scrolled .nav-list a { color: var(--warm-gray); }
.site-header.scrolled .nav-list a:hover { color: var(--charcoal); }
.site-header.scrolled .nav-list a::after { background: var(--terracotta); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle-bar {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .nav-toggle-bar { background: var(--charcoal); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #7A3E1F 0%, #A0522D 30%, #C47A52 60%, #D4956B 80%, #E8B896 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/9120377/pexels-photo-9120377.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.55) 0%,
    rgba(122, 62, 31, 0.45) 50%,
    rgba(160, 82, 45, 0.6) 100%
  );
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.text-accent {
  color: var(--accent-light);
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 6/7.5;
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.25);
  border: 4px solid var(--sand);
}
.about-content { padding: 1rem 0; }
.about-content p {
  font-size: 1.0625rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand-mid);
}
.stat { text-align: left; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--sand-mid);
}

/* ── Products ── */
.section--dark {
  background: var(--charcoal);
}
.section--dark .section-eyebrow { color: var(--accent-light); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-headline { max-width: 600px; margin-left: auto; margin-right: auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 196, 160, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.product-card-img {
  overflow: hidden;
  aspect-ratio: 5/4;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body {
  padding: 1.75rem;
}
.product-card-title {
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 0.625rem;
}
.product-card-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── Features ── */
.features-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.features-intro {
  font-size: 1.125rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--sand-mid);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 12px 40px rgba(160, 82, 45, 0.12);
  transform: translateY(-4px);
}
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sand-dark), var(--sand-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.feature-desc {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── Visit / CTA ── */
.section--cta {
  background: linear-gradient(135deg, #7A3E1F 0%, #A0522D 50%, #C47A52 100%);
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/14774815/pexels-photo-14774815.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=800');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}
.visit .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.visit-content { color: #fff; }
.visit-content .section-headline { margin-bottom: 2rem; }
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.visit-detail { display: flex; flex-direction: column; gap: 0.25rem; }
.visit-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.visit-detail-value {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.9);
}
.visit-detail-link {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: all var(--transition);
  display: inline-block;
  width: fit-content;
}
.visit-detail-link:hover { color: #fff; border-color: #fff; }
.text-accent-light { color: var(--accent-light); font-style: italic; font-weight: 400; }
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 6/5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-info p {
  font-size: 1.0625rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-method-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}
.contact-method-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.125rem;
}
.contact-method-value {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-method a { color: var(--charcoal); transition: color var(--transition); }
.contact-method a:hover { color: var(--terracotta); }

/* ── Form ── */
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--radius);
  background: var(--sand);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  transition: all var(--transition);
  outline: none;
}
.form-input::placeholder { color: #B8A090; }
.form-input:focus {
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #E8F5E9;
  border-radius: var(--radius);
  color: #2E7D32;
  font-weight: 500;
  font-size: 0.9375rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-links address {
  font-style: normal;
  line-height: 1.8;
  font-size: 0.9375rem;
}
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--sand);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a {
    font-size: 1.125rem;
    color: var(--charcoal) !important;
  }
  .nav-list a::after { background: var(--terracotta) !important; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.5);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .nav-overlay.active { opacity: 1; pointer-events: all; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .visit .container { grid-template-columns: 1fr; }
  .visit-map { order: -1; aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-headline { font-size: clamp(2rem, 10vw, 3rem); }
}

@media (max-width: 480px) {
  .about-stats { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
