/* ============================================
   RÉNOVÉMOI — Master Stylesheet
   Warm Artisanal & Elegant Theme
   ============================================ */

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

:root {
  --forest: #2C3E2D;
  --forest-light: #3A5039;
  --forest-deep: #1C2A1D;
  --copper: #B87333;
  --copper-light: #D4945C;
  --copper-dark: #8B5A2B;
  --cream: #F5F0E8;
  --linen: #EDE7DB;
  --parchment: #E8DFD0;
  --warm-white: #FDFAF5;
  --wood: #5C3D2E;
  --sage: #8B9D83;
  --text: #2A2520;
  --text-soft: #6B6158;
  --border: rgba(184,115,51,0.2);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --font-accent: 'Lora', Georgia, serif;

  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1380px;
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--copper); color: #fff; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(253,250,245,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 48px;
  box-shadow: 0 4px 30px rgba(44,62,45,0.08);
  border-bottom: 1px solid rgba(184,115,51,0.1);
}
.nav__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
}
.nav__logo-icon {
  width: 44px; height: 44px;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--copper);
  font-style: italic;
  transition: background var(--transition);
}
.nav.scrolled .nav__logo-icon { background: var(--forest); }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--forest);
  letter-spacing: 0.5px;
}
.hero .nav__logo-text { color: #fff; }

.nav__links { display: flex; gap: 32px; list-style: none; }
.nav__links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(44,62,45,0.7);
  transition: color var(--transition);
  position: relative;
}
.hero .nav__links a { color: rgba(255,255,255,0.7); }
.nav.scrolled .nav__links a { color: rgba(44,62,45,0.7); }
.nav__links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--copper);
  transition: width var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--copper); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta {
  padding: 12px 28px;
  background: var(--copper);
  color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__cta:hover { background: var(--copper-dark); transform: translateY(-1px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--forest); transition: all var(--transition); }
.hero .nav__burger span { background: #fff; }
.nav.scrolled .nav__burger span { background: var(--forest); }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  position: fixed; inset: 0;
  background: var(--warm-white);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 32px; color: var(--forest);
}
.nav__mobile a:hover { color: var(--copper); }

@media (max-width: 900px) {
  .nav, .nav.scrolled { padding: 14px 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  animation: slowZoom 25s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.06); } }

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(28,42,29,0.92) 0%, rgba(28,42,29,0.65) 45%, rgba(28,42,29,0.4) 70%, rgba(28,42,29,0.75) 100%);
  z-index: 1;
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.05; pointer-events: none;
}
.hero__content { position: relative; z-index: 3; width: 100%; }
.hero__inner { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }
.hero__text { max-width: 720px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px; opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}
.hero__eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--copper); }
.hero__eyebrow span {
  font-family: var(--font-accent); font-size: 14px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--copper-light); font-style: italic;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 400; line-height: 0.98;
  color: #fff; letter-spacing: -1px;
  margin-bottom: 28px; opacity: 0;
  animation: fadeUp 1s ease 0.35s forwards;
}
.hero__title em { font-style: italic; color: var(--copper-light); }

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: 20px; font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 500px; line-height: 1.7;
  margin-bottom: 48px; opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s ease 0.65s forwards; }

.hero__badge {
  position: absolute; right: 8%; bottom: 12%; z-index: 3;
  opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
}
.badge {
  width: 160px; height: 160px;
  border: 1.5px solid var(--copper);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  background: rgba(28,42,29,0.8);
  backdrop-filter: blur(8px);
}
.badge__num { font-family: var(--font-display); font-size: 44px; color: var(--copper-light); line-height: 1; }
.badge__lbl { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 6px; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s ease 1.1s forwards;
}
.hero__scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--copper), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

@media (max-width: 900px) { .hero__badge { display: none; } .hero__inner { padding: 0 24px; } }
@media (max-width: 600px) { .hero__scroll { display: none; } }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all var(--transition); border-radius: var(--radius);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(184,115,51,0.35); }

.btn-white { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.35); backdrop-filter: blur(4px); }
.btn-white:hover { background: rgba(255,255,255,0.25); border-color: var(--copper); color: var(--copper-light); }

