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

:root {
  --plum: #6B2D5B;
  --plum-deep: #4A1E3E;
  --plum-light: #8B3D72;
  --amber: #F5C518;
  --amber-light: #FFD94D;
  --amber-dark: #D4A017;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --text: #1A1A1A;
  --text-light: #4A4A4A;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(107, 45, 91, 0.08);
  --shadow-lg: 0 12px 48px rgba(107, 45, 91, 0.12);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font-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;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

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

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

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--plum-deep);
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.3);
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(107, 45, 91, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  transition: color 0.3s;
}

.nav.scrolled .nav-logo {
  color: var(--plum-deep);
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--plum-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s;
}

.nav.scrolled .nav-links a {
  color: var(--text-light);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav.scrolled .nav-links a:hover {
  color: var(--plum);
  background: rgba(107, 45, 91, 0.06);
}

.nav-cta {
  background: var(--amber) !important;
  color: var(--plum-deep) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle-bar {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav.scrolled .nav-toggle-bar {
  background: var(--plum-deep);
}

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

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

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

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--plum-deep);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-overlay-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all 0.3s;
  display: block;
}

.nav-overlay-link:hover {
  color: var(--amber);
  background: rgba(245, 197, 24, 0.08);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 30, 62, 0.92) 0%,
    rgba(107, 45, 91, 0.85) 40%,
    rgba(139, 61, 114, 0.75) 70%,
    rgba(212, 160, 23, 0.5) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(26, 26, 26, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 120px 24px 80px;
}

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

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  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); }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(107, 45, 91, 0.06);
  padding: 0 24px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 28px 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.trust-item svg {
  color: var(--plum);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(107, 45, 91, 0.12);
  flex-shrink: 0;
}

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

.products .container:first-of-type {
  text-align: center;
}

.products .section-sub {
  margin: 0 auto 64px;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.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.06);
}

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

.product-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  margin-bottom: 10px;
  color: var(--plum-deep);
}

.product-card-body p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
}

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

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

.about-images {
  position: relative;
  min-height: 560px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

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

.about-content .section-label {
  margin-bottom: 16px;
}

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

.about-content p {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(107, 45, 91, 0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--plum);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Banner ── */
.banner {
  padding: 0 24px;
}

.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--plum-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 480px;
}

.banner-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.banner-headline {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.banner-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 440px;
}

.banner-img {
  overflow: hidden;
}

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

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

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

.visit-info .section-label {
  margin-bottom: 16px;
}

.visit-info .section-title {
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visit-detail {
  display: flex;
  gap: 16px;
}

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

.visit-detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

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

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

.visit-detail a:hover {
  color: var(--plum-light);
}

.visit-map {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

.contact-text .section-label {
  margin-bottom: 16px;
}

.contact-text .section-title {
  margin-bottom: 20px;
}

.contact-text > p {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--plum);
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(107, 45, 91, 0.12);
  transition: all 0.3s;
}

.contact-direct-item:hover {
  border-color: var(--plum);
  background: rgba(107, 45, 91, 0.04);
  transform: translateX(4px);
}

.contact-direct-item svg {
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 14px 18px;
  border: 1.5px solid rgba(107, 45, 91, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: all 0.3s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(107, 45, 91, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(107, 45, 91, 0.06);
  border: 1.5px solid rgba(107, 45, 91, 0.12);
  border-radius: var(--radius);
  color: var(--plum);
  font-weight: 500;
  font-size: 0.9375rem;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--plum);
}

/* ── Footer ── */
.footer {
  background: var(--plum-deep);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--plum-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong,
.footer-contact strong {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
}

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

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

  .about-grid,
  .visit-grid,
  .contact-grid {
    gap: 48px;
  }

  .banner-inner {
    grid-template-columns: 1fr;
  }

  .banner-content {
    padding: 56px 40px;
  }

  .banner-img {
    min-height: 300px;
  }

  .about-images {
    min-height: 420px;
  }

  .about-img-float {
    right: -20px;
    bottom: -20px;
    width: 180px;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 100px 20px 80px;
  }

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

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

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .products {
    padding: 80px 0;
  }

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

  .products .section-sub {
    margin-bottom: 40px;
  }

  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    min-height: 360px;
    order: -1;
  }

  .about-img-float {
    width: 160px;
    right: -10px;
    bottom: -10px;
  }

  .about-stats {
    gap: 24px;
  }

  .banner {
    padding: 0 24px;
  }

  .banner-content {
    padding: 48px 32px;
  }

  .visit {
    padding: 80px 0;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visit-map {
    height: 300px;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .footer {
    padding: 56px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero-headline {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .banner-content {
    padding: 36px 24px;
  }

  .contact-form-wrap {
    padding: 20px;
  }
}
