/* ===== PALETTE — Poésie Créative ===== */
:root {
  --bg: #faf8f4;
  --bg-alt: #edf3ef;
  --text: #2c3a3a;
  --muted: #6a7e78;
  --accent: #4a8c8c;
  --accent-light: #6bb0ae;
  --accent-dark: #3a7270;
  --dark: #1f2e30;
  --white: #fff;
  --cream: #f5efe6;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 6px 30px rgba(42, 60, 58, 0.09);
  --shadow-hover: 0 10px 40px rgba(42, 60, 58, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Georgia", "Palatino", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::after {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  max-width: 600px;
  height: auto;
  aspect-ratio: 1;
  background: url('/assets/logo.png') center center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section, .hero, footer, .nav { position: relative; z-index: 1; }

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.7rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.section { padding: 6rem 1.5rem; }
.section-alt { background: var(--bg-alt); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 620px; margin-bottom: 2.4rem; line-height: 1.8; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 140, 140, 0.1);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(42, 60, 58, 0.08); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo-img { height: 90px; width: auto; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); filter: drop-shadow(0 4px 12px rgba(74, 140, 140, 0.35)); border-radius: 12px; padding: 4px; background: rgba(255, 255, 255, 0.7); }
.logo:hover .logo-img { transform: scale(1.08); filter: drop-shadow(0 8px 24px rgba(74, 140, 140, 0.45)); background: rgba(255, 255, 255, 0.95); }

.menu { list-style: none; display: flex; gap: 2rem; }
.menu a {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  opacity: 0.75;
  position: relative;
}
.menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.menu a:hover { opacity: 1; color: var(--accent); }
.menu a:hover::after { width: 100%; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 0;
  transition: all var(--transition);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(74, 140, 140, 0.25); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #fff; }
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.btn-ghost { background: transparent; color: var(--dark); border: 1.5px solid rgba(74, 140, 140, 0.35); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-nav { padding: 0.6rem 1.3rem; font-size: 0.85rem; background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #fff; }
.btn-nav:hover { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); transform: translateY(-2px); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--cream) 0%, #e4eff0 40%, #d9eaed 70%, var(--bg) 100%);
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 140, 140, 0.07), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 3.8rem); margin: 0.3rem 0 1.2rem; letter-spacing: -0.02em; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; max-width: 560px; line-height: 1.8; }
.hero-slogan { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; margin-top: 1.4rem; color: var(--text); text-align: center; grid-column: 1 / -1; }
.hero-slogan em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; max-width: 560px; line-height: 1.8; }
.hero-sub p { margin-bottom: 1rem; text-align: justify; }
.hero-sub p:last-child { margin-bottom: 0; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4 / 3;
  background: var(--cream);
}
.hc-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hc-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.hc-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hc-prev, .hc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  opacity: 0;
  color: var(--dark);
}
.hero-carousel:hover .hc-prev,
.hero-carousel:hover .hc-next { opacity: 1; }
.hc-prev:hover, .hc-next:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.hc-prev { left: 12px; }
.hc-next { right: 12px; }
.hc-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hc-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--transition);
}
.hc-dots span.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ===== FIL CONDUCTEUR ===== */
.fil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1rem;
}
.fil-text p { margin-bottom: 1rem; font-size: 1.05rem; color: var(--muted); line-height: 1.85; text-align: justify; }
.fil-text strong { color: var(--text); }
.fil-values { display: flex; flex-direction: column; gap: 1.2rem; }
.value {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.1rem; }
.value h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.value p { font-size: 0.9rem; color: var(--muted); }

/* ===== ATELIERS ===== */
.ateliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.3rem;
}
.atelier-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.atelier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.atelier-icon-wrap {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 140, 140, 0.08), rgba(74, 140, 140, 0.03));
}
.atelier-img-wrap {
  height: 220px;
  overflow: hidden;
}
.atelier-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.atelier-card:hover .atelier-img { transform: scale(1.06); }
.atelier-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform var(--transition);
}
.atelier-card:hover .atelier-icon { transform: scale(1.15) rotate(-5deg); }
.atelier-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.atelier-tag {
  display: inline-block;
  background: rgba(74, 140, 140, 0.1);
  color: var(--accent);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
  width: fit-content;
}
.atelier-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; flex: 1; }

