:root {
  --ivory: #fbf7f0;
  --paper: #fffdf8;
  --sage: #748f72;
  --sage-soft: #e8f0e5;
  --rose: #c99b94;
  --rose-soft: #f7ebe8;
  --gold: #b79563;
  --gold-soft: #f2e7d5;
  --ink: #312923;
  --muted: #756a61;
  --line: #e4d8cc;
  --shadow: 0 22px 70px rgba(49, 41, 35, .10);
  --radius: 28px;
  --max: 1180px;
  --title: Georgia, 'Times New Roman', serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --base-size: 16px;
  --title-scale: 1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--base-size);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
button, input, textarea, select { font: inherit; }
::selection { background: var(--gold-soft); color: var(--ink); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 216, 204, .72);
}
.header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 220px;
}
.brand img {
  width: 118px;
  height: 56px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-text { display: grid; line-height: 1.1; }
.brand-name {
  font-family: var(--title);
  font-size: 1.35rem;
  letter-spacing: .02em;
}
.brand-baseline {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}
.nav a {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .65rem 0;
  border-bottom: 2px solid transparent;
}
.nav a[aria-current="page"], .nav a:hover {
  color: var(--ink);
  border-color: var(--gold);
}
.nav .nav-cta {
  border: 1px solid var(--gold);
  color: white;
  background: var(--gold);
  padding: .75rem 1.05rem;
  border-radius: 999px;
}
.nav .nav-cta:hover { background: #9e7e51; color: white; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: .68rem .85rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
}

main { overflow: hidden; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: clamp(72px, 8vw, 120px) 0; }
.section-soft { background: linear-gradient(180deg, var(--ivory), #fffaf2); }
.section-white { background: var(--paper); }
.grid-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 86px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 42px; height: 1px; background: var(--gold); }
.h1, h1, .h2, h2, .h3, h3 {
  font-family: var(--title);
  font-weight: 400;
  line-height: 1.07;
  margin: 0;
  color: var(--ink);
}
.h1, h1 { font-size: clamp(calc(3rem * var(--title-scale)), calc(7vw * var(--title-scale)), calc(6.6rem * var(--title-scale))); letter-spacing: -.045em; }
.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(calc(2.75rem * var(--title-scale)), calc(4.35vw * var(--title-scale)), calc(4.55rem * var(--title-scale)));
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.h2, h2 { font-size: clamp(calc(2.35rem * var(--title-scale)), calc(4.6vw * var(--title-scale)), calc(4.65rem * var(--title-scale))); letter-spacing: -.035em; }
.h3, h3 { font-size: clamp(calc(1.55rem * var(--title-scale)), calc(2.6vw * var(--title-scale)), calc(2.1rem * var(--title-scale))); letter-spacing: -.02em; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.26rem); color: var(--muted); max-width: 740px; }
.muted { color: var(--muted); }
.accent { color: var(--gold); font-style: italic; }
.rule { width: 56px; height: 2px; background: var(--gold); margin: 1.25rem 0 1.4rem; }
.center { text-align: center; }
.center .rule, .center .eyebrow::before { margin-left: auto; margin-right: auto; }
.center .eyebrow::after { content: ''; width: 42px; height: 1px; background: var(--gold); }
.center .lead { margin-inline: auto; }

.btn-row { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  min-height: 48px;
  padding: .85rem 1.28rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: #9e7e51; color: white; transform: translateY(-2px); }
.btn.secondary { background: transparent; color: var(--gold); }
.btn.secondary:hover { background: var(--gold); color: white; }

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 14% 22%, rgba(201, 155, 148, .18), transparent 30%),
    radial-gradient(circle at 86% 74%, rgba(116, 143, 114, .18), transparent 34%),
    linear-gradient(135deg, #fffaf4, var(--ivory));
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -32% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(183, 149, 99, .12);
  pointer-events: none;
}
.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) 0;
  position: relative;
  z-index: 2;
}
.hero-copy .lead { margin: 1.4rem 0 2rem; }
.hero-card {
  position: relative;
  min-height: 580px;
}
.hero-image {
  position: absolute;
  inset: 0;
  border-radius: 46% 46% 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage-soft);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.floating-note {
  position: absolute;
  left: -28px;
  bottom: 34px;
  width: min(310px, calc(100% - 30px));
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255, 253, 248, .92);
  border: 1px solid rgba(228, 216, 204, .8);
  box-shadow: 0 18px 55px rgba(49, 41, 35, .12);
  backdrop-filter: blur(14px);
}
.floating-note strong { display: block; font-family: var(--title); font-size: 1.35rem; line-height: 1.1; }
.floating-note span { display: block; color: var(--muted); font-size: .9rem; margin-top: .35rem; }

