:root {
  --ink: #21191a;
  --muted: #6c5d5c;
  --black: #090909;
  --cream: #fff8f5;
  --surface: #fffdfc;
  --rose: #c87370;
  --rose-dark: #9c514f;
  --rose-soft: #f7e5e1;
  --gold: #c68c38;
  --line: #ead4cf;
  --shadow: 0 20px 48px rgba(96, 54, 53, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--sans);
  line-height: 1.6;
}

body.is-menu-open {
  overflow: hidden;
}

main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.16;
}

.section {
  padding: 104px 24px;
}

.section__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--rose);
  border-radius: 6px;
  padding: 13px 20px;
  color: #fff;
  background: var(--rose);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--rose-dark);
  background: var(--rose-dark);
  box-shadow: 0 10px 24px rgba(156, 81, 79, 0.22);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button--ghost {
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.68);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: #fff;
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  border-color: #000;
  background: #000;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  background: var(--black);
}

.site-header__inner {
  display: flex;
  width: min(100%, 1536px);
  min-height: 78px;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: #fff;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--rose);
}

.brand__mark svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.3;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 6px;
  color: #d6b6b1;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--rose);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.button--header {
  min-height: 46px;
  margin-left: 10px;
  font-size: 0.74rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  border-radius: 3px;
  background: var(--rose);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  display: grid;
  grid-column: 1 / -1;
  min-height: 372px;
  align-items: center;
  order: 1;
  padding: 28px 24px 30px;
  background:
    linear-gradient(90deg, rgba(255, 249, 247, 0.99) 0%, rgba(255, 249, 247, 0.94) 30%, rgba(255, 249, 247, 0.48) 55%, rgba(255, 249, 247, 0.05) 100%),
    url("../images/demo-salao-beleza-hero-desktop.webp") center center / cover no-repeat;
}

.hero__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 14px;
  font-size: clamp(2.85rem, 3.75vw, 4.25rem);
}

.hero h1 em {
  color: var(--rose);
  font-style: normal;
}

