:root {
  --bg: #efe7da;
  --bg-soft: #f7f1e8;
  --bg-deep: #e2d6c5;
  --surface: rgba(255, 252, 246, 0.92);
  --surface-strong: #fffdf9;
  --surface-muted: rgba(242, 236, 226, 0.84);
  --line: rgba(81, 67, 52, 0.14);
  --line-strong: rgba(81, 67, 52, 0.24);
  --text: #182632;
  --text-soft: #41505d;
  --text-muted: #6f7a83;
  --clay: #c76736;
  --clay-deep: #9d4b21;
  --slate: #244658;
  --slate-soft: #3f697c;
  --sand: #c7a771;
  --sage: #70836f;
  --rose: #b36e64;
  --shadow-lg: 0 34px 90px rgba(31, 38, 47, 0.14);
  --shadow-md: 0 18px 44px rgba(31, 38, 47, 0.1);
  --shadow-sm: 0 8px 18px rgba(31, 38, 47, 0.08);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --radius-xl: 48px;
  --container: min(1220px, calc(100vw - 40px));
  --header-height: 88px;
  --transition: 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
  background:
    radial-gradient(circle at top left, rgba(199, 103, 54, 0.12), transparent 28%),
    linear-gradient(180deg, #f4ecdf 0%, #efe7da 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Work Sans", sans-serif;
  line-height: 1.62;
  color: var(--text-soft);
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 103, 54, 0.15), transparent 0 18%),
    radial-gradient(circle at 88% 9%, rgba(36, 70, 88, 0.12), transparent 0 16%),
    radial-gradient(circle at 74% 32%, rgba(199, 167, 113, 0.12), transparent 0 18%),
    linear-gradient(180deg, #f6f0e8 0%, #efe7da 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(rgba(36, 70, 88, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 70, 88, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 85%);
}

body::after {
  inset: auto 0 0;
  height: 170px;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(199, 103, 54, 0.08) 0 16px,
      rgba(199, 103, 54, 0) 16px 32px
    );
  opacity: 0.9;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

input,
textarea,
select {
  appearance: none;
  border-radius: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

summary {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid rgba(36, 70, 88, 0.55);
  outline-offset: 4px;
}

::selection {
  background: rgba(199, 103, 54, 0.18);
  color: var(--text);
}

[hidden] {
  display: none !important;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(42px);
  pointer-events: none;
  z-index: -1;
}

.ambient--top {
  top: -120px;
  left: 50%;
  width: 440px;
  height: 220px;
  transform: translateX(-50%);
  background: rgba(199, 103, 54, 0.1);
}

.ambient--left {
  top: 28%;
  left: -130px;
  width: 280px;
  height: 280px;
  background: rgba(112, 131, 111, 0.12);
}

.ambient--right {
  right: -110px;
  top: 50%;
  width: 260px;
  height: 260px;
  background: rgba(36, 70, 88, 0.12);
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 140;
  background: rgba(36, 70, 88, 0.08);
}

.page-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--clay), var(--sand), var(--slate));
}