.premium-card {
  background: rgba(255, 253, 248, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 2.3rem);
  box-shadow: 0 10px 35px rgba(49, 41, 35, .06);
}
.premium-card:hover { box-shadow: var(--shadow); }
.icon-mark {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--title);
  font-size: 1.35rem;
}
.card-title { font-family: var(--title); font-size: 1.55rem; line-height: 1.15; margin: 0 0 .7rem; }
.card-subtitle { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 800; margin-bottom: .6rem; }

.image-frame {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage-soft);
  min-height: 420px;
}
.image-frame img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.image-frame.tall { min-height: 560px; }
.image-frame.tall img { min-height: 560px; }

.benefits-list {
  display: grid;
  gap: .75rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}
.benefits-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: var(--muted);
}
.benefits-list li::before {
  content: '✦';
  color: var(--gold);
  flex: none;
  margin-top: .05rem;
}

.quote-band {
  padding: clamp(74px, 9vw, 116px) 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
}
.quote-band blockquote {
  margin: 0 auto;
  width: min(860px, calc(100% - 32px));
  font-family: var(--title);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.18;
  font-style: italic;
  color: rgba(255,255,255,.92);
}
.quote-band cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  color: var(--gold-soft);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}

.page-hero {
  padding: clamp(70px, 10vw, 120px) 0 clamp(48px, 8vw, 86px);
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 149, 99, .18), transparent 32%),
    linear-gradient(135deg, var(--ink), #4a4039);
  color: var(--paper);
}
.page-hero h1 { color: var(--paper); max-width: 890px; }
.page-hero .lead { color: rgba(255,255,255,.68); }
.breadcrumbs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.58);
  font-size: .83rem;
  margin-bottom: 1.2rem;
}
.breadcrumbs a { color: rgba(255,255,255,.72); }
.breadcrumbs a:hover { color: var(--gold-soft); }

.process-list {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.process-list li::before {
  content: counter(step, decimal-leading-zero);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--gold-soft);
  font-weight: 800;
  letter-spacing: .04em;
}

.faq { display: grid; gap: .9rem; }
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.25rem;
}
summary { cursor: pointer; font-weight: 800; color: var(--ink); }
details p { margin-bottom: 0; color: var(--muted); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 2rem 0 2.5rem;
}
.filter-btn {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  border-radius: 999px;
  padding: .7rem 1rem;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.filter-btn.active, .filter-btn:hover { background: var(--ink); color: white; border-color: var(--ink); }
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 35px rgba(49, 41, 35, .05);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sage-soft); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.blog-card:hover img { transform: scale(1.04); }
.blog-card-body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: .7rem; align-items: center; flex-wrap: wrap; color: var(--muted); font-size: .78rem; margin-bottom: .85rem; }
.badge { display: inline-flex; border-radius: 999px; background: var(--sage-soft); color: var(--sage); padding: .24rem .6rem; font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.blog-card h2 { font-size: 1.75rem; }
.blog-card p { color: var(--muted); }
.blog-card .read-more { margin-top: auto; color: var(--gold); font-weight: 900; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }

.article { width: min(840px, calc(100% - 32px)); margin: 0 auto; }
.article-cover {
  margin: -42px auto 2.4rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage-soft);
}
.article-cover img { width: 100%; max-height: 520px; object-fit: cover; }
.article-content {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(1.4rem, 4vw, 3.2rem);
}
.article-content h2, .article-content h3 { margin-top: 2.2rem; margin-bottom: .8rem; }
.article-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.article-content p { color: var(--muted); }
.article-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }
.article-content ul { color: var(--muted); }
.article-content img { border-radius: 22px; margin: 1.5rem 0; }

.contact-box {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 1.2rem;
  align-items: start;
}
.contact-aside {
  background: var(--ink);
  color: var(--paper);
  border-radius: 30px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  position: sticky;
  top: 104px;
}
.contact-aside h2 { color: var(--paper); font-size: 2.25rem; }
.contact-aside p, .contact-aside a { color: rgba(255,255,255,.7); }
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(1.35rem, 3.4vw, 2.55rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: .42rem; font-size: .76rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 15px;
  padding: .9rem 1rem;
  outline: none;
}
textarea { min-height: 160px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(183,149,99,.12); }
.checkbox { display: flex; align-items: flex-start; gap: .7rem; color: var(--muted); font-size: .9rem; }
.checkbox input { width: auto; margin-top: .3rem; }
.hidden { display: none !important; }

