/* ============================================
   SiteServi · Direction A "Artisan de confiance"
   ============================================ */

:root {
  --cream: #f7f1e6;
  --paper: #fffcf6;
  --ink: #2c2620;
  --ink-soft: #5c5346;
  --line: #e6dac4;
  --terracotta: #b6512e;
  --terracotta-dark: #954023;
  --terracotta-tint: #f3e3d8;
  --sage: #5c6b4d;
  --sage-tint: #e8ecdf;
  --gold: #c98a3b;
  --shadow-soft: 0 1px 2px rgba(44, 38, 32, 0.06), 0 8px 24px -8px rgba(44, 38, 32, 0.12);
  --shadow-lift: 0 2px 4px rgba(44, 38, 32, 0.08), 0 20px 40px -16px rgba(44, 38, 32, 0.22);
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

section { position: relative; }

/* ---------- texture / atmosphere ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 230, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 1px;
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav-links, .nav-secondary-link { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .nav-cta .btn-primary { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--terracotta);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--terracotta-dark); box-shadow: var(--shadow-lift); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink-soft); background: var(--paper); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- hero ---------- */
.hero {
  padding: 76px 0 40px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, var(--terracotta-tint) 0%, transparent 70%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  top: 120px;
  left: -200px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--sage-tint) 0%, transparent 70%);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  background: var(--terracotta-tint);
  border-radius: 100px;
  padding: 7px 16px 7px 12px;
  margin-bottom: 22px;
}
.kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-lead {
  margin-top: 22px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  color: var(--ink);
}
.hero-stat span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- phone mockup (demo preview) ---------- */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  width: 280px;
  background: var(--ink);
  border-radius: 34px;
  padding: 12px;
  box-shadow: var(--shadow-lift);
  transform: rotate(3deg);
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: #fdf8ef;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: var(--ink);
  border-radius: 10px;
  z-index: 3;
}
.demo-hero {
  height: 150px;
  background: linear-gradient(155deg, #d98850, #b6512e);
  background-size: cover;
  background-position: center;
  padding: 34px 16px 14px;
  color: #fff;
}
.demo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.demo-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  margin-top: 6px;
}
.demo-body { padding: 14px 16px; }
.demo-info {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #a9967e;
  margin-bottom: 10px;
}
.demo-line {
  height: 8px;
  border-radius: 4px;
  background: #ece3d2;
  margin-bottom: 8px;
}
.demo-line.w-80 { width: 80%; }
.demo-line.w-60 { width: 60%; }
.demo-section-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #b98d5a;
  margin: 12px 0 6px;
}
.demo-photos {
  display: flex;
  gap: 5px;
  margin: 0 0 4px;
  overflow: hidden;
}
.demo-photos img {
  flex: 0 0 auto;
  width: 39px;
  height: 60px;
  border-radius: 7px;
  object-fit: cover;
  background: #eadfc9;
}
.demo-photos-more {
  flex: 0 0 auto;
  width: 39px;
  height: 60px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9a7a4f;
  background-color: #f3ece0;
}
.demo-review {
  background: #f3ece0;
  border-radius: 10px;
  padding: 8px 10px;
  margin: 10px 0;
}
.demo-review-stars { color: #c98a3b; font-size: 0.65rem; margin-right: 6px; }
.demo-review-author { font-size: 0.65rem; font-weight: 700; color: #5c4a35; }
.demo-review p { font-size: 0.68rem; color: #7a6a55; margin-top: 3px; font-style: italic; line-height: 1.35; }
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--sage-tint);
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 5px 10px;
  margin-top: 10px;
}
.phone-caption {
  position: absolute;
  bottom: -18px;
  right: -26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  max-width: 190px;
  z-index: 3;
  transform: rotate(-2deg);
}
.phone-caption b { color: var(--terracotta); }

/* ---------- generic section styles ---------- */
.section {
  padding: 96px 0;
}
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .kicker { margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
}
.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* ---------- problem/solution ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.problem-card .problem-icon { display: block; width: 46px; height: 46px; margin-bottom: 14px; }
.problem-card .problem-icon svg { width: 100%; height: 100%; display: block; }
.problem-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.problem-card p { font-size: 0.92rem; color: var(--ink-soft); }
.problem-card.solution {
  background: linear-gradient(160deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  color: var(--paper);
  border: none;
  display: flex;
  flex-direction: column;
}
.problem-card.solution h3 { color: var(--paper); }
.problem-card.solution p { color: rgba(255,255,255,0.88); flex-grow: 1; }
.problem-card.solution .btn-ghost {
  margin-top: 18px;
  border-color: rgba(255,255,255,0.5);
  color: var(--paper);
}
.problem-card.solution .btn-ghost:hover { background: rgba(255,255,255,0.12); }

@media (max-width: 980px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 10px;
}
.step-num {
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  color: var(--terracotta-tint);
  -webkit-text-stroke: 1.5px var(--terracotta);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 10px);
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step:not(:last-child)::after { display: none; }
}

/* ---------- examples carousel ---------- */
.examples-scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.examples-scroller::-webkit-scrollbar { height: 8px; }
.examples-scroller::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }

