/* ═══════════════════════════════════════════
   SHIRIN Atelier — Style Sheet
   ═══════════════════════════════════════════ */

:root {
  /* Backgrounds */
  --linen: #ECE6DD;
  --linen-dark: #E0D8CC;
  --linen-light: #F5F0EA;
  --warm-white: #FAF7F3;
  /* Chocolates */
  --chocolate: #3B2007;
  --chocolate-mid: #6B4422;
  --chocolate-light: #9A7252;
  --chocolate-faint: #C4B09A;
  /* Text */
  --text: #2A1A0A;
  --text-light: #7B6555;
  --text-lighter: #A89585;
  /* Footer */
  --near-black: #1B0D04;
  /* White */
  --white: #FFFFFF;
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  /* Layout */
  --header-height: 80px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--linen);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

body.modal-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 260px;
  height: auto;
}

.loader-progress {
  width: 200px;
  height: 1.5px;
  background: var(--chocolate-faint);
  border-radius: 1px;
  overflow: hidden;
}

#loader-bar {
  width: 0%;
  height: 100%;
  background: var(--chocolate);
  transition: width 0.15s ease;
}

#loader-percent {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--text-lighter);
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 5vw;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background: rgba(236, 230, 221, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  transition: opacity 0.4s ease;
}

.nav-logo-dark {
  opacity: 1;
}

.nav-logo-light {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.site-header.header--dark .nav-logo-dark { opacity: 0; }
.site-header.header--dark .nav-logo-light { opacity: 1; }
.site-header.header--dark.scrolled .nav-logo-dark { opacity: 1; }
.site-header.header--dark.scrolled .nav-logo-light { opacity: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--chocolate-light);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--text);
}

.site-header.header--dark .nav-link {
  color: rgba(196, 176, 154, 0.75);
}

.site-header.header--dark .nav-link:hover {
  color: rgba(255, 248, 240, 0.95);
}

.site-header.header--dark.scrolled .nav-link {
  color: var(--text-light);
}

.nav-link--cta {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--chocolate-light);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.header--dark .nav-hamburger span {
  background: rgba(255, 248, 240, 0.9);
}

.nav-hamburger.active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-hamburger.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero-standalone {
  position: absolute;
  inset: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 5;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
}

.hero-label {
  margin-bottom: 28px;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(6rem, 14vw, 16rem);
  letter-spacing: 0.45em;
  padding-right: 0.45em;
  color: var(--chocolate);
  line-height: 1;
  margin-bottom: 20px;
}

.hero-heading .word {
  display: inline-block;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0.28em;
  color: var(--chocolate-mid);
}

.scroll-indicator {
  position: absolute;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-indicator-text {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-lighter);
}

.scroll-indicator-arrow {
  color: var(--chocolate-faint);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════
   CANVAS
   ═══════════════════════════════════════════ */
.canvas-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

#canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   DARK OVERLAY
   ═══════════════════════════════════════════ */
#dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--near-black);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

/* ═══════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════ */
.marquee-wrap {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
}

.marquee-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35em 0.7em;
  width: 100%;
  box-sizing: border-box;
  padding: 0 4vw;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 3.1vw, 4rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: var(--chocolate-faint);
  opacity: 0.32;
  user-select: none;
}

.marquee-text > span:not(.marquee-separator) {
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   SCROLL CONTAINER
   ═══════════════════════════════════════════ */
#scroll-container {
  position: relative;
  height: 360vh;
  z-index: 4;
}

/* ═══════════════════════════════════════════
   SCROLL SECTIONS
   ═══════════════════════════════════════════ */
.scroll-section {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  pointer-events: none;
  opacity: 0;
}

.scroll-section > * {
  pointer-events: auto;
}

/* Side alignment — content in outer 40% zones */
.align-left {
  padding-left: 5vw;
  padding-right: 55vw;
}

.align-right {
  padding-left: 55vw;
  padding-right: 5vw;
}

.align-left .section-inner,
.align-right .section-inner {
  max-width: 40vw;
  background: rgba(236, 230, 221, 0.90);
  padding: 40px 36px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY — Shared
   ═══════════════════════════════════════════ */
.section-label {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-lighter);
  margin-bottom: 20px;
  display: block;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 24px;
}

.section-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}

