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

:root {
  --burgundy:    #7B2D3B;
  --burgundy-d:  #5E2130;
  --blush:       #F5E6D3;
  --blush-l:     #FDF8F4;
  --neutral:     #2C2C2C;
  --neutral-l:   #6B6B6B;
  --white:       #FFFFFF;
  --grid-gap:    1.5rem;
  --radius:      8px;
  --radius-lg:   12px;
  --transition:  0.3s ease;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--neutral);
  background: var(--blush-l);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

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

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--neutral-l);
  max-width: 560px;
  line-height: 1.7;
}

.section-desc.light { color: rgba(245,230,211,0.8); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--burgundy-d);
  border-color: var(--burgundy-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,45,59,0.3);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
}

.btn-full { width: 100%; }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,59,0.1);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--neutral);
}

.logo-accent { color: var(--burgundy); }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-l);
  border-radius: var(--radius);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--burgundy);
  background: rgba(123,45,59,0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.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: 8rem 0 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-d) 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 6rem;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.text-accent { color: var(--blush); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,230,211,0.85);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(245,230,211,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245,230,211,0.25);
}

.hero-visual {
  position: relative;
  height: 720px;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

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

.hero-img-float {
  position: absolute;
  bottom: 2rem;
  left: -3rem;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  border: 4px solid rgba(255,255,255,0.2);
}

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

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ── Section Shared ───────────────────────────────── */
.section {
  padding: 6rem 0;
}

/* ── Products ─────────────────────────────────────── */
.products { background: var(--blush-l); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.product-img {
  height: 220px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-body {
  padding: 1.5rem;
}

.product-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--burgundy);
}

.product-body p {
  font-size: 0.9rem;
  color: var(--neutral-l);
  line-height: 1.65;
}

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

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

.about-visual { position: relative; }

.about-img-stack { position: relative; height: 640px; }

.about-img-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

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

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border: 4px solid var(--white);
}

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

.about-content .section-desc {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--neutral-l);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  color: var(--burgundy);
  margin-top: 2px;
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--neutral);
  margin-bottom: 0.15rem;
}

.about-feature span {
  font-size: 0.85rem;
  color: var(--neutral-l);
  line-height: 1.5;
}

/* ── Experience ───────────────────────────────────── */
.experience {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-d) 100%);
  padding: 6rem 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.exp-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.exp-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.exp-card-img {
  height: 220px;
  overflow: hidden;
}

.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.85;
}

.exp-card:hover .exp-card-img img {
  transform: scale(1.05);
  opacity: 1;
}

.exp-card-body {
  padding: 1.75rem;
}

.exp-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(245,230,211,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.exp-card-body h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.exp-card-body p {
  font-size: 0.9rem;
  color: rgba(245,230,211,0.75);
  line-height: 1.65;
}

/* ── Visit ────────────────────────────────────────── */
.visit { background: var(--blush-l); }

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

.visit-address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--neutral);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.visit-icon {
  flex-shrink: 0;
  color: var(--burgundy);
  margin-top: 2px;
}

.visit-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-l);
  margin-bottom: 0.2rem;
}

.visit-detail a,
.visit-detail span {
  font-size: 0.95rem;
  color: var(--neutral);
  line-height: 1.6;
}

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

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-height: 420px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

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

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

.contact-content .section-desc {
  max-width: 100%;
  margin-bottom: 0;
}

.contact-content p {
  color: var(--neutral-l);
  line-height: 1.75;
}

.contact-form-wrap {
  background: var(--blush-l);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(123,45,59,0.15);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--neutral);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--neutral-l);
  text-align: center;
  margin-top: 0.5rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.form-success h3 {
  font-size: 1.3rem;
  color: var(--burgundy);
}

.form-success p {
  color: var(--neutral-l);
  font-size: 0.95rem;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--neutral);
  color: rgba(245,230,211,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
}

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

.footer-nav,
.footer-contact,
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav strong,
.footer-contact strong,
.footer-hours strong {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blush);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(245,230,211,0.6);
  transition: var(--transition);
}

.footer-nav a:hover { color: var(--blush); }

.footer-contact address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(245,230,211,0.6);
  transition: var(--transition);
}

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

.footer-hours p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(245,230,211,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,230,211,0.4);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding-top: 7rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-img-stack { height: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,244,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123,45,59,0.1);
    padding: 1rem;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; }
  .main-nav a { padding: 0.75rem 1rem; }

  .product-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .contact-form-wrap { padding: 1.5rem; }
}