.skip-link {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 160;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transform: translateY(-140%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.shell {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(74px, 9vw, 122px) 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p,
.hero-text,
.hero-points li,
.service-card p,
.service-card li,
.process-step p,
.guarantee-card p,
.contact-copy p,
.catalog-empty p,
.faq-item p,
.project-card__summary,
.project-card__meta,
.project-card__footer span,
.modal-sheet__lede,
.modal-sheet__list li {
  font-size: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clay-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 103, 54, 0.74), rgba(199, 103, 54, 0));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 18px 0 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: calc(var(--header-height) + 18px);
  background: linear-gradient(180deg, rgba(246, 240, 232, 0.9), rgba(246, 240, 232, 0.4), rgba(246, 240, 232, 0));
  pointer-events: none;
}

.site-header .shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-height);
  padding: 14px 18px;
  border: 1px solid rgba(81, 67, 52, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.8);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, rgba(36, 70, 88, 0.12), rgba(199, 103, 54, 0.14));
  border: 1px solid rgba(81, 67, 52, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.brand-mark__roof,
.brand-mark__wall,
.brand-mark__joint {
  position: absolute;
  display: block;
}

.brand-mark__roof {
  left: 10px;
  top: 10px;
  width: 28px;
  height: 10px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(135deg, var(--clay), #e28a5c);
  transform: skewX(-32deg);
}

.brand-mark__wall {
  left: 13px;
  bottom: 9px;
  width: 24px;
  height: 19px;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(36, 70, 88, 0.95), rgba(36, 70, 88, 0.7));
}

.brand-mark__joint {
  left: 16px;
  bottom: 17px;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.28);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--text);
  font-size: 1rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-copy em {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: normal;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(81, 67, 52, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--solid {
  background: linear-gradient(135deg, var(--clay), #e78d56);
  color: #fff;
  box-shadow: 0 18px 28px rgba(199, 103, 54, 0.24);
}

.button--solid:hover {
  box-shadow: 0 22px 34px rgba(199, 103, 54, 0.28);
}

.button--ghost {
  border: 1px solid rgba(81, 67, 52, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.button--text {
  min-height: auto;
  padding: 0;
  color: var(--slate);
  font-weight: 700;
}

.button--compact {
  min-height: 46px;
  padding-inline: 18px;
}

.hero {
  padding-top: 24px;
}

.hero-layout,
.contact-layout,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
}

.hero-layout > *,
.contact-layout > *,
.process-layout > * {
  min-width: 0;
}

.hero-copy {
  display: grid;
  gap: 22px;
  padding-top: clamp(16px, 3vw, 34px);
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.hero-copy h1 span {
  display: block;
  color: var(--slate);
}

.hero-text {
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points {
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff, rgba(255, 255, 255, 0.1) 38%),
    linear-gradient(135deg, var(--clay), var(--sand));
  box-shadow: 0 0 0 4px rgba(199, 103, 54, 0.14);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(81, 67, 52, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    linear-gradient(135deg, rgba(199, 103, 54, 0.08), rgba(36, 70, 88, 0.08));
  box-shadow: var(--shadow-sm);
}

.metric-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.38rem;
  line-height: 1.02;
}

.metric-card p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-stage {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(81, 67, 52, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    linear-gradient(140deg, rgba(199, 103, 54, 0.08), rgba(36, 70, 88, 0.1));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  --stage-accent: var(--clay);
  --stage-soft: rgba(199, 103, 54, 0.14);
  --stage-contrast: #9d4b21;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--stage-accent), rgba(255, 255, 255, 0));
}

.hero-stage__topline,
.hero-stage__footer,
.catalog-toolbar,
.project-card__head,
.project-card__footer,
.modal-sheet__header,
.modal-sheet__footer,
.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-stage__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(81, 67, 52, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--stage-contrast);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-stage__visual {
  position: relative;
  min-height: clamp(260px, 34vw, 360px);
  margin-top: 20px;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(81, 67, 52, 0.08);
  background: #d9cec0;
  overflow: hidden;
}

.hero-stage__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 29, 39, 0.12), rgba(14, 29, 39, 0.02) 30%, rgba(14, 29, 39, 0.3) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  transform: translateX(-120%);
  animation: board-scan 7s linear infinite;
  opacity: 0.9;
}

.hero-stage__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 40%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(24, 38, 50, 0), rgba(24, 38, 50, 0.34));
}

.hero-stage__photo {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 34vw, 360px);
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero-stage__badge {
  position: absolute;
  z-index: 3;
  max-width: min(42%, 240px);
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(81, 67, 52, 0.12);
  background: rgba(255, 252, 246, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-stage__badge--left {
  left: 18px;
  top: 18px;
}

.hero-stage__badge--right {
  right: 18px;
  bottom: 18px;
}

.hero-stage__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.note-card {
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(81, 67, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 236, 226, 0.78)),
    linear-gradient(135deg, var(--stage-soft), rgba(255, 255, 255, 0));
}

.note-card span,
.hero-stage__budget span,
.project-card__stats span,
.contact-panel span,
.field span,
.modal-sheet__stat span,
.modal-sheet__section span {
  display: block;
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-card strong,
.contact-panel strong,
.project-card__stats strong,
.modal-sheet__stat strong {
  display: block;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.02rem;
  line-height: 1.08;
}

.hero-stage__content {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.hero-stage__location {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stage h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.hero-stage__specs,
.chip-row,
.modal-sheet__chips,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pill,
.hero-stage__spec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(81, 67, 52, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-stage__budget strong {
  display: block;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.92rem, 3vw, 2.6rem);
  line-height: 0.96;
}

.hero-stage__budget small {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.trust-chip {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(81, 67, 52, 0.08);
  background: rgba(255, 255, 255, 0.64);
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}

.service-grid,
.guarantee-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.guarantee-card,
.contact-card,
.contact-panel,
.notice-card,
.faq-item,
.process-step,
.catalog-shell,
.project-card,
.modal__dialog {
  min-width: 0;
}

.service-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(81, 67, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.46)),
    linear-gradient(150deg, rgba(199, 103, 54, 0.08), rgba(36, 70, 88, 0.06));
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 92px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clay), rgba(199, 103, 54, 0));
}

.service-card:hover,
.project-card:hover,
.guarantee-card:hover,
.process-step:hover,
.contact-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(199, 103, 54, 0.18), rgba(36, 70, 88, 0.12));
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-card h3,
.process-step h3,
.guarantee-card strong,
.project-card h3,
.contact-copy h2,
.section-head h2,
.faq-item summary,
.modal-sheet h2 {
  font-size: clamp(1.42rem, 2vw, 2.16rem);
}

.service-card ul {
  display: grid;
  gap: 9px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.catalog-shell {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(81, 67, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    linear-gradient(145deg, rgba(36, 70, 88, 0.06), rgba(199, 103, 54, 0.08));
  box-shadow: var(--shadow-lg);
}

.catalog-toolbar {
  align-items: flex-start;
  margin-bottom: 22px;
}

.catalog-toolbar__headline {
  display: grid;
  gap: 6px;
}

.catalog-toolbar__headline strong {
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 0.96;
}

.catalog-toolbar__headline span {
  color: var(--text-soft);
}

.catalog-toolbar__controls {
  display: grid;
  gap: 14px;
  justify-items: end;
  width: min(100%, 700px);
}

.filter-row {
  justify-content: flex-end;
}

.filter-button {
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid rgba(81, 67, 52, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.filter-button:hover,
.filter-button.is-active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.field {
  display: grid;
  gap: 10px;
  width: 100%;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(81, 67, 52, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8b9298;
}

.field select {
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text) 50%),
    linear-gradient(135deg, var(--text) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84));
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 18px) 50%,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.field textarea {
  resize: vertical;
  min-height: 148px;
}

.field--wide {
  grid-column: 1 / -1;
}

.catalog-toolbar .field {
  width: min(100%, 340px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(81, 67, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(242, 236, 226, 0.66));
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--card-accent, var(--clay)), rgba(255, 255, 255, 0));
}

.project-card__media {
  position: relative;
  overflow: hidden;
  margin: -22px -22px 0;
  aspect-ratio: 16 / 10;
  background: rgba(217, 206, 192, 0.8);
}

.project-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(24, 38, 50, 0), rgba(24, 38, 50, 0.14));
  pointer-events: none;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform var(--transition);
}

.project-card:hover .project-card__media img {
  transform: scale(1.06);
}

.project-card__head {
  align-items: flex-start;
}

.project-card__status {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__meta {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(242, 236, 226, 0.74);
  border: 1px solid rgba(81, 67, 52, 0.08);
}

.project-card__footer {
  align-items: center;
}

.project-card__footer .button--text {
  flex-shrink: 0;
}

.catalog-empty {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(81, 67, 52, 0.24);
  background: rgba(255, 255, 255, 0.54);
}

.process-layout {
  align-items: start;
}

.process-copy {
  display: grid;
  gap: 18px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.process-rail {
  display: grid;
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 24px 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(81, 67, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46)),
    linear-gradient(135deg, rgba(36, 70, 88, 0.07), rgba(199, 103, 54, 0.08));
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.process-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(36, 70, 88, 0.94), rgba(36, 70, 88, 0.74));
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.guarantee-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guarantee-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(81, 67, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.48)),
    linear-gradient(135deg, rgba(199, 167, 113, 0.12), rgba(36, 70, 88, 0.06));
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-panel,
.notice-card {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(81, 67, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.5)),
    linear-gradient(135deg, rgba(199, 103, 54, 0.08), rgba(36, 70, 88, 0.06));
  box-shadow: var(--shadow-sm);
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(81, 67, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    linear-gradient(145deg, rgba(36, 70, 88, 0.06), rgba(199, 103, 54, 0.08));
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--slate);
  font-weight: 700;
}

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

