/* ============================================================
   SWEETS AND ROSES — Main Stylesheet
   Palette: Deep Bottle Green + Champagne Rose + Cream
   Fonts: Alice (headings) + Raleway (body)
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --green-deep:     #1B4332;
  --green-mid:      #2D6A4F;
  --green-light:    #52B788;
  --champagne:      #E8C4A0;
  --champagne-dark: #C9956A;
  --rose-soft:      #D4A5A5;
  --rose-light:     #F2D9D9;
  --cream:          #FAF7F2;
  --cream-dark:     #F0EAE0;
  --white:          #FFFFFF;
  --ink:            #1A1A1A;
  --ink-mid:        #3D3D3D;
  --ink-light:      #6B6B6B;
  --border:         #E0D8CD;

  --font-heading: 'Alice', Georgia, serif;
  --font-body:    'Raleway', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 8px rgba(27,67,50,0.08);
  --shadow-md:  0 6px 24px rgba(27,67,50,0.12);
  --shadow-lg:  0 16px 48px rgba(27,67,50,0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; color: var(--green-deep); }
.section-sub { font-size: 1.05rem; color: var(--ink-light); max-width: 580px; }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  border: 2px solid var(--green-deep);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-champagne {
  background: var(--champagne);
  color: var(--green-deep);
  border: 2px solid var(--champagne);
}
.btn-champagne:hover {
  background: var(--champagne-dark);
  border-color: var(--champagne-dark);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--green-deep);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- NAVIGATION ---------- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#nav.scrolled {
  background: rgba(27, 67, 50, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 4px;
  filter: invert(0);
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; padding: 10px 24px !important; font-size: 0.78rem !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-deep);
  z-index: 999;
  padding-top: 100px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--champagne); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg?v=1');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.9);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 720px;
  padding-left: max(24px, calc((100% - var(--max-w)) / 2 + 24px));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 196, 160, 0.15);
  border: 1px solid rgba(232, 196, 160, 0.35);
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--champagne);
  margin-bottom: 16px;
  font-style: italic;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { color: rgba(255,255,255,0.5); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- PAGE HERO ---------- */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-deep);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 48px;
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero .hero-tagline { margin-bottom: 0; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--champagne); }

/* ---------- FEATURES STRIP ---------- */
.features {
  background: var(--green-deep);
  padding: 0;
}
.features-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.feature-item {
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.04); }
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 196, 160, 0.12);
  border-radius: 50%;
  margin-bottom: 16px;
  color: var(--champagne);
  flex-shrink: 0;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ---------- OFFERINGS GRID ---------- */
.offerings { background: var(--cream); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.offering-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-deep);
  cursor: pointer;
}
.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.offering-card:hover img { transform: scale(1.06); }
.offering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.85) 0%, rgba(27,67,50,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.offering-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.offering-card p { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin: 0; }

/* ---------- BRAND TEASER ---------- */
.brand-teaser { background: var(--white); }
.brand-teaser-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.brand-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-teaser-text { padding: 20px 0 20px 48px; }
.brand-teaser-text p { color: var(--ink-mid); font-size: 1.02rem; }
.brand-quote {
  border-left: 3px solid var(--champagne);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.brand-quote p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green-deep);
  font-style: italic;
  margin: 0;
}

/* ---------- STATS ---------- */
.stats { background: var(--green-deep); padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- SOCIAL CTA ---------- */
.social-cta { background: var(--cream-dark); }
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.social-icon-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  border: 2px solid var(--green-deep);
  color: var(--green-deep);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.social-icon-link:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- SOCIAL FEED ---------- */
.social-feed { background: var(--white); }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.feed-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feed-item:hover img { transform: scale(1.08); }
.feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,67,50,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.feed-item:hover .feed-overlay { opacity: 1; }
.feed-overlay svg { color: white; }

/* ---------- ABOUT STORY ---------- */
.about-story { background: var(--white); }
.about-story p { color: var(--ink-mid); font-size: 1.02rem; line-height: 1.85; }
.about-story .grid-2 { align-items: start; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* ---------- PHILOSOPHY CARDS ---------- */
.philosophy { background: var(--cream); }
.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--champagne);
}
.philosophy-icon {
  width: 64px;
  height: 64px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-deep);
}
.philosophy-card h3 { color: var(--green-deep); margin-bottom: 12px; }
.philosophy-card p { color: var(--ink-mid); font-size: 0.95rem; }

/* ---------- VALUES ---------- */
.values { background: var(--green-deep); }
.values-list { margin-top: 48px; }
.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.value-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.value-item:hover { padding-left: 8px; }
.value-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  padding-top: 4px;
}
.value-content h3 { color: var(--champagne); margin-bottom: 8px; }
.value-content p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* ---------- TIMELINE ---------- */
.timeline { background: var(--cream-dark); }
.timeline-wrap {
  position: relative;
  margin-top: 48px;
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--champagne);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 40px;
  align-items: center;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; padding-right: 40px; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; padding-left: 40px; }
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--champagne);
  border: 3px solid var(--cream-dark);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 4px;
}
.timeline-content h3 { font-size: 1rem; color: var(--green-deep); margin-bottom: 4px; }
.timeline-content p { font-size: 0.88rem; color: var(--ink-light); margin: 0; }

