@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #6D4C41;
  --primary-light: #8D6E63;
  --primary-dark: #4E342E;
  --accent: #D7CCC8;
  --accent-light: #EFEBE9;
  --accent-dark: #BCAAA4;
  --text: #3E2723;
  --text-light: #5D4037;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --shadow: 0 2px 20px rgba(109,76,65,0.08);
  --shadow-hover: 0 8px 40px rgba(109,76,65,0.15);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  line-height: 1.3;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

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

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span { color: var(--gold); }

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary-dark); margin: 6px 0; transition: var(--transition); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--gold-light);
  margin-bottom: 32px;
}

.hero-price small { font-size: 1rem; opacity: 0.7; font-family: 'Source Sans 3', sans-serif; }

.hero-img {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-img img { border-radius: 8px; max-height: 400px; object-fit: contain; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,169,110,0.4);
}

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

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

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

.btn-dark:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(109,76,65,0.3);
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--primary-dark); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: var(--accent); }

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto;
  border-radius: 2px;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--accent);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.gallery-item img { max-height: 100%; object-fit: contain; }

/* ── FEATURES / BENEFITS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--accent);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--accent);
  position: relative;
  transition: var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-hover); }

.review-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent-dark);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.review-text {
  padding-top: 32px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.review-author { font-weight: 600; color: var(--primary-dark); }
.review-location { font-size: 0.85rem; color: var(--text-light); }

.stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover { background: var(--accent-light); }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.open .faq-question::after { content: '−'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── ORDER FORM ── */
.order-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 80px 0;
}

.order-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.order-form-wrap h2 { text-align: center; margin-bottom: 8px; }
.order-form-wrap .divider { margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(109,76,65,0.1);
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
}

/* ── CONTACT INFO ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.contact-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--accent);
}

.contact-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--primary-dark);
  color: var(--accent);
  padding: 60px 0 24px;
}

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

.footer-brand .logo { color: var(--white); margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 360px; }

.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--accent); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a { color: var(--accent-dark); margin-left: 24px; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── PAGE HERO / BREADCRUMB ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 60px 0 50px;
  text-align: center;
}

.page-hero h1 { font-size: 2.6rem; color: var(--white); margin-bottom: 8px; }
.page-hero p { opacity: 0.8; font-size: 1.05rem; }

/* ── CONTENT PAGE ── */
.content-page { padding: 60px 0; }
.content-page h2 { font-size: 1.8rem; margin: 40px 0 16px; }
.content-page h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.content-page p { margin-bottom: 16px; color: var(--text-light); }
.content-page ul { margin: 12px 0 20px 24px; color: var(--text-light); }
.content-page li { margin-bottom: 8px; }

.content-narrow { max-width: 800px; margin: 0 auto; }

/* ── PRODUCT PAGE ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.product-main-img {
  background: var(--white);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.product-thumb {
  background: var(--white);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.product-thumb:hover, .product-thumb.active { border-color: var(--primary); }

.product-info h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.product-desc { margin-bottom: 32px; color: var(--text-light); line-height: 1.8; }

.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.spec-table tr { border-bottom: 1px solid var(--accent); }
.spec-table td { padding: 14px 0; }
.spec-table td:first-child { font-weight: 600; width: 40%; color: var(--primary-dark); }
.spec-table td:last-child { color: var(--text-light); }

/* ── SUCCESS PAGE ── */
.success-wrap {
  text-align: center;
  padding: 120px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 3rem;
  color: var(--primary);
}

.success-wrap h1 { margin-bottom: 16px; }
.success-wrap p { color: var(--text-light); margin-bottom: 32px; font-size: 1.1rem; }

/* ── COOKIE BAR ── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--white);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-bar.show { display: block; }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-inner p { font-size: 0.9rem; opacity: 0.9; flex: 1; }
.cookie-inner p a { color: var(--gold-light); text-decoration: underline; }

.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept { background: var(--gold); color: var(--primary-dark); }
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.cookie-decline:hover { background: rgba(255,255,255,0.1); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-img { max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--accent);
    box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .order-form-wrap { padding: 32px 24px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 2rem; }
}
