/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #faf9f7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --plum: #6B3A6B;
  --plum-dark: #4e2a4e;
  --plum-light: #8a508a;
  --amber: #D4A03C;
  --amber-dark: #b8862e;
  --amber-light: #e8c06a;
  --cream: #faf9f7;
  --cream-dark: #f0ece6;
  --charcoal: #1a1a2e;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(26,26,46,0.08);
  --shadow-lg: 0 12px 48px rgba(26,26,46,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-small { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-primary {
  background: var(--plum);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,58,107,0.3);
}
.btn-amber {
  background: var(--amber);
  color: var(--charcoal);
}
.btn-amber:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,60,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}
.btn-outline: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(250,249,247,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.logo-text { display: none; }
.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--plum); }
.main-nav a:hover::after { width: 100%; }
.main-nav .btn { margin-left: 8px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  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 {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.hero-headline br { display: none; }
.hero-body {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--plum);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
}
.hero-image { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  background: var(--amber);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.3;
}

/* ===== 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; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  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; }
.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--plum);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.about-content .section-title { margin-top: 4px; }
.about-content > p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 2px;
}
.feature-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 120px 0;
  background: var(--cream);
}
.products .section-header { margin-bottom: 60px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-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-img img { transform: scale(1.05); }
.product-body {
  padding: 28px;
}
.product-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-body p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== WHY US ===== */
.why-us {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-eyebrow { color: var(--amber); }
.why-content .section-title { color: var(--white); margin-top: 4px; }
.why-intro {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.8;
}
.why-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.why-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.why-image { position: relative; }
.why-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.why-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 4px solid var(--amber);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.5;
}

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: var(--white);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.visit-intro {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.visit-details { display: flex; flex-direction: column; gap: 28px; }
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-icon {
  flex-shrink: 0;
  color: var(--plum);
  margin-top: 2px;
}
.visit-detail strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plum);
  margin-bottom: 4px;
}
.visit-detail p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}
.visit-detail a {
  color: var(--gray);
  transition: var(--transition);
}
.visit-detail a:hover { color: var(--plum); }
.visit-map {
  background: var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 40px;
  text-align: center;
  height: 100%;
  min-height: 400px;
}
.map-placeholder p { color: var(--gray); font-size: 0.95rem; }
.map-placeholder strong { color: var(--charcoal); }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-content .section-title { margin-top: 4px; }
.contact-intro {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 16px;
}
.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: var(--transition);
  background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--plum);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 16px;
}
.form-note a { color: var(--plum); font-weight: 600; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 40px;
  text-align: center;
}
.form-success h3 {
  font-size: 1.5rem;
  color: var(--plum);
}
.form-success p { color: var(--gray); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-hours p { font-size: 0.9rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--amber); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .why-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { padding-top: 72px; }
  .hero-image { order: -1; }
  .hero-img-wrap { max-height: 480px; }
  .about-img-float { right: -20px; bottom: -20px; }
  .why-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,249,247,0.98);
    backdrop-filter: blur(12px);
    padding: 32px 24px;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
  }
  .main-nav a::after { display: none; }
  .main-nav .btn { margin-left: 0; width: 100%; text-align: center; }
  .hero-grid { gap: 40px; }
  .hero-headline br { display: block; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-accent { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .about-img-float { position: relative; right: 0; bottom: 0; margin-top: 16px; border: 4px solid var(--white); }
  .about-images { display: flex; flex-direction: column; }
  .about-badge { right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { 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-body { padding: 20px; }
}
