:root {
  --logo-slate: #707d81;
  --logo-slate-deep: #354142;
  --logo-cream: #fff4e8;
  --porcelain: #faf7f1;
  --warm-paper: #eee5dc;
  --clay: #b67c5d;
  --clay-deep: #7b4f3f;
  --ink: #222929;
  --muted: #6c7471;
  --soft-line: rgba(34, 41, 41, 0.14);
  --cream-line: rgba(255, 244, 232, 0.26);
  --shadow-soft: 0 28px 80px rgba(34, 41, 41, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 46px);
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: var(--logo-slate);
  border-bottom: 1px solid rgba(255, 244, 232, 0.22);
  color: var(--logo-cream);
  backdrop-filter: blur(18px);
}

.wordmark,
.footer-wordmark {
  font-family: "Allura", cursive;
  font-size: clamp(2.9rem, 5vw, 4rem);
  line-height: 0.72;
  color: #ffd9bb;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: clamp(178px, 20vw, 268px);
  line-height: 0;
}

.brand-logo img,
.footer-logo img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  color: rgba(255, 244, 232, 0.82);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: #ffd9bb;
  color: var(--logo-cream);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 244, 232, 0.48);
  color: var(--logo-cream);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--logo-slate);
  color: var(--logo-cream);
}

.hero-video {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-play {
  position: absolute;
  z-index: 4;
  right: clamp(28px, 8vw, 92px);
  top: 50%;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 244, 232, 0.58);
  border-radius: 999px;
  background: rgba(255, 244, 232, 0.88);
  box-shadow: 0 18px 45px rgba(34, 41, 41, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-play.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--logo-slate-deep);
}

.hero-play:focus-visible {
  outline: 3px solid #ffd9bb;
  outline-offset: 4px;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(53, 65, 66, 0.96) 0%, rgba(53, 65, 66, 0.74) 38%, rgba(53, 65, 66, 0.2) 72%),
    linear-gradient(0deg, rgba(34, 41, 41, 0.78), rgba(34, 41, 41, 0.04) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 52vw);
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 118px clamp(22px, 5vw, 64px) clamp(58px, 9vh, 92px);
}

.hero-content p:not(.eyebrow) {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 244, 232, 0.84);
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd9bb;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  font-size: clamp(3.8rem, 7.8vw, 8rem);
}

h2 {
  font-size: clamp(2.25rem, 4.7vw, 4.8rem);
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  border-color: #ffd9bb;
  background: #ffd9bb;
  color: var(--logo-slate-deep);
}

.button-ghost {
  border-color: rgba(255, 244, 232, 0.54);
  background: rgba(255, 244, 232, 0.06);
  color: var(--logo-cream);
}

.button-ghost.dark {
  border-color: rgba(34, 41, 41, 0.26);
  color: var(--ink);
}

section {
  scroll-margin-top: 92px;
}

.section-pad,
.assortment {
  padding: clamp(54px, 7vw, 104px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 1160px;
  margin: 0 auto clamp(28px, 4vw, 52px);
}

.section-heading h2 {
  max-width: 920px;
}

.about {
  background: var(--porcelain);
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.56fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.about-shell > *,
.fashion-focus > *,
.lookbook-shell > *,
.labels > *,
.visit > *,
.contact > *,
.map-section > * {
  min-width: 0;
}

.about-copy {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.about-copy h2 {
  max-width: 720px;
}

.about-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--soft-line);
  background: rgba(238, 229, 220, 0.48);
  color: var(--clay-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.about-image {
  margin: 0;
  min-height: 420px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--logo-slate);
  box-shadow: var(--shadow-soft);
}

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

.assortment {
  background: var(--warm-paper);
}

.fashion-focus {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 0.82fr) minmax(220px, 0.46fr);
  gap: clamp(16px, 2.6vw, 30px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.fashion-hero,
.fashion-accent {
  margin: 0;
  overflow: hidden;
  background: var(--logo-slate);
  box-shadow: var(--shadow-soft);
}

.fashion-hero {
  min-height: 520px;
}

.fashion-accent {
  min-height: 350px;
  align-self: end;
}

.fashion-hero img,
.fashion-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fashion-copy {
  align-self: center;
  padding: clamp(26px, 4vw, 48px);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.fashion-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.2vw, 3.5rem);
}

.fashion-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.fashion-copy p + p {
  margin-top: 18px;
}

.assortment-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}

.assortment-feature {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--logo-slate-deep);
  color: var(--logo-cream);
  box-shadow: var(--shadow-soft);
}

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

