/* ===========================================================
   ATELIER SOLÈNE — Architecte d'intérieur
   Style : minimal museum, ivoire chaud, charbon, terracotta
   =========================================================== */

:root {
  --bg: #fcfbf9;
  --bg-surface: #ffffff;
  --bg-warm: #f3efe8;
  --bg-dark: #1c1817;
  --fg: #1c1817;
  --fg-muted: #57514a;
  --fg-dim: #8c8478;
  --fg-on-dark: #f3efe8;
  --fg-on-dark-muted: #a39a8c;
  --accent: #c4a584;
  --accent-deep: #a98863;
  --accent-soft: #c4a58422;
  --border: #e6e0d5;
  --border-strong: #d0c7b6;
  --border-dark: #36302c;
  --shadow: 0 24px 64px -20px rgba(28, 24, 23, 0.22);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-pad: clamp(80px, 13vw, 160px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--bg-dark); color: var(--fg-on-dark);
  padding: 12px 20px; font-weight: 600; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(252, 251, 249, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px var(--gutter);
  border-bottom-color: var(--border);
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.brand__mark {
  display: inline-flex;
  width: 30px; height: 30px;
  color: var(--accent-deep);
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__word { letter-spacing: 0.005em; }
.brand--lg { font-size: 1.6rem; }
.brand--lg .brand__mark { width: 36px; height: 36px; }

.primary-nav { display: none; }
@media (min-width: 980px) { .primary-nav { display: block; } }
.primary-nav ul {
  display: flex; gap: 36px;
  list-style: none; padding: 0; margin: 0;
}
.primary-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}
.primary-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.primary-nav a:hover { color: var(--fg); }
.primary-nav a:hover::after { transform: scaleX(1); }

.cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border: 1px solid var(--bg-dark);
  background: transparent;
  color: var(--fg);
  border-radius: 100px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta:hover { background: var(--bg-dark); color: var(--fg-on-dark); }
.cta--primary {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
}
.cta--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--bg-dark); }
.cta--lg { padding: 16px 34px; font-size: 14px; }
.cta--full { width: 100%; }
.cta--link {
  border: 0;
  padding: 13px 4px;
  background: transparent;
  color: var(--fg);
  border-radius: 0;
  border-bottom: 1px solid var(--border-strong);
}
.cta--link:hover {
  background: transparent;
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}
.cta__arrow {
  display: inline-flex; width: 18px; height: 18px;
  transition: transform 0.3s ease;
}
.cta__arrow svg { width: 100%; height: 100%; }
.cta--link:hover .cta__arrow { transform: translateX(4px); }

.header-cta { display: none; }
@media (min-width: 980px) { .header-cta { display: inline-flex; } }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center;
  gap: 4px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
}
.burger span {
  display: block; height: 1.5px; width: 16px;
  background: var(--fg);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
@media (min-width: 980px) { .burger { display: none; } }

/* ===========================================================
   MOBILE MENU
   =========================================================== */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 110px var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu:not([hidden]) { opacity: 1; pointer-events: auto; }
.mobile-menu nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.2, 0.6, 0.3, 1), opacity 0.55s ease;
  transition-delay: calc(0.05s * var(--i, 0));
}
.mobile-menu:not([hidden]) nav a { transform: none; opacity: 1; }
.mobile-menu__foot {
  display: flex; flex-direction: column; gap: 18px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(0.05s * var(--i, 0));
}
.mobile-menu:not([hidden]) .mobile-menu__foot { opacity: 1; transform: none; }
.mobile-menu__addr {
  font-size: 13px;
  color: var(--fg-dim);
  margin: 0;
  line-height: 1.6;
}

/* ===========================================================
   EYEBROW
   =========================================================== */
.eyebrow {
  display: inline-flex; align-items: center;
  margin-bottom: 28px;
}
.eyebrow__index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  padding: clamp(130px, 17vw, 200px) var(--gutter) 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__grid {
  display: grid; gap: 48px;
  align-items: center;
}
@media (min-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--fg);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}
.hero__lede {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 460px;
  margin: 0 0 36px;
}
.hero__ctas {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero__figure { margin: 0; overflow: hidden; }
.hero__figure--main {
  width: 78%;
  aspect-ratio: 10/13;
  margin-left: auto;
}
.hero__figure--main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.hero__visual:hover .hero__figure--main img { transform: scale(1.04); }
.hero__figure--inset {
  position: absolute;
  bottom: 0; left: 0;
  width: 46%;
  aspect-ratio: 7/5;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow);
}
.hero__figure--inset img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero__ticker {
  margin-top: clamp(64px, 10vw, 120px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 22px 0;
}
.hero__ticker-track {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__ticker-track { animation: none; }
}
.hero__ticker-track span {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
}
.hero__ticker-track .dot { color: var(--accent); font-style: normal; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================================
   SECTIONS — base
   =========================================================== */
.section {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section__head {
  max-width: 720px;
  margin: 0 0 clamp(48px, 7vw, 88px);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--fg);
}
.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}
.section__lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-muted);
  margin: 24px 0 0;
  max-width: 540px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s cubic-bezier(0.2, 0.6, 0.3, 1),
              transform 1s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===========================================================
   INTRO
   =========================================================== */