.section-note {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--chocolate-light);
  letter-spacing: 0.04em;
}

.consultation-inclusion {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(59, 32, 7, 0.14);
  max-width: 480px;
}

.consultation-inclusion-title,
.consultation-inclusion-copy {
  display: block;
}

.consultation-inclusion-title {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--chocolate-mid);
}

.consultation-inclusion-copy {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════
   ATELIER STORY
   ═══════════════════════════════════════════ */
.atelier-photo {
  margin: 26px 0 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--linen-dark);
}

.atelier-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 1.2s var(--ease-out);
}

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

/* ═══════════════════════════════════════════
   CTA BUTTON
   ═══════════════════════════════════════════ */
.cta-button {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--chocolate);
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: background 0.35s ease, transform 0.2s ease;
  text-align: center;
  margin-top: 8px;
}

button.cta-button {
  width: auto;
}

.cta-button:hover {
  background: var(--chocolate-mid);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.section-cta .section-inner {
  max-width: 40vw;
  background: rgba(236, 230, 221, 0.95);
  padding: 48px 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-cta .site-footer {
  margin-top: 46px;
}

.section-visit .section-inner {
  position: relative;
  z-index: 2;
}

.visit-photo-inline {
  display: none;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  padding-top: 40px;
  border-top: 1px solid rgba(59, 32, 7, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.footer-heading {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-lighter);
  margin-bottom: 10px;
}

.footer-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
  border-top: 1px solid rgba(59, 32, 7, 0.06);
}

.footer-logo {
  height: 36px;
  width: auto;
  opacity: 0.5;
}

.footer-copyright {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-lighter);
}

/* ═══════════════════════════════════════════
   ACUITY BOOKING DIALOG
   ═══════════════════════════════════════════ */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 3vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 11, 4, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
  width: min(1180px, 94vw);
  height: min(860px, 92vh);
  overflow: hidden;
  background: var(--warm-white);
  box-shadow: 0 28px 90px rgba(20, 11, 4, 0.28);
  transform: translateY(24px) scale(0.985);
  transition: transform 0.45s var(--ease-out);
}

.booking-modal.is-open .booking-modal-panel {
  transform: translateY(0) scale(1);
}

.booking-modal-image {
  min-width: 0;
  overflow: hidden;
  background: var(--linen-dark);
}

.booking-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-modal-content {
  min-width: 0;
  overflow-y: auto;
  padding: 38px 44px 44px;
}

.booking-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(59, 32, 7, 0.1);
}

.booking-modal-header .section-label {
  margin-bottom: 5px;
}

.booking-modal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1;
}

.booking-modal-close {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(59, 32, 7, 0.14);
}

.booking-modal-close::before,
.booking-modal-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 1px;
  background: var(--chocolate);
}

.booking-modal-close::before { transform: rotate(45deg); }
.booking-modal-close::after { transform: rotate(-45deg); }

.booking-fallback {
  max-width: 520px;
  padding: clamp(50px, 10vh, 100px) 0 30px;
}

.booking-fallback-kicker {
  margin-bottom: 15px;
  color: var(--chocolate-light);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.booking-fallback h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.05;
}

