:root {
  --ivory: #ffffff;
  --porcelain: #ffffff;
  --linen: #f7efe6;
  --beige: #eee2d5;
  --latte: #c8aa91;
  --champagne: #d1a263;
  --bronze: #ad7a45;
  --olive: #6f7658;
  --black: #0f0d0b;
  --mink: #72513b;
  --espresso: #2c1f19;
  --ink: #211d1a;
  --muted: #6f625a;
  --white: #ffffff;
  --line: rgba(173, 122, 69, 0.22);
  --shadow: 0 24px 70px rgba(44, 31, 25, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  padding: 8px clamp(18px, 5vw, 56px);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  transition: background 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(18px);
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(47, 36, 31, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 16vw, 235px);
  height: 88px;
}

.brand img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--mink);
  font-size: 0.86rem;
  font-weight: 300;
}

.site-nav a:hover {
  color: var(--espresso);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 500;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--olive);
  box-shadow: 0 14px 28px rgba(111, 118, 88, 0.22);
}

.header-cta:hover,
.button.primary:hover {
  background: #5e664b;
  border-color: rgba(209, 162, 99, 0.38);
}

.button.secondary,
.button.quiet {
  color: var(--espresso);
  border-color: rgba(209, 162, 99, 0.45);
  background: rgba(255, 255, 255, 0.7);
}

.button.full {
  width: 100%;
}

.text-link {
  color: var(--espresso);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 144px clamp(18px, 5vw, 64px) 80px;
  color: var(--espresso);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-image.hero-woman {
  object-position: 78% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.36) 72%, rgba(255, 255, 255, 0.12)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(820px, 100%);
}

.hero-logo {
  width: min(350px, 78vw);
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 300;
  line-height: 1;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  padding-top: 0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.78rem;
  font-weight: 300;
  line-height: 1.05;
}

.hero-copy {
  max-width: 620px;
  color: var(--mink);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.hero-actions,
.laser-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

section {
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 64px);
}

.band {
  background: var(--white);
}

.showcase {
  background: var(--white);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.showcase + .services {
  padding-top: clamp(36px, 5vw, 66px);
}

.showcase-copy {
  max-width: 760px;
  margin-bottom: 38px;
}

.showcase-copy p {
  max-width: 540px;
  color: var(--muted);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(220px, 22vw);
  gap: 16px;
}

.showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.showcase-grid img:first-child {
  grid-row: span 2;
}

.showcase-grid img:nth-child(4) {
  grid-column: span 2;
}

.page-hero {
  padding-top: clamp(148px, 18vw, 210px);
  padding-bottom: clamp(70px, 9vw, 118px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.9)),
    var(--linen);
}

.page-hero.feature-page {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(251, 246, 239, 0.92)),
    var(--linen);
}

.page-hero p {
  max-width: 690px;
  color: var(--mink);
  font-size: 1.15rem;
}

.section-grid,
.approach,
.booking,
.visit,
.laser-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.section-grid > *,
.approach > *,
.booking > *,
.visit > *,
.laser-feature > * {
  min-width: 0;
}

.section-grid p,
.approach-copy p,
.booking > div > p,
.visit > div > p,
.laser-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.about-copy p {
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(38px, 6vw, 72px);
}

.values-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #fff8ef);
  box-shadow: inset 4px 0 0 rgba(111, 118, 88, 0.22);
}

.values-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 500;
}

.values-grid p {
  color: var(--muted);
}

.provider-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 0.78fr);
  gap: 28px;
  align-items: center;
  margin-top: clamp(38px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8ef, #ffffff);
}

.provider-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.provider-panel > div {
  padding: clamp(28px, 4vw, 58px);
}

.provider-panel p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.laser-cards article,
.menu-card,
.steps div,
.booking-panel,
.visit-details {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.image-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 13, 11, 0.74), rgba(44, 31, 25, 0.44) 54%, rgba(111, 118, 88, 0.36)),
    var(--card-image);
  background-position: center;
  background-size: cover;
  border-color: rgba(209, 162, 99, 0.42);
}

.image-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(15, 13, 11, 0.78), rgba(15, 13, 11, 0.3) 56%, transparent 78%),
    radial-gradient(circle at top right, rgba(209, 162, 99, 0.28), transparent 34%);
}

.image-card h3,
.image-card p,
.image-card span {
  color: var(--white);
  text-shadow: 0 1px 16px rgba(15, 13, 11, 0.36);
}

.image-card p,
.learn-grid a.image-card span {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 18px rgba(15, 13, 11, 0.64);
}

.service-card.image-card p {
  color: rgba(255, 255, 255, 0.92);
}

.image-card span {
  color: #f1d4a7;
}