/* ---------- PRODUCTS PAGE ---------- */
.products-disclaimer {
  background: var(--rose-light);
  border: 1px solid var(--rose-soft);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.products-disclaimer svg { color: var(--green-mid); flex-shrink: 0; margin-top: 2px; }
.products-disclaimer p { font-size: 0.92rem; color: var(--ink-mid); margin: 0; }

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}
.cat-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  background: var(--white);
  transition: var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}
.cat-tab[data-cat="all"].active { background: var(--champagne-dark); border-color: var(--champagne-dark); }

.products-section { margin-bottom: 72px; }
.products-section:last-child { margin-bottom: 0; }
.product-section-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.product-section-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--border);
  line-height: 1;
}
.product-section-info h2 { color: var(--green-deep); font-size: 1.8rem; margin-bottom: 6px; }
.product-section-info p { color: var(--ink-light); font-size: 0.95rem; margin: 0; }

.product-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-item:hover {
  border-color: var(--champagne);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.product-item-icon {
  width: 40px;
  height: 40px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--green-deep);
}
.product-item h4 { color: var(--green-deep); margin-bottom: 6px; font-size: 1rem; }
.product-item p { font-size: 0.85rem; color: var(--ink-light); line-height: 1.6; margin: 0; }

/* ---------- GALLERY PAGE ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.masonry-grid {
  columns: 3;
  column-gap: 16px;
  margin-top: 0;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,67,50,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay svg { color: white; }
.masonry-item.hidden { display: none; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ---------- CONTACT PAGE ---------- */
.contact-blocks { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--champagne); box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  flex-shrink: 0;
}
.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 4px;
}
.contact-card h3 { color: var(--green-deep); font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--ink-light); margin: 0; }
.contact-card a { color: var(--green-mid); font-weight: 600; }
.contact-card a:hover { color: var(--green-deep); }

/* ---------- INQUIRY FORM ---------- */
.inquiry-form-section { background: var(--cream-dark); }
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  max-width: 740px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-deep); }
.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green-mid); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; font-size: 0.88rem; padding: 16px; }
.form-note { font-size: 0.78rem; color: var(--ink-light); text-align: center; margin-top: 12px; margin-bottom: 0; }

/* ---------- MAP PLACEHOLDER ---------- */
.map-section { background: var(--white); }
.map-placeholder {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 40px;
  margin-top: 48px;
}
.map-placeholder svg { color: var(--champagne); }
.map-placeholder h3 { color: var(--white); }
.map-placeholder p { color: rgba(255,255,255,0.7); margin: 0; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--green-deep);
  cursor: pointer;
  user-select: none;
  transition: color var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q:hover { color: var(--green-mid); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-deep);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--green-deep); border-color: var(--green-deep); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner { padding-bottom: 20px; }
.faq-a-inner p { color: var(--ink-mid); font-size: 0.95rem; line-height: 1.75; margin: 0; }

/* ---------- BOTTOM CTA ---------- */
.bottom-cta {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 80px 0;
  text-align: center;
}
.bottom-cta h2 { color: var(--white); margin-bottom: 12px; }
.bottom-cta p { color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.bottom-cta .btn-group { justify-content: center; }

/* ---------- FOOTER ---------- */
footer {
  background: #0F2819;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { width: 40px; height: 40px; object-fit: contain; background: white; border-radius: 50%; padding: 4px; }
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--green-deep);
}
.footer-col h4 { font-family: var(--font-heading); color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--champagne); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom a { color: var(--champagne); }
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ---------- PAGE TOP SPACING ---------- */
.page-top { padding-top: 80px; }

/* ---------- DECORATIVE ---------- */
.deco-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.deco-divider span { width: 32px; height: 1px; background: var(--champagne); }
.deco-divider svg { color: var(--champagne); }

/* ---------- UTILITY ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-green { background: var(--green-deep); }
.color-champagne { color: var(--champagne); }
.color-green { color: var(--green-deep); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .features-inner { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
  .feature-item:nth-child(4), .feature-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feature-item:last-child { border-bottom: none; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .brand-teaser-text { padding: 0; }
  .product-items { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 2; }
  .timeline-wrap::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; padding: 0 0 0 24px; }
  .timeline-item:nth-child(odd) .timeline-spacer,
  .timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }
  .timeline-empty { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-wrap { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .social-icons { flex-direction: column; align-items: center; }
  .category-tabs { justify-content: center; }
  .hero-content { padding: 120px 24px 80px; max-width: 100%; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .product-items { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .btn-group { flex-direction: column; }
  .btn-group .btn { justify-content: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
