/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Custom Properties ────────────────────────────── */
:root {
  --charcoal: #1a1a1a;
  --charcoal-700: #3d3d3d;
  --charcoal-600: #4f4f4f;
  --coral: #E8735A;
  --coral-light: #F4A08C;
  --white: #ffffff;
  --off-white: #FAFAF8;
  --line: rgba(26,26,26,0.10);
  --line-strong: rgba(26,26,26,0.20);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }
p { line-height: 1.75; }

/* ── Utility ──────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.section-eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); margin-bottom: 16px; }
.section-eyebrow--light { color: var(--coral-light); }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--charcoal); margin-bottom: 20px; }
.section-title--light { color: var(--white); }
.section-body { font-size: 15px; color: var(--charcoal-600); max-width: 520px; }
.section-body--wide { max-width: 640px; }
.section-body--light { color: rgba(255,255,255,0.72); max-width: 480px; }
.section-body + .section-body { margin-top: 16px; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover { background: #d4614a; border-color: #d4614a; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(26,26,26,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 32px; height: 32px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--white); background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; letter-spacing: 0.04em;
}
.nav-logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--charcoal); letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--charcoal-600); letter-spacing: 0.02em; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--coral); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-weight: 500 !important; color: var(--coral) !important; }
.nav-cta::after { display: none; }

/* Toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle-line { width: 20px; height: 1.5px; background: var(--charcoal); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-menu-link { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--charcoal); transition: color 0.2s; }
.mobile-menu-link:hover { color: var(--coral); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: url('https://images.pexels.com/photos/12255152/pexels-photo-12255152.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.72) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; padding: 0 24px; padding-top: 64px; }
.hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.6rem); color: var(--white); margin-bottom: 24px; line-height: 1.08; }
.hero-accent { color: var(--coral-light); font-style: italic; }
.hero-subtitle { font-size: clamp(15px, 2vw, 17px); color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1; }
.hero-scroll span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── About ────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { border-radius: 2px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text { padding-left: 8px; }
.about-stats { display: flex; align-items: center; gap: 24px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--charcoal); line-height: 1; }
.stat-label { font-size: 12px; color: var(--charcoal-600); letter-spacing: 0.04em; }
.stat-divider { width: 1px; height: 40px; background: var(--line-strong); flex-shrink: 0; }

/* ── Products ─────────────────────────────────────── */
.products { background: var(--off-white); }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.product-card {
  background: var(--white); border-radius: 2px; overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.product-card:hover { box-shadow: 0 12px 40px rgba(26,26,26,0.08); transform: translateY(-4px); }
.product-card-image { overflow: hidden; aspect-ratio: 4/3; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-body { padding: 28px 28px 32px; }
.product-card-title { font-size: 22px; color: var(--charcoal); margin-bottom: 10px; }
.product-card-desc { font-size: 14px; color: var(--charcoal-600); line-height: 1.7; }

/* ── Story ────────────────────────────────────────── */
.story { position: relative; background: var(--charcoal); overflow: hidden; }
.story-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/7447291/pexels-photo-7447291.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=900') center center / cover no-repeat;
  opacity: 0.12;
}
.story-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-images { position: relative; padding-top: 48px; }
.story-image-main { border-radius: 2px; overflow: hidden; }
.story-image-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-image-small {
  position: absolute; bottom: -40px; right: -24px;
  border-radius: 2px; overflow: hidden;
  border: 4px solid var(--charcoal);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* ── Visit ────────────────────────────────────────── */
.visit { background: var(--white); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.visit-details { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.visit-detail { display: flex; gap: 20px; align-items: flex-start; }
.visit-icon { width: 22px; height: 22px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.visit-detail-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal-600); margin-bottom: 4px; }
.visit-detail-value { font-size: 15px; color: var(--charcoal); line-height: 1.7; }
.visit-detail-value a { color: var(--charcoal); text-decoration: none; border-bottom: 1px solid var(--line-strong); transition: border-color 0.2s, color 0.2s; }
.visit-detail-value a:hover { color: var(--coral); border-color: var(--coral); }
.visit-map { border-radius: 2px; overflow: hidden; min-height: 480px; border: 1px solid var(--line); }
.map-placeholder iframe { width: 100%; height: 100%; min-height: 480px; display: block; }

/* ── Contact ──────────────────────────────────────── */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap { background: var(--white); padding: 40px; border-radius: 2px; border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal-600); }
.form-input {
  width: 100%; padding: 12px 14px;
  font-family: var(--font-body); font-size: 14px; color: var(--charcoal);
  background: var(--off-white); border: 1px solid var(--line-strong);
  border-radius: 2px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,115,90,0.12); }
.form-input::placeholder { color: #aaa; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 16px;
  background: #f0faf4; border: 1px solid #c8f0d8;
  border-radius: 2px; font-size: 14px; color: #1a6b3a;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.65); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark {
  width: 32px; height: 32px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--white); background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; letter-spacing: 0.04em;
}
.footer-logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--white); }
.footer-tagline { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-nav-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-nav a:hover { color: var(--coral-light); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: var(--coral-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ── Reveal Animations (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal-up.revealed { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 80px 0; }
  .about-grid,
  .story-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-text { padding-left: 0; }
  .products-grid { grid-template-columns: 1fr; }
  .story-images { padding-top: 0; margin-top: 40px; }
  .story-image-small { right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .about-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .visit-map { min-height: 300px; }
  .map-placeholder iframe { min-height: 300px; }
}
