/* =====================================================
   PREMIORAPLUS — Main Stylesheet
   Palette: Warm Cream / Cognac / Gold / Deep Brown
   ===================================================== */

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

:root {
  --cream:         #F7F3EC;
  --cream-dark:    #EFE8D8;
  --cream-deep:    #E5DBC8;
  --cognac:        #8B5E3C;
  --cognac-dark:   #6B4423;
  --cognac-light:  #A8745A;
  --gold:          #C9A227;
  --gold-light:    #D4B96A;
  --gold-pale:     #EDD98A;
  --dark:          #1C1008;
  --brown:         #3D2010;
  --text:          #2C1810;
  --text-muted:    #7A5A42;
  --border:        #D9C9B0;
  --border-light:  #EDE3D0;
  --white:         #FDFAF5;
  --shadow:        rgba(139, 94, 60, 0.12);
  --shadow-md:     rgba(139, 94, 60, 0.2);
  --shadow-lg:     rgba(28, 16, 8, 0.18);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--brown);
  line-height: 1.2;
}

/* ── Container ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: var(--cognac);
  color: var(--white);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--cognac);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--cognac-dark);
  border-color: var(--cognac-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--shadow-md);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  color: var(--cognac);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--cognac);
  transition: all 0.3s ease;
  background: transparent;
}
.btn-outline:hover {
  background: var(--cognac);
  color: var(--white);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: var(--cognac);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  background: transparent;
  transition: gap 0.3s ease;
}
.btn-ghost:hover { gap: 14px; }

/* =====================================================
   HEADER
   ===================================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 48px; width: auto; object-fit: contain; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--cognac-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.logo-text .gold { color: var(--gold); }
#main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
#main-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
#main-nav a:hover,
#main-nav a.active { color: var(--cognac); }
#main-nav a:hover::after,
#main-nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cognac);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 55%, var(--cream-deep) 100%);
  z-index: 0;
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.055'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 76px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--brown);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--cognac);
  display: block;
}
.hero-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--cognac);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-frame::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.hero-frame img {
  width: 100%; height: 540px;
  object-fit: cover;
  position: relative; z-index: 1;
}
.hero-frame-placeholder {
  width: 100%; height: 540px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-deep) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  border: 1px solid var(--border);
  position: relative; z-index: 1;
}
.hero-frame-placeholder .ph-icon { font-size: 3.5rem; color: var(--gold-light); opacity: 0.5; }
.hero-frame-placeholder .ph-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =====================================================
   FEATURES STRIP
   ===================================================== */
.features-strip {
  background: var(--cognac-dark);
  padding: 56px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-item { text-align: center; }
.feature-icon {
  font-size: 1.9rem;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: block;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.82rem;
  color: rgba(247,243,236,0.65);
  line-height: 1.6;
}

/* =====================================================
   SECTION COMMON
   ===================================================== */
section { padding: 96px 0; }
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--cognac); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-divider {
  display: flex; align-items: center;
  justify-content: center; gap: 14px;
  margin-bottom: 18px;
}
.section-divider::before,
.section-divider::after {
  content: ''; flex: 1; max-width: 70px;
  height: 1px; background: var(--border);
}
.diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =====================================================
   PRODUCTS
   ===================================================== */
.products-section { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px var(--shadow-lg);
  border-color: var(--cognac-light);
}
.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover .product-image img { transform: scale(1.07); }
.product-image-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream-deep));
}
.product-image-ph span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}
.product-info { padding: 26px 24px; }
.product-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cognac);
  transition: gap 0.3s;
}
.product-card:hover .product-action { gap: 14px; }
.no-products {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
}
.no-products h3 { font-size: 1.8rem; margin-bottom: 12px; }
.no-products p { color: var(--text-muted); }

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9000;
  background: rgba(28, 16, 8, 0.92);
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 860px; width: 100%;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  max-height: 90vh;
  animation: lbIn 0.3s ease;
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-close {
  position: absolute; top: 14px; right: 14px;
  z-index: 10;
  width: 38px; height: 38px;
  background: var(--cognac); color: #fff;
  border: none; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.25s;
}
.lb-close:hover { background: var(--cognac-dark); }
.lb-gallery {
  position: relative;
  background: var(--cream-dark);
  overflow: hidden;
  aspect-ratio: 1;
}
.lb-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.lb-thumbs {
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  display: flex; gap: 6px;
}
.lb-thumb {
  width: 44px; height: 44px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}
.lb-thumb.active, .lb-thumb:hover { opacity: 1; border-color: var(--gold); }
.lb-info { padding: 40px 36px; overflow-y: auto; }
.lb-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.lb-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--brown);
  margin-bottom: 18px;
  line-height: 1.25;
}
.lb-divider { width: 36px; height: 1px; background: var(--gold); margin-bottom: 22px; }
.lb-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; }
.lb-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--gold-light); opacity: 0.4;
}

/* =====================================================
   ABOUT HOME
   ===================================================== */