.cta-panel {
  border-radius: 34px;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(201,155,148,.26), transparent 32%),
    linear-gradient(135deg, #fffdf8, var(--sage-soft));
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}
.cta-panel h2 { font-size: clamp(2rem, 4vw, 3.5rem); }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.68);
  padding: 58px 0 30px;
}
.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 118px; height: 58px; object-fit: contain; filter: brightness(1.04); border-radius: 12px; }
.footer-brand strong { display: block; font-family: var(--title); font-size: 1.7rem; color: white; font-weight: 400; }
.footer-brand span { display: block; color: rgba(255,255,255,.46); font-size: .9rem; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: rgba(255,255,255,.62); font-size: .85rem; }
.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 2rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 1020px) {
  .nav { display: none; position: absolute; inset: 82px 16px auto; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: .8rem; box-shadow: var(--shadow); }
  .nav.open { display: grid; }
  .nav a { padding: .85rem .9rem; border: 0; }
  .nav .nav-cta { text-align: center; }
  .menu-toggle { display: block; }
  .hero-inner, .grid-2, .contact-box { grid-template-columns: 1fr; }
  .hero-card { min-height: 480px; }
  .floating-note { left: 20px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-aside { position: static; }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .header-inner { height: 72px; }
  .brand-text { display: none; }
  .brand img { width: 112px; height: 54px; }
  .nav { inset-top: 72px; }
  .hero { min-height: auto; }
  .hero-inner { padding-top: 42px; }
  .hero-card { min-height: 390px; }
  .hero-image { border-radius: 34px; }
  .floating-note { position: relative; left: auto; bottom: auto; margin: -72px 16px 0; width: auto; }
  .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .section { padding: 62px 0; }
}

/* Retouches premium EquiSens - v2 */
.brand { min-width: 275px; }
.brand img {
  width: 154px;
  height: 74px;
}
.brand-name { font-size: 1.48rem; }
.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(2.25rem, 3.55vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.hero-card { min-height: 540px; }
.hero-image {
  border-radius: 34px;
}
.clickable-card {
  display: block;
  height: 100%;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.clickable-card:hover {
  color: inherit;
  transform: translateY(-5px);
  border-color: rgba(183,149,99,.58);
}
.card-cta {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.quote-band {
  min-height: 460px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(rgba(49,41,35,.56), rgba(49,41,35,.62)), var(--quote-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(255,253,248,.14), transparent 42%);
  pointer-events: none;
}
.quote-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 16px;
}
.quote-band blockquote {
  text-shadow: 0 12px 42px rgba(0,0,0,.46);
  color: rgba(255,253,248,.96);
}
.quote-band cite {
  color: #f5e7d1;
  text-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.footer-brand img {
  width: 176px;
  height: 86px;
  background: rgba(255,253,248,.96);
  padding: .45rem;
  border-radius: 18px;
  filter: none;
}
.footer-brand strong { font-size: 1.9rem; }
.footer-brand span {
  color: rgba(255,255,255,.74);
  max-width: 360px;
}
.site-footer { padding-top: 64px; }

@media (max-width: 1020px) {
  .brand { min-width: auto; }
  .brand img { width: 136px; height: 66px; }
  .hero-copy h1 { font-size: clamp(2.4rem, 8vw, 4.2rem); }
}
@media (max-width: 680px) {
  .brand img { width: 124px; height: 60px; }
  .hero-copy h1 { font-size: clamp(2.1rem, 11vw, 3.35rem); }
  .hero-card { min-height: 390px; }
  .quote-band { min-height: 380px; background-attachment: scroll; }
  .footer-brand { align-items: flex-start; }
  .footer-brand img { width: 148px; height: 72px; }
}

/* Rich editorial pages */
.content-stack {
  display: grid;
  gap: 1.4rem;
  width: min(980px, calc(100% - 32px));
}
.content-block {
  padding: clamp(1.55rem, 4vw, 3.25rem);
}
.content-block h2 {
  font-size: clamp(calc(1.95rem * var(--title-scale)), calc(3.2vw * var(--title-scale)), calc(3.15rem * var(--title-scale)));
  margin-bottom: 1rem;
}
.rich-text p,
.rich-text li {
  color: var(--muted);
}
.rich-text p {
  margin: 0 0 1rem;
}
.rich-text p:last-child {
  margin-bottom: 0;
}
.rich-text h3 {
  font-size: clamp(calc(1.25rem * var(--title-scale)), calc(2vw * var(--title-scale)), calc(1.65rem * var(--title-scale)));
  margin: 1.45rem 0 .55rem;
}
.rich-text ul {
  margin: .9rem 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}
.rich-text li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.rich-text li::before {
  content: '✦';
  color: var(--gold);
  flex: none;
  margin-top: .03rem;
}
.service-list {
  display: grid;
  gap: 1.45rem;
  margin-top: 2.6rem;
}
.service-detail {
  scroll-margin-top: 110px;
}
.service-detail-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.service-detail-head .icon-mark {
  flex: none;
  margin-bottom: 0;
}
.service-detail h2 {
  font-size: clamp(calc(1.85rem * var(--title-scale)), calc(3vw * var(--title-scale)), calc(3rem * var(--title-scale)));
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.service-detail-grid > div,
.benefit-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.1rem;
  background: rgba(251, 247, 240, .55);
}
.service-detail-grid h3,
.benefit-panel h3 {
  font-size: 1.25rem;
  margin-bottom: .55rem;
}
.benefit-panel {
  margin-bottom: 1.25rem;
}
.benefit-panel .benefits-list {
  margin-top: .9rem;
}
@media(max-width:900px){
  .service-detail-grid { grid-template-columns: 1fr; }
  .content-stack { width: min(var(--max), calc(100% - 32px)); }
}

/* Visual storytelling additions */
.image-frame img[src$=".svg"] {
  object-fit: contain;
  background: linear-gradient(135deg, #fffdf8, var(--ivory));
}
.visual-break {
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
}
.visual-break-media {
  border-radius: 26px;
  background: linear-gradient(135deg, var(--paper), var(--sage-soft));
  overflow: hidden;
  border: 1px solid var(--line);
}
.visual-break-media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}
.visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}
.visual-points span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .58rem .82rem;
  background: var(--gold-soft);
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
}
.visual-points span::before {
  content: '✦';
  color: var(--gold);
}
.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(230px, .38fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}
.service-illustration {
  margin: 0;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--ivory);
  overflow: hidden;
  position: sticky;
  top: 108px;
}
.service-illustration img {
  width: 100%;
  aspect-ratio: 1 / .92;
  object-fit: cover;
}
.process-visual {
  margin: 1.6rem 0 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(49, 41, 35, .06);
}
.process-visual img {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
}
@media(max-width:900px){
  .visual-break,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }
  .service-illustration {
    position: static;
  }
  .service-illustration img {
    aspect-ratio: 16 / 10;
  }
}
@media(max-width:600px){
  .visual-break-media img,
  .process-visual img {
    min-height: 220px;
  }
}

