/* ==========================================================================
   L'ATELIER DE LA TABLE — Artisans Créateurs
   Charte : beige / noir profond / bois chaud / or doux
   ========================================================================== */

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

:root {
  --c-beige: #d8c4a3;
  --c-beige-light: #ede2cd;
  --c-cream: #f7f1e6;
  --c-ivory: #fbf8f2;
  --c-dark: #1a1612;
  --c-dark-soft: #2b2520;
  --c-wood: #8b5a2b;
  --c-wood-deep: #5c3a1e;
  --c-gold: #b8985c;
  --c-gold-light: #d4b87a;
  --c-text: #2b2520;
  --c-text-muted: #6b5e50;
  --c-border: rgba(26, 22, 18, 0.12);

  --ff-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 2px;
  --shadow-soft: 0 4px 30px rgba(26, 22, 18, 0.08);
  --shadow-strong: 0 20px 60px rgba(26, 22, 18, 0.18);

  --container: 1280px;
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-ivory);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-dark);
}

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.container { width: min(100% - 3rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 3rem, 920px); margin-inline: auto; }

section { padding: clamp(4rem, 9vw, 8rem) 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 var(--c-border);
}
.site-header.light .nav-link,
.site-header.light .logo-text { color: var(--c-ivory); }
.site-header.light .nav-link::after { background: var(--c-ivory); }
.site-header.scrolled.light .nav-link,
.site-header.scrolled.light .logo-text { color: var(--c-dark); }
.site-header.scrolled.light .nav-link::after { background: var(--c-dark); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.logo img { height: 52px; width: auto; transition: height var(--transition); }
.scrolled .logo img { height: 42px; }
.logo-text {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--c-dark);
  line-height: 1.05;
}
.logo-text small {
  display: block;
  font-family: var(--ff-sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 2px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.4rem;
  align-items: center;
}
.nav-link {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-dark);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--c-dark);
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.btn-burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 36px; height: 36px;
  padding: 0;
  position: relative;
  z-index: 110;
}
.btn-burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--c-dark);
  margin: 6px auto;
  transition: all var(--transition);
}
.light .btn-burger span { background: var(--c-ivory); }
.scrolled.light .btn-burger span { background: var(--c-dark); }
.btn-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.btn-burger.open span:nth-child(2) { opacity: 0; }
.btn-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--c-dark);
  background: var(--c-dark);
  color: var(--c-ivory);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn:hover { background: transparent; color: var(--c-dark); }
.btn-light { background: var(--c-ivory); color: var(--c-dark); border-color: var(--c-ivory); }
.btn-light:hover { background: transparent; color: var(--c-ivory); border-color: var(--c-ivory); }
.btn-outline { background: transparent; color: var(--c-dark); }
.btn-outline:hover { background: var(--c-dark); color: var(--c-ivory); }
.btn-gold { background: var(--c-gold); border-color: var(--c-gold); }
.btn-gold:hover { background: transparent; color: var(--c-gold); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-dark);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--c-dark);
  transition: all var(--transition);
}
.link-arrow svg { transition: transform var(--transition); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--c-ivory);
  text-align: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 22, 18, 0.45) 0%,
    rgba(26, 22, 18, 0.35) 50%,
    rgba(26, 22, 18, 0.65) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 1.5rem;
  max-width: 920px;
  animation: heroFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero .eyebrow { color: var(--c-gold-light); }
.hero h1 {
  font-size: clamp(2.6rem, 6.8vw, 5.8rem);
  font-weight: 400;
  color: var(--c-ivory);
  letter-spacing: -0.015em;
  font-style: italic;
}
.hero h1 strong { font-weight: 600; font-style: normal; display: block; }
.hero-sub {
  margin: 1.8rem auto 2.5rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  max-width: 620px;
  opacity: 0.9;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-ivory);
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: var(--c-ivory);
  animation: scrollBob 2.4s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBob {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.35); transform-origin: top; }
}

/* ==========================================================================
   PAGE HERO (intérieurs)
   ========================================================================== */