.booking-fallback > p:not(.booking-fallback-kicker) {
  max-width: 430px;
  margin-bottom: 28px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.acuity-frame {
  display: none;
  width: 100%;
  min-height: 690px;
  border: 0;
  background: var(--warm-white);
}

.booking-modal.has-scheduler .booking-fallback {
  display: none;
}

.booking-modal.has-scheduler .acuity-frame {
  display: block;
}

/* ═══════════════════════════════════════════
   MOBILE NAV OVERLAY
   ═══════════════════════════════════════════ */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--linen);
  z-index: 99;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-links.mobile-open .nav-link {
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--text);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  #scroll-container {
    height: 320vh;
  }

  .align-left,
  .align-right {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 100%;
  }

  .scroll-section .section-inner {
    background: rgba(236, 230, 221, 0.94);
    padding: 28px 20px;
    border-radius: 2px;
  }

  .hero-heading {
    font-size: clamp(3.5rem, 15vw, 7rem);
  }

  .section-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .marquee-text {
    flex-direction: column;
    gap: 0.35em;
    padding: 0 8vw;
    font-size: clamp(1.1rem, 6vw, 2rem);
  }

  .marquee-separator {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section-cta .section-inner {
    max-width: 100%;
  }

  .nav-logo-img {
    height: 38px;
  }

  .atelier-photo {
    max-height: 190px;
  }

  .visit-photo-inline {
    display: block;
    width: 100%;
    height: clamp(120px, 18vh, 170px);
    margin: 0 0 16px;
    overflow: hidden;
    background: var(--linen-dark);
  }

  .visit-photo-inline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
  }

  .section-visit .section-inner {
    padding: 20px;
  }

  .section-visit .section-label {
    margin-bottom: 10px;
  }

  .section-visit .section-heading {
    margin-bottom: 14px;
  }

  .section-visit .section-body {
    margin-bottom: 12px;
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .section-visit .cta-button {
    width: 100%;
    margin-top: 0;
    padding: 13px 20px;
  }

  .section-visit .site-footer {
    margin-top: 22px;
    padding-top: 18px;
  }

  .section-visit .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    margin-bottom: 18px;
  }

  .section-visit .footer-col:first-child {
    grid-column: 1 / -1;
  }

  .section-visit .footer-heading {
    margin-bottom: 4px;
  }

  .section-visit .footer-text {
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .section-visit .footer-bottom {
    flex-direction: row;
    gap: 16px;
    padding-top: 14px;
    text-align: left;
  }

  .section-visit .footer-logo {
    height: 30px;
  }

  .section-visit .footer-copyright {
    font-size: 0.56rem;
  }

  .booking-modal {
    padding: 0;
  }

  .booking-modal-panel {
    grid-template-columns: 1fr;
    grid-template-rows: clamp(135px, 22vh, 190px) minmax(0, 1fr);
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
  }

  .booking-modal-image {
    display: block;
  }

  .booking-modal-image img {
    object-position: center 62%;
  }

  .booking-modal-content {
    min-width: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    padding: 22px 18px calc(28px + env(safe-area-inset-bottom));
  }

  .booking-modal-header {
    width: 100%;
    gap: 12px;
    padding-bottom: 18px;
  }

  .booking-modal-header > div {
    min-width: 0;
  }

  .booking-modal-header .section-label {
    font-size: 0.55rem;
    letter-spacing: 0.22em;
  }

  .booking-modal-header h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.5rem);
    overflow-wrap: anywhere;
  }

  .booking-modal-close {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .booking-modal-close::before,
  .booking-modal-close::after {
    left: 10px;
    width: 18px;
  }

  .booking-fallback {
    width: 100%;
    max-width: 100%;
    padding: 34px 0 24px;
  }

  .booking-fallback-kicker {
    margin-bottom: 12px;
    font-size: 0.58rem;
    letter-spacing: 0.24em;
  }

  .booking-fallback h3 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(1.75rem, 8.5vw, 2.25rem);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .booking-fallback > p:not(.booking-fallback-kicker) {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 0.84rem;
  }

  .booking-fallback .cta-button {
    width: 100%;
    max-width: 100%;
    padding: 14px 12px;
    letter-spacing: 0.22em;
  }

  .acuity-frame {
    max-width: 100%;
  }

}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (769px – 1024px)
   ═══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .align-left {
    padding-right: 45vw;
  }

  .align-right {
    padding-left: 45vw;
  }

  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 50vw;
  }
}

/* Present the final story and storefront as one integrated desktop panel. */
@media (min-width: 769px) {
  .scroll-section.section-visit {
    display: flex;
    align-items: center;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section-visit .section-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    grid-template-rows: auto auto auto auto 1fr;
    column-gap: 40px;
    width: 100%;
    max-width: 90vw;
    height: min(74vh, 740px);
    overflow: hidden;
  }

  .section-visit .section-label,
  .section-visit .section-heading,
  .section-visit .section-body,
  .section-visit .cta-button,
  .section-visit .site-footer {
    grid-column: 1;
  }

  .section-visit .visit-photo-inline {
    display: block;
    grid-column: 2;
    grid-row: 1 / 6;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--linen-dark);
  }

  .section-visit .visit-photo-inline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-visit .cta-button {
    justify-self: start;
  }

  .section-visit .site-footer {
    align-self: end;
  }
}

@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;
  }
}