/* Retouches v7 - bandeaux clairs sur tout le site */
:root {
  --band-light: #f6eee6;
  --band-light-2: #fff8f0;
  --band-rose: #f7ebe8;
}

.page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(201,155,148,.26), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(116,143,114,.18), transparent 32%),
    linear-gradient(135deg, var(--band-light-2), var(--band-light));
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--ink); }
.page-hero .lead { color: var(--muted); }
.page-hero .breadcrumbs { color: rgba(49,41,35,.52); }
.page-hero .breadcrumbs a { color: rgba(49,41,35,.68); }
.page-hero .breadcrumbs a:hover { color: var(--gold); }

.quote-band {
  background: linear-gradient(135deg, var(--band-light-2), var(--sage-soft));
  color: var(--ink);
}
.quote-band blockquote { color: var(--ink); }
.quote-band cite { color: var(--gold); }

.quote-band[style*="--quote-bg"],
.quote-band {
  background-image:
    linear-gradient(rgba(255,248,240,.72), rgba(246,238,230,.84)),
    var(--quote-bg);
  background-size: cover;
  background-position: center;
}
.quote-band::before {
  background: radial-gradient(circle at 50% 45%, rgba(255,253,248,.36), transparent 44%);
}
.quote-band blockquote {
  color: var(--ink);
  text-shadow: 0 8px 34px rgba(255,253,248,.75);
}
.quote-band cite {
  color: var(--gold);
  text-shadow: 0 6px 24px rgba(255,253,248,.65);
}

.contact-aside {
  background: linear-gradient(135deg, var(--band-light-2), var(--band-rose));
  color: var(--ink);
  border: 1px solid var(--line);
}
.contact-aside h2 { color: var(--ink); }
.contact-aside p,
.contact-aside a { color: var(--muted); }
.contact-aside a:hover { color: var(--gold); }

