/* ============================================================
   BOULANGER — Main Stylesheet
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --color-primary:      #A7C4BC;
  --color-primary-dark: #8FB3A9;
  --color-secondary:    #F2D0A9;
  --color-secondary-dark:#E8C099;
  --color-accent:       #C3AED6;
  --color-accent-blue:  #B8D8E8;
  --color-bg:           #FAFAF7;
  --color-bg-alt:       #F3F0EB;
  --color-white:        #FFFFFF;
  --color-text:         #3D3D3D;
  --color-heading:      #2C2C2C;
  --color-muted:        #8A8A8A;
  --color-border:       #E2DED8;
  --color-success:      #8FC1A9;
  --color-error:        #E8A0A0;
  --font-heading:       'DM Serif Display', serif;
  --font-body:          'Inter', sans-serif;
  --font-accent:        'Nunito', sans-serif;
  --radius-card:        16px;
  --radius-button:      50px;
  --radius-input:       12px;
  --radius-image:       12px;
  --shadow-sm:          0 2px 16px rgba(0,0,0,0.04);
  --shadow-md:          0 8px 32px rgba(0,0,0,0.08);
  --transition:         0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max:      1240px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-button);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ---- Focus States ---- */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: 3rem; letter-spacing: 0.02em; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { font-size: 1rem; line-height: 1.7; }

.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 12px;
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Spacing ---- */
.section { padding: 100px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-white { background: var(--color-white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--color-secondary);
  color: var(--color-heading);
  border-color: var(--color-secondary);
}
.btn-accent:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: transparent;
  padding: 8px 0;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--color-primary); transform: none; }

.btn-white-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-white-outline:hover {
  background: #fff;
  color: var(--color-primary);
}

.btn-sm { padding: 10px 24px; font-size: 0.8rem; }
.btn-full { width: 100%; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---- Cards ---- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--color-white);
  box-shadow: 0 1px 8px rgba(0,0,0,0.03);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

/* Brand */
.brand-link {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-heading);
  letter-spacing: 0.04em;
}
.brand-tagline {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--color-primary);
  transition: left var(--transition), right var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 0; right: 0;
}

/* Header Right */
.header-right { display: flex; align-items: center; gap: 16px; }

.desktop-cta { }
.mobile-cta {
  display: none;
  color: var(--color-primary);
  font-size: 1.25rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  width: 36px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: all 0.4s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,44,44,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.visible { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--color-white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  color: var(--color-heading);
  cursor: pointer;
  padding: 8px;
  transition: color var(--transition);
}
.mobile-menu-close:hover { color: var(--color-primary); }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.mobile-nav-link {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  transition: color var(--transition);
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--color-primary); }

.mobile-menu-cta { margin-top: auto; text-align: center; }