.btn-dark { background: var(--forest); color: var(--copper-light); border-radius: var(--radius); }
.btn-dark:hover { background: var(--forest-deep); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }

/* ============================================
   SECTIONS
   ============================================ */
section { position: relative; }
.section { padding: 140px 0; }
.section--cream { background: var(--cream); }
.section--linen { background: var(--linen); }
.section--parchment { background: var(--parchment); }
.section--forest { background: var(--forest); color: #fff; }
.section--dark { background: var(--forest-deep); color: #fff; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.section-head { margin-bottom: 72px; }
.section-head--center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-accent); font-size: 13px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--copper); font-style: italic;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--copper); }
.section-head--center .section-eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--copper); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400; line-height: 1.08; letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--copper); }

.section-sub {
  font-family: var(--font-accent);
  font-size: 17px; font-weight: 300;
  color: var(--text-soft); line-height: 1.75;
  max-width: 560px;
}
.section--forest .section-sub, .section--dark .section-sub { color: rgba(255,255,255,0.65); }

.divider-leaf {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 24px; color: var(--copper); font-size: 18px; opacity: 0.7;
}
.divider-leaf::before, .divider-leaf::after { content: ''; width: 40px; height: 1px; background: var(--copper); opacity: 0.5; }

/* ============================================
   MANIFESTO / ABOUT
   ============================================ */
.manifesto {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.manifesto__img-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.manifesto__img-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform var(--transition-slow);
}
.manifesto__img-wrap:hover img { transform: scale(1.04); }
.manifesto__tag {
  position: absolute; top: 20px; left: 20px;
  padding: 10px 18px; background: var(--copper); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  border-radius: var(--radius);
}
.manifesto__badge-box {
  position: absolute; bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  background: var(--forest); border: 1px solid var(--copper);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; border-radius: var(--radius);
}
.manifesto__badge-num { font-family: var(--font-display); font-size: 40px; color: var(--copper); line-height: 1; }
.manifesto__badge-lbl { font-size: 9px; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.55); text-transform: uppercase; margin-top: 6px; }

.manifesto__content p { font-family: var(--font-accent); font-size: 17px; font-weight: 300; line-height: 1.85; color: var(--text-soft); margin-bottom: 20px; }
.manifesto__values { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.manifesto__value {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.manifesto__value-icon { font-size: 20px; color: var(--copper); flex-shrink: 0; }
.manifesto__value strong { display: block; font-size: 15px; font-weight: 600; color: var(--forest); }
.manifesto__value span { font-size: 13px; color: var(--text-soft); }
@media (max-width: 900px) { .manifesto { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================
   SERVICES
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.srv {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 48px 36px;
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.srv::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.srv:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(44,62,45,0.12); border-color: transparent; }
.srv:hover::after { transform: scaleX(1); }

.srv__icon { font-size: 36px; margin-bottom: 24px; }
.srv__title { font-family: var(--font-display); font-size: 24px; color: var(--forest); margin-bottom: 14px; }
.srv__text { font-size: 15px; color: var(--text-soft); line-height: 1.7; margin-bottom: 24px; }
.srv__link {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--copper); display: inline-flex; align-items: center; gap: 8px;
  transition: gap var(--transition);
}
.srv:hover .srv__link { gap: 14px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================
   BEFORE / AFTER
   ============================================ */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ba-card {
  background: var(--warm-white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--transition);
}
.ba-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,62,45,0.1); }
.ba-card__images { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.ba-card__images img { width: 100%; height: 200px; object-fit: cover; }
.ba-card__divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 32px; transform: translateX(-50%);
  background: var(--copper);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px;
  writing-mode: vertical-rl;
  z-index: 2;
}
.ba-card__body { padding: 28px; }
.ba-card__title { font-family: var(--font-display); font-size: 20px; color: var(--forest); margin-bottom: 8px; }
.ba-card__desc { font-size: 14px; color: var(--text-soft); line-height: 1.6; margin-bottom: 12px; }
.ba-card__tag {
  display: inline-block; padding: 5px 12px;
  background: rgba(184,115,51,0.1); color: var(--copper);
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px;
}
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }

/* ============================================
   BOUTIQUE
   ============================================ */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.shop-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: block;
}
.shop-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,62,45,0.1); }
.shop-item__img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform var(--transition-slow);
}
.shop-item:hover .shop-item__img { transform: scale(1.05); }
.shop-item__img-wrap { overflow: hidden; position: relative; }
.shop-item__badge {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 14px; background: var(--copper); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px;
}
.shop-item__body { padding: 20px; }
.shop-item__name { font-family: var(--font-display); font-size: 18px; color: var(--forest); margin-bottom: 6px; }
.shop-item__meta { font-size: 12px; color: var(--text-soft); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.shop-item__price {
  font-family: var(--font-display); font-size: 24px; color: var(--copper);
  display: flex; align-items: center; gap: 10px;
}
.shop-item__cta {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--copper); transition: gap var(--transition);
}
.shop-item:hover .shop-item__cta { gap: 14px; }
@media (max-width: 900px) { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .shop-grid { grid-template-columns: 1fr; } }

