/* ============================================================
   ASTHETIC MARTT — Main Stylesheet
   Font: Playfair Display (display) + DM Sans (body)
   ============================================================ */

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

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold:       #B8892A;
  --gold-light: #D4A84B;
  --dark:       #1A1714;
  --charcoal:   #2E2A26;
  --smoke:      #6B6259;
  --linen:      #F9F5EE;
  --ivory:      #EDE4D4;
  --white:      #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;

  --shadow-card: 0 2px 16px rgba(26,23,20,0.08);
  --shadow-hover: 0 8px 32px rgba(26,23,20,0.14);

  --transition: 0.22s ease;
  --max-w: 1160px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--linen);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }

/* ── UTILITIES ───────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }
.section-label {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600; line-height: 1.15;
  color: var(--dark);
}
.section-sub {
  font-size: 0.92rem; color: var(--smoke); line-height: 1.8; margin-top: 0.6rem;
}
.text-center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.78rem 2rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary {
  background: var(--gold); color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,137,42,0.3);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold); color: var(--white);
}
.btn-dark {
  background: var(--dark); color: var(--white);
}
.btn-dark:hover { background: var(--charcoal); }

/* ── FLAME ANIMATION ─────────────────────────────────────── */
@keyframes flicker {
  0%,100% { transform: scaleX(1) scaleY(1) rotate(-1deg); opacity: 1; }
  25%      { transform: scaleX(0.88) scaleY(1.07) rotate(2deg); opacity: 0.92; }
  50%      { transform: scaleX(1.05) scaleY(0.94) rotate(-2deg); opacity: 1; }
  75%      { transform: scaleX(0.92) scaleY(1.04) rotate(1deg); opacity: 0.96; }
}
@media (prefers-reduced-motion: reduce) {
  .flame, .card-flame, .c .f { animation: none !important; }
}

/* ── HEADER / NAV ────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(249,245,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,137,42,0.18);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(26,23,20,0.1); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo img {
  height: 62px; width: auto; object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 700;
  color: var(--dark); letter-spacing: 0.02em;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2.4rem;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--smoke);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: var(--linen);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 600; color: var(--dark);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 5%;
  font-size: 2rem; background: none; border: none;
  color: var(--charcoal); cursor: pointer;
}

/* ── PAGE OFFSET ─────────────────────────────────────────── */
.page-top { padding-top: 68px; }

/* ── PAGE BANNER ─────────────────────────────────────────── */
.page-banner {
  background: var(--dark);
  padding: 4rem 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(184,137,42,0.2) 0%, transparent 65%);
}
.page-banner .section-label { color: var(--gold-light); }
.page-banner .section-title { color: var(--white); position: relative; }
.page-banner .section-sub { color: rgba(255,255,255,0.5); position: relative; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark); color: rgba(249,245,238,0.55);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-text { font-size: 1.4rem; color: var(--white); }
.footer-brand p {
  font-size: 0.85rem; line-height: 1.8; margin-top: 0.8rem;
  color: rgba(249,245,238,0.45);
}
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(249,245,238,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.85rem; line-height: 2; }
.footer-contact a { color: var(--gold-light); }
.footer-bottom {
  padding-top: 1.8rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(249,245,238,0.3);
}

/* ── HOME — HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at 60% 80%, rgba(184,137,42,0.1) 0%, transparent 60%), var(--linen);
  padding: 8rem 5% 5rem;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 600; line-height: 1.1; margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 1rem; line-height: 1.8; color: var(--smoke);
  max-width: 440px; margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero candle cluster */
