@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");

@font-face {
  font-family: "Afrah";
  src: url("../assets/fonts/Afrah-Regular.woff2") format("woff2");
  font-display: swap;
}

:root {
  --deep-teal: #2f4a52;
  --sage-green: #5f7f76;
  --succulent: #8fae99;
  --soft-sage: #c7d6c9;
  --warm-white: #f6f4ee;
  --stone: #d9d2c6;
  --charcoal: #3b3e3e;
  --white: #ffffff;
  --border: rgba(47, 74, 82, 0.18);
  --shadow: 0 22px 55px rgba(47, 74, 82, 0.13);
  --font-display: "Afrah", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Montserrat", Arial, sans-serif;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
.display-type {
  color: var(--deep-teal);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.25rem, 7vw, 6.75rem);
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.45rem, 4.7vw, 4.6rem);
}

h3 {
  color: var(--deep-teal);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--succulent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--deep-teal);
  font-weight: 600;
}

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

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section-small {
  padding-block: clamp(3.75rem, 7vw, 6rem);
}

.surface-white {
  background: var(--white);
}

.surface-sage {
  background: var(--soft-sage);
}

.surface-stone {
  background: var(--stone);
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--deep-teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cta-panel .eyebrow,
.page-hero .eyebrow {
  color: var(--soft-sage);
}

.lead {
  max-width: 44rem;
  color: var(--deep-teal);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.65;
}

.body-copy {
  max-width: 44rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--deep-teal);
  background: var(--deep-teal);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--sage-green);
  border-color: var(--sage-green);
  transform: translateY(-2px);
}

.button-outline {
  background: transparent;
  color: var(--deep-teal);
}

.button-outline:hover {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
  color: var(--white);
}

.button-light {
  border-color: var(--warm-white);
  background: var(--warm-white);
  color: var(--deep-teal);
}

.button-light-outline {
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
  color: var(--white);
}

.button-light-outline:hover {
  border-color: var(--warm-white);
  background: var(--warm-white);
  color: var(--deep-teal);
}

.utility-bar {
  padding: 0.48rem 1rem;
  background: var(--deep-teal);
  color: var(--white);
  font-size: 0.69rem;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.utility-bar a {
  text-underline-offset: 0.22em;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(246, 244, 238, 0.97);
  border-bottom: 1px solid var(--border);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 28px rgba(47, 74, 82, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 94px;
  align-items: center;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  color: var(--deep-teal);
  line-height: 0.92;
  text-decoration: none;
}

.wordmark-main {
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 400;
}

.wordmark-byline {
  margin-top: 0.52rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  color: var(--deep-teal);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--sage-green);
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-book {
  min-height: 2.8rem;
  padding: 0.75rem 1.2rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--deep-teal);
  background: transparent;
  color: var(--deep-teal);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -6px;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 6px;
}

.home-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 124px));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep-teal);
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../assets/images/succulent-texture.jpg") center 42% / cover;
  content: "";
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.025);
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 45, 53, 0.56), rgba(20, 45, 53, 0.76)),
    radial-gradient(circle at center, transparent 0%, rgba(26, 52, 59, 0.28) 70%);
  content: "";
}

.hero-content {
  width: min(100% - 2.5rem, 900px);
  padding-block: 6.5rem;
  text-align: center;
}

.hero-wordmark {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 2.25rem;
}

.hero-wordmark .wordmark-main {
  color: var(--white);
  font-size: clamp(5.6rem, 14vw, 10.5rem);
  line-height: 0.78;
}

