@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --canvas: #f5f2ea;
  --paper: #fbf9f5;
  --ivory: #f6f3ee;
  --sage: #94bba8;
  --sage-soft: #dce8e1;
  --stone: #d9d0c5;
  --moss: #274438;
  --deep: #17352b;
  --ink: #1f3129;
  --terracotta: #b85a2e;
  --terracotta-hover: #ac5128;
  --line: rgba(39, 68, 56, 0.2);
  --shadow: 0 18px 55px rgba(23, 53, 43, 0.1);
  --display: "DM Sans", Arial, sans-serif;
  --body: "Roboto", Arial, sans-serif;
  --page: min(1180px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--deep);
  font-family: var(--display);
  line-height: 1.08;
}
h1 { max-width: 12ch; font-size: clamp(2.55rem, 6vw, 5.9rem); font-weight: 560; letter-spacing: -0.045em; }
h2 { max-width: 17ch; font-size: clamp(2rem, 4vw, 3.65rem); font-weight: 560; letter-spacing: -0.035em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: var(--paper); padding: 0.8rem 1rem; }
.skip-link:focus { top: 1rem; }
.site-header {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 150px; height: auto; }
.site-nav { display: flex; justify-content: center; gap: 1.8rem; }
.site-nav a, .text-link { font-family: var(--display); font-size: 0.9rem; font-weight: 650; text-decoration: none; }
.site-nav a:hover, .text-link:hover { color: var(--terracotta); }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 720;
  text-decoration: none;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--sage); outline-offset: 4px; }