.hero-visual {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--ivory); border-radius: var(--radius-md);
  aspect-ratio: 1/1; position: relative; overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: radial-gradient(ellipse at 50% 100%, rgba(184,137,42,0.18) 0%, transparent 70%);
}
.candle-cluster {
  display: flex; gap: 1.8rem; align-items: flex-end;
  position: relative; z-index: 1;
}
.cv { display: flex; flex-direction: column; align-items: center; }
.cv .fl {
  border-radius: 50% 50% 40% 40% / 60% 60% 30% 30%;
  background: radial-gradient(ellipse at 50% 90%, #fff 0%, #FFD580 30%, #FF9A00 68%, transparent 100%);
  animation: flicker 2.4s ease-in-out infinite;
  filter: blur(0.4px);
}
.cv .bd {
  box-shadow: inset -4px 0 10px rgba(0,0,0,0.07);
  border-radius: 3px 3px 6px 6px;
}
.cv1 .fl { width:11px;height:20px; animation-delay:0.3s }
.cv1 .bd { width:20px;height:56px; background:linear-gradient(155deg,#fffbe8,#e8d9c0 55%,#c8b48a); }
.cv2 .fl { width:16px;height:30px; animation-delay:0.9s }
.cv2 .bd { width:32px;height:88px; background:linear-gradient(155deg,#fff8f0,#f0d8c0 55%,#d0a880); }
.cv3 .fl { width:13px;height:24px; animation-delay:1.5s }
.cv3 .bd { width:26px;height:70px; background:linear-gradient(155deg,#f8fff4,#d8e8d0 55%,#a8c898); }
.hero-caption {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.95rem; color: var(--smoke); text-align: center;
  margin-top: 1.6rem; position: relative; z-index: 1;
}

/* ── HOME — CATEGORIES ───────────────────────────────────── */
.categories-section { padding: 6rem 0; }
.section-head { margin-bottom: 3rem; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cat-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.cat-card-img {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.cat-candle-scene {
  display: flex; gap: 1rem; align-items: flex-end;
}
.mini-cv { display: flex; flex-direction: column; align-items: center; }
.mini-fl {
  border-radius: 50% 50% 40% 40% / 60% 60% 30% 30%;
  background: radial-gradient(ellipse at 50% 90%, #fff 0%, #FFD580 30%, #FF9A00 68%, transparent 100%);
  animation: flicker 2.4s ease-in-out infinite;
}
.mini-bd {
  border-radius: 2px 2px 5px 5px;
  box-shadow: inset -3px 0 7px rgba(0,0,0,0.07);
}
.cat-card-body { padding: 1.4rem 1.6rem; }
.cat-card-body h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 600; margin-bottom: 0.3rem;
}
.cat-card-body p { font-size: 0.83rem; color: var(--smoke); line-height: 1.65; }
.cat-card-footer {
  padding: 0 1.6rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.cat-count { font-size: 0.75rem; color: var(--smoke); letter-spacing: 0.06em; }
.cat-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--linen); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.cat-card:hover .cat-arrow { background: var(--gold); color: var(--white); }

/* ── HOME — TRUST STRIP ──────────────────────────────────── */
.trust-strip {
  background: var(--dark); padding: 2.5rem 0;
}
.trust-inner {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  text-align: center;
}
.trust-icon { font-size: 1.5rem; color: var(--gold); }
.trust-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(249,245,238,0.6); }

/* ── HOME — HOW IT WORKS ─────────────────────────────────── */
.how-section {
  background: var(--ivory); padding: 6rem 0;
}
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3rem;
  border: 1px solid rgba(0,0,0,0.08);
}
.step {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display); font-size: 2.8rem;
  color: rgba(184,137,42,0.18); font-weight: 700;
  line-height: 1; margin-bottom: 0.8rem;
}
.step h3 {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 600; margin-bottom: 0.5rem;
}
.step p { font-size: 0.82rem; color: var(--smoke); line-height: 1.7; }

/* ── HOME — TESTIMONIALS ─────────────────────────────────── */
.testi-section { padding: 6rem 0; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: var(--white); padding: 2rem 2rem 1.6rem;
  border: 1px solid rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--gold);
  border-radius: var(--radius-sm);
}
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; line-height: 1.72; color: var(--dark);
  margin-bottom: 1.2rem;
}
.testi-author { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ── HOME — NEWSLETTER ───────────────────────────────────── */
.newsletter-section {
  background: var(--charcoal); padding: 5rem 0; text-align: center;
}
.newsletter-section .section-title { color: var(--white); }
.newsletter-section .section-sub { color: rgba(249,245,238,0.5); max-width:440px; margin:0.5rem auto 2rem; }
.nl-form { display: flex; gap: 0; max-width: 420px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 0.8rem 1.2rem;
  border: none; background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 0.9rem;
  outline: none; border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.35); }
.nl-form button { white-space: nowrap; border-radius: 0; }

/* ── PRODUCTS PAGE ───────────────────────────────────────── */
.products-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 3rem; padding: 4rem 0 6rem;
  align-items: start;
}

/* Sidebar */
.sidebar { position: sticky; top: 88px; }
.filter-group { margin-bottom: 2rem; }
.filter-group h4 {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.filter-option {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0; cursor: pointer;
}
.filter-option input[type="checkbox"] {
  accent-color: var(--gold); width: 15px; height: 15px; cursor: pointer;
}
.filter-option label { font-size: 0.85rem; color: var(--smoke); cursor: pointer; }
.filter-option label:hover { color: var(--gold); }
.filter-option.active label { color: var(--dark); font-weight: 500; }

.price-range { display: flex; gap: 0.6rem; align-items: center; }
.price-range input[type="number"] {
  width: 80px; padding: 0.5rem 0.6rem; font-size: 0.83rem;
  border: 1px solid rgba(0,0,0,0.14); background: var(--white);
  color: var(--charcoal); outline: none;
}
.price-range input[type="number"]:focus { border-color: var(--gold); }
.price-sep { font-size: 0.8rem; color: var(--smoke); }

.filter-clear {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--smoke); background: none; border: 1px solid rgba(0,0,0,0.12);
  padding: 0.5rem 1rem; cursor: pointer; transition: all var(--transition);
  width: 100%; margin-top: 0.5rem;
}
.filter-clear:hover { color: var(--gold); border-color: var(--gold); }

/* Products main */
.products-main {}
.products-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap; gap: 1rem;
}
.products-count { font-size: 0.85rem; color: var(--smoke); }
.products-count strong { color: var(--dark); }
.sort-select {
  padding: 0.55rem 1rem; font-size: 0.83rem;
  border: 1px solid rgba(0,0,0,0.14); background: var(--white);
  color: var(--charcoal); outline: none; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B6259'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.7rem center;
}
.sort-select:focus { border-color: var(--gold); }

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.4rem;
}

/* Product Card */
.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.product-card-img {
  aspect-ratio: 1/1; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-badge {
  position: absolute; top: 0.8rem; left: 0.8rem;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; background: var(--gold); color: var(--white);
  border-radius: 2px;
}
.product-badge.new { background: var(--charcoal); }
.product-card-candle { display: flex; flex-direction: column; align-items: center; }
.prod-fl {
  border-radius: 50% 50% 40% 40% / 60% 60% 30% 30%;
  background: radial-gradient(ellipse at 50% 90%, #fff 0%, #FFD580 30%, #FF9A00 68%, transparent 100%);
  animation: flicker 2.4s ease-in-out infinite;
}
.prod-bd {
  border-radius: 3px 3px 6px 6px;
  box-shadow: inset -4px 0 10px rgba(0,0,0,0.07);
}

.product-card-info { padding: 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-card-cat { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.product-card-name {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 600; line-height: 1.3; margin-bottom: 0.3rem;
}
.product-card-scent { font-size: 0.78rem; color: var(--smoke); margin-bottom: 0.6rem; }
.product-card-price {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--gold); margin-top: auto; padding-top: 0.8rem;
}
.product-card-actions { padding: 0 1.4rem 1.2rem; }
.product-card-actions .btn { width: 100%; justify-content: center; font-size: 0.72rem; }

/* Empty state */
.empty-state {
  grid-column: 1/-1; text-align: center; padding: 4rem 2rem;
  color: var(--smoke);
}
.empty-state p { font-size: 0.9rem; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-story {
  padding: 6rem 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-visual {
  background: var(--ivory); border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.about-story-text .section-title { margin-bottom: 1.4rem; }
.about-story-text p {
  font-size: 0.92rem; line-height: 1.88; color: var(--smoke); margin-bottom: 1rem;
}
.about-story-text blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem; margin: 1.8rem 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.12rem; color: var(--dark); line-height: 1.6;
}

.values-section { background: var(--dark); padding: 6rem 0; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.4rem 2rem;
}
.value-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.value-card h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--white); margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.83rem; color: rgba(249,245,238,0.45); line-height: 1.75; }

.team-section { padding: 6rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.team-card {
  text-align: center;
}
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--ivory); margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; border: 3px solid var(--gold-light);
}
.team-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.team-card p { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.06em; }
.team-card span { font-size: 0.82rem; color: var(--smoke); display: block; margin-top: 0.4rem; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; padding: 5rem 0 7rem; align-items: start;
}
.contact-info-col {}
.contact-info-col .section-title { margin-bottom: 1.4rem; }
.contact-info-col p { font-size: 0.92rem; color: var(--smoke); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ivory); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.contact-detail-text h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-detail-text p, .contact-detail-text a { font-size: 0.88rem; color: var(--smoke); line-height: 1.6; }
.contact-detail-text a:hover { color: var(--gold); }

.contact-hours {
  background: var(--ivory); padding: 1.8rem;
  border-radius: var(--radius-sm); margin-top: 2rem;
}
.contact-hours h4 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.84rem; margin-bottom: 0.5rem; color: var(--smoke); }
.hours-row span:last-child { color: var(--charcoal); font-weight: 500; }

/* Contact Form */
.contact-form-col {}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--smoke);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.78rem 1rem;
  background: var(--white); border: 1px solid rgba(0,0,0,0.12);
  color: var(--charcoal); font-size: 0.9rem;
  outline: none; transition: border-color var(--transition);
  border-radius: var(--radius-sm);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none; padding: 1.2rem; background: rgba(122,140,110,0.12);
  border: 1px solid #7a8c6e; color: #4a6c40; font-size: 0.88rem;
  text-align: center; border-radius: var(--radius-sm);
}