/* ===== OCCASIONS ===== */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.occasion {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
}
.occasion:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.occasion-icon { font-size: 2.2rem; display: block; margin-bottom: 0.7rem; }
.occasion h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.occasion p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  transition: all var(--transition);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.contact-details { margin-top: 1.5rem; }
.contact-details p { margin: 0.6rem 0; color: var(--dark); font-size: 0.95rem; }
.contact-details a { color: var(--accent); font-weight: 600; }
.contact-details a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition);
}
.contact-form:hover { box-shadow: var(--shadow-hover); }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0e6dd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafaf7;
  transition: all var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 140, 140, 0.12);
  background: #fff;
}

/* ===== ATELIERS MODAL ===== */
.atelier-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.atelier-modal.open { opacity: 1; visibility: visible; }

.am-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 22, 0.75);
  backdrop-filter: blur(6px);
}
.am-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  max-width: 720px;
  width: 92vw;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
}
.am-icon-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 140, 140, 0.12), rgba(74, 140, 140, 0.04));
  border-radius: var(--radius) var(--radius) 0 0;
}
.am-img-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 2rem 2rem 0;
}
.am-img-full.has-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-img-full img {
  max-width: 100%;
  max-height: 60vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.am-gallery { width: 100%; }
.am-gallery-viewport {
  position: relative;
  display: flex;
  align-items: center;
}
.am-gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.am-gal-arrow:hover { background: var(--accent); color: #fff; }
.am-gal-prev { left: 8px; }
.am-gal-next { right: 8px; }
.am-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  scrollbar-width: thick;
  scrollbar-color: var(--accent) #e6e9e0;
}
.am-gallery-track::-webkit-scrollbar { height: 14px; }
.am-gallery-track::-webkit-scrollbar-track { background: #e6e9e0; border-radius: 999px; }
.am-gallery-track::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
  border: 3px solid #e6e9e0;
}
.am-gallery-track::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }
.am-gallery-slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-gallery-single .am-gallery-track {
  justify-content: center;
}
.am-gallery-single .am-gallery-slide {
  flex: 1 1 auto;
}
.am-gallery-slide img {
  max-width: 100%;
  max-height: 55vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.am-icon {
  font-size: 5rem;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
}
.am-body { padding: 2rem; }
.am-tag {
  display: inline-block;
  background: rgba(74, 140, 140, 0.1);
  color: var(--accent);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.am-body h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.am-body h4 { font-size: 0.95rem; color: var(--accent); margin: 1.2rem 0 0.5rem; font-family: "Helvetica Neue", Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }
.am-body p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.6rem; }
.am-body strong { color: var(--text); }
.am-body ul { margin: 0.5rem 0 1.5rem 1.2rem; font-size: 0.92rem; color: var(--muted); line-height: 1.8; }
.am-body .btn { margin-top: 1rem; }
.am-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.am-close:hover { background: #fff; }

/* ===== MAP ===== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
#map {
  width: 100%;
  height: 400px;
  background: #e8ece5;
}

/* ===== AVIS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent-light);
}
.review-stars { color: #e8c25b; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 0.7rem; }
.review-stars span { color: #ddd3c0; }
.review-stars span.on { color: #e8c25b; }
.review-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.review-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}
.review-photos img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition);
}
.review-photos img:hover { transform: scale(1.05); }
.rev-msg { font-size: 0.85rem; color: var(--muted); }
.review-name { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--accent); }

.review-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 720px;
}
.review-form h3 { margin-bottom: 1.2rem; }
.review-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.review-form input, .review-form textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0e6dd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafaf7;
  transition: all var(--transition);
}
.review-form input:focus, .review-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 140, 140, 0.12);
  background: #fff;
}
.stars-input { display: flex; gap: 0.25rem; font-size: 2rem; cursor: pointer; }
.stars-input .star { color: #ddd2bd; transition: transform var(--transition), color var(--transition); }
.stars-input .star:hover { transform: scale(1.15); }
.stars-input .star.on { color: #e8c25b; }
.form-note { margin-top: 1rem; color: var(--accent); font-weight: 600; font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #d6e0dc;
  text-align: center;
  padding: 2.8rem 1.5rem;
  font-size: 0.9rem;
}
.footer .muted { color: #8a9e96; font-size: 0.82rem; margin-top: 0.5rem; font-style: italic; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .menu { display: none; }
  .logo-img { height: 70px; }
  .hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .hero-visual { order: -1; }
  .hero-carousel { max-width: 360px; }
  .fil-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 1.5rem; }
  .ateliers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 2.5rem 1.5rem; }
  .hero-carousel { max-width: 100%; }
  .hero-visual { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.5rem; }
  .contact-form { padding: 1.4rem; }
  .value { flex-direction: column; text-align: center; align-items: center; }
  .value-icon { margin: 0 0 0.4rem; }
}
