:root {
  --ink: #291914;
  --muted: #6d5b53;
  --cream: #fbf7f0;
  --linen: #f3eadf;
  --rose: #b96d62;
  --rose-dark: #88473f;
  --blue: #315e86;
  --gold: #d7a85b;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(41, 25, 20, 0.14);
  --soft-shadow: 0 12px 34px rgba(41, 25, 20, 0.1);
  --hairline: rgba(41, 25, 20, 0.1);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(49, 94, 134, 0.55);
  outline-offset: 3px;
}

address {
  font-style: normal;
}

.wrap {
  width: min(100% - 28px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.96);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 50%;
}

.brand span {
  font-size: 0.98rem;
  white-space: nowrap;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-left: auto;
  padding: 10px 14px;
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(137, 71, 63, 0.18);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(41, 25, 20, 0.14);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.nav-links {
  position: fixed;
  top: 70px;
  right: 14px;
  left: 14px;
  display: grid;
  gap: 6px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(41, 25, 20, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

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

.nav-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--linen);
}

.nav-links a[aria-current="page"] {
  background: var(--linen);
  color: var(--rose-dark);
}

.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  text-align: center;
  box-shadow: 0 10px 22px rgba(137, 71, 63, 0.22);
}

.nav-links .nav-cta[aria-current="page"] {
  background: var(--rose);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.95) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(25, 13, 10, 0.9) 0%, rgba(25, 13, 10, 0.68) 48%, rgba(25, 13, 10, 0.22) 100%),
    linear-gradient(0deg, rgba(25, 13, 10, 0.68) 0%, rgba(25, 13, 10, 0) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 82px 38px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.95rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.hero-tagline {
  max-width: min(680px, 100%);
  margin-top: 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: min(660px, 100%);
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.55;
}

.promo-note {
  width: fit-content;
  max-width: min(680px, 100%);
  margin-top: 14px;
  padding: 8px 12px;
  background: rgba(215, 168, 91, 0.12);
  color: var(--rose-dark);
  border: 1px solid rgba(215, 168, 91, 0.34);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 800;
}

.hero .promo-note {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(137, 71, 63, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--rose-dark);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.appointment-notes {
  background: var(--blue);
  color: var(--white);
}

.note-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.note-grid div {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: var(--blue);
}

.note-grid strong {
  font-size: 1rem;
}

.note-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.section-pad {
  padding-block: 56px;
}

.page-hero {
  background:
    linear-gradient(180deg, var(--linen) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--hairline);
}

.page-hero-inner {
  padding-block: 62px 50px;
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p:not(.section-kicker):not(.promo-note) {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.split,
.review-layout,
.contact-layout {
  display: grid;
  gap: 28px;
}

.split p + p {
  margin-top: 16px;
}

.details-panel,
.contact-card,
.qr-card {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--hairline);
  box-shadow: var(--soft-shadow);
}

.details-panel {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.details-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--gold);
}

.details-panel img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 18px;
}

.details-panel p {
  color: var(--muted);
}

.plain-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.expectation-list a,
.service-followup a {
  color: var(--blue);
  font-weight: 800;
}

.services {
  background:
    linear-gradient(180deg, var(--linen) 0%, #f8f1e8 100%);
}

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

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1rem;
}

.service-groups {
  display: grid;
  gap: 12px;
}

.summary-grid,
.gallery-grid {
  display: grid;
  gap: 14px;
}

.service-group {
  position: relative;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(41, 25, 20, 0.06);
}

.service-group-main {
  background:
    linear-gradient(135deg, rgba(49, 94, 134, 0.98), rgba(41, 25, 20, 0.9));
  color: var(--white);
}

.service-group h3 {
  color: var(--rose-dark);
}

.service-group-main h3 {
  color: var(--white);
}

.service-label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-group-main .service-label {
  color: var(--gold);
}

.service-group p,
.expectation-list p,
.contact-card dd,
.qr-card p,
.footer-grid p {
  color: var(--muted);
}

.service-group-main p,
.service-group-main .plain-list {
  color: rgba(255, 255, 255, 0.82);
}

.service-followup {
  margin-top: 18px;
  color: var(--muted);
}

.service-followup a {
  color: var(--blue);
  font-weight: 800;
}

.price-list {
  display: grid;
  gap: 16px;
}

.price-category {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(41, 25, 20, 0.06);
}

.price-category h3 {
  margin: 0;
  padding: 14px 18px;
  background: var(--linen);
  color: var(--ink);
}

.price-category dl {
  display: grid;
  margin: 0;
}

.price-category dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 12px 18px;
  border-top: 1px solid var(--hairline);
}

.price-category dt {
  color: var(--ink);
  font-weight: 700;
}

.price-category dd {
  margin: 0;
  color: var(--rose-dark);
  font-weight: 900;
  white-space: nowrap;
}

.pricing-note {
  margin-top: 18px;
}

.meet-preview {
  background: var(--linen);
}

.meet-preview-card {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.meet-preview-card p:not(.section-kicker) {
  max-width: 680px;
  color: var(--muted);
}

.meet-preview-card .button {
  margin-top: 20px;
}

.meet-heidi {
  background: var(--white);
}

.portrait-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 18%;
}

.portrait-frame-small {
  max-width: 220px;
}

.home-salon {
  background: var(--white);
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}

.expectation-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.expectation-list div {
  padding-left: 18px;
  border-left: 4px solid var(--gold);
}