/* Map placeholder */
.map-section { padding: 0 0 5rem; }
.map-placeholder {
  height: 340px; background: var(--ivory); border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.8rem; color: var(--smoke); font-size: 0.9rem; text-align: center;
}
.map-placeholder .map-pin { font-size: 2.5rem; color: var(--gold); }

/* ── NOTIFICATION TOAST ──────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: var(--dark); color: var(--white);
  padding: 1rem 1.8rem; border-left: 4px solid var(--gold);
  font-size: 0.88rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  transform: translateY(120%); opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
  .filter-sidebar-toggle {display: none;}
/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-layout { grid-template-columns: 200px 1fr; gap: 2rem; }
  .hero-inner { gap: 3rem; }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; max-height: 360px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .hero { padding: 7rem 5% 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 300px; margin: 0 auto; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .step:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.08); }
  .testi-grid { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .filter-sidebar-toggle {
    display: flex; width: 100%; justify-content: space-between;
    background: var(--white); border: 1px solid rgba(0,0,0,0.1);
    padding: 0.8rem 1rem; margin-bottom: 1rem;
    font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; color: var(--charcoal); align-items: center;
  }
  .sidebar-content.collapsed { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nl-form { flex-direction: column; }
  .nl-form input { border-right: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; }
  .step:nth-child(odd) { border-right: none; }
  .team-grid { grid-template-columns: 1fr; }
}