/* Push content below fixed header */
body { padding-top: 80px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Warm overlay + left-side reading gradient for text legibility */
  background:
    linear-gradient(to right, rgba(250,250,247,0.72) 0%, rgba(250,250,247,0.35) 55%, rgba(250,250,247,0.08) 100%),
    rgba(250,250,247,0.12);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-headline {
  font-size: 3.5rem;
  max-width: 600px;
  margin-bottom: 20px;
  color: var(--color-heading);
}

.hero-subheadline {
  font-size: 1.15rem;
  font-weight: 300;
  color: #5A5A5A;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.hero-stat i {
  font-size: 1.5rem;
  color: var(--color-primary);
}
.hero-stat span {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.category-card:hover .category-img img {
  transform: scale(1.03);
}

.category-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.category-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-info {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-name {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-heading);
}

.category-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: gap var(--transition);
}
.category-link:hover { gap: 10px; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card:hover .product-img img {
  transform: scale(1.03);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-image) var(--radius-image) 0 0;
  transition: transform 0.5s ease;
}

.product-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-button);
  letter-spacing: 0.04em;
}
.product-badge.badge-hot { background: var(--color-secondary); color: var(--color-heading); }
.product-badge.badge-last { background: var(--color-error); color: #fff; }

.product-info { padding: 20px; }

.product-name {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-fabric {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.product-price {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
}

.product-colors {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.color-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: transform var(--transition);
}
.color-dot:hover { transform: scale(1.2); }

/* Products section header */
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* ============================================================
   BRAND STORY STRIP
   ============================================================ */
.brand-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.brand-strip-img {
  overflow: hidden;
}
.brand-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.brand-strip-content {
  background: var(--color-primary);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  color: #fff;
}
.brand-strip-content .eyebrow { color: rgba(255,255,255,0.8); }
.brand-strip-content h2 { color: #fff; font-size: 2rem; }
.brand-strip-content p { font-size: 1rem; line-height: 1.8; opacity: 0.9; }

/* ============================================================
   VALUE PROPS / FEATURE BLOCKS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-block {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
}

.testimonial-divider {
  width: 40px;
  height: 2px;
  background: var(--color-border);
  margin-bottom: 16px;
}

.testimonial-name {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-heading);
}

.testimonial-city {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-muted);
  margin-top: 4px;
}

/* ============================================================
   NEWSLETTER / CTA SECTION
   ============================================================ */
.newsletter-section {
  text-align: center;
}

.newsletter-section h2 { font-size: 2rem; margin-bottom: 16px; }
.newsletter-section > p {
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-button);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 24px;
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-button) 0 0 var(--radius-button);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--color-primary); }
.newsletter-form input::placeholder { color: var(--color-muted); }

.newsletter-form .btn {
  border-radius: 0 var(--radius-button) var(--radius-button) 0;
  flex-shrink: 0;
}

.newsletter-note {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 16px;
}
.newsletter-note a { color: var(--color-primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-heading);
  color: #D0D0D0;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: #A0A0A0;
  margin-bottom: 16px;
}

.footer-address {
  font-size: 0.85rem;
  color: #A0A0A0;
}

.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 400;
  color: #D0D0D0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-primary); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-contact li i {
  font-size: 1.1rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact a {
  color: #D0D0D0;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid #444;
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  font-weight: 300;
  color: #8A8A8A;
}

/* ============================================================
   PAGE HERO (internal pages)
   ============================================================ */
.page-hero {
  background: var(--color-bg-alt);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { font-size: 2.75rem; margin: 12px 0; }
.page-hero p {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

.page-hero-full {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-full .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,0.45);
  z-index: 1;
}
.page-hero-full img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-full-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.page-hero-full-content h1 { color: #fff; font-size: 3rem; margin-bottom: 16px; }
.page-hero-full-content p { color: #E0E0E0; font-size: 1.15rem; max-width: 600px; }

/* ============================================================
   SPLIT LAYOUTS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Swap column order cleanly without direction hacks */
.split.split-reverse .split-img  { order: 2; }
.split.split-reverse .split-text { order: 1; }

.split-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.split-text { }
.split-text .eyebrow { margin-bottom: 12px; }
.split-text h2 { margin-bottom: 20px; }
.split-text p { color: #5A5A5A; margin-bottom: 20px; }

/* ============================================================
   VALUE CARDS (3 columns)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.value-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.value-card:hover .value-card-img img { transform: scale(1.03); }

.value-card-body { padding: 32px; }
.value-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.value-card-body p { font-size: 0.95rem; color: #5A5A5A; line-height: 1.8; }

/* ============================================================
   STATS / MILESTONES
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-block {}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ============================================================
   ATELIER GALLERY
   ============================================================ */
.atelier-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.atelier-gallery::-webkit-scrollbar { display: none; }

.atelier-img {
  flex-shrink: 0;
  width: 380px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.atelier-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.atelier-img:hover img { transform: scale(1.03); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-primary);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; font-size: 2.25rem; margin-bottom: 20px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 600px; margin: 0 auto 36px; }

/* ============================================================
   FILTER BAR (Catalog)
   ============================================================ */
.filter-bar {
  background: var(--color-bg);
  padding: 20px 0;
  position: sticky;
  top: 80px;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

.filter-bar-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-btn {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-button);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-hero-section {
  padding: 60px 0;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {}
.product-main-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 16px;
  cursor: zoom-in;
}
.product-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
}
.thumb {
  width: 80px; height: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--color-primary); }

/* Product Info */
.breadcrumb {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 16px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-primary); }

.product-page-name { font-size: 2.25rem; margin-bottom: 8px; }
.product-page-tagline {
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-muted);
  margin-bottom: 16px;
}
.product-page-price {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 24px;
}

.product-divider {
  height: 1px;
  background: var(--color-border);
  margin: 24px 0;
}

/* Color & Size selectors */
.selector-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 10px;
  display: block;
}

.color-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.color-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.color-swatch.active { border-color: var(--color-heading); box-shadow: 0 0 0 2px #fff inset; }
.color-swatch:hover { transform: scale(1.15); }

.size-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.size-btn {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-button);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
}
.size-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.size-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.size-btn.unavailable { opacity: 0.3; cursor: not-allowed; }

.size-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.size-guide-link:hover { color: var(--color-primary); }

.product-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.product-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-muted);
}
.product-info-item i { color: var(--color-primary); font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   PRODUCT TABS
   ============================================================ */
.tabs-section { padding: 60px 0; }

.tabs-bar {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
  gap: 0;
}

.tab-btn {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  padding: 14px 24px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  border-left: none; border-right: none; border-top: none;
}
.tab-btn:hover { color: var(--color-primary); }
.tab-btn.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

.tab-panel { display: none; animation: fadeInUp 0.3s ease; }
.tab-panel.active { display: block; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-panel p { margin-bottom: 16px; line-height: 1.8; }

.care-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.care-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}
.care-item i { color: var(--color-primary); font-size: 1.1rem; }

/* ============================================================
   INQUIRY FORM
   ============================================================ */
.inquiry-section {
  background: var(--color-bg-alt);
  padding: 80px 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.form-container h2 { margin-bottom: 12px; font-size: 1.75rem; }
.form-container > p {
  color: var(--color-muted);
  margin-bottom: 32px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
  transition: color var(--transition);
}

.form-group:focus-within label { color: var(--color-primary); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(167,196,188,0.15);
}
input::placeholder,
textarea::placeholder { color: var(--color-muted); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238A8A8A' viewBox='0 0 256 256'%3E%3Cpath d='m213.66 101.66-80 80a8 8 0 0 1-11.32 0l-80-80A8 8 0 0 1 53.66 90.34L128 164.69l74.34-74.35a8 8 0 0 1 11.32 11.32Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea { resize: vertical; min-height: 120px; }

.field-error {
  font-size: 0.8rem;
  color: var(--color-error);
  margin-top: 6px;
  display: block;
}

input.error,
select.error,
textarea.error { border-color: var(--color-error); }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  min-width: 18px;
  accent-color: var(--color-primary);
  margin-top: 2px;
  cursor: pointer;
}
.checkbox-group label {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-muted);
  cursor: pointer;
  margin-bottom: 0;
}
.checkbox-group a { color: var(--color-primary); }

/* Honeypot */
.hp-field { display: none !important; position: absolute; left: -9999px; }

/* Visually Hidden (screen-reader only) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success i { font-size: 3rem; color: var(--color-success); margin-bottom: 16px; display: block; }
.form-success h3 { margin-bottom: 12px; }
.form-success p { color: var(--color-muted); }

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card-body h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-heading);
  margin-bottom: 4px;
}
.contact-card-body p,
.contact-card-body a {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: block;
  line-height: 1.5;
  transition: color var(--transition);
}
.contact-card-body a:hover { color: var(--color-primary); }

.map-placeholder {
  background: var(--color-bg-alt);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding: 32px;
  border: 1px solid var(--color-border);
}
.map-placeholder i { font-size: 3rem; color: var(--color-primary); }
.map-placeholder h4 { font-size: 1.1rem; }
.map-placeholder p { color: var(--color-muted); font-size: 0.9rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-title {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.step-desc { font-size: 0.85rem; color: var(--color-muted); line-height: 1.6; }

/* Service bullet list */
.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.service-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}
.service-bullet i { color: var(--color-primary); font-size: 1.1rem; flex-shrink: 0; }

/* Info cards (3-col) */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.info-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.info-card i { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 16px; display: block; }
.info-card h4 { font-size: 1.1rem; margin-bottom: 12px; }
.info-card p { font-size: 0.9rem; color: var(--color-muted); line-height: 1.7; }

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-heading);
  gap: 16px;
  transition: color var(--transition);
  background: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--color-primary); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  font-weight: 300;
  color: #5A5A5A;
  line-height: 1.8;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-section {
  padding: 80px 0;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-container h1 { font-size: 2.25rem; margin-bottom: 40px; }

.legal-container h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--color-heading);
}

.legal-container p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 12px;
}

.legal-container ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-container ul li { margin-bottom: 6px; font-size: 0.95rem; line-height: 1.7; }

.legal-container ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-container ol li { margin-bottom: 8px; font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.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.4s; }

/* ============================================================
   CALLOUT BOXES
   ============================================================ */
.callout-box {
  background: var(--color-bg-alt);
  border-radius: var(--radius-card);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.callout-box.callout-center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.callout-box.callout-center .btn-group { justify-content: center; }

/* ============================================================
   MISC
   ============================================================ */
.text-muted { color: var(--color-muted); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.load-more-wrap { text-align: center; margin-top: 48px; }

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