/* ============================================================
   SEHGAL FAMILY WEAR — styles.css
   Shared across all pages
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --cream:          #FAF7F0;
  --cream-dark:     #F0EAE0;
  --cream-border:   #E2D9CC;
  --forest:         #1D3A2F;
  --forest-light:   #2B5443;
  --forest-faint:   #EBF2EE;
  --gold:           #C8923A;
  --gold-light:     #E5B055;
  --gold-pale:      #FBF3E6;
  --charcoal:       #1A1A18;
  --text-body:      #3A3A36;
  --text-muted:     #7A7A6E;
  --white:          #FFFFFF;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.45, 0, 0.55, 1);

  --t-fast:   0.2s ease;
  --t-mid:    0.4s var(--ease-out-expo);
  --t-slow:   0.7s var(--ease-out-expo);

  --shadow-xs:  0 1px 4px rgba(29,58,47,0.08);
  --shadow-sm:  0 4px 16px rgba(29,58,47,0.10);
  --shadow-md:  0 8px 32px rgba(29,58,47,0.14);
  --shadow-lg:  0 20px 60px rgba(29,58,47,0.18);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;
  --radius-xl:  48px;

  --container:  1240px;
  --gutter:     clamp(1.25rem, 5vw, 3rem);
  --header-h:   72px;
}

/* ── 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(--cream);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }
input, textarea, select {
  font-family: var(--font-body);
  border: none;
  outline: none;
}

/* ── Page Transition Overlay ── */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 9999;
  transform: translateY(0%);
  transition: transform 0.65s var(--ease-out-expo);
  pointer-events: all;
}
body.page-loaded #page-transition {
  transform: translateY(-100%);
  pointer-events: none;
}

/* ── Scroll-Reveal Base ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s var(--ease-out-expo), transform 0.72s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }
.reveal-delay-5 { transition-delay: 0.6s; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.15;
  font-weight: 600;
}
.display-xl {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.display-lg {
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.015em;
}
.display-md {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  letter-spacing: -0.01em;
}
.label-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 1.125rem; line-height: 1.75; }
.body-md { font-size: 0.975rem; line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--t-mid);
  cursor: pointer;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,146,58,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,58,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--cream-border);
}
.btn-ghost:hover {
  border-color: var(--forest);
  background: var(--forest-faint);
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-fast);
}
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--t-mid), box-shadow var(--t-mid), height var(--t-mid);
}
.site-header.scrolled {
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 60px;
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color var(--t-mid);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--t-mid);
}
.site-header.scrolled .logo-text { color: var(--forest); }
.site-header.scrolled .logo-sub  { color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  color: rgba(255,255,255,0.88);
  transition: all var(--t-fast);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--white); }
.site-header.scrolled .nav-link { color: var(--text-body); }
.site-header.scrolled .nav-link:hover { color: var(--forest); background: var(--forest-faint); }
.site-header.scrolled .nav-link.active { color: var(--forest); font-weight: 600; }

.nav-link.visit-btn {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(200,146,58,0.35);
}
.nav-link.visit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(200,146,58,0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  z-index: 1010;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: var(--forest);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 1005;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 0.75rem 2rem;
    color: rgba(255,255,255,0.85) !important;
  }
  .nav-link:hover { color: var(--white) !important; background: rgba(255,255,255,0.08) !important; }
  .nav-link.visit-btn {
    margin-top: 0.75rem;
    background: var(--gold) !important;
    color: var(--white) !important;
    font-size: 1rem;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem var(--gutter) 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  color: rgba(255,255,255,0.7);
}
.social-icon:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.social-icon svg { width: 16px; height: 16px; }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-links ul a::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--t-fast);
}
.footer-links ul a:hover { color: var(--white); }
.footer-links ul a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
}
.footer-contact-row svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row span { color: rgba(255,255,255,0.7); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem var(--gutter);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  max-width: 100%;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   PAGE HERO (shared)
   ============================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-hero.loaded .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(29,58,47,0.3) 0%, rgba(29,58,47,0.8) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-hero .label-tag { color: rgba(229,176,85,0.9); margin-bottom: 0.75rem; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 680px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .label-tag { display: block; margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.08);
  transition: transform 2.5s var(--ease-out-expo);
}
.home-hero.loaded .home-hero-bg { transform: scale(1); }
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(29,58,47,0.82) 0%,
    rgba(29,58,47,0.55) 50%,
    rgba(29,58,47,0.3) 100%
  );
}
.home-hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 4rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hero-eyebrow .label-tag { color: var(--gold-light); }
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); }

body.page-loaded .hero-eyebrow { opacity: 1; transform: translateY(0); }

.hero-headline {
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.hero-headline-inner {
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.9s var(--ease-out-expo) 0.5s;
}
body.page-loaded .hero-headline-inner { transform: translateY(0); }

.hero-sub {
  max-width: 520px;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.9s, transform 0.7s ease 0.9s;
}
body.page-loaded .hero-sub { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 1.1s, transform 0.7s ease 1.1s;
}
body.page-loaded .hero-actions { opacity: 1; transform: translateY(0); }

.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity 0.7s ease 1.4s;
}
body.page-loaded .hero-trust { opacity: 1; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.7s ease 1.8s;
  cursor: pointer;
  z-index: 2;
}
body.page-loaded .scroll-indicator { opacity: 0.6; }
.scroll-indicator:hover { opacity: 1 !important; }
.scroll-indicator span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::before {
  content: '';
  width: 3px;
  height: 7px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================================
   HOME — FEATURED CATEGORIES
   ============================================================ */
