:root {
  --ink: #25221f;
  --soft-ink: #635d56;
  --cream: #f2ede5;
  --paper: #fbf8f2;
  --rose: #c79da1;
  --rose-dark: #8a5e63;
  --olive: #68745a;
  --cocoa: #5e4334;
  --line: rgba(37, 34, 31, 0.18);
  --display: "Bodoni 72", "Bodoni MT", Didot, Georgia, serif;
  --body: "Avenir Next", Avenir, "Century Gothic", sans-serif;
  --max-width: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 18px clamp(24px, 4vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.brand-monogram {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.08em;
}

.brand-name {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.01em;
}

.brand-name small {
  display: block;
  margin-top: 7px;
  font-family: var(--body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.25vw, 40px);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--ink);
  transition: right 250ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 13px 20px;
  border: 1px solid var(--ink);
  transition: color 200ms ease, background 200ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 8px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(480px, 1.14fr);
  max-width: var(--max-width);
  min-height: calc(100svh - 94px);
  margin: 0 auto;
  padding: clamp(64px, 7vw, 110px) clamp(24px, 6vw, 96px);
  background: var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-right: clamp(20px, 4vw, 72px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--rose-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(64px, 7vw, 118px);
}

.hero h1 em {
  color: var(--rose-dark);
  font-weight: 400;
}

.hero-intro {
  max-width: 530px;
  margin: 34px 0 0;
  color: var(--soft-ink);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

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

.button-primary {
  color: white;
  background: var(--rose-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cocoa);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--rose-dark);
}

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

.text-link {
  padding-block: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.rating-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(44px, 8vh, 88px);
}

.rating-proof strong {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.rating-proof span {
  color: var(--soft-ink);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.rating-proof b,
.reviews-score b {
  color: var(--rose-dark);
  letter-spacing: 0.13em;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-image {
  position: absolute;
  inset: 0 5% 0 7%;
  margin: 0;
  overflow: hidden;
  background: #d8c8b9;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(50, 35, 28, 0.14));
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image:hover img {
  transform: scale(1.025);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 7%;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 238px;
  padding: 22px;
  color: white;
  background: var(--olive);
}

.hero-note span {
  padding-top: 3px;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.hero-note p {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.18;
}

.vertical-note {
  position: absolute;
  top: 50%;
  right: 14px;
  margin: 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 60px);
  min-height: 82px;
  padding: 18px 24px;
  color: white;
  background: var(--ink);
}

.trust-strip p {
  margin: 0;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rose);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(90px, 10vw, 160px) clamp(24px, 6vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 1.15fr) 0.75fr;
  gap: 40px;
  align-items: end;
}

.section-heading .eyebrow {
  align-self: start;
  padding-top: 9px;
}

.section-heading h2,
.studio h2,
.reviews h2,
.visit h2 {
  font-size: clamp(50px, 5.8vw, 86px);
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
}

.services {
  background: var(--paper);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 7vw;
  margin-top: clamp(60px, 8vw, 110px);
}

.service-group {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 34px 0 22px;
  border-top: 1px solid var(--line);
}

.service-group:nth-child(2) {
  grid-row: span 2;
}

.service-number {
  padding-top: 3px;
  color: var(--rose-dark);
  font-family: var(--display);
  font-size: 17px;
}

.service-group h3 {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(27px, 2.3vw, 38px);
  font-weight: 400;
}

.price-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px dotted var(--line);
}

.price-list li > span {
  display: grid;
}

.price-list b,
.price-list strong {
  font-size: 13px;
  font-weight: 650;
}

.price-list strong {
  flex: 0 0 auto;
}

.price-list small {
  color: var(--soft-ink);
  font-size: 10px;
}

.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.services-footer p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 11px;
}

.studio {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  max-width: none;
  color: var(--paper);
  background: var(--olive);
}

.studio-collage {
  position: relative;
  min-height: 800px;
}

.studio-collage figure {
  margin: 0;
  overflow: hidden;
}

.studio-main {
  position: absolute;
  inset: 0 12% 10% 0;
}

.studio-main img,
.studio-small img {
  height: 100%;
  object-fit: cover;
}

.studio-small {
  position: absolute;
  right: -2%;
  bottom: 0;
  width: 38%;
  height: 42%;
  border: 10px solid var(--olive);
}

.studio-copy {
  max-width: 590px;
}

.studio-copy .eyebrow {
  color: #e6cfd0;
}

.studio-copy h2 {
  font-size: clamp(46px, 4.6vw, 72px);
}

.studio-lede {
  margin: 40px 0 18px;
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.45;
}

.studio-body {
  margin: 18px 0 0;
  color: rgba(251, 248, 242, 0.73);
  font-size: 14px;
}

.studio-quote {
  margin: 38px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.studio-quote blockquote {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  font-style: italic;
  line-height: 1.4;
}

.studio-quote figcaption {
  display: grid;
  gap: 3px;
}

.studio-quote figcaption b {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio-quote figcaption span {
  color: rgba(251, 248, 242, 0.62);
  font-size: 10px;
}

.arrow-link span {
  display: inline-block;
  margin-left: 10px;
}

.gallery {
  overflow: hidden;
}

.gallery-heading {
  grid-template-columns: 0.55fr 1.45fr;
  max-width: 970px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.82fr 1.1fr;
  grid-template-rows: 170px 460px 110px;
  gap: 22px;
  margin-top: 72px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--cream);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

.gallery-a {
  grid-row: 1 / 3;
}

.gallery-a img {
  object-position: center 40%;
}

.gallery-b {
  grid-row: 2 / 4;
}

.gallery-c {
  grid-row: 1 / 3;
}

.gallery-caption {
  grid-column: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-caption span {
  max-width: 130px;
  color: var(--soft-ink);
}

.reviews {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 9vw, 140px);
  background: var(--cream);
}

.reviews-intro {
  align-self: start;
  position: sticky;
  top: 50px;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 26px 0 40px;
}

.reviews-score > strong {
  font-family: var(--display);
  font-size: 92px;
  font-weight: 400;
  line-height: 0.8;
}

.reviews-score > span {
  color: var(--soft-ink);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.review-list {
  border-top: 1px solid var(--ink);
}

.review-card {
  position: relative;
  padding: clamp(42px, 5vw, 72px) 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.quote-mark {
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--rose);
  font-family: var(--display);
  font-size: 94px;
  line-height: 1;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 0 28px;
  padding-right: 40px;
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 37px);
  line-height: 1.35;
}

.review-card figcaption {
  display: grid;
  gap: 3px;
}

.review-card figcaption b {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card figcaption span {
  color: var(--soft-ink);
  font-size: 10px;
}

.reviews-link {
  grid-column: 2;
  justify-self: start;
}

.visit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.visit-info {
  max-width: 640px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.visit-grid h3 {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visit-grid address {
  margin-bottom: 20px;
  font-size: 13px;
  font-style: normal;
}

.hours-list {
  margin: 0;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 0;
  color: var(--soft-ink);
  font-size: 11px;
}

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

.hours-list .today {
  color: var(--ink);
  font-weight: 700;
}

.hours-list .today dt::after {
  content: " · hoy";
  color: var(--rose-dark);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-wrap {
  position: relative;
  min-height: 690px;
  padding: 18px;
  background: var(--cream);
}

.map-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 90px;
  height: 90px;
  border-top: 1px solid var(--rose-dark);
  border-right: 1px solid var(--rose-dark);
}

.map-wrap iframe {
  width: 100%;
  height: 654px;
  border: 0;
  filter: saturate(0.6) sepia(0.08) contrast(0.95);
}

.map-label {
  position: absolute;
  left: 36px;
  bottom: 36px;
  padding: 16px 19px;
  color: white;
  background: var(--cocoa);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.map-label span {
  display: block;
  margin-bottom: 2px;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 180px) 24px;
  color: white;
  text-align: center;
  background: var(--rose-dark);
}

.closing-cta::before,
.closing-cta::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.closing-cta::before {
  top: -190px;
  left: -90px;
}

.closing-cta::after {
  right: -120px;
  bottom: -220px;
}

.closing-cta p {
  margin: 0 0 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.closing-cta h2 {
  margin-bottom: 42px;
  font-size: clamp(56px, 7vw, 104px);
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: end;
  padding: 60px clamp(24px, 6vw, 96px) 30px;
  color: var(--paper);
  background: var(--ink);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-note,
.copyright {
  padding-top: 24px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(251, 248, 242, 0.5);
  font-size: 9px;
}

.copyright {
  text-align: right;
}

.mobile-book {
  display: none;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--rose-dark);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 0.95fr 1.05fr;
    padding-inline: 48px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .section-heading {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .studio {
    gap: 70px;
  }

  .studio-collage {
    min-height: 680px;
  }

  .gallery-grid {
    grid-template-rows: 130px 380px 100px;
  }

  .reviews,
  .visit {
    gap: 65px;
  }
}

@media (max-width: 840px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    min-height: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    border: 1px solid var(--ink);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 24px 32px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(63px, 16vw, 96px);
  }

  .hero-visual {
    min-height: 680px;
    margin-top: 62px;
  }

  .vertical-note {
    display: none;
  }

  .trust-strip {
    flex-wrap: wrap;
  }

  .section-heading,
  .service-columns,
  .studio,
  .reviews,
  .visit {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 1;
    max-width: 520px;
  }

  .service-group:nth-child(2) {
    grid-row: auto;
  }

  .studio-collage {
    min-height: 720px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 420px auto;
  }

  .gallery-a,
  .gallery-b,
  .gallery-c,
  .gallery-caption {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-a {
    grid-row: span 2;
  }

  .gallery-caption {
    grid-column: 2;
  }

  .reviews-intro {
    position: static;
  }

  .reviews-link {
    grid-column: 1;
  }

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

  .map-wrap iframe {
    height: 484px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 58px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand-monogram {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 76px);
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .rating-proof {
    margin-top: 48px;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 46px;
  }

  .hero-image {
    inset: 0 0 0 0;
  }

  .hero-note {
    right: -8px;
    bottom: 24px;
    min-width: 205px;
  }

  .trust-strip {
    gap: 12px 16px;
    min-height: 100px;
  }

  .trust-strip p {
    width: calc(50% - 20px);
  }

  .trust-strip span:nth-of-type(2) {
    display: none;
  }

  .section {
    padding: 88px 20px;
  }

  .section-heading h2,
  .studio h2,
  .reviews h2,
  .visit h2 {
    font-size: 48px;
  }

  .service-columns {
    margin-top: 58px;
  }

  .service-group {
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }

  .price-list li {
    align-items: flex-start;
    gap: 12px;
  }

  .price-list strong {
    font-size: 11px;
  }

  .services-footer,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .services-footer .button,
  .contact-actions .button {
    width: 100%;
  }

  .studio {
    padding-inline: 20px;
  }

  .studio-collage {
    min-height: 520px;
  }

  .studio-main {
    right: 7%;
  }

  .studio-small {
    right: -1%;
    width: 42%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 0.72fr;
    grid-template-rows: 350px 270px auto;
    gap: 12px;
    margin-top: 48px;
  }

  .gallery-caption {
    grid-column: 1 / -1;
  }

  .reviews-score > strong {
    font-size: 76px;
  }

  .review-card blockquote {
    font-size: 25px;
  }

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

  .map-wrap {
    min-height: 460px;
    padding: 10px;
  }

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

  .closing-cta h2 {
    font-size: 54px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-note,
  .copyright {
    text-align: left;
  }

  .mobile-book {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    padding: 0 20px;
    color: white;
    background: var(--rose-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
}

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

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

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