.service-card {
  min-height: 280px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.learn-grid a:hover {
  border-color: rgba(173, 122, 69, 0.46);
  box-shadow: 0 18px 44px rgba(44, 31, 25, 0.08);
  transform: translateY(-2px);
}

.service-card span,
.steps span,
.laser-cards span {
  display: block;
  margin-bottom: 42px;
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card p,
.laser-cards p,
.approach p,
.booking p,
.visit p,
.site-footer p {
  color: var(--muted);
}

.laser-feature {
  background: linear-gradient(135deg, #ffffff, var(--linen) 58%, #ffffff);
}

.laser-cards {
  display: grid;
  gap: 16px;
}

.feature-image {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.laser-cards article:first-child {
  background: var(--espresso);
}

.laser-cards article:first-child h3,
.laser-cards article:first-child p {
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-grid.slim {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}

.menu-card {
  background: var(--ivory);
}

.menu-card.highlight {
  background: #fff8ef;
  border-color: rgba(166, 114, 67, 0.3);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.learn-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff8ef;
}

.learn-feature img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.learn-feature > div {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 54px);
}

.learn-feature h3 {
  max-width: 580px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.learn-feature p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.learn-grid a {
  display: grid;
  align-content: space-between;
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.05;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.learn-grid a.image-card {
  min-height: 190px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 13, 11, 0.74), rgba(44, 31, 25, 0.44) 54%, rgba(111, 118, 88, 0.36)),
    var(--card-image);
  background-position: center;
  background-size: cover;
  border-color: rgba(209, 162, 99, 0.42);
}

.learn-grid span {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
}

.learn-grid a.image-card span {
  color: rgba(255, 255, 255, 0.92);
}

.education-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.education-copy {
  display: grid;
  gap: 28px;
}

.education-copy article {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.education-copy article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.education-copy p,
.education-aside p,
.source-note {
  color: var(--muted);
}

.education-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.education-media img {
  width: 100%;
  height: clamp(260px, 32vw, 460px);
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.education-media img:nth-child(2) {
  height: clamp(220px, 28vw, 380px);
  align-self: end;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.detail-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.detail-card h4 {
  margin: 0 0 10px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.08;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
}

.patient-list,
.reference-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.reference-list a {
  color: var(--espresso);
  border-bottom: 1px solid rgba(173, 122, 69, 0.36);
}

.education-aside {
  position: sticky;
  top: 112px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ef;
  box-shadow: inset 4px 0 0 rgba(111, 118, 88, 0.22);
}

.education-aside ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.source-note {
  margin-top: 22px;
  font-size: 0.9rem;
}

.testimonial-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid article,
.resource-grid a,
.faq-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #fff8ef);
  box-shadow: inset 4px 0 0 rgba(111, 118, 88, 0.22);
}

.testimonial-grid p {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.1;
}

.testimonial-grid span,
.resource-grid span {
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.goal-grid,
.first-visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.goal-grid a,
.first-visit-grid article {
  display: grid;
  gap: 18px;
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #fff8ef);
  box-shadow: inset 4px 0 0 rgba(111, 118, 88, 0.22);
}

.goal-grid a:hover {
  border-color: rgba(173, 122, 69, 0.46);
  transform: translateY(-2px);
}

.goal-grid span,
.first-visit-grid span {
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.goal-grid strong {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.first-visit-grid p {
  color: var(--muted);
}

.resource-grid p,
.faq-list p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.legal-content {
  max-width: 860px;
  color: var(--muted);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  max-width: 720px;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(117, 102, 93, 0.15);
}

dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

dt {
  color: var(--mink);
}

dd {
  margin: 0;
  color: var(--espresso);
  font-weight: 500;
  text-align: right;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div,
.booking-panel {
  background: linear-gradient(135deg, #fff8ef, rgba(247, 239, 230, 0.82));
  box-shadow: inset 4px 0 0 rgba(111, 118, 88, 0.28);
}

.steps p,
.booking-panel p {
  margin: 10px 0 0;
}

.visit {
  background: var(--linen);
}

.visit-details {
  background: rgba(255, 255, 255, 0.58);
}

.visit-stack {
  display: grid;
  gap: 16px;
  min-width: 0;
  justify-self: end;
  width: 100%;
  max-width: 620px;
}

.visit-details p {
  margin-bottom: 14px;
}

.visit-details p:last-child {
  margin-bottom: 0;
}

.visit-details strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  width: 100%;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: var(--espresso);
  border-top: 1px solid var(--line);
  background: #fff8ef;
  font-weight: 500;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  background: var(--olive);
}

.site-footer img {
  width: 180px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .learn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid,
  .testimonial-grid,
  .resource-grid,
  .faq-list,
  .goal-grid,
  .first-visit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    justify-items: start;
    gap: 0;
    padding: 16px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 4px;
  }

  .hero {
    min-height: 820px;
    align-items: start;
  }

  .section-grid,
  .approach,
  .booking,
  .visit,
  .laser-feature,
  .education-grid,
  .provider-panel {
    grid-template-columns: 1fr;
  }

  .education-media,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .education-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .brand {
    width: 158px;
    height: 72px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.72rem, 12vw, 3.28rem);
    line-height: 1.03;
  }

  h2 {
    max-width: 11ch;
    font-size: 2.62rem;
  }

  .hero {
    min-height: 780px;
    padding-top: 126px;
  }

  .hero-image.hero-woman {
    object-position: 72% center;
  }

  .hero-content,
  .page-hero p {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .hero-copy,
  .section-grid p,
  .approach-copy p,
  .booking > div > p,
  .visit > div > p,
  .laser-copy p {
    max-width: 31ch;
  }

  .hero-logo {
    width: min(285px, 84vw);
  }

  .hero-actions,
  .laser-actions,
  .section-actions,
  .site-footer {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .service-grid,
  .menu-grid,
  .menu-grid.slim,
  .learn-grid,
  .showcase-grid,
  .learn-feature {
    grid-template-columns: 1fr;
  }

  .learn-feature img {
    min-height: 280px;
  }

  .showcase-grid {
    grid-auto-rows: 280px;
  }

  .showcase-grid img:first-child {
    grid-row: auto;
  }

  .showcase-grid img:nth-child(4) {
    grid-column: auto;
  }

  .service-card {
    min-height: 230px;
  }

  .service-card span {
    margin-bottom: 28px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  dd {
    text-align: left;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-copy {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