.button-primary { color: var(--paper); background: var(--terracotta); }
.button-primary:hover { background: var(--terracotta-hover); }
.button-ghost { color: var(--deep); border-color: var(--deep); }
.button-ghost:hover, .button-outline:hover { color: var(--paper); background: var(--deep); }
.button-outline { color: var(--deep); border-color: var(--deep); }
.section { width: var(--page); margin: 0 auto; padding: clamp(5rem, 10vw, 9rem) 0; }
.kicker {
  margin-bottom: 1.2rem;
  color: var(--terracotta);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero {
  width: var(--page);
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.hero-copy { padding: clamp(5rem, 10vw, 9rem) 4vw clamp(4rem, 8vw, 7rem) 0; align-self: center; }
.hero-text { max-width: 58ch; margin-bottom: 2rem; font-size: clamp(1.05rem, 1.4vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.direct-line { margin: 1.2rem 0 0; color: var(--moss); font-family: var(--display); font-weight: 680; }
.hero-visual { position: relative; min-height: 560px; margin: 2.5rem 0 2.5rem; overflow: hidden; border-radius: 10px; background: var(--sage-soft); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual figcaption { position: absolute; right: 1rem; bottom: 1rem; padding: 0.55rem 0.75rem; color: var(--paper); background: rgba(23, 53, 43, 0.88); border-radius: 4px; font-size: 0.78rem; }
.territory { min-height: 100px; display: flex; align-items: center; justify-content: center; gap: clamp(2rem, 8vw, 7rem); padding: 1rem 20px; color: var(--deep); background: var(--sage-soft); font-family: var(--display); font-weight: 700; }
.territory p { margin: 0; }
.section-intro { max-width: 64ch; }
.section-intro > p:last-child { max-width: 60ch; font-size: 1.08rem; }
.services { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.service-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-list li { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; padding: 1.65rem 0; border-bottom: 1px solid var(--line); }
.service-list h3 { margin-bottom: 0.45rem; }
.service-list p { max-width: 52ch; margin-bottom: 0; }
.service-number { color: var(--terracotta); font-family: var(--display); font-weight: 750; }
.work { width: 100%; max-width: none; padding-left: max(20px, calc((100% - 1180px) / 2)); padding-right: max(20px, calc((100% - 1180px) / 2)); background: var(--paper); }
.work-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.work-grid { display: grid; grid-template-columns: 1.4fr 0.8fr; grid-template-rows: repeat(2, minmax(220px, 1fr)); gap: 1rem; }
.work-grid .work-card { position: relative; min-height: 300px; overflow: hidden; border-radius: 10px; background: var(--sage-soft); }
.work-grid .work-main { grid-row: 1 / 3; min-height: 620px; }
.work-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1); }
.work-grid .work-card:hover img { transform: scale(1.025); }
.work-grid .work-card > div { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: 1rem; color: var(--paper); background: rgba(23, 53, 43, 0.9); border-radius: 6px; }
.work-grid h3, .work-grid p { color: inherit; margin-bottom: 0; }
.work-place { color: var(--sage) !important; font-family: var(--display); font-size: 0.72rem; font-weight: 740; letter-spacing: 0.1em; text-transform: uppercase; }
.artisan { width: 100%; max-width: none; padding-left: max(20px, calc((100% - 1180px) / 2)); padding-right: max(20px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; color: var(--paper); background: var(--deep); }
.artisan h2 { color: var(--paper); }
.artisan .kicker { color: var(--sage); }
.artisan-portrait { max-width: 420px; justify-self: end; overflow: hidden; border: 1px solid rgba(251, 249, 245, 0.2); border-radius: 10px; }
.artisan-portrait img { width: 100%; }
.artisan-copy { max-width: 650px; }
.artisan-statement { color: var(--sage); font-family: var(--display); font-size: clamp(1.18rem, 2vw, 1.55rem); font-weight: 650; }
.artisan-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.button-light { color: var(--deep); background: var(--paper); }
.button-dark-ghost { color: var(--paper); border-color: rgba(251, 249, 245, 0.6); }
.button-dark-ghost:hover { color: var(--deep); background: var(--paper); }
.answers { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.answer-list { border-top: 1px solid var(--line); }
.answer-list details { border-bottom: 1px solid var(--line); }
.answer-list summary { padding: 1.5rem 2.5rem 1.5rem 0; color: var(--deep); font-family: var(--display); font-size: 1.12rem; font-weight: 700; cursor: pointer; }
.answer-list p { max-width: 65ch; padding: 0 0 1.5rem; margin: 0; }
.closing { text-align: center; }
.closing h2 { margin-left: auto; margin-right: auto; }
.closing-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
.site-footer { padding: 3rem max(20px, calc((100% - 1180px) / 2)) 7rem; color: var(--paper); background: var(--deep); }
.site-footer img { width: 150px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.site-footer p { margin-bottom: 0.35rem; }
.site-footer a { text-decoration: none; }
.prototype-note { margin-top: 1.5rem; color: var(--sage); font-size: 0.8rem; }
.mobile-actions { display: none; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding-right: 0; }
  .hero-visual { min-height: 420px; margin-top: 0; }
  .services, .answers { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .work-grid .work-main { grid-column: 1 / 3; grid-row: auto; min-height: 500px; }
  .artisan { grid-template-columns: 0.75fr 1.25fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  :root { --page: calc(100% - 32px); }
  body { padding-bottom: 68px; }
  .site-header { min-height: 68px; }
  .brand img { width: 126px; }
  .header-quote { display: none; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.25rem); }
  .hero-copy { padding-top: 4.5rem; padding-bottom: 3rem; }
  .hero-visual { min-height: 330px; margin-bottom: 1rem; }
  .territory { justify-content: flex-start; gap: 0; overflow-x: auto; }
  .territory p { min-width: max-content; padding-right: 2rem; }
  .section { padding-top: 5rem; padding-bottom: 5rem; }
  .work-heading { align-items: flex-start; flex-direction: column; }
  .work-grid { display: block; }
  .work-grid article, .work-grid .work-main { min-height: 360px; margin-bottom: 1rem; }
  .artisan { grid-template-columns: 1fr; }
  .artisan-portrait { max-width: 300px; justify-self: start; }
  .artisan-actions { align-items: stretch; flex-direction: column; }
  .mobile-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; background: var(--deep); box-shadow: 0 -8px 24px rgba(23, 53, 43, 0.18); }
  .mobile-actions a { min-height: 50px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--sage); border-radius: 6px; font-family: var(--display); font-weight: 750; text-decoration: none; }
  .mobile-call { color: var(--paper); }
  .mobile-quote { color: var(--paper); background: var(--terracotta); border-color: var(--terracotta) !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}


/* Version publiable jsap-ia */
html {
  overflow-x: hidden;
}

body,
p,
li,
h1,
h2,
h3,
a,
summary,
figcaption {
  hyphens: none;
  overflow-wrap: break-word;
}

.identity,
.reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.prose {
  max-width: 68ch;
}

.prose p:first-child {
  margin-top: 0;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.service-list a,
.answer-list a {
  color: var(--deep);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.work-lead {
  max-width: 68ch;
  margin: -2rem 0 2rem;
}

.work-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(230px, 1fr));
}

.work-grid .work-card {
  grid-column: span 5;
  min-height: 280px;
  color: inherit;
  text-decoration: none;
}

.work-grid .work-main {
  grid-column: span 7;
  grid-row: span 2;
}

.work-grid .work-card:nth-child(4),
.work-grid .work-card:nth-child(5) {
  grid-column: span 6;
}

.work-grid .work-card:focus-visible {
  outline: 4px solid var(--terracotta);
  outline-offset: 4px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.reviews {
  background: var(--canvas);
}

.review-list {
  border-top: 1px solid var(--line);
}

.review-list blockquote {
  margin: 0;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.review-list blockquote p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.review-list blockquote footer {
  margin-top: 0.8rem;
  color: var(--moss);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
}

.reviews > .text-link {
  grid-column: 2;
  justify-self: start;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.25fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.site-footer h2 {
  color: var(--paper);
  font-size: 1rem;
}

.site-footer p {
  max-width: 44ch;
  color: rgba(251, 249, 245, 0.78);
}

.site-footer a {
  color: var(--paper);
  text-underline-offset: 0.2em;
}

.footer-brand img {
  width: 150px;
  height: auto;
  padding: 0.35rem;
  background: var(--paper);
  border-radius: 6px;
}

@media (max-width: 900px) {
  .identity,
  .reviews {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .reviews > .text-link {
    grid-column: 1;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .work-grid .work-card,
  .work-grid .work-main,
  .work-grid .work-card:nth-child(4),
  .work-grid .work-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .work-grid .work-main {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .work-lead {
    margin-top: -1rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-grid .work-main {
    grid-column: auto;
    min-height: 340px;
  }

  .work-grid .work-card {
    min-height: 280px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}



.work-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: rgba(39, 68, 56, 0.18);
  border: 1px solid rgba(39, 68, 56, 0.18);
}

.work-details article {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--paper, #f5f2ea);
}

.work-details article:last-child {
  grid-column: 1 / -1;
}

.work-details h3 {
  margin-top: 0;
}

.work-details p {
  max-width: 68ch;
}

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

  .work-details article:last-child {
    grid-column: auto;
  }
}



/* Design refresh v2, inspired by the approved visual references */
:root {
  --card-radius: 24px;
  --card-shadow: 0 24px 60px rgba(23, 53, 43, 0.10);
  --card-line: rgba(39, 68, 56, 0.14);
}

.button {
  min-height: 54px;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(23, 53, 43, 0.08);
}

.button-primary {
  box-shadow: 0 14px 30px rgba(184, 90, 46, 0.24);
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(184, 90, 46, 0.3);
}

.button-outline,
.button-ghost,
.button-dark-ghost {
  background: transparent;
  box-shadow: none;
}

.hero-visual,
.identity,
.services,
.artisan,
.reviews,
.closing {
  border-radius: var(--card-radius);
}

.hero-visual {
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.hero-visual figcaption {
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.identity {
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  padding: clamp(2.4rem, 6vw, 5rem);
  background: var(--paper);
  border: 1px solid var(--card-line);
  box-shadow: var(--card-shadow);
}

.identity h2 {
  max-width: 15ch;
}

.identity .prose {
  padding-left: clamp(1.2rem, 4vw, 3rem);
  border-left: 3px solid var(--terracotta);
}

.inline-actions {
  align-items: center;
  gap: 1rem 1.25rem;
}

.services {
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  padding: clamp(2.5rem, 6vw, 5rem);
  color: var(--paper);
  background: var(--deep);
  box-shadow: var(--card-shadow);
}

.services h2,
.services h3,
.services p {
  color: inherit;
}

.services .kicker,
.services a {
  color: var(--sage);
}

.services .section-intro {
  position: sticky;
  top: 7rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border: 0;
}

.service-list li {
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 260px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(251, 249, 245, 0.14);
  border-radius: 16px;
  background: rgba(251, 249, 245, 0.08);
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.service-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 187, 168, 0.48);
  background: rgba(251, 249, 245, 0.12);
}

.service-list li:last-child {
  grid-column: 1 / -1;
  min-height: auto;
}

.service-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  border-radius: 50%;
  color: var(--deep);
  background: var(--sage);
}

.services .section-cta {
  grid-column: 2;
  margin-top: 0;
}

.work {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.work-grid {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: clamp(210px, 17vw, 240px);
  gap: 1.25rem;
}

.work-grid .work-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-height: 480px;
  grid-column: span 5;
  min-height: 0;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(23, 53, 43, 0.12);
}

.work-grid .work-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
  max-height: 500px;
}

.work-grid .work-card:nth-child(4),
.work-grid .work-card:nth-child(5) {
  grid-column: span 6;
}

.work-grid .work-card > div {
  left: 1.1rem;
  right: auto;
  bottom: 1.1rem;
  width: min(82%, 360px);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(251, 249, 245, 0.16);
  border-radius: 14px;
  background: rgba(23, 53, 43, 0.88);
  backdrop-filter: blur(12px);
}

.work-grid .work-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.work-details {
  gap: 1.25rem;
  background: transparent;
  border: 0;
}

.work-details article {
  border: 1px solid var(--card-line);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(23, 53, 43, 0.07);
}

.work-details article:last-child {
  background: var(--sage-soft);
}

.artisan {
  width: var(--page);
  max-width: 1180px;
  margin: clamp(3rem, 7vw, 7rem) auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
}

.artisan-portrait {
  max-width: 460px;
  border-radius: 20px;
  border-color: rgba(251, 249, 245, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.artisan-statement {
  padding-left: 1.25rem;
  border-left: 3px solid var(--terracotta);
  color: #ef8a58;
}

.reviews {
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--paper);
  border: 1px solid var(--card-line);
  box-shadow: var(--card-shadow);
}

.review-list {
  gap: 1.25rem;
}

.review-list blockquote {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--card-line);
  border-radius: 18px;
  background: var(--ivory);
}

.review-list blockquote:nth-child(2) {
  background: var(--sage-soft);
}

.answer-list details {
  margin-bottom: 0.75rem;
  padding: 0 1.25rem;
  border: 1px solid var(--card-line);
  border-radius: 14px;
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.answer-list details[open] {
  border-color: rgba(184, 90, 46, 0.42);
  box-shadow: 0 12px 28px rgba(23, 53, 43, 0.07);
}

.answer-list summary {
  padding: 1.35rem 2.5rem 1.35rem 0;
}

.closing {
  margin-bottom: clamp(4rem, 8vw, 8rem);
  padding: clamp(3rem, 7vw, 6rem);
  color: var(--paper);
  background: var(--deep);
  box-shadow: var(--card-shadow);
}

.closing h2 {
  color: var(--paper);
}

.closing .kicker {
  color: var(--sage);
}

.closing .button-outline {
  color: var(--paper);
  border-color: rgba(251, 249, 245, 0.55);
}

.closing .button-outline:hover {
  color: var(--deep);
  background: var(--paper);
}

@media (max-width: 900px) {
  .identity,
  .services {
    grid-template-columns: 1fr;
  }

  .identity .prose {
    padding-top: 1.5rem;
    padding-left: 0;
    border-top: 3px solid var(--terracotta);
    border-left: 0;
  }

  .services .section-intro {
    position: static;
  }

  .services .section-cta {
    grid-column: 1;
  }

  .work-grid {
    max-width: 760px;
    grid-auto-rows: 220px;
  }

  .work-grid .work-card,
  .work-grid .work-card:nth-child(1),
  .work-grid .work-card:nth-child(4),
  .work-grid .work-card:nth-child(5) {
    grid-column: span 6;
    grid-row: span 1;
    min-height: 0;
  }

  .work-grid .work-card:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .button {
    width: 100%;
    justify-content: center;
  }

  .identity,
  .services,
  .reviews,
  .closing {
    padding: 1.6rem;
    border-radius: 20px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list li,
  .service-list li:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .work-grid {
    display: grid;
    max-width: 520px;
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(190px, 58vw, 230px);
    gap: 1rem;
  }

  .work-grid .work-card,
  .work-grid .work-card:nth-child(1),
  .work-grid .work-card:nth-child(4),
  .work-grid .work-card:nth-child(5) {
    grid-column: 1;
    grid-row: span 1;
    min-height: 0;
  }

  .artisan {
    width: calc(100% - 32px);
    padding: 1.4rem;
    border-radius: 20px;
  }

  .artisan-portrait {
    justify-self: stretch;
  }
}



@media (max-width: 900px) {
  .artisan {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .artisan > * {
    min-width: 0;
  }

  .artisan-portrait {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .artisan-actions {
    flex-direction: column;
  }

  .artisan p {
    overflow-wrap: anywhere;
  }
}



@media (max-width: 640px) {
  .territory {
    min-height: auto;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 20px;
    text-align: center;
  }

  .territory p {
    margin: 0;
  }
}

/* ==========================================================================
   SECTION AVIS GOOGLE GMB
   ========================================================================== */
.avis-gmb {
  display: block;
  background: var(--paper);
  border: 1px solid var(--card-line, rgba(39, 68, 56, 0.12));
  border-radius: var(--card-radius, 24px);
  box-shadow: var(--card-shadow, 0 18px 55px rgba(23, 53, 43, 0.08));
  padding: clamp(2.5rem, 6vw, 4.5rem);
}

.avis-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line, rgba(39, 68, 56, 0.15));
  padding-bottom: 2rem;
}

.gmb-score-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gmb-score-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gmb-score-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmb-score-value {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #202124;
}

.gmb-score-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gmb-stars-row {
  display: flex;
  gap: 3px;
}

.star-svg {
  width: 18px;
  height: 18px;
  fill: #fbbc04;
}

.gmb-review-count {
  font-size: 0.82rem;
  font-weight: 500;
  color: #5f6368;
}

.gmb-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gmb-review-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gmb-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(23, 53, 43, 0.08);
  border-color: rgba(148, 187, 168, 0.5);
}

.gmb-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  position: relative;
}

.gmb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-family: var(--display);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-blue { background: #1a73e8; }
.avatar-green { background: #188038; }
.avatar-red { background: #d93025; }

.gmb-author-info {
  flex: 1;
  min-width: 0;
}

.gmb-author-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #202124;
  margin: 0;
}

.gmb-author-meta {
  font-size: 0.82rem;
  color: #5f6368;
  margin: 0;
}

.gmb-google-icon-corner {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.gmb-card-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 0.9rem;
}

.gmb-card-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3c4043;
  margin: 0 0 1.25rem 0;
  font-style: italic;
}

.gmb-card-note {
  font-size: 0.78rem;
  color: #70757a;
  border-top: 1px solid #f1f3f4;
  padding-top: 0.75rem;
  margin-top: auto;
}

.avis-footer-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ==========================================================================
   FOOTER HAUT DE GAMME
   ========================================================================== */
.site-footer {
  display: block;
  background: var(--deep);
  color: var(--paper);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem;
  border-top: 1px solid rgba(251, 249, 245, 0.12);
  margin-top: clamp(4rem, 8vw, 7rem);
}

.footer-container {
  width: var(--page);
  margin: 0 auto;
}

.footer-signature-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251, 249, 245, 0.12);
  margin-bottom: 3rem;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  max-width: 650px;
}

.footer-brand-block img {
  width: 170px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.footer-brand-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  background: rgba(148, 187, 168, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.footer-brand-tagline {
  font-size: 0.92rem;
  color: rgba(251, 249, 245, 0.75);
  line-height: 1.45;
  margin: 0;
}

.footer-contact-direct {
  background: rgba(251, 249, 245, 0.06);
  border: 1px solid rgba(251, 249, 245, 0.14);
  padding: 1.25rem 1.75rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.footer-contact-label {
  font-size: 0.8rem;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.footer-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-phone-cta:hover {
  color: var(--sage);
  transform: translateX(3px);
}

.footer-contact-sub {
  font-size: 0.8rem;
  color: rgba(251, 249, 245, 0.6);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.fcol-title {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.5rem;
}

.fcol-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--terracotta);
}

.fcol-address {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(251, 249, 245, 0.85);
  margin-bottom: 0.85rem;
}

.fcol-address strong {
  color: #ffffff;
}

.fcol-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(251, 249, 245, 0.6);
  margin: 0;
}

.fcol-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fcol-list li {
  font-size: 0.88rem;
  color: rgba(251, 249, 245, 0.78);
  line-height: 1.4;
}

.fcol-list a {
  color: rgba(251, 249, 245, 0.88);
  text-decoration: none;
  transition: color 0.15s ease, padding-left 0.15s ease;
  display: inline-block;
}

.fcol-list a:hover {
  color: var(--sage);
  padding-left: 4px;
}

.fcol-legal {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(251, 249, 245, 0.7);
}

.fcol-legal strong {
  color: #ffffff;
}

.footer-engagements {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  background: rgba(251, 249, 245, 0.04);
  border: 1px solid rgba(251, 249, 245, 0.1);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.engagement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.engagement-icon {
  width: 28px;
  height: 28px;
  stroke: var(--sage);
  flex-shrink: 0;
}

.engagement-item strong {
  display: block;
  font-size: 0.92rem;
  color: #ffffff;
  font-family: var(--display);
}

.engagement-item span {
  display: block;
  font-size: 0.8rem;
  color: rgba(251, 249, 245, 0.65);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 249, 245, 0.1);
  font-size: 0.82rem;
  color: rgba(251, 249, 245, 0.65);
}

.copyright-text {
  margin: 0;
}

.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(251, 249, 245, 0.75);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal-links a:hover {
  color: var(--sage);
}

.footer-micro-disclaimer {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(251, 249, 245, 0.65);
  line-height: 1.5;
  text-align: center;
}

/* ==========================================================================
   MEDIA QUERIES COMPLÉMENTAIRES AVIS & FOOTER
   ========================================================================== */
@media (max-width: 900px) {
  .gmb-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  .footer-engagements {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .avis-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .gmb-score-card {
    width: 100%;
    justify-content: space-between;
  }
  .footer-signature-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact-direct {
    width: 100%;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}


