:root {
  --taupe: #A79277;
  --sand: #D1BB9E;
  --linen: #EAD8C0;
  --cream: #FFF2E1;
  --ink: #33261d;
  --muted: #5f4a39;
  --white-soft: rgba(255, 242, 225, 0.92);
  --shadow: 0 18px 45px rgba(70, 59, 49, 0.12);
  --radius: 8px;
  --max-width: 1160px;
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 242, 225, 0.94);
  border-bottom: 1px solid rgba(167, 146, 119, 0.22);
  backdrop-filter: blur(14px);
}

.logo {
  color: var(--taupe);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
}

.main-nav a {
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--taupe);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: #241f1a;
  background: var(--taupe);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(167, 146, 119, 0.26);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--cream);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(167, 146, 119, 0.34);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--taupe);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 110px clamp(20px, 7vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(rgba(70, 59, 49, 0.48), rgba(70, 59, 49, 0.48)),
    url("Image salle d'audience.png") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, var(--cream));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 242, 225, 0.96), rgba(234, 216, 192, 0.82) 48%, rgba(70, 59, 49, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #6f563f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--taupe);
  line-height: 1.12;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  font-size: clamp(1rem, 3vw, 3rem);
  color: #6b513b;
  text-shadow: 0 2px 18px rgba(255, 242, 225, 0.52);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 3vw, 2rem);
  text-shadow: 0 1px 12px rgba(255, 242, 225, 0.5);
}

.hero-text,
.lead {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.hero-text {
  margin: 20px 0 0;
  text-shadow: 0 1px 10px rgba(255, 242, 225, 0.5);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(70, 59, 49, 0.18);
}

.button-primary {
  color: #241f1a;
  background: var(--taupe);
  box-shadow: 0 15px 28px rgba(167, 146, 119, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--cream);
  background: var(--ink);
}

.button-secondary {
  color: var(--taupe);
  background: rgba(255, 242, 225, 0.76);
  border-color: rgba(167, 146, 119, 0.42);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--linen);
}

