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

:root {
  --plum:        #4A1942;
  --plum-dark:   #351230;
  --plum-light:  #6B2D5E;
  --amber:       #D4A843;
  --amber-light: #E8C76A;
  --cream:       #FDF8F0;
  --cream-dark:  #F5EDE0;
  --text:        #1A1A1A;
  --text-muted:  #6B6B6B;
  --white:       #FFFFFF;
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:      8px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

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

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

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.1; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--plum);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--amber {
  background: var(--amber);
  color: var(--plum-dark);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(74, 25, 66, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
}

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

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

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--plum-dark);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 0.875rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.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(--amber);
  transition: width var(--transition);
}
.nav-list a:hover { color: var(--white); }
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
}

.hamburger {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/38866541/pexels-photo-38866541.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 25, 66, 0.88) 0%,
    rgba(53, 18, 48, 0.78) 50%,
    rgba(26, 26, 26, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  z-index: 1;
}
.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--amber);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 24px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Intro Strip ─────────────────────────────────────── */
.intro-strip {
  background: var(--plum);
  padding: 0;
}

.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.intro-item:last-child { border-right: none; }
.intro-item:hover { background: rgba(255,255,255,0.05); }

.intro-icon {
  width: 32px;
  height: 32px;
  color: var(--amber);
  flex-shrink: 0;
}

.intro-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 2px;
}

.intro-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* ── Products ────────────────────────────────────────── */
.products {
  padding: 120px 0;
  background: var(--cream);
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

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

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(74, 25, 66, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(74, 25, 66, 0.15);
}

.product-card-img {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--plum);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}

.product-card-body {
  padding: 28px;
}

.product-card-title {
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 10px;
}

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

/* ── Editorial Banner ────────────────────────────────── */
.editorial-banner {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.editorial-banner-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/3691103/pexels-photo-3691103.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=800') center/cover no-repeat;
}

.editorial-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 25, 66, 0.92) 0%, rgba(53, 18, 48, 0.85) 100%);
}

.editorial-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.editorial-banner-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin: 24px 0 16px;
}

.editorial-banner-attr {
  font-size: 0.9375rem;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── About ───────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(74, 25, 66, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content .section-title { margin-bottom: 24px; }

.about-text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.value-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.value-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--plum);
  margin-bottom: 4px;
}

.value-item span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Visit ───────────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: var(--cream);
}

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

.visit-info { display: flex; flex-direction: column; }

.visit-address {
  font-style: normal;
  margin: 32px 0 24px;
}
.visit-address strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 4px;
}
.visit-address span {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
}

.visit-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.visit-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-muted);
}

.visit-icon {
  width: 22px;
  height: 22px;
  color: var(--amber);
  flex-shrink: 0;
}

.visit-details a {
  color: var(--plum);
  font-weight: 500;
  transition: color var(--transition);
}
.visit-details a:hover { color: var(--amber); }

.visit-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(74, 25, 66, 0.12);
  min-height: 400px;
}

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

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-brand .logo-mark {
  width: 48px;
  height: 48px;
  font-size: 1rem;
}

.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber); }

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,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 { gap: 48px; }
  .visit-grid { gap: 48px; }
}

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

  .nav-list {
    position: fixed;
    inset: 0;
    background: rgba(53, 18, 48, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    backdrop-filter: blur(12px);
  }
  .nav-list.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-list a {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
  }

  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .intro-strip-grid { grid-template-columns: 1fr; }
  .intro-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 24px 32px; }
  .intro-item:last-child { border-bottom: none; }

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

  .editorial-banner { padding: 100px 0; }

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-height: 400px; }

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

  .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .header-inner { height: 68px; }
  .logo-text { font-size: 1rem; }
  .hero { min-height: 580px; }
  .hero-content { padding-top: 68px; }
  .hero-sub { font-size: 1.0625rem; }
  .product-card-img { height: 200px; }
  .product-card-body { padding: 20px; }
  .product-card-title { font-size: 1.25rem; }
}
