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

:root {
  --plum: #5B2C6F;
  --plum-deep: #3D1D4A;
  --plum-light: #7D3C99;
  --plum-muted: #9B59B6;
  --amber: #D4A017;
  --amber-light: #F0C040;
  --amber-pale: #FDF0C8;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --charcoal: #1A1A1A;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ─────────────────────────────────── */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--plum-deep);
  margin-bottom: 1.5rem;
}

.section-headline em {
  font-style: italic;
  color: var(--plum);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 540px;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 60px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}

.btn-primary:hover {
  background: var(--plum-deep);
  border-color: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(91, 44, 111, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}

.btn-ghost:hover {
  background: var(--plum);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(91, 44, 111, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(91, 44, 111, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: var(--plum);
  color: var(--amber-light);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--plum-deep);
  line-height: 1.2;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s;
}

.main-nav a:hover {
  color: var(--plum);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--plum);
  color: var(--white) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 60px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--plum-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--plum-deep);
  transition: var(--transition);
  display: block;
}

.nav-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 2rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(91, 44, 111, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--plum-deep);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--plum);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.hero-detail svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-detail a {
  color: var(--plum);
  font-weight: 500;
  transition: color 0.3s;
}

.hero-detail a:hover {
  color: var(--amber);
}

/* Hero Image Stack */
.hero-visual {
  position: relative;
}

.hero-image-stack {
  position: relative;
}

.hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(91, 44, 111, 0.15);
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 3/4;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(91, 44, 111, 0.2);
  border: 6px solid var(--cream);
}

.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--plum);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(91, 44, 111, 0.3);
}

.badge-number {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.9;
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Marquee ────────────────────────────────────── */
.marquee-strip {
  background: var(--plum-deep);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.marquee-dot {
  color: var(--amber);
  font-size: 0.5rem;
  align-self: center;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── About ──────────────────────────────────────── */
.about {
  padding: 8rem 0;
  background: var(--cream);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 7/9;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(91, 44, 111, 0.12);
}

.about-image-accent {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 40%;
  aspect-ratio: 1;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.about-content .lead {
  margin-bottom: 1.25rem;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(91, 44, 111, 0.1);
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── Products ───────────────────────────────────── */
.products {
  padding: 8rem 0;
  background: var(--white);
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header .lead {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(91, 44, 111, 0.15);
}

.product-card--large {
  grid-column: span 7;
  grid-row: span 2;
}

.product-card:not(.product-card--large) {
  grid-column: span 5;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(61, 29, 74, 0.9) 0%, transparent 100%);
  color: var(--white);
}

.product-card-content h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card-content p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* ── Experience ─────────────────────────────────── */
.experience {
  padding: 8rem 0;
  background: var(--plum-deep);
  color: var(--white);
  overflow: hidden;
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.experience .section-headline {
  color: var(--white);
}

.experience .section-headline em {
  color: var(--amber-light);
}

.experience .lead {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.experience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.experience-list-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 160, 23, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-light);
}

.experience-visual {
  position: relative;
}

.experience-img-group {
  position: relative;
  height: 600px;
}

.experience-img-group img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.experience-img-group img:first-child {
  width: 65%;
  height: 75%;
  top: 0;
  left: 0;
}

.experience-img-group img:last-child {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  border: 6px solid var(--plum-deep);
}

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

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

.visit-info {
  padding-right: 2rem;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.visit-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.visit-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

.visit-detail-value {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
}

.visit-phone {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum);
  transition: color 0.3s;
}

.visit-phone:hover {
  color: var(--amber);
}

.hours-note {
  font-size: 0.85rem;
  color: var(--text-light);
}

.btn-directions {
  margin-top: 1rem;
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 450px;
  box-shadow: 0 20px 60px rgba(91, 44, 111, 0.12);
}

/* ── CTA ────────────────────────────────────────── */
.cta {
  padding: 8rem 0;
  background: var(--plum);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta .section-eyebrow {
  color: var(--amber-light);
}

.cta .section-headline {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.cta .section-headline em {
  color: var(--amber-light);
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-ghost {
  border-color: var(--white);
  color: var(--white);
}

.cta .btn-ghost:hover {
  background: var(--white);
  color: var(--plum);
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo .logo-mark {
  background: var(--plum);
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-contact {
  text-align: right;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-contact a {
  color: var(--amber-light);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Scroll Animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 3rem;
  }

  .about-grid,
  .experience-layout {
    gap: 3rem;
  }

  .hero-img-accent {
    left: -1rem;
    bottom: -1rem;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .experience-layout,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-badge {
    right: 0;
  }

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

  .product-card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .product-card:not(.product-card--large) {
    grid-column: span 1;
  }

  .experience-img-group {
    height: 400px;
  }

  .visit-info {
    padding-right: 0;
  }
}

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

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--cream);
    padding: 6rem 2.5rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .main-nav a {
    font-size: 1.1rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }

  .hero {
    padding-top: 5rem;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-img-accent {
    display: none;
  }

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

  .product-card--large,
  .product-card:not(.product-card--large) {
    grid-column: span 1;
  }

  .product-card {
    min-height: 280px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