.site-footer {
  background: linear-gradient(135deg, var(--band-light-2), var(--band-light));
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-brand strong { color: var(--ink); }
.footer-brand span { color: var(--muted); }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top-color: rgba(49,41,35,.10);
  color: rgba(49,41,35,.50);
}
.footer-brand img {
  background: rgba(255,253,248,.82);
  box-shadow: 0 10px 34px rgba(49,41,35,.07);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: var(--gold);
}

/* Retouches v8 - images réalistes premium et séries secondaires */
.card-with-image {
  padding-top: 1rem;
  overflow: hidden;
}
.card-thumb {
  margin: -0.25rem -0.25rem 1.15rem;
  border-radius: 22px;
  overflow: hidden;
  background: var(--sage-soft);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.card-thumb.compact {
  aspect-ratio: 16 / 10;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.clickable-card:hover .card-thumb img {
  transform: scale(1.04);
}
.visual-showcase {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 1rem;
  margin-top: 2.4rem;
}
.visual-showcase figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 10px 35px rgba(49,41,35,.055);
  min-height: 190px;
}
.visual-showcase figure:nth-child(1),
.visual-showcase figure:nth-child(4) {
  grid-row: span 2;
}
.visual-showcase figure img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}
.visual-showcase figure:nth-child(1) img,
.visual-showcase figure:nth-child(4) img {
  min-height: 410px;
}
.service-detail .service-illustration img {
  min-height: 280px;
}
@media(max-width:900px){
  .visual-showcase {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .visual-showcase figure:nth-child(1),
  .visual-showcase figure:nth-child(4) {
    grid-row: auto;
  }
  .visual-showcase figure img,
  .visual-showcase figure:nth-child(1) img,
  .visual-showcase figure:nth-child(4) img {
    min-height: 220px;
  }
}
@media(max-width:600px){
  .visual-showcase { grid-template-columns: 1fr; }
}

/* Retouches v11 - confort mobile de la page d'accueil */
@media (max-width: 680px) {
  .site-header {
    position: sticky;
  }
  .header-inner {
    width: min(var(--max), calc(100% - 28px));
    height: 78px;
    gap: .75rem;
  }
  .brand img {
    width: 112px;
    height: 54px;
  }
  .menu-toggle {
    padding: .72rem .82rem;
    flex: 0 0 auto;
  }
  .hero {
    display: block;
    min-height: auto;
    padding: 0;
  }
  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 0 3rem;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-copy .eyebrow {
    font-size: .68rem;
    letter-spacing: .13em;
    margin-bottom: .7rem;
  }
  .hero-copy .eyebrow::before {
    width: 28px;
  }
  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8.5vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -.025em;
    margin-bottom: .9rem;
  }
  .hero-copy .lead,
  .lead {
    font-size: 1rem;
    line-height: 1.62;
  }
  .hero-copy .lead {
    margin: 0 0 1.25rem;
  }
  .hero .btn-row {
    width: 100%;
    gap: .7rem;
  }
  .hero .btn-row .btn {
    width: 100%;
    min-height: 46px;
    padding: .78rem 1rem;
    font-size: .68rem;
    letter-spacing: .10em;
    text-align: center;
  }
  .hero-card {
    width: 100%;
    min-height: 440px;
    margin-top: .35rem;
  }
  .hero-image {
    position: absolute;
    inset: 0;
    border-radius: 28px;
  }
  .hero-image img {
    object-position: center;
  }
  .floating-note {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 14px;
    bottom: auto;
    width: auto;
    margin: 0;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255,253,248,.93);
  }
  .floating-note strong {
    font-size: 1.18rem;
    line-height: 1.12;
  }
  .floating-note span {
    font-size: .82rem;
  }
  .section {
    padding: 54px 0;
  }
  .h2, h2 {
    font-size: clamp(1.75rem, 7.4vw, 2.45rem);
    line-height: 1.12;
  }
  .h3, h3 {
    font-size: clamp(1.22rem, 5.4vw, 1.65rem);
  }
  .page-hero {
    padding: 44px 0 42px;
  }
  .page-hero h1 {
    font-size: clamp(2rem, 8.6vw, 2.8rem);
    line-height: 1.08;
  }
  .premium-card {
    border-radius: 22px;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: clamp(1.68rem, 8vw, 2.05rem);
  }
  .hero-card {
    min-height: 410px;
  }
  .floating-note strong {
    font-size: 1.08rem;
  }
}