.hero__copy {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

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

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

.section-heading p:last-child,
.about__content > p,
.appointment__intro > p,
.testimonials__grid > div:first-child > p:last-child {
  color: var(--muted);
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading--split > p {
  max-width: 480px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 8px 16px;
  color: var(--rose-dark);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--rose);
  color: #fff;
  background: var(--rose);
}

.services {
  grid-column: 1 / -1;
  order: 2;
  padding: 10px 24px 14px;
  background: var(--cream);
}

.services .section__inner {
  width: min(100%, 1536px);
}

.services .section-heading {
  display: none;
}

.services .section-heading .eyebrow,
.services .section-heading p:last-child {
  display: none;
}

.services .section-heading h2 {
  margin: 0;
  color: var(--rose-dark);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.services .section-heading h2::before,
.services .section-heading h2::after {
  display: inline-block;
  width: 46px;
  height: 1px;
  margin: 0 14px 5px;
  background: var(--gold);
  content: "";
}

.services .filter-row {
  display: none;
}

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

.service-card {
  display: grid;
  min-height: 136px;
  grid-template-columns: minmax(96px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(103, 60, 58, 0.07);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card[hidden],
.gallery-item[hidden] {
  display: none;
}

.service-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.service-card__body {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-content: center;
  column-gap: 8px;
  padding: 11px 12px;
}

.service-card__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
}

.service-card__icon svg {
  width: 16px;
}

.service-card h3 {
  align-self: center;
  margin: 0;
  font-size: 1.02rem;
}

.service-card p {
  grid-column: 1 / -1;
  min-height: 42px;
  margin: 7px 0 6px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.service-card .text-link {
  grid-column: 1 / -1;
  font-size: 0.64rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  color: var(--rose-dark);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link svg {
  width: 16px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.about {
  grid-column: 1 / -1;
  order: 5;
  background: #fff;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 72px;
}

.about__image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about__image img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}

.about__content {
  max-width: 640px;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.feature-list svg {
  width: 18px;
  color: var(--rose);
}

.gallery {
  grid-column: 1;
  order: 3;
  padding: 24px 12px 34px 24px;
  background: var(--cream);
}

.gallery .section__inner {
  position: relative;
}

.gallery .section-heading {
  margin-bottom: 12px;
}

.gallery .section-heading--split {
  display: block;
}

.gallery .section-heading h2 {
  margin-bottom: 6px;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
}

.gallery .section-heading--split > p,
.gallery .filter-row {
  display: none;
}

.gallery-more {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--rose);
  border-radius: 4px;
  padding: 7px 12px;
  color: var(--rose-dark);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.gallery-more:hover,
.gallery-more:focus-visible {
  color: #fff;
  background: var(--rose);
  transform: translateY(-2px);
}

.gallery-more svg {
  width: 15px;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 150px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  padding: 0;
  background: #ead8d4;
}

.gallery-item--large {
  grid-row: auto;
  grid-column: auto;
}

.gallery-item--wide {
  display: none;
  grid-column: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease, transform 280ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.packages {
  grid-column: 1 / -1;
  order: 6;
  background: #fff;
}

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

.package-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--surface);
}

.package-card--featured {
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
}

.package-card__label {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 2.15rem;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 26px;
  padding-left: 20px;
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.testimonials {
  grid-column: 2;
  order: 4;
  padding: 24px 24px 34px 12px;
  background: var(--rose-soft);
}

.testimonials__grid {
  display: block;
}

.testimonials__grid > div:first-child > p:last-child {
  display: none;
}

.testimonials h2 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
}

.testimonial-panel {
  position: relative;
  min-height: 150px;
  border-radius: 8px;
  padding: 20px 72px 20px 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.testimonial {
  display: none;
}

.testimonial.is-active {
  display: block;
  animation: fade-in 320ms ease;
}

.testimonial p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.testimonial-controls {
  position: absolute;
  display: grid;
  gap: 8px;
  right: 22px;
  bottom: 22px;
}

.testimonial-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose-dark);
  background: #fff;
  transition: color 180ms ease, background 180ms ease;
}

.testimonial-controls button:hover {
  color: #fff;
  background: var(--rose);
}

.testimonial-controls svg {
  width: 18px;
}

.appointment {
  grid-column: 1 / -1;
  order: 7;
  color: #fff;
  background: var(--black);
}

.appointment__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
}

.appointment__intro {
  align-self: center;
}

.appointment__intro h2 {
  max-width: 520px;
}

.appointment__intro > p {
  max-width: 580px;
  color: #cdbfbd;
}

.appointment__contact {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: #e1d5d3;
  font-size: 0.9rem;
  font-weight: 700;
}

.appointment__contact span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.appointment__contact svg {
  width: 18px;
  color: var(--rose);
}

.appointment-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

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

.form-grid label {
  display: grid;
  gap: 6px;
}

.form-grid label span {
  color: #e1d5d3;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-grid__full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
}

select option {
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
  outline: 2px solid rgba(200, 115, 112, 0.26);
}

.appointment-form .button {
  margin-top: 18px;
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: #f0c6c3;
  font-weight: 700;
}

.form-message.is-success {
  color: #bfe6c9;
}

.denner-cta {
  grid-column: 1 / -1;
  order: 8;
  padding: 36px 24px;
  color: #fff;
  background: #151214;
}

.denner-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.denner-cta h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.site-footer {
  padding: 36px 24px;
  color: #e7dcda;
  background: #050505;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.site-footer p {
  margin: 0;
  color: #b9abaa;
  font-size: 0.86rem;
}

.site-footer__grid > a:last-child {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-modal {
  width: min(92vw, 980px);
  max-width: none;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.gallery-modal::backdrop {
  background: rgba(14, 8, 9, 0.78);
}

.gallery-modal img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.gallery-modal p {
  margin: 12px 4px 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-modal__close {
  position: absolute;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  top: 20px;
  right: 20px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  main {
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.68rem;
  }

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

  .service-card p {
    min-height: auto;
  }

  .gallery,
  .testimonials {
    grid-column: 1;
    padding-right: 24px;
    padding-left: 24px;
  }

  .gallery .section-heading--split {
    display: flex;
  }

  .gallery .section-heading--split > p,
  .gallery .filter-row {
    display: flex;
  }

  .gallery-more {
    position: static;
    margin-bottom: 18px;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
  }

  .gallery-item--large {
    grid-row: span 2;
    grid-column: span 2;
  }

  .gallery-item--wide {
    display: block;
    grid-column: span 2;
  }

  .testimonials__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 42px;
  }

  .testimonials__grid > div:first-child > p:last-child {
    display: block;
  }

  .testimonial-panel {
    min-height: 250px;
    padding: 34px 76px 64px 34px;
  }

  .testimonial p {
    font-size: 1.45rem;
  }

  .about__grid,
  .appointment__grid {
    gap: 42px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 74px;
  }

  .section {
    padding: 76px 18px;
  }

  .site-header__inner {
    min-height: 74px;
    padding: 0 18px;
  }

  .brand strong {
    font-size: 1.45rem;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__mark svg {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .site-nav {
    position: fixed;
    display: none;
    overflow-y: auto;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 18px;
    background: #0a0909;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 4px;
    font-size: 0.9rem;
  }

  .site-nav a::after {
    display: none;
  }

  .button--header {
    display: none;
  }

  .hero {
    min-height: 730px;
    align-items: end;
    padding: 58px 22px;
    background:
      linear-gradient(180deg, rgba(255, 249, 247, 0.13) 0%, rgba(255, 249, 247, 0.74) 45%, rgba(255, 249, 247, 0.99) 100%),
      url("../images/demo-salao-beleza-hero-mobile.webp") center top / cover no-repeat;
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(3rem, 10vw, 5.3rem);
  }

  .about__grid,
  .testimonials__grid,
  .appointment__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    display: block;
  }

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

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

  .package-card {
    min-height: auto;
  }

  .package-card--featured {
    transform: none;
  }

  .denner-cta__inner,
  .site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 16px;
  }

  .site-header__inner {
    padding: 0 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .brand__mark svg {
    width: 30px;
    height: 30px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .brand small {
    font-size: 0.46rem;
  }

  .hero {
    min-height: 690px;
    padding: 48px 18px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .hero__copy {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .gallery-grid {
    grid-auto-rows: 150px;
    gap: 8px;
  }

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--large {
    grid-row: span 2;
  }

  .testimonial-panel {
    min-height: 310px;
    padding: 30px 24px 74px;
  }

  .testimonial p {
    font-size: 1.45rem;
  }

  .testimonial-controls {
    right: 24px;
    bottom: 24px;
  }

  .appointment-form {
    padding: 20px;
  }

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

  .form-grid__full {
    grid-column: auto;
  }

  .denner-cta {
    padding: 30px 16px;
  }
}

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