/* ─── Google Fonts ───────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --bg:       #FAF6F1;
  --card:     #F0E8DF;
  --primary:  #B85C38;
  --primary-fg: #ffffff;
  --text:     #2C1A0E;
  --muted:    #7A6558;
  --border:   #E2D6CC;
  --serif:    'Fraunces', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Promo Banner ───────────────────────────────────────────────────────── */
.promo-banner {
  background: var(--primary);
  color: var(--primary-fg);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-header.scrolled { border-color: var(--border); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.header-nav { display: flex; align-items: center; gap: 24px; }

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }

.lang-toggle {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--text);
  background: transparent;
  color: var(--text);
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-toggle:hover { background: var(--text); color: var(--bg); }

/* ─── Container ──────────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1600px; margin: 0 auto; padding: 0 24px; }

/* ─── Fade-in animation ──────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 120px;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.hero-text { flex: 1; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border: none;
}
.btn-dark {
  background: var(--text);
  color: var(--bg);
}
.btn-dark:hover { background: var(--primary); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--text);
  color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--bg); }

.hero-images { flex: 1; position: relative; }
.hero-main-img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin: 0 auto;
}
.hero-thumb {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 220px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--bg);
}

/* ─── Marquee ────────────────────────────────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(240, 232, 223, 0.5);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}
.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
  margin: 0 16px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Features ───────────────────────────────────────────────────────────── */
.features { padding: 80px 0; background: var(--card); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.feature-icon {
  width: 48px; height: 48px;
  margin-bottom: 16px;
  color: var(--primary);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-text { font-size: 14px; color: var(--muted); }

/* ─── Shop ───────────────────────────────────────────────────────────────── */
.shop { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sub { color: var(--muted); max-width: 480px; margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.product-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--card);
  margin-bottom: 32px;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-img-wrap:hover img { transform: scale(1.05); }

.product-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.product-desc { color: var(--muted); margin-bottom: 28px; line-height: 1.7; }

.price-list {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-size { font-weight: 500; font-size: 16px; }
.price-amount {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--primary);
}

/* ─── Gallery ────────────────────────────────────────────────────────────── */
.gallery { padding: 80px 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gallery-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item { aspect-ratio: 1; overflow: hidden; background: var(--border); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ─── Contact ────────────────────────────────────────────────────────────── */
.contact { padding: 100px 0; text-align: center; }
.contact-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-sub { font-size: 18px; color: var(--muted); max-width: 480px; margin: 0 auto 48px; }
.contact-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.contact-note { margin-top: 40px; font-size: 13px; font-weight: 600; color: var(--primary); letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.footer-admin {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(122,101,88,0.35);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-admin:hover { color: var(--muted); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 48px; }
  .hero-thumb { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; gap: 64px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 48px 0 80px; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }
}