.example-card {
  scroll-snap-align: start;
  flex: 0 0 380px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.example-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
/* Agrandissement au survol -- uniquement sur les appareils qui ont un vrai
   survol (souris), jamais sur tactile (pas d'etat hover fiable, un tap
   declenche directement le clic). transform seul = pas de reflow/repaint,
   cout de performance negligeable. */
@media (hover: hover) and (pointer: fine) {
  .example-card:hover { transform: translateY(-6px) scale(1.07); z-index: 2; }
}
.example-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.example-browser-dots { display: flex; gap: 4px; flex-shrink: 0; }
.example-browser-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(247, 241, 230, 0.35);
}
.example-browser-domain {
  flex: 1;
  background: rgba(247, 241, 230, 0.12);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.72rem;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.example-premium-note {
  font-size: 0.68rem;
  color: var(--ink-soft);
  text-align: center;
  padding: 4px 8px 0;
  font-style: italic;
}
.example-frame-wrap {
  height: 238px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.example-frame-wrap iframe {
  /* Rendu DESKTOP (1440x900) mis a l'echelle, pas mobile : on veut que
     chaque carte ressemble a "un vrai site en mini", pas a une capture
     d'ecran de telephone recadree. 0.264 = 380/1440 (largeur de carte). */
  width: 1440px;
  height: 900px;
  border: none;
  transform: scale(0.264);
  transform-origin: top left;
  pointer-events: none;
}
.example-info { padding: 16px 18px; }
.example-cat {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
}
.example-name { font-family: "DM Serif Display", serif; font-size: 1.15rem; margin-top: 4px; }
.example-loc { font-size: 0.85rem; color: var(--ink-soft); margin-top: 2px; }
.example-link {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--terracotta-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Indice de defilement -- surtout utile sur mobile ou aucune barre de
   scroll n'est visible et la 1ere carte peut occuper tout l'ecran. */
.examples-scroller-wrap { position: relative; }
.examples-scroller-wrap::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 28px;
  width: 56px;
  background: linear-gradient(to right, transparent, var(--cream) 85%);
  pointer-events: none;
  opacity: 1;
  transition: opacity .3s ease;
}
.examples-scroller-wrap.scrolled::after { opacity: 0; }
.scroll-hint {
  display: none;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: -14px;
  padding-bottom: 6px;
  animation: scroll-hint-nudge 1.6s ease-in-out infinite;
  transition: opacity .3s ease;
}
.examples-scroller-wrap.scrolled .scroll-hint { opacity: 0; pointer-events: none; }
@keyframes scroll-hint-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
@media (max-width: 760px) {
  .scroll-hint { display: inline-flex; }
}

/* ---------- pricing ---------- */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
}
.billing-toggle-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s ease, color .2s ease;
}
.billing-toggle-btn.active {
  background: var(--terracotta);
  color: var(--paper);
}
.billing-toggle-badge {
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--sage);
  color: var(--paper);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.billing-toggle-btn.active .billing-toggle-badge { background: rgba(255,255,255,.25); }
.billing-annual-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: -16px 0 20px;
  font-style: italic;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 820px;
  margin: 0 auto;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.price-card.featured {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-lift);
}
.price-badge {
  position: absolute;
  top: -13px;
  right: 28px;
  background: var(--terracotta);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 100px;
}
.price-card h3 { font-size: 1.4rem; }
.price-card .price-sub { color: var(--ink-soft); font-size: 0.9rem; margin-top: 6px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin: 22px 0 24px; }
.price-amount .num { font-family: "DM Serif Display", serif; font-size: 3rem; }
.price-amount .per { color: var(--ink-soft); }
.price-features li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.94rem;
  border-top: 1px dashed var(--line);
}
.price-features li:first-child { border-top: none; }
.price-features .check { color: var(--sage); font-weight: 700; }
.price-card .btn { margin-top: 26px; }
.price-note { text-align: center; margin-top: 26px; color: var(--ink-soft); font-size: 0.88rem; }

@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------- comparison table ---------- */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}
.compare-table th:first-child, .compare-table td:first-child {
  text-align: left;
  color: var(--ink-soft);
  font-weight: 500;
}
.compare-table thead th {
  font-family: "DM Serif Display", serif;
  font-size: 1.05rem;
  font-weight: 400;
  background: var(--cream);
}
.compare-table thead th.highlight { background: var(--terracotta-tint); color: var(--terracotta-dark); }
.compare-table tbody td.highlight { background: rgba(182, 81, 46, 0.05); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.yes { color: var(--sage); font-weight: 700; }
.no { color: #b9aa93; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  margin-left: 20px;
}
.faq-q .icon::before, .faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--terracotta);
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.faq-q .icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* ---------- contact ---------- */
.contact-section {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 64px;
  margin: 0 24px;
  max-width: calc(var(--container) - 48px);
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,81,46,0.35), transparent 70%);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-section h2 { color: var(--paper); font-size: clamp(1.9rem, 3vw, 2.4rem); }
.contact-section p.lead { color: rgba(255,255,255,0.75); margin-top: 16px; font-size: 1.05rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 24px;
}
.form-success {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  color: var(--paper);
}
.form-success h3 { font-size: 1.3rem; margin-bottom: 10px; }
.form-success p { color: rgba(255,255,255,0.75); }
.field label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
}
.field input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--paper);
  font-family: inherit;
  font-size: 0.95rem;
}
.field input::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus { outline: none; border-color: var(--terracotta); background: rgba(255,255,255,0.1); }

@media (max-width: 880px) {
  .contact-section { padding: 40px 24px; margin: 0 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- final CTA ---------- */
.final-cta {
  text-align: center;
  padding: 90px 0 110px;
}
.final-cta h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); max-width: 700px; margin: 0 auto; }
.final-cta p { margin-top: 18px; color: var(--ink-soft); font-size: 1.05rem; }
.final-cta .btn { margin-top: 28px; }

/* ---------- cookie consent ---------- */
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 680px;
  color: var(--cream);
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner .btn-ghost {
  background: transparent;
  border: 1px solid rgba(247, 241, 230, 0.4);
  color: var(--cream);
}
@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.footer-inner a:hover { color: var(--terracotta); }
.footer-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .phone-wrap { order: -1; margin-bottom: 20px; }
  .phone-caption { display: none; }
  .contact-grid { text-align: left; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .phone { width: 240px; }
  .phone-screen { height: 460px; }
}