/* ============================================
   TESTIMONIALS
   ============================================ */
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.avis {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: var(--radius);
  position: relative;
}
.avis::before {
  content: '"'; position: absolute; top: 12px; right: 20px;
  font-family: var(--font-display); font-size: 72px;
  color: var(--copper); opacity: 0.2; line-height: 1;
}
.avis__stars { display: flex; gap: 3px; margin-bottom: 18px; }
.avis__stars svg { width: 16px; height: 16px; fill: var(--copper); }
.avis__text { font-family: var(--font-accent); font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--text-soft); font-style: italic; margin-bottom: 24px; }
.avis__author { display: flex; align-items: center; gap: 14px; }
.avis__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); color: var(--copper-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.avis__name { font-size: 14px; font-weight: 600; color: var(--forest); }
.avis__loc { font-family: var(--font-accent); font-size: 12px; color: var(--copper); font-style: italic; margin-top: 2px; }
@media (max-width: 900px) { .avis-grid { grid-template-columns: 1fr; } }

/* ============================================
   ZONE
   ============================================ */
.zone { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.zone__cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.zone__city {
  padding: 10px 20px; background: transparent;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text); transition: all var(--transition); cursor: default;
}
.zone__city:hover { background: var(--copper); color: #fff; border-color: var(--copper); }
.zone__city--main { background: var(--copper); color: #fff; border-color: var(--copper); font-weight: 700; }

.zone__visual {
  height: 440px;
  background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=1200&q=80');
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.zone__visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,62,45,0.8), rgba(44,62,45,0.4)); border-radius: var(--radius); }
.zone__pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  background: var(--copper); border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(184,115,51,0.7);
  animation: pinPulse 2s infinite;
}
.zone__pin::after {
  content: 'Crestet'; position: absolute; top: -30px; left: 50%;
  transform: translateX(-50%);
  background: var(--forest-deep); color: var(--copper-light);
  padding: 5px 12px; font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; white-space: nowrap;
  border-radius: 2px;
}
@keyframes pinPulse { 0%{box-shadow:0 0 0 0 rgba(184,115,51,0.7);} 70%{box-shadow:0 0 0 18px rgba(184,115,51,0);} 100%{box-shadow:0 0 0 0 rgba(184,115,51,0);} }
@media (max-width: 900px) { .zone { grid-template-columns: 1fr; gap: 40px; } .zone__visual { height: 280px; } }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  position: relative; padding: 100px 0; overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: rgba(28,42,29,0.90); }
.cta-band__inner {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto;
  text-align: center; color: #fff; padding: 0 40px;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 16px;
}
.cta-band__title em { font-style: italic; color: var(--copper-light); }
.cta-band__sub { font-family: var(--font-accent); font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 40px; font-weight: 300; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; }
.contact-info__item { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-info__icon {
  width: 52px; height: 52px; background: var(--forest); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info__icon svg { width: 22px; height: 22px; stroke: var(--copper); fill: none; stroke-width: 1.5; }
.contact-info__lbl { font-family: var(--font-accent); font-size: 11px; font-weight: 500; letter-spacing: 3px; color: var(--copper); text-transform: uppercase; font-style: italic; margin-bottom: 4px; }
.contact-info__val { font-size: 17px; font-weight: 500; color: var(--forest); }
.contact-info__val a:hover { color: var(--copper); }
.contact-info__sub { font-size: 13px; color: var(--text-soft); margin-top: 3px; }

.form-wrap {
  background: var(--warm-white); padding: 56px;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.form-wrap h3 { font-family: var(--font-display); font-size: 32px; margin-bottom: 8px; color: var(--forest); }
.form-wrap__sub { font-size: 14px; color: var(--text-soft); margin-bottom: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--forest); text-transform: uppercase; }
.form-group label span { color: var(--copper); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 0;
  border: none; border-bottom: 1px solid var(--parchment);
  background: transparent;
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  outline: none; transition: border-color var(--transition);
  border-radius: 0; appearance: none; -webkit-appearance: none;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--copper); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B87333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; background-size: 16px; padding-right: 28px; cursor: pointer; }
.form-submit { margin-top: 36px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-family: var(--font-accent); font-size: 13px; color: var(--text-soft); font-style: italic; }
#form-success { display: none; margin-top: 20px; padding: 16px; background: rgba(44,62,45,0.08); border-left: 3px solid var(--forest); color: var(--forest); font-size: 14px; font-weight: 500; border-radius: var(--radius); }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } .form-wrap { padding: 32px 24px; } .form-grid { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--forest-deep); color: rgba(255,255,255,0.6); padding: 100px 0 0; }
.footer__top { max-width: var(--max-width); margin: 0 auto; padding: 0 48px 80px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand { font-family: var(--font-display); font-size: 28px; color: #fff; margin-bottom: 16px; }
.footer__desc { font-family: var(--font-accent); font-size: 14px; font-weight: 300; line-height: 1.8; margin-bottom: 28px; max-width: 300px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer__social a:hover { background: var(--copper); border-color: var(--copper); color: #fff; }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer__col-title { font-family: var(--font-accent); font-size: 11px; font-weight: 500; letter-spacing: 3px; color: var(--copper); text-transform: uppercase; font-style: italic; margin-bottom: 24px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__links a:hover { color: var(--copper-light); }
.footer__contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; font-weight: 300; }
.footer__contact-item svg { width: 16px; height: 16px; stroke: var(--copper); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 48px; max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; font-size: 12px; font-weight: 300; }
.footer__bottom a:hover { color: var(--copper-light); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; padding: 0 24px 60px; } .footer__bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================
   FLOATING CTA + PAGE HEADER + MISC
   ============================================ */
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: flex; flex-direction: column; gap: 12px; opacity: 0; transform: translateY(20px); transition: all var(--transition); pointer-events: none; }
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(0,0,0,0.2); transition: transform var(--transition); }
.floating-btn:hover { transform: scale(1.1); }
.floating-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.floating-btn--call { background: #25D366; color: #fff; }
.floating-btn--contact { background: var(--copper); color: #fff; }

.page-header {
  position: relative; background: var(--forest-deep);
  padding: 200px 0 100px; text-align: center; overflow: hidden;
}
.page-header::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.25; }
.page-header--savoir-faire::before { background-image: url('https://images.unsplash.com/photo-1616627561950-9f746e330187?auto=format&fit=crop&w=2000&q=80'); }
.page-header--realisations::before { background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=2000&q=80'); }
.page-header--boutique::before { background-image: url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?auto=format&fit=crop&w=2000&q=80'); }
.page-header--contact::before { background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=2000&q=80'); }
.page-header__content { position: relative; z-index: 2; color: #fff; padding: 0 40px; }
.page-header__eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-accent); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--copper-light); font-style: italic; margin-bottom: 20px; }
.page-header__eyebrow::before, .page-header__eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--copper); }
.page-header__title { font-family: var(--font-display); font-size: clamp(42px, 6vw, 80px); font-weight: 400; line-height: 1; }
.page-header__title em { font-style: italic; color: var(--copper-light); }
.page-header__sub { font-family: var(--font-accent); font-size: 17px; color: rgba(255,255,255,0.6); margin-top: 16px; font-weight: 300; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