.hero-wordmark .wordmark-byline {
  margin-top: 1.2rem;
  color: var(--white);
  font-size: clamp(0.7rem, 1.3vw, 0.95rem);
  letter-spacing: 0.32em;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 0 2.2rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-location::before,
.hero-location::after {
  width: min(18vw, 160px);
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
  content: "";
}

.hero-content .button-row {
  justify-content: center;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.split-section.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-media::after {
  position: absolute;
  z-index: -1;
  right: -1.25rem;
  bottom: -1.25rem;
  width: 62%;
  height: 52%;
  background: var(--soft-sage);
  content: "";
}

.split-media.image-contain {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

.split-media.image-contain img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.split-content {
  max-width: 34rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3.25rem;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.25rem);
  background: var(--white);
}

.service-number {
  margin-bottom: auto;
  color: var(--sage-green);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.service-card h3 {
  margin: 5.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.service-card a {
  align-self: flex-start;
  margin-top: 1rem;
  color: var(--deep-teal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--deep-teal);
  color: var(--white);
}

.feature-item {
  padding: clamp(2.2rem, 5vw, 4rem);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--warm-white);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
}

.feature-item span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-details {
  padding: clamp(2.5rem, 6vw, 5.5rem);
}

.location-details address {
  margin-bottom: 1.5rem;
  font-style: normal;
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a {
  color: var(--deep-teal);
  text-underline-offset: 0.25em;
}

.map-wrap {
  min-height: 440px;
}

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

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 8rem) 1.25rem;
  background: var(--deep-teal);
  color: var(--white);
  text-align: center;
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  width: clamp(12rem, 26vw, 23rem);
  aspect-ratio: 1;
  border: 1px solid rgba(199, 214, 201, 0.2);
  border-radius: 50%;
  content: "";
}

.cta-panel::before {
  top: -7rem;
  left: -5rem;
}

.cta-panel::after {
  right: -5rem;
  bottom: -9rem;
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 13ch;
  margin-inline: auto;
  color: var(--warm-white);
}

.cta-panel p {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-inline: auto;
}

.cta-panel .button-row {
  position: relative;
  z-index: 1;
  justify-content: center;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep-teal);
  color: var(--white);
  text-align: center;
}

.page-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../assets/images/succulent-texture.jpg") center 48% / cover;
  content: "";
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(31, 60, 68, 0.75);
  content: "";
}

.page-hero-inner {
  width: min(100% - 2.5rem, 780px);
  padding-block: 5rem;
}

.page-hero h1 {
  margin-bottom: 0.8rem;
  color: var(--white);
}