.section,
.section-narrow {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-soft {
  width: 100%;
  padding-inline: max(20px, calc((100% - var(--max-width)) / 2));
  background: linear-gradient(180deg, rgba(234, 216, 192, 0.58), rgba(255, 242, 225, 0.78));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

/* Trust indicators */
.trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: -48px;
}

.trust-card,
.expertise-card,
.info-card,
.hours-card,
.contact-form,
.map-panel,
.reviews-summary,
.review-card {
  border: 1px solid rgba(167, 146, 119, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card {
  min-height: 138px;
  padding: 22px;
  background: var(--white-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-card:hover,
.expertise-card:hover,
.info-card:hover,
.symbol-item:hover,
.hours-card:hover,
.contact-form:hover,
.map-panel:hover,
.reviews-summary:hover,
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 146, 119, 0.44);
  box-shadow: 0 22px 52px rgba(70, 59, 49, 0.16);
}

.trust-card strong {
  display: block;
  color: var(--taupe);
  font-size: 1.35rem;
  line-height: 1.16;
}

.trust-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

/* Reviews */
.reviews-section {
  padding-top: 82px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.reviews-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
  background: rgba(234, 216, 192, 0.58);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.rating-label {
  display: block;
  color: var(--taupe);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
}

.rating-stars,
.review-top span {
  color: var(--taupe);
  letter-spacing: 0;
}

.rating-stars {
  display: block;
  margin-top: 12px;
  font-size: 1.3rem;
}

.reviews-summary p {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.reviews-summary small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 178px;
  padding: 26px;
  background: rgba(255, 242, 225, 0.82);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.review-top strong {
  font-size: 0.98rem;
}

.review-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

/* Local justice imagery */
.visual-section {
  padding-top: 82px;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(250px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.image-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(167, 146, 119, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--linen);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.image-card:hover,
.image-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(70, 59, 49, 0.18);
}

.image-card-large {
  min-height: 680px;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-card:hover img,
.image-panel:hover img {
  transform: scale(1.04);
}

.image-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 242, 225, 0.9);
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.symbols-panel {
  display: grid;
  gap: 14px;
}

.symbol-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
  background: rgba(234, 216, 192, 0.52);
  border: 1px solid rgba(167, 146, 119, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.symbol-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--taupe);
  background: var(--cream);
  border: 1px solid rgba(167, 146, 119, 0.28);
  border-radius: 50%;
}

.symbol-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.symbol-item h3 {
  font-size: 1.18rem;
}

.symbol-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
}

/* Expertise and content cards */
.expertise-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

.expertise-grid {
  grid-template-columns: repeat(3, minmax(240px, 340px));
  justify-content: center;
}

.expertise-card,
.info-card {
  min-height: 255px;
  padding: 30px;
  background: rgba(255, 242, 225, 0.82);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.expertise-card p,
.info-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.image-panel {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--linen);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.text-panel p:not(.eyebrow) {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}

.profile-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.profile-facts span {
  padding: 9px 12px;
  color: var(--ink);
  background: var(--linen);
  border: 1px solid rgba(167, 146, 119, 0.2);
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

/* Fees */
.info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  list-style: none;
}

.clean-list li {
  padding-left: 18px;
  position: relative;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--taupe);
  border-radius: 50%;
}

/* Hours */
.hours-section {
  padding-top: 84px;
}

.hours-card {
  max-width: 760px;
  background: rgba(255, 242, 225, 0.86);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hours-card dl {
  margin: 0;
  padding: 12px 30px;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(167, 146, 119, 0.22);
}

.hours-card div:last-child {
  border-bottom: 0;
}

.hours-card dt,
.hours-card dd {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.hours-card dt {
  color: var(--ink);
  font-weight: 700;
}

.hours-card dd {
  color: var(--muted);
  text-align: right;
}

/* Location and map */
.location-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: stretch;
}

.location-info {
  align-self: center;
}

.location-info address {
  display: grid;
  gap: 7px;
  margin: 26px 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
}

.location-info address strong {
  color: var(--ink);
}

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

.map-panel {
  min-height: 430px;
  overflow: hidden;
  background: var(--linen);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.contact-details address {
  display: grid;
  gap: 7px;
  margin: 28px 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
}

.contact-details address strong {
  color: var(--ink);
}

.phone-contact {
  margin: 0 0 28px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.phone-contact a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(234, 216, 192, 0.54);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.form-row {
  display: grid;
  gap: 8px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-row label {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(167, 146, 119, 0.42);
  border-radius: var(--radius);
  outline: none;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--taupe);
  box-shadow: 0 0 0 4px rgba(167, 146, 119, 0.18);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--taupe);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.form-status a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  padding: 46px clamp(20px, 5vw, 64px);
  color: var(--ink);
  background: var(--sand);
}

.site-footer strong {
  font-size: 1.2rem;
}

.site-footer p {
  margin: 6px 0;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.footer-notes {
  max-width: 430px;
  justify-self: end;
}

.legal-note,
.creator-credit {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.creator-credit {
  margin-top: 16px;
}

.creator-credit a {
  font-weight: 700;
  text-decoration: underline;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 242, 225, 0.9), rgba(255, 242, 225, 0.9)),
    url("Image salle d'audience.png") center / cover;
}

.legal-main {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 24px;
}

.legal-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 56px);
  background: rgba(255, 242, 225, 0.94);
  border: 1px solid rgba(167, 146, 119, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-top: 30px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-card p:not(.eyebrow) {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}

.legal-card a:not(.button) {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
}

.legal-card .button {
  margin-top: 26px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-from-left {
  transform: translateX(-28px);
}

.reveal-from-right {
  transform: translateX(28px);
}

.reveal-from-left.is-visible,
.reveal-from-right.is-visible {
  transform: translateX(0);
}

.reveal.is-visible.trust-card:hover,
.reveal.is-visible.expertise-card:hover,
.reveal.is-visible.info-card:hover,
.reveal.is-visible.symbol-item:hover,
.reveal.is-visible.hours-card:hover,
.reveal.is-visible.contact-form:hover,
.reveal.is-visible.map-panel:hover,
.reveal.is-visible.image-card:hover,
.reveal.is-visible.image-panel:hover,
.reveal.is-visible.reviews-summary:hover,
.reveal.is-visible.review-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .trust,
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-card:last-child {
    grid-column: 1 / -1;
  }

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

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    position: static;
  }

  .image-card-large {
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 81px 16px auto;
    display: grid;
    gap: 0;
    padding: 16px;
    background: var(--cream);
    border: 1px solid rgba(167, 146, 119, 0.24);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px 8px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 760px;
    padding-top: 96px;
    background-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 242, 225, 0.94), rgba(255, 242, 225, 0.72) 58%, rgba(255, 242, 225, 0.2));
  }

  h1 {
    font-size: 2.65rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-soft {
    padding-inline: 20px;
  }

  .split-section,
  .contact-section,
  .location-content {
    grid-template-columns: 1fr;
  }

  .image-panel,
  .image-panel img {
    min-height: 360px;
  }

  .image-card,
  .image-card-large {
    min-height: 340px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 340px;
  }

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

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

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

  .footer-notes {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .logo {
    max-width: 210px;
    white-space: normal;
    line-height: 1.2;
    font-size: 1rem;
  }

  .main-nav {
    inset: 73px 16px auto;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .hero {
    min-height: auto;
    padding: 92px 18px 86px;
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 242, 225, 0.97), rgba(234, 216, 192, 0.86) 62%, rgba(70, 59, 49, 0.18));
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: 1.18rem;
    line-height: 1.35;
  }

  .hero-text,
  .lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-text {
    margin-top: 16px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .hero-actions,
  .location-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
    padding: 13px 16px;
    text-align: center;
  }

  .section,
  .section-narrow {
    width: min(100% - 32px, var(--max-width));
  }

  .section {
    padding: 58px 0;
  }

  .section-soft {
    padding-inline: 16px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .trust {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: -24px;
  }

  .trust-card:last-child {
    grid-column: auto;
  }

  .trust-card {
    min-height: auto;
    padding: 18px;
  }

  .trust-card strong {
    font-size: 1.18rem;
  }

  .visual-section,
  .reviews-section,
  .hours-section {
    padding-top: 58px;
  }

  .image-card,
  .image-card-large,
  .image-panel,
  .image-panel img {
    min-height: 280px;
  }

  .image-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.82rem;
  }

  .reviews-summary,
  .review-card {
    padding: 20px;
  }

  .rating-label {
    font-size: 1.7rem;
  }

  .review-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .expertise-card,
  .info-card {
    min-height: auto;
    padding: 22px;
  }

  .split-section,
  .contact-section,
  .location-content {
    gap: 28px;
  }

  .profile-facts {
    gap: 8px;
  }

  .profile-facts span {
    font-size: 0.84rem;
  }

  .symbol-item {
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }

  .symbol-icon {
    width: 48px;
    height: 48px;
  }

  .symbol-icon svg {
    width: 28px;
    height: 28px;
  }

  .hours-card,
  .contact-form,
  .map-panel {
    box-shadow: 0 14px 34px rgba(70, 59, 49, 0.11);
  }

  .hours-card dl {
    padding: 8px 22px;
  }

  .hours-card div {
    display: grid;
    gap: 4px;
  }

  .hours-card dd {
    text-align: left;
  }

  .location-info address,
  .contact-details address {
    margin: 20px 0;
  }

  .phone-contact {
    margin-bottom: 22px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 300px;
  }

  .contact-form {
    gap: 15px;
    padding: 20px;
  }

  .form-row input,
  .form-row textarea {
    font-size: 16px;
  }

  .site-footer {
    gap: 22px;
    padding: 34px 18px;
  }

  .site-footer nav {
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .logo {
    max-width: 185px;
    font-size: 0.95rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero {
    padding: 82px 16px 72px;
  }

  .section,
  .section-narrow {
    width: min(100% - 28px, var(--max-width));
  }
}

@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .button:focus-visible,
  .trust-card:hover,
  .expertise-card:hover,
  .info-card:hover,
  .symbol-item:hover,
  .hours-card:hover,
  .contact-form:hover,
  .map-panel:hover,
  .reviews-summary:hover,
  .review-card:hover,
  .image-card:hover,
  .image-panel:hover {
    transform: none;
  }

  .image-card:hover img,
  .image-panel:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .reveal-from-left,
  .reveal-from-right {
    opacity: 1;
    transform: none;
  }
}