.about-home { background: var(--cream-dark); }
.about-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-home-img { position: relative; }
.about-home-img img { width: 100%; height: 500px; object-fit: cover; }
.about-home-img-ph {
  width: 100%; height: 500px;
  background: linear-gradient(135deg, var(--cream-deep), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  font-size: 3.5rem; color: var(--gold-light); opacity: 0.4;
}
.about-home-img::after {
  content: '';
  position: absolute;
  bottom: -16px; left: -16px;
  width: 55%; height: 55%;
  border: 1px solid var(--gold);
  opacity: 0.35; z-index: -1;
  pointer-events: none;
}
.about-home-text .section-header { text-align: left; }
.about-home-text p { font-size: 0.94rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 18px; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 28px;
}
.about-value { display: flex; align-items: center; gap: 12px; }
.av-icon {
  width: 34px; height: 34px;
  background: var(--cognac);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.85rem;
}
.av-label { font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* =====================================================
   CONTACT CTA
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--cognac-dark) 0%, var(--cognac) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section .section-label { color: var(--gold-light); }
.cta-section .section-title { color: var(--cream); font-size: 2.4rem; margin-bottom: 16px; }
.cta-section .section-title em { color: var(--gold-pale); }
.cta-section p { color: rgba(247,243,236,0.78); font-size: 0.98rem; max-width: 460px; margin: 0 auto 36px; }
.cta-section .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.cta-section .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.cta-section .btn-outline { border-color: rgba(247,243,236,0.5); color: var(--cream); }
.cta-section .btn-outline:hover { background: rgba(247,243,236,0.1); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--dark);
  color: rgba(247,243,236,0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: var(--cream); margin-bottom: 14px; display: block; font-size: 1.5rem; }
.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.8; color: rgba(247,243,236,0.55); max-width: 280px; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(247,243,236,0.2);
  color: rgba(247,243,236,0.65);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0.88rem;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream); margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(247,243,236,0.55); font-size: 0.86rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.f-contact { display: flex; flex-direction: column; gap: 12px; }
.f-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; }
.f-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.f-contact-item a { color: rgba(247,243,236,0.55); text-decoration: none; transition: color 0.3s; }
.f-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(247,243,236,0.1);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(247,243,236,0.35);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: rgba(247,243,236,0.55); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: 136px 0 72px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; justify-content: center;
  align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.breadcrumb a { text-decoration: none; color: var(--text-muted); font-size: 0.8rem; }
.breadcrumb-sep { color: var(--border); }
.breadcrumb span { color: var(--cognac); font-size: 0.8rem; font-weight: 600; }
.page-hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 16px; }
.page-hero p { font-size: 0.98rem; color: var(--text-muted); max-width: 460px; margin: 0 auto; line-height: 1.8; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-story { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.story-text h2 { font-size: 2.15rem; margin-bottom: 22px; }
.story-text h2 em { font-style: italic; color: var(--cognac); }
.story-text p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 18px; }
.story-img { position: sticky; top: 96px; }
.story-img img { width: 100%; object-fit: cover; }
.story-img-ph {
  width: 100%; height: 580px;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream-deep));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  font-size: 4rem; color: var(--gold-light); opacity: 0.35;
}
/* Values */
.values-section { background: var(--cream-dark); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: var(--white);
  padding: 38px 30px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover { border-color: var(--cognac-light); box-shadow: 0 8px 32px var(--shadow); }
.val-icon { font-size: 2.4rem; color: var(--gold); margin-bottom: 18px; display: block; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: 1.95rem; margin-bottom: 18px; }
.contact-info > p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 36px; }
.c-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.c-detail { display: flex; align-items: flex-start; gap: 14px; }
.c-detail-icon {
  width: 42px; height: 42px;
  background: var(--cognac);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.95rem;
}
.c-detail-info h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 3px;
}
.c-detail-info p,
.c-detail-info a { font-size: 0.93rem; color: var(--text); text-decoration: none; transition: color 0.3s; }
.c-detail-info a:hover { color: var(--cognac); }
/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 44px 40px;
  border: 1px solid var(--border-light);
}
.contact-form-wrap h3 { font-size: 1.55rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem; color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--cognac); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-msg {
  padding: 14px 18px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.success { background: #f0faf0; border: 1px solid #6bb06b; color: #2d6a2d; }
.form-msg.error   { background: #fdf0f0; border: 1px solid #d97979; color: #7a2020; }

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 3rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-home-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-img { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .lightbox-inner { grid-template-columns: 1fr; }
  .lb-gallery { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .header-inner { padding: 0 22px; }
  #main-nav {
    display: none;
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    z-index: 899;
  }
  #main-nav.open { display: flex; }
  #main-nav a {
    padding: 15px 28px;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
  }
  #main-nav a::after { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  section { padding: 64px 0; }
  .section-title { font-size: 2.1rem; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about-values { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .page-hero h1 { font-size: 2.2rem; }
  .cta-section .section-title { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .lightbox { padding: 16px; }
  .lb-info { padding: 24px 20px; }
}