.section-categories {
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  background: var(--cream);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.category-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-out-expo);
}
.category-card:hover .category-card-img { transform: scale(1.07); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,58,47,0.88) 0%, rgba(29,58,47,0.1) 60%);
  transition: opacity var(--t-mid);
}
.category-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  z-index: 2;
}
.category-card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.35rem;
  transform: translateY(6px);
  opacity: 0.8;
  transition: all var(--t-mid);
}
.category-card:hover .category-card-tag { transform: translateY(0); opacity: 1; }
.category-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.category-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out-expo) 0.05s;
}
.category-card:hover .category-card-cta { opacity: 1; transform: translateY(0); }
.category-card-cta svg { width: 14px; height: 14px; }
.category-card.featured { grid-row: span 2; aspect-ratio: unset; }

@media (max-width: 960px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } .category-card.featured { grid-row: auto; aspect-ratio: 3/4; } }
@media (max-width: 540px) { .categories-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOME — WHY US
   ============================================================ */
.section-why {
  background: var(--forest);
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.section-why::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,146,58,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.section-why .section-header .label-tag { color: var(--gold-light); }
.section-why .section-header h2 { color: var(--white); }
.section-why .section-header p { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: all var(--t-mid);
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,146,58,0.3);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,146,58,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: background var(--t-mid);
}
.why-card:hover .why-icon { background: rgba(200,146,58,0.25); }
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOME — TESTIMONIALS / RATING STRIP
   ============================================================ */
.section-rating {
  background: var(--gold-pale);
  padding: 3rem var(--gutter);
  text-align: center;
}
.rating-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rating-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.rating-stars { display: flex; gap: 2px; }
.rating-stars svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }
.rating-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.05em; }
.rating-stat { text-align: center; }
.rating-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
}
.rating-stat span { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   HOME — CTA BANNER
   ============================================================ */
.section-cta {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  overflow: hidden;
  text-align: center;
}
.section-cta-bg {
  position: absolute;
  inset: 0;
}
.section-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,58,47,0.9) 0%, rgba(29,58,47,0.75) 100%);
}
.section-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.section-cta h2 { color: var(--white); margin-bottom: 1rem; }
.section-cta p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.05rem; }
.section-cta .btn-gold { font-size: 1rem; padding: 1rem 2.5rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text .label-tag { display: block; margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.8; }
.about-highlight {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--forest-faint);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--forest);
}
.about-highlight-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
}
.about-highlight-item span { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 16/9; }
}

.about-quote {
  background: var(--forest);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-quote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 18rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}
.about-quote blockquote {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.about-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.about-values {
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  background: var(--cream-dark);
}
.about-values .container { max-width: var(--container); margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--t-mid);
  border: 1px solid var(--cream-border);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ============================================================
   COLLECTIONS PAGE
   ============================================================ */
.collections-filter {
  padding: 3rem var(--gutter) 1rem;
  max-width: var(--container);
  margin: 0 auto;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.filter-tab {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--white);
  color: var(--text-body);
  border: 1.5px solid var(--cream-border);
  transition: all var(--t-fast);
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--forest); color: var(--forest); }
.filter-tab.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.collections-section {
  padding: 2rem var(--gutter) clamp(4rem, 8vw, 7rem);
  max-width: var(--container);
  margin: 0 auto;
}
.collections-category { margin-bottom: 4rem; }
.collections-category[data-cat].hidden { display: none; }
.category-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.category-title span { font-size: 0.85rem; font-family: var(--font-body); color: var(--text-muted); font-weight: 400; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.collection-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}
.collection-item-img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-out-expo);
}
.collection-item:hover .collection-item-img { transform: scale(1.06); }
.collection-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,58,47,0.92) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t-mid);
}
.collection-item:hover .collection-item-overlay { opacity: 1; }
.collection-item-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
}
.collection-item:hover .collection-item-info { opacity: 1; transform: translateY(0); }
.collection-item-info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.collection-item-info p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.collection-item-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xl);
}

@media (max-width: 860px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .collection-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--cream-border);
  transition: all var(--t-mid);
  display: flex;
  gap: 1.25rem;
}
.contact-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--forest-faint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-body h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-card-body p { font-size: 0.95rem; color: var(--charcoal); line-height: 1.6; }
.contact-card-body strong { font-weight: 600; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; }
.hours-row + .hours-row { margin-top: 0.35rem; border-top: 1px dashed var(--cream-border); padding-top: 0.35rem; }
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2E8B57;
  margin-top: 0.5rem;
}
.hours-status::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #2E8B57;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,139,87,0.4); }
  50% { box-shadow: 0 0 0 5px transparent; }
}

.map-placeholder {
  background: var(--forest-faint);
  border-radius: var(--radius-md);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px dashed var(--cream-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1.25rem;
}
.map-placeholder svg { width: 32px; height: 32px; color: var(--forest); opacity: 0.5; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(29,58,47,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--t-mid);
  cursor: pointer;
  border: none;
}
.form-submit:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--forest);
}
.form-success svg { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 1rem; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITIES & MISC
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.pt-header { padding-top: var(--header-h); }

/* Smooth image loading */
.lazy-img {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.lazy-img.loaded { opacity: 1; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--forest-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--forest); }

/* Selection */
::selection { background: var(--gold); color: var(--white); }