.hair-gallery {
  background: var(--cream);
}

.gallery-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.gallery-heading p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(41, 25, 20, 0.08);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

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

.gallery-carousel {
  margin-inline: -14px;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(235px, 82%);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 14px 18px;
  scroll-padding-inline: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.gallery-slide {
  margin: 0;
  scroll-snap-align: start;
}

.gallery-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.gallery-slide figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.reviews {
  background:
    linear-gradient(135deg, var(--blue) 0%, #244864 100%);
  color: var(--white);
}

.reviews .section-kicker {
  color: var(--gold);
}

.reviews p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.light-heading p:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.review-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.review-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(25, 13, 10, 0.16);
}

.review-card p {
  max-width: none;
  color: var(--muted);
}

.review-followup {
  margin-top: 22px;
}

.review-followup a {
  color: var(--white);
  font-weight: 800;
}

.review-meta {
  display: grid;
  gap: 2px;
  margin-bottom: 12px;
}

.review-meta strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.review-meta .stars {
  color: var(--rose-dark);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.qr-card {
  max-width: 280px;
  padding: 20px;
  justify-self: center;
}

.qr-card img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 4px;
}

.qr-card p {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.contact {
  background:
    linear-gradient(180deg, var(--linen) 0%, var(--cream) 100%);
}

.contact-intro > p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
}

.section-heading .promo-note,
.contact-intro > .promo-note {
  color: var(--rose-dark);
  font-size: 0.94rem;
}

.contact-card {
  margin-top: 24px;
  padding: 24px;
}

.contact-card h3 {
  margin-bottom: 18px;
}

.contact-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.contact-card dl > div {
  padding-block: 14px;
  border-top: 1px solid var(--hairline);
}

.contact-card dl > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-card dt {
  color: var(--rose-dark);
  font-weight: 800;
}

.contact-card dd {
  margin: 2px 0 0;
}

.contact-card a {
  color: var(--blue);
  font-weight: 800;
}

.button-map {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(49, 94, 134, 0.24);
}

.button-map:hover,
.button-map:focus-visible {
  background: #244864;
}

.map-frame {
  min-height: 320px;
  overflow: hidden;
  background: var(--linen);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  border: 0;
}

.cta-band {
  padding-block: 46px;
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  display: grid;
  gap: 20px;
}

.cta-inner h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.cta-inner p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.privacy-hero {
  background: var(--blue);
  color: var(--white);
}

.privacy-hero .hero-copy {
  color: rgba(255, 255, 255, 0.86);
}

.privacy-content {
  background: var(--cream);
}

.policy-layout {
  max-width: 880px;
}

.policy-copy {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(41, 25, 20, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.policy-copy p + h2 {
  margin-top: 32px;
}

.policy-copy h2 {
  font-size: 1.7rem;
}

.policy-copy p + p {
  margin-top: 14px;
}

.policy-copy a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  padding-block: 42px 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 6px;
  font-weight: 900;
  text-decoration: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.copyright {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

@media (min-width: 680px) {
  .wrap {
    width: min(100% - 48px, var(--max));
  }

  .nav {
    min-height: 78px;
    gap: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand span {
    font-size: 1.02rem;
  }

  .nav-links {
    top: 78px;
    right: 24px;
    left: 24px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding-block: 110px 58px;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .hero-tagline {
    font-size: 1.55rem;
  }

  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .note-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .note-grid div {
    padding: 24px;
  }

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

  .summary-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .meet-preview-card {
    grid-template-columns: 220px minmax(0, 1fr);
    padding: 28px;
  }

  .review-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .gallery-carousel {
    margin-inline: 0;
  }

  .gallery-track {
    grid-auto-columns: minmax(260px, 31%);
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .service-group {
    padding: 30px;
  }

  .image-frame img {
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .header-call {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links a {
    font-size: 0.94rem;
  }

  .nav-cta {
    margin-left: 6px;
    padding-inline: 16px !important;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-block: 140px 82px;
  }

  h1 {
    font-size: 5.35rem;
  }

  h2 {
    font-size: 3rem;
  }

  .split,
  .review-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 56px;
  }

  .contact-layout {
    align-items: start;
    column-gap: 56px;
    row-gap: 24px;
  }

  .contact .contact-content {
    display: contents;
  }

  .contact .contact-intro {
    grid-column: 1;
    grid-row: 1;
  }

  .contact .contact-card {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
  }

  .contact .contact-actions {
    grid-column: 1;
    grid-row: 3;
  }

  .contact .map-frame {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
    min-height: 0;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 420px;
  }

  .contact .map-frame iframe {
    min-height: 0;
  }

  .split.reverse {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  }

  .service-groups {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: stretch;
  }

  .service-group-main {
    grid-row: span 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 679px) {
  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .page-hero-inner {
    padding-block: 46px 38px;
  }

  .portrait-frame-small {
    max-width: 150px;
  }

  .note-grid {
    width: 100%;
  }

  .note-grid div {
    padding-inline: 14px;
  }

  .reviews .button {
    width: 100%;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .nav {
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    max-width: 108px;
    white-space: normal;
    line-height: 1.15;
  }

  .header-call {
    padding-inline: 12px;
  }

  .hero {
    min-height: 535px;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .section-pad {
    padding-block: 50px;
  }

  .price-category dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 11px 14px;
  }

  .price-category dd {
    white-space: normal;
  }

  .service-group,
  .details-panel,
  .contact-card {
    padding: 22px;
  }
}

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