.page-hero p {
  margin-bottom: 0;
  font-size: 0.76rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.aside-card {
  position: sticky;
  top: 8.5rem;
  padding: 2.2rem;
  background: var(--soft-sage);
}

.aside-card h3 {
  margin-bottom: 1.2rem;
}

.aside-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-stack {
  display: grid;
  gap: 3.5rem;
}

.content-stack section:not(:last-child) {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.services-intro {
  padding-bottom: 0.5rem;
}

.service-menu-section {
  scroll-margin-top: 9rem;
}

.service-list {
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.service-item span {
  color: var(--charcoal);
  line-height: 1.45;
}

.service-item strong {
  color: var(--deep-teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.price-note {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--sage-green);
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-slot {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(47, 74, 82, 0.78), rgba(143, 174, 153, 0.55)),
    url("../assets/images/succulent-texture.jpg") center / cover;
}

.gallery-slot:nth-child(2),
.gallery-slot:nth-child(5) {
  grid-column: span 8;
}

.gallery-slot:nth-child(4) {
  min-height: 470px;
}

.gallery-label {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.35rem;
  background: rgba(47, 74, 82, 0.78);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.review-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--border);
}

.review-card blockquote {
  margin: 0 0 2rem;
  color: var(--deep-teal);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.4;
}

.review-card cite {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.empty-state {
  padding: clamp(3rem, 7vw, 6rem);
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
}

.empty-state p {
  max-width: 40rem;
  margin-inline: auto;
}

.policy-list {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.policy-item {
  padding: clamp(2rem, 4vw, 3.25rem);
  background: var(--white);
}

.site-footer {
  padding: 4.5rem 0 2rem;
  background: #263f46;
  color: var(--warm-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-wordmark {
  color: var(--warm-white);
}

.footer-wordmark .wordmark-main {
  color: var(--warm-white);
  font-size: 3rem;
}

.footer-heading {
  margin-bottom: 1.2rem;
  color: var(--soft-sage);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  color: var(--warm-white);
  text-underline-offset: 0.25em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 420px);
    transform: translateX(105%);
    padding: 7rem 2.5rem 3rem;
    background: var(--warm-white);
    box-shadow: -20px 0 50px rgba(47, 74, 82, 0.18);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .main-nav a:not(.button) {
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 110;
    display: inline-flex;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .header-book {
    display: none;
  }
}

@media (max-width: 800px) {
  .header-inner {
    min-height: 82px;
  }

  .wordmark-main {
    font-size: 1.75rem;
  }

  .wordmark-byline {
    font-size: 0.55rem;
  }

  .home-hero {
    min-height: 650px;
  }

  .hero-wordmark .wordmark-main {
    font-size: clamp(5rem, 25vw, 7rem);
  }

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

  .split-section.reverse .split-media {
    order: 0;
  }

  .split-content {
    max-width: none;
  }

  .service-grid,
  .review-grid,
  .feature-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 19rem;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .aside-card {
    position: static;
  }

  .gallery-slot,
  .gallery-slot:nth-child(2),
  .gallery-slot:nth-child(4),
  .gallery-slot:nth-child(5) {
    grid-column: span 12;
    min-height: 330px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .service-item strong {
    text-align: left;
  }

  .utility-bar {
    font-size: 0.61rem;
    letter-spacing: 0.09em;
  }

  .hero-location {
    gap: 0.7rem;
    letter-spacing: 0.15em;
  }

  .hero-location::before,
  .hero-location::after {
    width: 2rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.reviews-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.review-summary {
  max-width: 620px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.review-summary strong {
  display: block;
  margin: 0.5rem 0 0.25rem;
  color: var(--deep-teal);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.review-summary p {
  margin-bottom: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-stars {
  display: block;
  color: var(--sage-green);
  font-size: 1.2rem;
  letter-spacing: 0.25em;
}

.review-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.review-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.review-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.review-photo:hover img {
  transform: scale(1.025);
}

.review-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 1.25rem;
  background: rgba(47, 74, 82, 0.82);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.review-card cite span {
  display: block;
  margin-bottom: 0.35rem;
}

.review-platform {
  color: var(--sage-green);
  font-size: 0.65rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
}

.review-source-links {
  margin-top: 3rem;
  text-align: center;
}

.review-source-links .button-row {
  justify-content: center;
}

@media (max-width: 800px) {
  .review-photo-grid {
    grid-template-columns: 1fr;
  }

  .review-photo img {
    aspect-ratio: 4 / 3;
  }
}

/* Real gallery layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 105px;
  gap: 1rem;
  margin-top: 2.75rem;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--soft-sage);
}

.gallery-card--wide {
  grid-column: span 8;
  grid-row: span 4;
}

.gallery-card--tall {
  grid-row: span 5;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card--compare img {
  object-fit: contain;
  background: var(--white);
}

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(
    to top,
    rgba(30, 48, 53, 0.82),
    rgba(30, 48, 53, 0)
  );
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .gallery-card,
  .gallery-card--tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-card--wide {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .gallery-card--compare {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--tall {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-card--compare {
    aspect-ratio: 1 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card img {
    transition: none;
  }

  .gallery-card:hover img {
    transform: none;
  }
}
.gallery-title {
  max-width: 100%;
  font-size: clamp(2.5rem, 3.6vw, 4.5rem);
  line-height: 1.05;
  text-wrap: balance;
}

@media (max-width: 560px) {
  .gallery-title {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }
}

/* Custom photo proportions */

.split-media.split-media--landscape,
.split-media.danielle-portrait {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.split-media.split-media--landscape img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
}

.split-media.danielle-portrait img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

.business-hours {
  margin: 1.75rem 0;
}

.business-hours h3 {
  margin-bottom: 0.75rem;
}

.hours-list {
  max-width: 28rem;
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(47, 74, 82, 0.15);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dd {
  text-align: right;
}

.hours-note {
  max-width: 28rem;
  margin-top: 0.85rem;
  font-size: 0.85rem;
}

.services-feature-image {
  margin: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.services-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}