.page-hero {
  padding: 14rem 0 6rem;
  background: var(--c-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-style: italic;
  font-weight: 400;
}
.page-hero h1 strong { font-style: normal; font-weight: 600; }
.page-hero p {
  margin: 1.5rem auto 0;
  max-width: 620px;
  color: var(--c-text-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   SECTION TITLES
   ========================================================================== */
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head.left { text-align: left; }
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
}
.section-head h2 strong { font-style: normal; font-weight: 600; }
.section-head p {
  margin: 1.2rem auto 0;
  max-width: 620px;
  color: var(--c-text-muted);
  font-size: 1.02rem;
}
.section-head.left p { margin-left: 0; }

/* ==========================================================================
   HOMEPAGE — INTRO
   ========================================================================== */
.intro {
  background: var(--c-ivory);
  text-align: center;
}
.intro-text {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-dark);
}
.intro-text::before,
.intro-text::after {
  display: block;
  content: '';
  width: 60px; height: 1px;
  background: var(--c-gold);
  margin: 2rem auto;
}

/* ==========================================================================
   ABOUT PREVIEW (homepage)
   ========================================================================== */
.about-preview {
  background: var(--c-cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--transition);
}
.about-image:hover img { transform: scale(1.05); }
.about-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid var(--c-gold);
  z-index: -1;
  transform: translate(20px, 20px);
}
.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic;
}
.about-text h2 strong { font-style: normal; font-weight: 600; }
.about-text p {
  margin-top: 1.5rem;
  color: var(--c-text-muted);
}
.about-text .link-arrow { margin-top: 2rem; }

/* ==========================================================================
   FEATURES (artisanat, sur mesure, livraison)
   ========================================================================== */
.features {
  background: var(--c-dark);
  color: var(--c-ivory);
}
.features .section-head h2 { color: var(--c-ivory); }
.features .section-head p { color: rgba(251, 248, 242, 0.7); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
}
.feature {
  text-align: center;
  padding: 3rem 2rem;
  border-right: 1px solid rgba(251, 248, 242, 0.1);
}
.feature:last-child { border-right: 0; }
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.6rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold-light);
}
.feature h3 {
  font-size: 1.5rem;
  color: var(--c-ivory);
  font-style: italic;
  margin-bottom: 0.8rem;
}
.feature p {
  color: rgba(251, 248, 242, 0.7);
  font-size: 0.96rem;
}

/* ==========================================================================
   CREATIONS PREVIEW (homepage)
   ========================================================================== */
.creations-preview {
  background: var(--c-ivory);
}
.creations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.creation-card {
  position: relative;
  overflow: hidden;
  background: var(--c-cream);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.creation-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition);
}
.creation-card:hover img { transform: scale(1.08); }
.creation-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 22, 18, 0.85) 100%);
  display: flex; align-items: flex-end;
  padding: 1.8rem;
}
.creation-card-overlay h3 {
  color: var(--c-ivory);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
}
.creation-card-overlay span {
  display: block;
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-top: 0.4rem;
  font-style: normal;
}

.center-cta { text-align: center; }

/* ==========================================================================
   GALERIE PREVIEW (homepage) — bento style
   ========================================================================== */
.gallery-preview { background: var(--c-cream); padding-bottom: 0; }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 1.2rem;
  margin-top: 3rem;
}
.bento-item {
  overflow: hidden;
  position: relative;
  background: var(--c-dark);
}
.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition), filter 0.6s ease;
  filter: brightness(0.92);
}
.bento-item:hover img { transform: scale(1.07); filter: brightness(1); }
.bento-item.tall { grid-row: span 2; }
.bento-item.wide { grid-column: span 2; }

/* ==========================================================================
   FULL GALLERY PAGE
   ========================================================================== */
.gallery-grid {
  columns: 3;
  column-gap: 1.4rem;
}
.gallery-grid figure {
  margin: 0 0 1.4rem;
  break-inside: avoid;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--c-cream);
}
.gallery-grid figure img {
  width: 100%;
  transition: transform 1.2s var(--transition), filter 0.5s ease;
  filter: brightness(0.95);
}
.gallery-grid figure:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-grid figure::after {
  content: '+';
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border: 1px solid var(--c-ivory);
  color: var(--c-ivory);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--transition);
  background: rgba(26, 22, 18, 0.4);
  backdrop-filter: blur(6px);
}
.gallery-grid figure:hover::after { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 10, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 100%; max-height: 90vh;
  object-fit: contain;
  box-shadow: var(--shadow-strong);
}
.lightbox-close {
  position: absolute;
  top: 1.6rem; right: 1.6rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--c-ivory);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--c-ivory);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.1); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ==========================================================================
   CRÉATIONS (page produits)
   ========================================================================== */
.creations-list { background: var(--c-ivory); }
.product {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--c-border);
}
.product:last-child { border-bottom: 0; }
.product.reverse { direction: rtl; }
.product.reverse > * { direction: ltr; }