.assortment-feature div {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(0deg, rgba(34, 41, 41, 0.86), rgba(34, 41, 41, 0));
}

.assortment-feature span,
.assortment-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.assortment-feature span {
  color: #ffd9bb;
}

.assortment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--soft-line);
  border-left: 1px solid var(--soft-line);
}

.assortment-list article {
  min-height: 306px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  background: rgba(250, 247, 241, 0.52);
}

.assortment-list p,
.labels-intro p,
.visit-content p,
.contact-copy p,
.map-copy p,
address {
  color: var(--muted);
}

.labels {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 66px);
  align-items: center;
  background: var(--logo-slate-deep);
  color: var(--logo-cream);
}

.labels .eyebrow {
  color: #ffd9bb;
}

.labels-intro {
  max-width: 650px;
}

.labels-intro h2 {
  color: var(--logo-cream);
}

.label-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.label-rail article {
  min-height: clamp(132px, 12vw, 184px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 244, 232, 0.68);
  background: var(--logo-cream);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.label-rail article:hover,
.label-rail article:focus-within {
  border-color: #ffd9bb;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.label-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: contrast(1.03);
}

.label-logo-wide {
  max-width: min(330px, 82%);
  max-height: 92px;
}

.label-logo-tall {
  max-width: min(230px, 72%);
  max-height: 138px;
}

.lookbook {
  background: var(--porcelain);
}

.lookbook-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.lookbook-copy {
  max-width: 500px;
}

.lookbook-copy p:not(.eyebrow) {
  color: var(--muted);
}

.look-carousel {
  position: relative;
}

.look-slide {
  position: relative;
  margin: 0;
  height: min(66vh, 590px);
  min-height: 470px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--logo-slate-deep);
  box-shadow: var(--shadow-soft);
}

.look-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.look-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(0deg, rgba(34, 41, 41, 0.88), rgba(34, 41, 41, 0));
  color: var(--logo-cream);
}

.look-slide figcaption span {
  display: block;
  margin-bottom: 10px;
  color: #ffd9bb;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.look-slide figcaption strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 0.98;
}

.look-slide figcaption p {
  max-width: 470px;
  margin: 12px 0 0;
  color: rgba(255, 244, 232, 0.78);
}

.carousel-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 46px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 244, 232, 0.48);
  background: rgba(34, 41, 41, 0.34);
  color: var(--logo-cream);
  font: inherit;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.carousel-button span {
  font-size: 2.4rem;
  line-height: 1;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-52%);
  background: var(--logo-slate-deep);
  color: var(--logo-cream);
}

.carousel-prev {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  max-width: min(100%, 430px);
  margin: 0 auto;
  padding-top: 18px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid var(--logo-slate-deep);
  background: transparent;
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--logo-slate-deep);
}

.carousel-preload {
  display: none;
}

.look-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 1160px;
  margin: clamp(24px, 3.5vw, 42px) auto 0;
}

.look-gallery figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--logo-slate-deep);
}

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

.look-gallery figure:hover img {
  transform: scale(1.035);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, 23vw);
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}

.lookbook-grid figure {
  margin: 0;
}

.lookbook-large {
  grid-column: span 2;
  grid-row: span 2;
}

.lookbook-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  min-height: 630px;
  background: var(--logo-slate);
  color: var(--logo-cream);
}

.visit-image {
  min-height: 420px;
}

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

.visit-content {
  align-self: center;
  padding: clamp(42px, 6vw, 76px) clamp(22px, 6vw, 82px);
}

.visit .eyebrow {
  color: #ffd9bb;
}

.visit-content p {
  max-width: 560px;
  color: rgba(255, 244, 232, 0.78);
}

.hours {
  display: grid;
  gap: 0;
  max-width: 660px;
  margin: 28px 0 0;
  border-top: 1px solid var(--cream-line);
}

.hours div {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-line);
}

.hours dt {
  color: var(--logo-cream);
  font-weight: 800;
}

.hours dd {
  margin: 0;
  color: rgba(255, 244, 232, 0.76);
}

.instagram-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  max-width: 660px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-line);
  color: rgba(255, 244, 232, 0.78);
}

