/* ============================================
   Thomas Thévenet — style.css
   Palette : gris ardoise nuancé + touche de laiton
   Polices : Familjen Grotesk (titres), Hanken Grotesk (texte),
             Caveat (petite note manuscrite) — auto-hébergées
   ============================================ */

/* ---------- Polices ---------- */
@font-face {
  font-family: "Familjen Grotesk";
  src: url("../fonts/familjen-grotesk-latin-wght-normal.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-grotesk-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("../fonts/caveat-latin-wght-normal.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Variables ---------- */
:root {
  --ink: #2a3236;
  --muted: #56646c;
  --accent: #5b7180;
  --accent-deep: #4a5c67;
  --paper: #f4f6f7;
  --tint: #e4e9eb;
  --mist: #d7dfe3;
  --line: #b9c6cc;
  --brass: #c99a47;
  --brass-deep: #8f6518;
  --white: #ffffff;
  --wrap: 1200px;
  --font-head: "Familjen Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f6518' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E");
  --ardoise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='60'%3E%3Cpath d='M0 0H80M0 30H80M0 0V30M40 30V60' stroke='%235b7180' stroke-opacity='0.13' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
h1, h2, h3 {
  margin: 0;
  text-wrap: balance;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 54px; padding: 0 30px; border-radius: 10px;
  border: 2px solid transparent;
  font: 600 17px/1 var(--font-body); text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--brass); color: var(--ink); }
.btn-primary:hover { background: #d6ac58; }
.btn-slate { background: var(--accent); color: #fff; }
.btn-slate:hover { background: var(--accent-deep); }
.btn-slate:focus-visible { outline-color: var(--brass); }
.btn-outline { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-light { background: #fff; color: var(--accent-deep); }
.btn-light:hover { background: var(--tint); }
.btn-sm { height: 46px; padding: 0 24px; font-size: 16px; }
.btn:focus-visible { outline-color: var(--ink); }
.btn[disabled] { opacity: .65; cursor: progress; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 246, 247, .95);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--mist); box-shadow: 0 6px 18px rgba(60, 78, 90, .08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.brand {
  font: 700 25px/1 var(--font-head); letter-spacing: -0.01em;
  color: var(--accent); text-decoration: none;
}
.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 40px; list-style: none; }
.main-nav li a {
  display: inline-block; padding: 6px 0;
  color: var(--ink); text-decoration: none; font-size: 17px; font-weight: 500;
  border-bottom: 2px solid transparent;
}
.main-nav li a:hover, .main-nav li a[aria-current="page"] { border-bottom-color: var(--brass); }
.nav-toggle {
  display: none; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Accueil : hero ---------- */
.hero { padding: 40px 0 88px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 600px); gap: 80px; align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 5.2vw, 4.6rem); line-height: 1.02; letter-spacing: -0.025em; }
.hero .lead { text-align: justify; text-justify: inter-word; hyphens: none; -webkit-hyphens: none; }
.lead { margin-top: 26px; max-width: 540px; font-size: 20px; line-height: 1.55; color: var(--muted); }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-facts {
  margin-top: 52px; list-style: none;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px;
}
.hero-facts li {
  border-top: 2px dashed var(--line); padding-top: 12px;
  font-size: 15px; line-height: 1.4; color: var(--muted);
}

/* Bloc portrait (les dimensions suivent la largeur du bloc) */
.hero-visual {
  position: relative; container-type: inline-size;
  aspect-ratio: 600 / 620; border-radius: 20px; overflow: hidden;
  background: var(--tint) var(--ardoise);
}
.portrait-ring {
  position: absolute; left: 14.33cqw; top: 8.67cqw; width: 71.33cqw; aspect-ratio: 1;
  border: 2px dashed var(--brass); border-radius: 50%;
}
.portrait {
  position: absolute; left: 16.67cqw; top: 11cqw; width: 66.67cqw; height: 66.67cqw;
  border-radius: 50%; object-fit: cover;
  box-shadow: 0 18px 36px rgba(60, 78, 90, .25);
}
.handnote {
  position: absolute; left: 65.3cqw; top: 2.6cqw; width: 31.7cqw; text-align: center;
  font: 600 5cqw/1.02 var(--font-hand); color: var(--brass-deep);
}
.handarrow { position: absolute; left: 68cqw; top: 14cqw; width: 10cqw; height: auto; }
.id-card {
  position: absolute; left: 6cqw; top: 77cqw; width: 56.7cqw;
  padding: 2.7cqw 3.3cqw; border-radius: 12px; background: #fff;
  box-shadow: 0 14px 30px rgba(60, 78, 90, .22);
  display: flex; flex-direction: column; gap: .4cqw;
}
.id-card strong { font: 700 4cqw/1.1 var(--font-head); letter-spacing: -0.02em; }
.id-card .role { font-size: 2.85cqw; font-weight: 600; color: var(--accent); line-height: 1.3; }
.id-card .place { font-size: 2.5cqw; color: var(--muted); line-height: 1.3; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-tint { background: var(--tint); }
.section-title { font-size: clamp(2rem, 4vw, 3.25rem); }
.section-lead { margin-top: 14px; max-width: 700px; font-size: 19px; color: var(--muted); }

/* ---------- Offres ---------- */
.offer-main {
  margin-top: 40px; padding: 40px; border-radius: 16px; background: var(--tint);
  display: grid; grid-template-columns: minmax(0, 270px) minmax(0, 1fr) minmax(0, 240px);
  gap: 40px; align-items: center;
}
.offer-main h3 { font-size: 2.4rem; }
.offer-main .offer-head p { margin-top: 10px; font-size: 17px; color: var(--muted); }
.checklist { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 28px; font-size: 16px; line-height: 1.4; }
.checklist li { position: relative; padding-left: 28px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 17px; height: 17px;
  background: var(--check) no-repeat center / contain;
}
.offer-price { display: flex; flex-direction: column; align-items: flex-end; text-align: right; gap: 14px; }
.price { font: 700 3.75rem/1 var(--font-head); letter-spacing: -0.03em; }
.tag {
  display: inline-block; padding: 8px 12px; border-radius: 8px; text-align: left;
  background: var(--brass); color: var(--ink); font-size: 15px; font-weight: 600; line-height: 1.35;
}
.offer-rows { margin-top: 16px; border-bottom: 2px dashed var(--line); }
.offer-row {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) 240px;
  gap: 48px; align-items: center; padding: 36px 40px; border-top: 2px dashed var(--line);
}
.offer-row h3 { font-size: 2rem; }
.offer-row p { font-size: 17px; color: var(--muted); }
.offer-row .price-sm { text-align: right; font: 700 2.5rem/1.05 var(--font-head); color: var(--ink); }
.offer-row .price-sm small { display: block; font: 500 15px/1.4 var(--font-body); color: var(--muted); }

/* ---------- Étapes ---------- */
.steps { margin-top: 48px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; list-style: none; }
.step { position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--brass); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font: 700 28px/1 var(--font-head);
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; left: 72px; right: -40px; border-top: 2px dashed var(--brass);
}
.step h3 { margin-top: 20px; font-size: 1.5rem; }
.step p { margin-top: 10px; font-size: 16px; line-height: 1.55; color: var(--muted); }
.chip {
  display: inline-block; justify-self: start; margin-top: 12px; padding: 6px 12px; border-radius: 8px;
  background: var(--brass); color: var(--ink); font-size: 15px; font-weight: 600;
}

/* ---------- Réalisation ---------- */
.case { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: 72px; align-items: center; }
.case-copy h2 { font-size: clamp(2rem, 3.6vw, 2.75rem); }
.case-copy h3 { margin-top: 22px; font-size: 1.6rem; color: var(--accent); }
.case-copy p { margin-top: 10px; color: var(--muted); }
.case-copy .checklist { margin-top: 22px; grid-template-columns: 1fr; gap: 10px; }
.viewer-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.viewer-tab {
  height: 44px; padding: 0 20px; border-radius: 10px; cursor: pointer;
  font: 600 16px var(--font-body); background: transparent; color: var(--accent); border: 2px solid var(--line);
}
.viewer-tab[aria-selected="true"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.stage {
  position: relative; container-type: inline-size; aspect-ratio: 808 / 500; overflow: hidden; border-radius: 20px;
  background-color: var(--accent);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 7px);
}
.stage::before {
  content: ""; position: absolute; inset: 14px; pointer-events: none;
  border: 2px dashed rgba(255, 255, 255, .5); border-radius: 12px;
}
.browser {
  position: absolute; left: 5.45%; top: 8.8%; width: 79.2%;
  border-radius: 10px; overflow: hidden; background: var(--paper);
  box-shadow: 0 20px 40px rgba(60, 78, 90, .35);
}
.browser-bar { display: flex; align-items: center; gap: .9cqw; height: 4.2cqw; min-height: 16px; padding: 0 1.7cqw; background: var(--tint); }
.browser-bar i { display: block; width: 1.2cqw; height: 1.2cqw; min-width: 5px; min-height: 5px; border-radius: 50%; background: var(--line); }
.browser img { width: 100%; aspect-ratio: 1600 / 918; object-fit: cover; object-position: top; }
.phone {
  position: absolute; right: 5.45%; bottom: 8.8%; width: 22.8%;
  padding: 1cqw; border-radius: 3.2cqw; background: #232d32;
  box-shadow: 0 20px 40px rgba(60, 78, 90, .4);
}
.phone img { width: 100%; aspect-ratio: 540 / 970; object-fit: cover; object-position: top; border-radius: 2.3cqw; }

[hidden] { display: none !important; }
.stage > [role="tabpanel"] { position: absolute; inset: 0; }

/* ---------- À propos ---------- */
.about { display: grid; grid-template-columns: 176px minmax(0, 760px); gap: 56px; align-items: center; }
.avatar { position: relative; width: 176px; height: 176px; }
.avatar::before { content: ""; position: absolute; inset: 0; border: 2px dashed var(--brass); border-radius: 50%; }
.avatar img { position: absolute; inset: 12px; width: 152px; height: 152px; border-radius: 50%; object-fit: cover; }
.about h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.about-text { margin-top: 16px; }
.about-text p { text-align: justify; text-justify: inter-word; hyphens: none; -webkit-hyphens: none; }
.about-text p { font-size: 19px; line-height: 1.6; color: var(--muted); }
.textlink {
  display: inline-block; margin-top: 20px; font-weight: 600; text-decoration: none;
  color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 2px;
}
.textlink:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

/* ---------- Bandeau contact ---------- */
.contact-band { background: var(--accent); color: #fff; padding: 88px 0; }
.contact-band-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 60px; align-items: center; }
.contact-band h2 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.9rem); line-height: 1.02; letter-spacing: -0.03em; }
.nowrap { white-space: nowrap; }
.fine-print { margin-top: 18px; font-size: 14px; color: var(--muted); }
.contact-band .band-text { margin-top: 18px; font-size: 19px; color: #fff; }
.detail-list { list-style: none; font-size: 18px; }
.detail-list li {
  display: flex; gap: 16px; padding: 12px 0; border-top: 2px dashed rgba(255, 255, 255, .5);
}
.detail-list li:last-child { border-bottom: 2px dashed rgba(255, 255, 255, .5); }
.detail-list b { flex: 0 0 110px; font-weight: 600; }
.detail-list a { color: #fff; }
.contact-band .btn { margin-top: 20px; width: 100%; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--accent-deep); color: #e1e8eb; padding: 56px 0 28px; font-size: 16px; }
.site-footer a { color: #e1e8eb; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-brand { font: 700 24px/1.1 var(--font-head); color: #fff; }
.footer-inner p { margin-top: 10px; line-height: 1.6; max-width: 420px; }
.footer-title { font: 700 17px/1.2 var(--font-head); color: #fff; letter-spacing: 0; }
.footer-links { list-style: none; margin-top: 10px; display: grid; gap: 6px; }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .25);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 15px;
}
.footer-bottom nav { display: flex; gap: 24px; }

/* ---------- Pages intérieures ---------- */
.page-head { padding: 56px 0 24px; }
.page-head h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.page-head .lead { margin-top: 18px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 40px; align-items: start; padding-bottom: 88px; }
.form-card, .info-card { background: #fff; border: 1px solid var(--mist); border-radius: 20px; padding: 36px; }
.form-card h2 { font-size: 1.9rem; }
.form-card .hint { margin-top: 8px; font-size: 15px; color: var(--muted); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-group { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 15px; font-weight: 600; }
.hint-inline { font-weight: 400; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 8px; background: #fff;
  font: 400 17px/1.4 var(--font-body); color: var(--ink);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: 3px solid var(--brass); outline-offset: 1px; border-color: var(--accent); }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { margin-top: 22px; display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--muted); }
.form-consent input { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }
.form-card .btn { margin-top: 24px; width: 100%; }
.info-card h2 { font-size: 1.6rem; }
.info-list { margin-top: 18px; list-style: none; }
.info-list li { padding: 14px 0; border-top: 2px dashed var(--mist); }
.info-list li:first-child { border-top: 0; padding-top: 0; }
.info-list b { display: block; font-size: 15px; color: var(--muted); font-weight: 600; }
.ph { background: rgba(201, 154, 71, .28); border-radius: 4px; padding: 0 4px; }

/* FAQ */
.faq-list { margin-top: 36px; max-width: 820px; border-bottom: 2px dashed var(--line); }
.faq { border-top: 2px dashed var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 48px 22px 0; position: relative;
  font: 700 1.25rem/1.3 var(--font-head); letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font: 400 32px/1 var(--font-body); color: var(--accent);
}
.faq[open] summary::after { content: "–"; }
.faq p { padding: 0 48px 24px 0; color: var(--muted); font-size: 17px; }

/* Pages texte (mentions légales, confidentialité, merci) */
.prose { max-width: 780px; padding-bottom: 96px; }
.prose h2 { margin-top: 40px; font-size: 1.6rem; }
.prose p, .prose ul { margin-top: 12px; color: var(--muted); font-size: 17px; }
.prose ul { padding-left: 22px; }
.prose li { margin-top: 4px; }
.prose strong { color: var(--ink); }
.thanks { padding: 96px 0 120px; text-align: center; }
.thanks h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.thanks p { margin: 18px auto 32px; max-width: 520px; color: var(--muted); font-size: 19px; }
.notice-box { margin: 28px 0 0; padding: 18px 22px; border-radius: 12px; background: var(--tint); font-size: 16px; color: var(--ink); }

/* ---------- Tablette ---------- */
@media (max-width: 1000px) {
  .hero-grid, .case, .contact-band-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .offer-main { grid-template-columns: 1fr; gap: 28px; }
  .offer-price { align-items: flex-start; text-align: left; }
  .offer-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 8px; }
  .offer-row .price-sm { text-align: left; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step { display: grid; grid-template-columns: 64px 1fr; column-gap: 20px; }
  .step-num { grid-row: 1 / span 3; width: 48px; height: 48px; font-size: 22px; }
  .step h3 { margin-top: 0; font-size: 1.35rem; }
  .step:not(:last-child)::after { top: 52px; bottom: -28px; left: 23px; right: auto; border-top: 0; border-left: 2px dashed var(--brass); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .about { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Mobile ---------- */
@media (max-width: 800px) {
  body { font-size: 17px; }
  .wrap { padding: 0 20px; }
  .header-inner { height: 68px; }
  .brand { font-size: 21px; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 24px;
    background: var(--paper); border-bottom: 1px solid var(--mist);
  }
  .nav-open .main-nav { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li a { display: block; padding: 16px 0; font-size: 19px; border-bottom: 1px solid var(--mist); }
  .main-nav .btn { margin-top: 18px; }

  .hero { padding: 8px 0 56px; }
  .hero-visual { order: -1; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-facts { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .lead { font-size: 17px; }

  /* Portrait : bloc simple centré, sans superposition */
  .hero-visual {
    aspect-ratio: auto; overflow: visible; background: none; container-type: normal;
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  .portrait-ring, .handnote, .handarrow { display: none; }
  .portrait {
    position: relative; left: auto; top: auto; width: 200px; height: 200px;
    outline: 2px dashed var(--brass); outline-offset: 12px; box-shadow: none; margin: 14px 0 6px;
  }
  .id-card { position: static; width: auto; background: none; box-shadow: none; padding: 16px 0 0; align-items: center; }
  .id-card strong { font-size: 26px; }
  .id-card .role { font-size: 17px; }
  .id-card .place { font-size: 15px; }

  .section { padding: 56px 0; }
  .offer-main { padding: 24px; }
  .offer-main h3 { font-size: 2rem; }
  .checklist { grid-template-columns: 1fr; gap: 10px; }
  .price { font-size: 3.25rem; }
  .offer-main .btn { width: 100%; }
  .offer-row h3 { font-size: 1.6rem; }
  .offer-row .price-sm { font-size: 1.9rem; }

  .stage { aspect-ratio: 350 / 270; }
  .stage::before { inset: 10px; }
  .browser { left: 5%; top: 8%; width: 75%; }
  .phone { right: 5%; bottom: 8%; width: 29%; }
  .viewer-tab { height: 44px; padding: 0 14px; font-size: 15px; }

  .avatar { width: 108px; height: 108px; }
  .avatar img { inset: 8px; width: 92px; height: 92px; }
  .about { grid-template-columns: 108px 1fr; gap: 16px; }
  .about-body { display: contents; }
  .about-text { grid-column: 1 / -1; margin-top: 0; }
  .contact-band { padding: 56px 0; }
  .detail-list b { flex-basis: 96px; }
  .form-card, .info-card { padding: 24px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .faq summary { font-size: 1.1rem; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
