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

:root {
  --ink: #17332b;
  --ink-deep: #0d211c;
  --paper: #f4efe5;
  --paper-soft: #fbf8f1;
  --sage: #dbe2d3;
  --clay: #ba684d;
  --gold: #c9a45d;
  --line: rgba(23, 51, 43, 0.18);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.announcement {
  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  color: var(--paper-soft);
  background: var(--clay);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 229, 0.96);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.wordmark {
  justify-self: start;
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.04em;
}

.wordmark span {
  color: var(--clay);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-book {
  justify-self: end;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-solid {
  color: var(--paper-soft);
  background: var(--ink);
}

.button-solid:hover {
  background: var(--ink-deep);
}

.button-light {
  border-color: var(--paper-soft);
  color: var(--ink);
  background: var(--paper-soft);
}

.button-ghost {
  border-color: rgba(251, 248, 241, 0.55);
  color: var(--paper-soft);
}

.button-clay {
  border-color: var(--clay);
  color: var(--paper-soft);
  background: var(--clay);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #e0bd7e;
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 7.4vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.display em {
  color: var(--clay);
  font-style: normal;
}

.lede {
  max-width: 36rem;
  margin: 28px 0 0;
  color: rgba(23, 51, 43, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.home-hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
}

.hero-copy {
  padding: clamp(80px, 10vw, 150px) max(7vw, 40px) 84px max(5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-portrait {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
}

.hero-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(transparent, rgba(13, 33, 28, 0.72));
}

.photo-note {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper-soft);
  font-size: 0.72rem;
}

.photo-note strong {
  max-width: 16rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.1;
}

.chapter-strip {
  color: var(--paper-soft);
  background: var(--ink);
}

.chapter-grid {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr 1fr;
}

.chapter-intro,
.chapter-link {
  min-height: 150px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chapter-intro {
  padding-left: 0;
  color: #e0bd7e;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chapter-link {
  border-left: 1px solid rgba(251, 248, 241, 0.18);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.chapter-link:hover {
  color: var(--ink);
  background: var(--sage);
}

.chapter-link span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.chapter-link strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.section {
  padding: clamp(84px, 10vw, 150px) max(5vw, 24px);
}

.section-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.page-title,
.cta-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.section-heading h2 {
  max-width: 780px;
  font-size: clamp(2.75rem, 5.8vw, 5.8rem);
}

.section-heading p {
  max-width: 34rem;
  margin: 0;
}

.services-index {
  counter-reset: services;
  border-top: 1px solid var(--line);
}

.service-row {
  counter-increment: services;
  display: grid;
  grid-template-columns: 80px minmax(180px, 0.7fr) 1fr;
  gap: 30px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-row::before {
  content: "0" counter(services);
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 400;
}

.service-row p {
  max-width: 36rem;
  margin: 0;
  color: rgba(23, 51, 43, 0.72);
}

.feature-section {
  color: var(--paper-soft);
  background: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.feature-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.feature-copy p {
  max-width: 34rem;
  color: rgba(251, 248, 241, 0.75);
}

.feature-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.feature-image img {
  height: 100%;
  object-fit: cover;
}

.feature-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  pointer-events: none;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: end;
}

.cycle-card {
  position: relative;
  overflow: hidden;
  color: var(--paper-soft);
  background: var(--ink-deep);
  cursor: pointer;
}

.cycle-card:first-child {
  aspect-ratio: 4 / 3;
}

.cycle-card:last-child {
  aspect-ratio: 4 / 5;
}

.cycle-card img {
  height: 100%;
  object-fit: cover;
  transition: opacity 250ms ease;
}

.cycle-card.is-changing img {
  opacity: 0.25;
}

.cycle-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 55px 22px 18px;
  background: linear-gradient(transparent, rgba(13, 33, 28, 0.84));
  font-size: 0.75rem;
}

.cycle-hint {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--paper-soft);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-panel {
  padding: clamp(70px, 9vw, 120px) max(5vw, 24px);
  color: var(--paper-soft);
  background: var(--clay);
}

.cta-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
}

.cta-title {
  max-width: 800px;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.cta-meta {
  justify-self: end;
}

.cta-meta p {
  max-width: 24rem;
  margin-top: 0;
}

.page-hero {
  padding: clamp(82px, 11vw, 155px) max(5vw, 24px) clamp(68px, 9vw, 120px);
}

.page-hero.dark {
  color: var(--paper-soft);
  background: var(--ink);
}

.page-hero-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 45px;
  align-items: end;
}

.page-number {
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dark .page-number {
  color: #e0bd7e;
}

.page-title {
  max-width: 980px;
  font-size: clamp(4.2rem, 9vw, 9rem);
}

.page-intro {
  max-width: 44rem;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.portrait-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: clamp(55px, 10vw, 150px);
  align-items: center;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.portrait-frame img {
  height: 100%;
  object-fit: cover;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 35%;
  height: 35%;
  border-right: 18px solid var(--paper);
  border-bottom: 18px solid var(--paper);
}

.story-copy h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.story-copy p {
  max-width: 39rem;
}

.fact-line {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.fact {
  padding: 20px 20px 0 0;
}

.fact + .fact {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.fact small {
  display: block;
  color: var(--clay);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.values-band {
  padding: 0 max(5vw, 24px) clamp(84px, 10vw, 145px);
}

.values-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--ink);
}

.value {
  min-height: 250px;
  padding: 34px;
  background: var(--sage);
}

.value:nth-child(2) {
  color: var(--paper-soft);
  background: var(--ink);
}

.value span {
  color: var(--clay);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
}

.value:nth-child(2) span {
  color: #e0bd7e;
}

.value h3 {
  margin: 70px 0 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.value p {
  margin: 0;
  font-size: 0.9rem;
}

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

.service-group {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
}

.service-group h2 {
  position: sticky;
  top: 130px;
  align-self: start;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

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

.service-list li {
  display: grid;
  grid-template-columns: minmax(140px, 0.6fr) 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-list strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.service-list span {
  color: rgba(23, 51, 43, 0.72);
}

.gallery-essay {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 70px 0 130px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.gallery-item {
  margin: 0 0 52px;
}

.gallery-item:nth-child(6n + 1) {
  grid-column: 1 / span 7;
}

.gallery-item:nth-child(6n + 2) {
  grid-column: 9 / span 4;
  margin-top: 100px;
}

.gallery-item:nth-child(6n + 3) {
  grid-column: 3 / span 4;
}

.gallery-item:nth-child(6n + 4) {
  grid-column: 7 / span 6;
  margin-top: 110px;
}

.gallery-item:nth-child(6n + 5) {
  grid-column: 1 / span 5;
  margin-top: 20px;
}

.gallery-item:nth-child(6n + 6) {
  grid-column: 7 / span 5;
}

.gallery-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sage);
}

.gallery-item:nth-child(3n + 1) .gallery-photo {
  aspect-ratio: 4 / 3;
}

.gallery-photo img {
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  margin-top: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.73rem;
}

.gallery-item figcaption span:last-child {
  color: var(--clay);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-layout {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 140px) 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(55px, 10vw, 150px);
}

.contact-summary {
  align-self: start;
}

.contact-summary h2,
.hours-panel h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.contact-line {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-line small {
  display: block;
  color: var(--clay);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-line strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.phone-button {
  width: 100%;
  margin-top: 30px;
  min-height: 62px;
}

.hours-panel {
  padding: clamp(36px, 5vw, 60px);
  color: var(--paper-soft);
  background: var(--ink);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  padding: 8px 12px;
  border: 1px solid rgba(251, 248, 241, 0.22);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0bd7e;
}

.status-badge[data-state="open"] .status-dot {
  background: #86c994;
}

.status-badge[data-state="closed"] .status-dot {
  background: #e78473;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 13px 0;
  border-bottom: 1px solid rgba(251, 248, 241, 0.15);
  font-size: 0.85rem;
  text-align: left;
}

.hours-table th {
  font-weight: 500;
}

.hours-table td {
  color: rgba(251, 248, 241, 0.7);
  text-align: right;
}

.map-wrap {
  height: 470px;
  border-top: 10px solid var(--clay);
  filter: saturate(0.75);
}

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

.site-footer {
  padding: 64px max(5vw, 24px) 90px;
  color: var(--paper-soft);
  background: var(--ink-deep);
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.75fr;
  gap: 45px;
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.footer-brand p {
  max-width: 28rem;
  color: rgba(251, 248, 241, 0.6);
}

.footer-col small {
  display: block;
  margin-bottom: 15px;
  color: #e0bd7e;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
  color: rgba(251, 248, 241, 0.8);
  text-decoration: none;
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 55px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 248, 241, 0.13);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(251, 248, 241, 0.48);
  font-size: 0.68rem;
}

.preview-credit {
  position: fixed;
  z-index: 90;
  bottom: 12px;
  left: 12px;
  max-width: calc(100vw - 24px);
  padding: 7px 10px;
  border: 1px solid rgba(251, 248, 241, 0.18);
  border-radius: 999px;
  color: rgba(251, 248, 241, 0.84);
  background: rgba(13, 33, 28, 0.92);
  font-size: 0.68rem;
  line-height: 1.25;
  text-decoration: none;
}

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

body.motion-ready .reveal {
  transform: translateY(20px);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.motion-ready .reveal.is-visible {
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 109px 0 0;
    padding: 56px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    color: var(--paper-soft);
    background: var(--ink-deep);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms;
  }

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

  .main-nav a {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .nav-book {
    display: none;
  }

  .home-hero {
    grid-template-columns: 1fr 0.85fr;
  }

  .hero-copy {
    padding: 80px 40px;
  }

  .hero-portrait {
    min-height: 580px;
  }

  .display {
    font-size: clamp(3.6rem, 8.5vw, 6rem);
  }

  .section-heading,
  .feature-grid,
  .portrait-story,
  .contact-layout {
    gap: 55px;
  }

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

  .chapter-intro {
    display: none;
  }

  .service-row {
    grid-template-columns: 55px minmax(170px, 0.7fr) 1fr;
  }
}

@media (max-width: 720px) {
  .announcement {
    min-height: 35px;
    padding: 6px 12px;
    font-size: 0.58rem;
  }

  .nav-shell {
    width: min(calc(100% - 28px), var(--max));
    min-height: 68px;
  }

  .main-nav {
    inset: 103px 0 0;
  }

  .home-hero,
  .section-heading,
  .feature-grid,
  .gallery-preview,
  .cta-grid,
  .page-hero-grid,
  .portrait-story,
  .service-group,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: 620px;
    padding: 70px 24px 60px;
  }

  .hero-portrait {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .display {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }

  .lede {
    font-size: 0.98rem;
  }

  .actions {
    width: 100%;
  }

  .actions .button {
    flex: 1 1 145px;
  }

  .chapter-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .chapter-link {
    min-height: 100px;
    padding: 22px 24px;
    border-top: 1px solid rgba(251, 248, 241, 0.18);
    border-left: 0;
  }

  .section {
    padding: 80px 24px;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 40px;
  }

  .service-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .service-row p {
    grid-column: 2;
  }

  .feature-grid {
    gap: 45px;
  }

  .gallery-preview {
    align-items: start;
  }

  .cycle-card:first-child,
  .cycle-card:last-child {
    aspect-ratio: 4 / 5;
  }

  .cta-panel {
    padding: 75px 24px;
  }

  .cta-meta {
    justify-self: start;
  }

  .page-hero {
    padding: 78px 24px 65px;
  }

  .page-hero-grid {
    gap: 20px;
  }

  .page-title {
    font-size: clamp(4.2rem, 21vw, 6.4rem);
  }

  .values-band {
    padding: 0 24px 80px;
  }

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

  .value {
    min-height: 210px;
  }

  .service-groups {
    gap: 70px;
  }

  .service-group {
    gap: 26px;
  }

  .service-group h2 {
    position: static;
  }

  .service-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery-essay {
    width: calc(100% - 32px);
    padding: 42px 0 80px;
    display: block;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    margin: 0 0 48px;
  }

  .gallery-photo,
  .gallery-item:nth-child(3n + 1) .gallery-photo {
    aspect-ratio: 4 / 5;
  }

  .contact-layout {
    width: calc(100% - 48px);
    gap: 48px;
    padding: 78px 0;
  }

  .hours-panel {
    padding: 32px 24px;
  }

  .map-wrap {
    height: 390px;
  }

  .footer-grid {
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    min-height: 590px;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.69rem;
  }

  .photo-note {
    right: 18px;
    left: 18px;
  }

  .fact-line {
    grid-template-columns: 1fr;
  }

  .fact + .fact {
    padding-left: 0;
    border-left: 0;
  }

  .preview-credit {
    bottom: 8px;
    left: 8px;
    max-width: calc(100vw - 16px);
    font-size: 0.62rem;
  }
}

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

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