.instagram-note a {
  color: #ffd9bb;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: var(--porcelain);
}

.contact-copy {
  max-width: 560px;
}

address {
  margin: 18px 0 0;
  font-style: normal;
}

.contact-card {
  margin: 0;
  aspect-ratio: 14 / 9;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  box-shadow: var(--shadow-soft);
}

.contact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 64px);
  background: var(--warm-paper);
}

.map-copy {
  align-self: center;
  max-width: 480px;
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  background: var(--porcelain);
  box-shadow: var(--shadow-soft);
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(20px, 5vw, 64px);
  background: var(--logo-slate);
  color: rgba(255, 244, 232, 0.72);
  font-size: 0.92rem;
}

.footer-logo {
  display: block;
  width: clamp(176px, 20vw, 246px);
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.site-footer a:not(.footer-wordmark) {
  color: var(--logo-cream);
}

@media (min-width: 900px) {
  .hero-video {
    width: min(58vw, 760px);
    object-fit: contain;
    object-position: right center;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    width: min(700px, 78vw);
  }

  .about-shell,
  .assortment-layout,
  .fashion-focus,
  .lookbook-shell,
  .labels,
  .visit,
  .contact,
  .map-section {
    grid-template-columns: 1fr;
  }

  .assortment-feature {
    min-height: 520px;
  }

  .fashion-hero,
  .fashion-accent {
    min-height: 440px;
  }

  .look-slide {
    height: min(64vh, 540px);
    min-height: 440px;
  }

  .fashion-copy {
    padding: clamp(28px, 5vw, 46px) 0;
  }

  .visit {
    min-height: 0;
  }

  .visit-image {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 70px;
    padding: 9px 18px;
  }

  .wordmark {
    font-size: 3.1rem;
  }

  .brand-logo {
    width: min(190px, 52vw);
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-video {
    object-position: center;
  }

  .hero-play {
    left: 50%;
    right: auto;
    top: 46%;
    transform: translate(-50%, -50%);
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(34, 41, 41, 0.9) 0%, rgba(34, 41, 41, 0.52) 40%, rgba(34, 41, 41, 0.06) 74%),
      linear-gradient(90deg, rgba(53, 65, 66, 0.52), rgba(53, 65, 66, 0.18));
  }

  .hero-content {
    width: 100%;
    min-height: 84svh;
    padding: 104px 20px 64px;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 9.5vw, 3.25rem);
  }

  .section-pad,
  .assortment {
    padding: 50px 18px;
  }

  .assortment-list,
  .fashion-focus,
  .lookbook-shell,
  .about-shell {
    grid-template-columns: 1fr;
  }

  .assortment-feature {
    min-height: 460px;
  }

  .fashion-hero,
  .fashion-accent {
    min-height: 360px;
  }

  .fashion-accent {
    display: none;
  }

  .fashion-copy {
    padding: 26px 0;
  }

  .look-carousel {
    gap: 12px;
  }

  .look-slide {
    width: 100%;
    max-width: 100%;
    height: min(62vh, 430px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .carousel-button {
    width: 40px;
    height: 58px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-dots {
    grid-column: 1;
    max-width: 310px;
    gap: 7px;
    padding-top: 14px;
  }

  .look-gallery {
    display: flex;
    gap: 10px;
    max-width: none;
    margin: 24px -18px 0;
    padding: 0 18px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .look-gallery figure {
    flex: 0 0 min(62vw, 230px);
    height: min(74vw, 320px);
    aspect-ratio: auto;
    scroll-snap-align: start;
  }

  .assortment-list article,
  .label-rail article {
    min-height: 0;
  }

  .about-image {
    width: 100%;
    max-width: 100%;
    height: 280px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .label-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .label-rail article {
    min-height: 112px;
    padding: 16px;
  }

  .label-logo-wide {
    max-height: 66px;
  }

  .label-logo-tall {
    max-height: 84px;
  }

  .lookbook-grid {
    grid-auto-rows: auto;
  }

  .lookbook-large {
    grid-column: auto;
    grid-row: auto;
  }

  .lookbook-grid img {
    aspect-ratio: 4 / 5;
  }

  .visit-image {
    min-height: 280px;
  }

  .visit-content {
    padding: 44px 18px;
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .map-section {
    padding: 48px 18px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

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

  .site-footer p {
    text-align: left;
  }
}
