:root {
  --accent: #d50812;
  --accent-dark: #a90008;
  --ink: #141414;
  --muted: #68625e;
  --line: #e8e2dc;
  --soft: #f8f4f0;
  --warm: #f0e7df;
  --shadow: 0 18px 45px rgba(22, 18, 16, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  line-height: 1.7;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 230px 1fr 300px;
  align-items: center;
  min-height: 132px;
  padding: 8px clamp(22px, 5vw, 82px);
  color: #fff;
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand img,
.footer-logo img {
  width: 188px;
  height: 92px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.86;
}

.brand-text span {
  font-size: 35px;
  letter-spacing: 0;
}

.brand-text small {
  margin-top: 8px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.footer-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.instagram-link:hover,
.footer-instagram:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.instagram-link,
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.instagram-link span:first-child,
.footer-instagram span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: #fff;
  background: #111;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(213, 8, 18, 0.18);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.75);
}

.menu-toggle {
  display: none;
}

.section,
.section-split {
  scroll-margin-top: 146px;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.hero {
  min-height: calc(100vh - 132px);
  background:
    radial-gradient(circle at 78% 12%, rgba(217, 182, 160, 0.24), transparent 32%),
    linear-gradient(90deg, #fff 0%, #fff 54%, #f4ebe4 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 9vw, 126px) clamp(24px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(58px, 7vw, 112px);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 58px);
}

.hero-subtext {
  margin-bottom: 34px;
  color: #272320;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 10% 8% 8% 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(239, 219, 204, 0.8));
  border-radius: 52% 48% 0 0;
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

.about {
  background: #fff;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
  padding: clamp(58px, 8vw, 110px) clamp(28px, 8vw, 105px);
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.section {
  padding: clamp(72px, 8vw, 118px) clamp(22px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  grid-column: span 3;
  min-height: 366px;
  padding: 12px 12px 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:nth-child(-n + 3) {
  grid-column: span 4;
}

.service-card:hover {
  border-color: rgba(213, 8, 18, 0.2);
  box-shadow: 0 22px 55px rgba(22, 18, 16, 0.12);
  transform: translateY(-6px);
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--soft);
  border: 0;
  font: inherit;
}

.image-button::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(20, 20, 20, 0.34);
  content: "View";
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 220ms ease;
}

.image-button:hover::after,
.image-button:focus-visible::after {
  opacity: 1;
}

.image-button:hover img,
.image-button:focus-visible img {
  transform: scale(1.06);
}

.image-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.service-card .image-button {
  aspect-ratio: 4 / 3;
}

.image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.service-card h3 {
  min-height: 48px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.3;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-grid-text {
  max-width: 1080px;
}

.service-card-text {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
}

.service-card-text h3 {
  min-height: auto;
  margin-bottom: 14px;
  font-size: 18px;
}

.service-card-text p {
  font-size: 14px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.gallery {
  background: linear-gradient(180deg, #fff 0%, #fbf8f5 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.gallery-grid figure {
  min-height: 330px;
  margin: 0;
  background: var(--soft);
  overflow: hidden;
}

.gallery-grid .image-button {
  width: 100%;
  height: 100%;
  margin: 0;
}

.gallery-grid img {
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(12, 10, 9, 0);
  backdrop-filter: blur(0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease, background 320ms ease, backdrop-filter 320ms ease;
}

.lightbox.is-open {
  background: rgba(12, 10, 9, 0.78);
  backdrop-filter: blur(10px);
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  max-width: min(86vw, 920px);
  max-height: 86vh;
  opacity: 0;
  text-align: center;
  transform: translateY(28px) scale(0.9);
  transition: opacity 360ms ease, transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-open .lightbox-frame {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox-frame img {
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  transform-origin: center;
}

.lightbox.is-open .lightbox-frame img {
  animation: soft-pop 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lightbox-frame p {
  margin: 14px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 34px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 150ms;
}

@keyframes soft-pop {
  0% {
    filter: blur(8px);
    opacity: 0;
    transform: scale(0.86);
  }

  70% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.018);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}

.reviews {
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: center;
  padding: 38px 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.stars {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 17px;
  letter-spacing: 0.16em;
}

.review-card p {
  color: #3e3935;
  font-size: 15px;
}

.review-card h3 {
  margin: auto 0 0;
  font-size: 15px;
}

.access {
  display: grid;
  grid-template-columns: 1.08fr 0.66fr 0.92fr;
  min-height: 520px;
  scroll-margin-top: 110px;
  background: #fff;
}

.map-panel img,
.map-panel iframe,
.access-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.map-panel img,
.map-panel iframe,
.access-photo img {
  object-fit: cover;
}

.map-panel iframe {
  display: block;
  border: 0;
}

.access-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px clamp(26px, 4vw, 52px);
  background: #fff;
}

.access-card h2 {
  margin-bottom: 18px;
}

address {
  margin-bottom: 22px;
  color: var(--muted);
  font-style: normal;
}

.hours {
  margin: 0 0 26px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #272320;
  font-size: 15px;
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  margin: 0;
}

.access-actions {
  display: grid;
  gap: 12px;
}

.access-actions .btn {
  width: 100%;
}

.site-footer {
  color: #fff;
  background: #090909;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 38px clamp(24px, 8vw, 140px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 8px 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-instagram {
  justify-self: end;
}

.menu-hero {
  padding: clamp(76px, 10vw, 126px) clamp(24px, 8vw, 140px) clamp(54px, 8vw, 86px);
  background:
    radial-gradient(circle at 82% 0%, rgba(213, 8, 18, 0.12), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fbf7f3 100%);
}

.menu-hero h1 {
  margin-bottom: 24px;
}

.menu-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 30px;
  color: #272320;
  font-size: 18px;
  line-height: 1.65;
}

.menu-section {
  background: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.price-card,
.menu-disclaimer {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.price-card h2,
.menu-disclaimer h2 {
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.price-card-intro,
.menu-note,
.menu-disclaimer p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.price-card-intro {
  margin-bottom: 18px;
}

.menu-note {
  margin: 18px 0 0;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232, 226, 220, 0.75);
}

.price-list dt {
  color: #272320;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.price-list dd {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-disclaimer {
  max-width: 960px;
  margin: 34px auto 0;
  background: var(--soft);
}

.menu-disclaimer p:last-child {
  margin-bottom: 0;
}

.copyright {
  margin: 0;
  padding: 13px 20px;
  color: #8f8a86;
  background: #050505;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 190px 1fr 250px;
  }

  .instagram-link span:last-child {
    display: none;
  }

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

  .service-card,
  .service-card:nth-child(-n + 3) {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 104px;
    padding: 12px 20px;
  }

  .brand img {
    width: 148px;
    height: 72px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

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

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0 14px;
  }

  .header-actions {
    align-items: stretch;
    justify-content: flex-start;
    padding-bottom: 18px;
  }

  .instagram-link span:last-child {
    display: inline;
  }

  .section-split,
  .access {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, #fff 0%, #f7eee8 100%);
  }

  .hero-copy {
    padding: 58px 24px 36px;
  }

  .hero-visual,
  .about-photo img,
  .map-panel img,
  .map-panel iframe,
  .access-photo img {
    min-height: 430px;
  }

  .about-photo {
    order: 2;
  }

  .section-copy {
    padding: 64px 24px;
  }

  .section {
    padding: 68px 20px;
  }

  .service-grid,
  .gallery-grid,
  .review-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid figure {
    min-height: 390px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-logo img {
    object-position: center;
  }

  .footer-instagram {
    justify-self: center;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .button-row,
  .header-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual,
  .about-photo img,
  .map-panel img,
  .map-panel iframe,
  .access-photo img {
    min-height: 340px;
  }

  .gallery-grid figure {
    min-height: 320px;
  }

  .review-card {
    padding: 32px 24px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.site-header .site-nav a,
.site-header .instagram-link {
  color: #fff;
}

.site-header .instagram-link span:first-child {
  color: #090909;
  background: #fff;
}

.site-header .menu-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.site-footer .footer-nav a,
.site-footer .footer-instagram {
  color: #fff;
}

.site-footer .footer-instagram span:first-child {
  color: #090909;
  background: #fff;
}


/* Refined salon menu cards */
.instagram-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-header .instagram-link .instagram-icon,
.site-footer .footer-instagram .instagram-icon {
  filter: none;
}

.services {
  background:
    linear-gradient(180deg, #fff 0%, #fff8f6 48%, #fff 100%);
}

.service-grid-text {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  justify-content: center;
  max-width: 1060px;
  counter-reset: service-card;
}

.service-grid-text .service-card,
.service-grid-text .service-card:nth-child(-n + 3) {
  grid-column: auto;
}

.service-card-text {
  position: relative;
  min-height: 248px;
  padding: 42px 34px 36px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 244, 0.9)),
    radial-gradient(circle at 86% 12%, rgba(213, 8, 18, 0.12), transparent 34%);
  border: 1px solid rgba(220, 205, 196, 0.95);
  box-shadow: 0 24px 64px rgba(35, 24, 20, 0.09);
  counter-increment: service-card;
}

.service-card-text::before {
  position: absolute;
  top: 24px;
  left: 28px;
  color: rgba(213, 8, 18, 0.28);
  content: counter(service-card, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

.service-card-text::after {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 72px;
  height: 1px;
  background: rgba(213, 8, 18, 0.34);
  content: "";
}

.service-card-text h3 {
  position: relative;
  margin: 26px 0 16px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.05;
}

.service-card-text p {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  color: #5f5752;
  font-size: 14px;
  line-height: 1.75;
}

.price-grid {
  align-items: stretch;
  gap: 28px;
}

.price-card,
.menu-disclaimer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 245, 0.92)),
    radial-gradient(circle at 92% 0%, rgba(213, 8, 18, 0.11), transparent 30%);
  border: 1px solid rgba(220, 205, 196, 0.95);
  box-shadow: 0 24px 70px rgba(35, 24, 20, 0.08);
}

.price-card {
  padding: 34px 34px 32px;
}

.price-card::before,
.menu-disclaimer::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), rgba(213, 8, 18, 0.12));
  content: "";
}

.price-card h2,
.menu-disclaimer h2 {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 22px;
  color: #191615;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.price-card h2::after,
.menu-disclaimer h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.price-card-intro,
.menu-note,
.menu-disclaimer p {
  color: #655d57;
  font-size: 14px;
}

.price-list {
  gap: 0;
}

.price-list div {
  padding: 13px 0;
  border-bottom: 1px solid rgba(222, 211, 204, 0.86);
}

.price-list dt {
  color: #24201e;
  font-size: 15px;
  font-weight: 700;
}

.price-list dd {
  color: var(--accent);
  font-size: 15px;
}

.menu-disclaimer {
  padding: 34px 38px;
}

@media (max-width: 1180px) {
  .service-grid-text {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  .service-grid-text,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .service-card-text {
    min-height: 220px;
  }

  .price-card h2,
  .menu-disclaimer h2 {
    font-size: 24px;
  }
}