.faq-item {
  border: 1px solid rgba(81, 67, 52, 0.1);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.48)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(242, 236, 226, 0.7));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 24px 58px 24px 24px;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--slate);
  transform: translateY(-50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0);
}

.faq-item p {
  padding: 0 24px 24px;
}

.site-footer {
  padding: 0 0 32px;
}

.footer-layout {
  padding: 24px 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(81, 67, 52, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.footer-layout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.26rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--slate);
  font-weight: 700;
}

.credits-strip {
  margin-top: 12px;
  padding: 0 6px;
}

.credits-strip p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.credits-strip a {
  color: var(--slate);
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 38, 50, 0.42);
  backdrop-filter: blur(10px);
}

.modal__dialog {
  position: relative;
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(81, 67, 52, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(199, 103, 54, 0.08), rgba(36, 70, 88, 0.08));
  box-shadow: 0 34px 120px rgba(24, 38, 50, 0.22);
  overflow: auto;
}

.modal__close {
  position: sticky;
  top: 0;
  z-index: 4;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(24, 38, 50, 0.94);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.modal-sheet {
  display: grid;
  gap: 20px;
}

.modal-sheet__media {
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 8;
  background: rgba(217, 206, 192, 0.8);
}

.modal-sheet__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal-sheet__header {
  align-items: flex-start;
}

.modal-sheet__header-copy {
  display: grid;
  gap: 12px;
}

.modal-sheet__meta {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-sheet__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.modal-sheet__stat,
.modal-sheet__section {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(81, 67, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(242, 236, 226, 0.76)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(242, 236, 226, 0.66));
}

.modal-sheet__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.modal-sheet__list {
  display: grid;
  gap: 10px;
}

.modal-sheet__list li {
  position: relative;
  padding-left: 18px;
}

.modal-sheet__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.modal-sheet__footer {
  flex-wrap: wrap;
  align-items: center;
  padding-top: 4px;
}

.modal-sheet__footer-copy {
  color: var(--text-soft);
  font-weight: 600;
}

.modal-sheet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-category="Toiture"] {
  --chip-bg: rgba(199, 103, 54, 0.14);
  --chip-border: rgba(199, 103, 54, 0.28);
  --chip-text: #9d4b21;
  --card-accent: var(--clay);
}

[data-category="Maconnerie"] {
  --chip-bg: rgba(36, 70, 88, 0.14);
  --chip-border: rgba(36, 70, 88, 0.24);
  --chip-text: #244658;
  --card-accent: var(--slate);
}

[data-category="Facade"] {
  --chip-bg: rgba(112, 131, 111, 0.16);
  --chip-border: rgba(112, 131, 111, 0.24);
  --chip-text: #526452;
  --card-accent: var(--sage);
}

[data-category="Urgence"] {
  --chip-bg: rgba(199, 167, 113, 0.2);
  --chip-border: rgba(199, 167, 113, 0.3);
  --chip-text: #8f6a2d;
  --card-accent: var(--sand);
}

[data-category="Isolation"] {
  --chip-bg: rgba(179, 110, 100, 0.14);
  --chip-border: rgba(179, 110, 100, 0.24);
  --chip-text: #8f554d;
  --card-accent: var(--rose);
}

.category-pill[data-category],
.hero-stage__spec[data-category],
.filter-button[data-category],
.project-card[data-category] .category-pill[data-category],
.modal-sheet__chips .category-pill[data-category] {
  background: var(--chip-bg);
  border-color: var(--chip-border);
  color: var(--chip-text);
}

.project-card[data-category] {
  border-color: color-mix(in srgb, var(--card-accent) 16%, rgba(81, 67, 52, 0.08));
}

@keyframes board-scan {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1180px) {
  .hero-layout,
  .contact-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

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

  .service-grid,
  .guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100vw - 28px, 1220px);
    --header-height: 76px;
  }

  .site-header .shell {
    min-height: var(--header-height);
    padding: 12px 14px;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid rgba(81, 67, 52, 0.12);
    background: rgba(255, 252, 246, 0.96);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav {
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
  }

  .metric-row,
  .trust-strip,
  .contact-panels,
  .modal-sheet__stats,
  .modal-sheet__grid {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    display: grid;
  }

  .catalog-toolbar__controls,
  .filter-row {
    justify-items: stretch;
    justify-content: flex-start;
  }

  .catalog-toolbar .field {
    width: 100%;
  }

  .project-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-copy h1 {
    font-size: clamp(2.56rem, 12vw, 3.5rem);
  }

  .hero-stage {
    padding: 18px;
    border-radius: 30px;
  }

  .hero-stage__topline,
  .hero-stage__footer,
  .project-card__head,
  .project-card__footer,
  .footer-layout,
  .modal-sheet__header,
  .modal-sheet__footer {
    display: grid;
    justify-content: stretch;
  }

  .hero-stage__notes,
  .contact-form,
  .service-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    gap: 14px;
  }

  .project-card__stats {
    grid-template-columns: 1fr;
  }

  .catalog-shell,
  .contact-card,
  .modal__dialog {
    padding: 18px;
  }

  .project-card__media {
    margin: -18px -18px 0;
  }

  .modal {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: calc(100vw - 20px);
  }

  .section {
    padding: 62px 0;
  }

  .site-header {
    padding-top: 10px;
  }

  .site-header .shell {
    gap: 12px;
    padding-inline: 12px;
  }

  .brand-copy em,
  .hero-points li,
  .trust-chip,
  .field span,
  .footer-layout p {
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stage__visual {
    min-height: 224px;
  }

  .hero-stage__badge {
    max-width: 45%;
    font-size: 0.78rem;
  }

  .metric-card,
  .service-card,
  .process-step,
  .guarantee-card,
  .project-card,
  .faq-item summary,
  .faq-item p,
  .notice-card,
  .contact-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .metric-card strong,
  .hero-stage__budget strong,
  .catalog-toolbar__headline strong {
    font-size: clamp(1.6rem, 9vw, 2rem);
  }

  .hero-stage h2,
  .section-head h2,
  .contact-copy h2,
  .project-card h3,
  .service-card h3,
  .process-step h3,
  .faq-item summary,
  .modal-sheet h2 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .modal__close {
    width: 100%;
    justify-content: center;
  }
}