.section--intro {
  padding-top: clamp(64px, 9vw, 110px);
  padding-bottom: clamp(64px, 9vw, 110px);
}
.intro {
  display: grid; gap: 56px;
}
@media (min-width: 880px) {
  .intro {
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
    align-items: center;
  }
}
.intro__statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--fg);
  margin: 0;
}
.intro__statement em {
  font-style: italic;
  color: var(--accent-deep);
}
.intro__stats {
  display: grid; gap: 28px;
  border-left: 1px solid var(--border-strong);
  padding-left: 36px;
}
.intro__stat {
  display: flex; flex-direction: column; gap: 2px;
}
.intro__stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-deep);
}
.intro__stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 600;
}

/* ===========================================================
   PROJETS — bento gallery
   =========================================================== */
.projets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .projets {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.projet {
  display: block;
  position: relative;
  background: var(--bg-warm);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.projet:hover { transform: translateY(-6px); }
@media (min-width: 720px) {
  .projet--xl { grid-column: span 2; }
  .projet--wide { grid-column: span 2; }
}
.projet__media {
  overflow: hidden;
  aspect-ratio: 9/11;
}
.projet--xl .projet__media { aspect-ratio: 14/10; }
.projet--wide .projet__media { aspect-ratio: 16/9; }
.projet__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.6, 0.3, 1), filter 0.5s ease;
  filter: grayscale(0.12);
}
.projet:hover .projet__media img {
  transform: scale(1.05);
  filter: grayscale(0);
}
.projet__meta {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 26px;
}
.projet__cat {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 6px;
}
.projet__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  color: var(--fg);
}
.projet__year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg-dim);
  flex-shrink: 0;
}

/* ===========================================================
   DÉMARCHE
   =========================================================== */
.section--demarche-wrap {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
}
.section--demarche {
  display: grid; gap: 56px;
}
@media (min-width: 940px) {
  .section--demarche {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 88px;
    align-items: start;
  }
}
.section--demarche .section__head { margin: 0; }
.section--demarche .section__title { color: var(--fg-on-dark); }
.section--demarche .section__title em { color: var(--accent); }
.section--demarche .section__lede { color: var(--fg-on-dark-muted); }
.section--demarche .eyebrow__index { color: var(--accent); }

.demarche {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
}
.demarche__phase {
  display: flex; gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-dark);
}
.demarche__phase:first-child { padding-top: 0; }
.demarche__phase:last-child { border-bottom: 0; padding-bottom: 0; }
.demarche__phase-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  flex-shrink: 0;
  width: 56px;
  line-height: 1.2;
}
.demarche__phase-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--fg-on-dark);
}
.demarche__phase-body p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--fg-on-dark-muted);
}
.demarche__phase-meta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* ===========================================================
   STUDIO
   =========================================================== */
.studio {
  display: grid; gap: 56px;
  align-items: center;
}
@media (min-width: 940px) {
  .studio {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
  }
}
.studio__visual {
  position: relative;
  aspect-ratio: 9/11;
  overflow: hidden;
}
.studio__visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15);
  transition: transform 1s ease;
}
.studio__visual:hover img { transform: scale(1.03); }
.studio__visual-cap {
  position: absolute; bottom: 18px; left: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--fg-on-dark);
  background: rgba(28, 24, 23, 0.7);
  padding: 6px 14px;
  backdrop-filter: blur(4px);
}
.studio__body p {
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--fg-muted);
  margin: 0 0 18px;
}
.studio__body p em { color: var(--accent-deep); font-style: italic; }
.studio__body .section__title { margin-bottom: 24px; }
.studio__quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--fg);
  margin: 28px 0;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}
.studio__values {
  list-style: none; padding: 0;
  margin: 28px 0 0;
  display: grid; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}
.studio__values li {
  font-size: 0.96rem;
  color: var(--fg-muted);
  padding-left: 22px;
  position: relative;
}
.studio__values li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.studio__values strong { color: var(--fg); font-weight: 600; }