.product-gallery {
  position: relative;
}
.product-main {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-cream);
  margin-bottom: 1rem;
}
.product-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.product-main img.fade { opacity: 0; }
.promo-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--c-gold);
  color: var(--c-ivory);
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  font-weight: 500;
  z-index: 2;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.product-thumbs button {
  border: 0;
  padding: 0;
  background: var(--c-cream);
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
}
.product-thumbs button::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.product-thumbs button.active::after { border-color: var(--c-gold); }
.product-thumbs button:hover::after { border-color: var(--c-dark); }
.product-thumbs img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.product-info .product-cat {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
}
.product-info h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-top: 1rem;
  font-style: italic;
  font-weight: 400;
}
.product-info h2 strong { font-style: normal; font-weight: 600; }
.product-info p { margin-top: 1.2rem; color: var(--c-text-muted); }
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin: 1.6rem 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.product-meta div {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
}
.product-meta strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-dark);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin: 1.4rem 0 2rem;
}
.price-old {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  text-decoration: line-through;
  color: var(--c-text-muted);
}
.price-new {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--c-dark);
}
.price-stock {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-left: auto;
  font-weight: 500;
}
.product-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ==========================================================================
   À PROPOS
   ========================================================================== */
.about-hero-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--c-gold);
  z-index: -1;
  transform: translate(16px, 16px);
}
.about-story h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.about-story h2 strong { font-style: normal; font-weight: 600; }
.about-story p { color: var(--c-text-muted); margin-bottom: 1rem; }
.about-quote {
  background: var(--c-dark);
  color: var(--c-ivory);
  padding: clamp(3rem, 6vw, 5rem);
  margin: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
}
.about-quote::before {
  content: '"';
  font-family: var(--ff-serif);
  font-size: 8rem;
  position: absolute;
  top: -1rem; left: 50%;
  transform: translateX(-50%);
  color: var(--c-gold);
  opacity: 0.4;
  line-height: 1;
}
.about-quote p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.about-quote cite {
  display: block;
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-top: 2rem;
  font-style: normal;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value {
  text-align: center;
  padding: 2rem 1rem;
}
.value-num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-style: italic;
  color: var(--c-gold);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.value h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  font-style: italic;
}
.value p { color: var(--c-text-muted); font-size: 0.95rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.contact-info > p { color: var(--c-text-muted); margin-bottom: 2.5rem; }
.contact-line {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-top: 1px solid var(--c-border);
}
.contact-line:last-of-type { border-bottom: 1px solid var(--c-border); }
.contact-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-cream);
  color: var(--c-gold);
  flex-shrink: 0;
}
.contact-line strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.contact-line a, .contact-line span {
  color: var(--c-dark);
  font-size: 1.02rem;
}
.contact-line a:hover { color: var(--c-gold); }

.contact-socials { display: flex; gap: 0.8rem; margin-top: 2.5rem; }
.contact-socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-dark);
  transition: all var(--transition);
}
.contact-socials a:hover { background: var(--c-dark); color: var(--c-ivory); border-color: var(--c-dark); }

.contact-form {
  background: var(--c-cream);
  padding: clamp(2rem, 4vw, 3rem);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-dark);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--c-border);
  background: var(--c-ivory);
  font-family: var(--ff-sans);
  font-size: 0.96rem;
  color: var(--c-dark);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--c-dark);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.map-wrap {
  margin-top: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
  filter: grayscale(0.4) contrast(1.05);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--c-dark);
  color: var(--c-ivory);
  text-align: center;
}
.cta-banner h2 {
  color: var(--c-ivory);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 400;
}
.cta-banner h2 strong { font-style: normal; font-weight: 600; }
.cta-banner p {
  max-width: 580px;
  margin: 1.2rem auto 2.4rem;
  color: rgba(251, 248, 242, 0.75);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0f0c0a;
  color: rgba(251, 248, 242, 0.75);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 56px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.94rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  color: var(--c-ivory);
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a:hover { color: var(--c-gold-light); }
.footer-col p { font-size: 0.94rem; margin-bottom: 0.4rem; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   WHATSAPP FLOATING
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 99;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
}
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--transition), transform 1s var(--transition);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .creations-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid rgba(251, 248, 242, 0.1); }
  .feature:last-child { border-bottom: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
}

@media (max-width: 768px) {
  .btn-burger { display: block; }
  .nav-list {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; height: 100vh;
    background: var(--c-ivory);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.4rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-strong);
  }
  .nav-list.open { right: 0; }
  .nav-link { font-size: 16px; }

  .about-grid,
  .about-hero-img,
  .contact-grid,
  .product { grid-template-columns: 1fr; }
  .product.reverse { direction: ltr; }

  .creations-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .bento-item.wide { grid-column: span 2; }
  .bento-item.tall { grid-row: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }

  .hero { min-height: 560px; }
  section { padding: 4rem 0; }
  .page-hero { padding: 9rem 0 4rem; }

  .whatsapp-float { width: 54px; height: 54px; bottom: 1.2rem; right: 1.2rem; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .logo-text { display: none; }
  .price-new { font-size: 2rem; }
  .product-meta { gap: 1rem; }
}