/* ===========================================================
   DISTINCTIONS
   =========================================================== */
.distinctions {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border-strong);
}
.distinction {
  display: grid;
  gap: 6px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
}
@media (min-width: 720px) {
  .distinction {
    grid-template-columns: 100px 1fr auto;
    gap: 32px;
    align-items: baseline;
  }
}
.distinction:hover { padding-left: 16px; }
.distinction__year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent-deep);
}
.distinction__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
}
.distinction__detail {
  font-size: 0.9rem;
  color: var(--fg-dim);
}

/* ===========================================================
   SERVICES
   =========================================================== */
.section--services-wrap { background: var(--bg-warm); }
.services {
  display: grid; gap: 24px;
}
@media (min-width: 860px) { .services { grid-template-columns: repeat(3, 1fr); } }
.service {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service--featured {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  border-color: var(--bg-dark);
}
.service__badge {
  position: absolute; top: -11px; left: clamp(28px, 3vw, 40px);
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.service__head {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.service--featured .service__head { border-bottom-color: var(--border-dark); }
.service__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1.2;
}
.service--featured .service__name { color: var(--fg-on-dark); }
.service__price {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
}
.service--featured .service__price { color: var(--accent); }
.service__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0 0 22px;
}
.service--featured .service__desc { color: var(--fg-on-dark-muted); }
.service__list {
  list-style: none; padding: 0; margin: auto 0 0;
  display: grid; gap: 9px;
}
.service__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--fg);
}
.service--featured .service__list li { color: var(--fg-on-dark); }
.service__list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 11px; height: 1.5px;
  background: var(--accent-deep);
}
.service--featured .service__list li::before { background: var(--accent); }
.services__note {
  margin: 40px 0 0;
  font-size: 0.92rem;
  color: var(--fg-dim);
  text-align: center;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact {
  display: grid; gap: 56px;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 940px) {
  .contact {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
  }
}
.contact__intro .section__title { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
.contact__info {
  margin: 40px 0 0;
  list-style: none; padding: 0;
  display: grid; gap: 20px;
}
.contact__info li {
  display: grid; gap: 5px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.contact__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 600;
}
.contact__info a,
.contact__info span:not(.contact__label) {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.5;
}
.contact__info a:hover { color: var(--accent-deep); }

.contact__form {
  display: grid; gap: 18px;
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--bg-surface);
  border: 1px solid var(--border);
}
.field-row { display: grid; gap: 18px; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent-deep);
  background: var(--bg-surface);
}
.field textarea { resize: vertical; min-height: 110px; }
.field__error {
  font-size: 12px;
  color: #b3261e;
  min-height: 1em;
  margin: 0;
}
.form__success {
  padding: 16px 18px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--fg);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.form__legal {
  font-size: 11px;
  color: var(--fg-dim);
  line-height: 1.55;
  margin: 0;
}

.contact__map {
  max-width: var(--max-w);
  margin: clamp(56px, 8vw, 96px) auto 0;
  aspect-ratio: 21/9;
  border: 1px solid var(--border);
  background: var(--bg-warm);
}
.contact__map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.5) contrast(1.05) brightness(1.02);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  padding: clamp(72px, 10vw, 120px) var(--gutter) 32px;
}
.site-footer__top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid; gap: 48px;
}
@media (min-width: 940px) {
  .site-footer__top { grid-template-columns: 1.4fr 2fr; }
}
.site-footer .brand__word { color: var(--fg-on-dark); }
.site-footer .brand__mark { color: var(--accent); }
.site-footer__brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--fg-on-dark-muted);
  max-width: 380px;
  margin: 22px 0 0;
}
.site-footer__nav {
  display: grid; gap: 36px;
  grid-template-columns: repeat(3, 1fr);
}
.site-footer__nav h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin: 0 0 18px;
}
.site-footer__nav ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 11px;
}
.site-footer__nav a {
  font-size: 0.88rem;
  color: var(--fg-on-dark-muted);
  transition: color 0.2s ease;
}
.site-footer__nav a:hover { color: var(--accent); }
.site-footer__bottom {
  max-width: var(--max-w);
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.site-footer__bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--fg-on-dark-muted);
}
.site-footer__bottom ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 24px;
}
.site-footer__bottom a {
  font-size: 0.78rem;
  color: var(--fg-on-dark-muted);
}
.site-footer__bottom a:hover { color: var(--accent); }

/* ===========================================================
   STICKY CTA mobile
   =========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 80;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }
.sticky-cta svg { width: 16px; height: 16px; color: var(--accent); }
@media (min-width: 980px) { .sticky-cta { display: none; } }
