:root {
  --cream: #f5f0e7;
  --cream-deep: #e8dcc7;
  --gold: #b88a3c;
  --gold-light: #d8bb78;
  --graphite: #4b5052;
  --black: #1f1d1a;
  --wood: #6d4935;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-trail {
  width: 100%;
  margin: 0 0 clamp(22px, 2.4vw, 34px);
  display: flex;
  align-items: center;
  gap: 11px;
  color: #77716a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header + main > .page-trail {
  padding-top: clamp(14px, 1.5vw, 20px);
  padding-bottom: clamp(14px, 1.5vw, 20px);
  border-bottom: 1px solid rgba(31, 29, 26, 0.28);
}

body > .site-header + main.store-catalogue,
body > .site-header + main.gallery-viewer-page,
body > .site-header + main.product-detail-page,
body > .site-header + main.booking-page,
body > .site-header + main.workshop-booking-page {
  padding-top: clamp(16px, 2vw, 28px);
}

.about-page > .site-header + main {
  padding-top: clamp(16px, 2vw, 28px);
}

.page-trail a {
  padding: 8px 0 6px;
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  transition: color 160ms ease;
}

.page-trail a span {
  display: inline-block;
  margin-right: 5px;
  color: var(--gold);
  transition: transform 160ms ease;
}

.page-trail a:hover,
.page-trail a:focus-visible {
  color: var(--gold);
  outline: none;
}

.page-trail a:hover span,
.page-trail a:focus-visible span {
  transform: translateX(-3px);
}

.page-trail > span[aria-hidden="true"] {
  color: var(--gold);
}

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

.site-header {
  min-height: 86px;
  padding: 20px clamp(24px, 3.5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(245, 240, 231, 0.97);
  border-bottom: 1px solid rgba(30, 27, 24, 0.18);
  position: relative;
  z-index: 10;
}

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

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
}

.brand-mark::before {
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  box-shadow: 24px 0 var(--gold), 0 24px var(--gold), 24px 24px var(--gold);
}

.brand-mark::after {
  display: none;
}

.brand-diamond {
  width: 18px;
  height: 18px;
  border: 4px solid var(--graphite);
  transform: rotate(45deg);
}

.brand-word {
  color: var(--black);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.27em;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--black);
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 12px clamp(14px, 1.6vw, 24px);
}

.main-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.main-nav a:nth-child(3) {
  position: relative;
  margin-left: 2px;
  padding-left: clamp(18px, 1.5vw, 24px);
}

.main-nav a:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 24px;
  background: var(--wood);
  transform: translateY(-50%);
}

.store-hero {
  min-height: calc(100vh - 86px);
  padding: clamp(56px, 8vw, 120px) clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 187, 120, 0.34), transparent 27%),
    linear-gradient(118deg, var(--cream) 0%, #eee4d3 48%, #d9c5a6 100%);
  border-bottom: 1px solid rgba(30, 27, 24, 0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--gold);
}

h1 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.78;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.hero-copy {
  max-width: 570px;
  margin: 32px 0 36px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--graphite);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.hero-button {
  display: inline-block;
  padding: 16px 24px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
  box-shadow: 6px 6px 0 var(--gold);
}

.hero-button span {
  display: inline-block;
  margin-left: 12px;
  transition: transform 160ms ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  background: var(--cream);
  color: var(--black);
}

.hero-button:hover span,
.hero-button:focus-visible span {
  transform: translateX(4px);
}

.hero-art {
  position: relative;
  min-height: 430px;
}

.home-media-replacement { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-art > .home-media-replacement { position: absolute; inset: 0; }
.hero-art.has-home-media > :not(.home-media-replacement) { display: none; }

.arrival-badge {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  width: 118px;
  height: 118px;
  margin: 0;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--gold-light);
  border: 1px solid var(--black);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
  transform: rotate(5deg);
}

.arrival-badge em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.sun {
  position: absolute;
  top: 2%;
  right: 2%;
  width: clamp(130px, 18vw, 250px);
  aspect-ratio: 1;
  background: rgba(245, 240, 231, 0.76);
  border: 1px solid rgba(30, 27, 24, 0.25);
  border-radius: 50%;
}

.product-stage {
  position: absolute;
  inset: 42px 10px 0 0;
}

.display-plinth {
  position: absolute;
  right: 3%;
  bottom: -1px;
  width: 91%;
  height: 25%;
  background: linear-gradient(165deg, #8b644a, #5b3928);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  box-shadow: 0 -7px 0 rgba(31, 29, 26, 0.12);
}

.art-frame {
  position: absolute;
  z-index: 1;
  top: 2%;
  left: 24%;
  width: 48%;
  height: 68%;
  padding: 10px;
  background: var(--wood);
  border: 2px solid var(--black);
  box-shadow: 16px 18px 0 rgba(31, 29, 26, 0.12);
  transform: rotate(1.5deg);
}

.art-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: #d5b28d;
  border: 1px solid var(--black);
}

.art-shape {
  position: absolute;
  z-index: 1;
  inset: 21% 22%;
  background: var(--graphite);
  border-radius: 48% 52% 40% 60%;
  transform: rotate(-18deg);
}

.art-shape::before,
.art-shape::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.art-shape::before {
  width: 68%;
  height: 54%;
  right: -24%;
  bottom: -10%;
  background: var(--gold);
}

.art-shape::after {
  width: 42%;
  aspect-ratio: 1;
  top: -16%;
  left: -8%;
  background: var(--cream);
}

.vase {
  position: absolute;
  z-index: 3;
  left: 7%;
  bottom: 18%;
  width: 23%;
  height: 43%;
  background: var(--graphite);
  border: 2px solid var(--black);
  border-radius: 34% 34% 22% 22% / 16% 16% 8% 8%;
  transform: rotate(-4deg);
}

.vase::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 25%;
  width: 50%;
  height: 10%;
  background: var(--black);
  border-radius: 50%;
}

.sculpture {
  position: absolute;
  z-index: 3;
  right: 1%;
  bottom: 19%;
  width: 26%;
  height: 43%;
  border: clamp(20px, 3.5vw, 44px) solid var(--cream-deep);
  border-bottom-width: 0;
  border-radius: 50% 50% 8% 8%;
  filter: drop-shadow(8px 10px 0 rgba(31, 29, 26, 0.12));
}

.spark {
  position: absolute;
  z-index: 3;
  color: var(--black);
  line-height: 1;
}

.spark-one {
  top: 28%;
  left: 7%;
  font-size: 2rem;
}

.spark-two {
  top: 40%;
  right: 2%;
  color: var(--gold);
  font-size: 3.5rem;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.6vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 em {
  color: var(--wood);
  font-weight: 400;
}

.experience-grid {
  padding: clamp(34px, 5vw, 70px) clamp(24px, 5vw, 80px) clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: var(--cream);
}

.experience-heading {
  grid-column: 1 / -1;
  max-width: 880px;
  padding: 0 0 clamp(24px, 3.5vw, 42px);
}

.experience-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.3vw, 4.4rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.experience-heading p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--graphite);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.65;
}

.experience-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(31, 29, 26, 0.28);
}

.card-visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-bottom: 1px solid rgba(31, 29, 26, 0.25);
}

.card-visual::before,
.card-visual::after {
  content: "";
  position: absolute;
}

.card-visual span {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.card-visual > .home-media-replacement { position: absolute; z-index: 3; inset: 0; }
.card-visual.has-home-media::before,
.card-visual.has-home-media::after { display: none; }
.card-visual.has-home-media > span:not(.home-media-replacement) { display: none; }

.card-visual-coworking {
  background: linear-gradient(145deg, #d8bb78, #f3e8d4);
}

.card-visual-coworking::before {
  right: 12%;
  bottom: -35%;
  width: 62%;
  height: 100%;
  background: var(--graphite);
  border-radius: 50% 50% 0 0;
}

.card-visual-workshops {
  background: linear-gradient(145deg, #c7d0b3, #edf0df);
}

.card-visual-workshops::before,
.card-visual-workshops::after {
  width: 45%;
  aspect-ratio: 1;
  border: 2px solid var(--wood);
  transform: rotate(45deg);
}

.card-visual-workshops::before {
  top: 20%;
  left: 10%;
}

.card-visual-workshops::after {
  right: 5%;
  bottom: -14%;
}

.card-visual-gallery {
  background: linear-gradient(145deg, #d5b09c, #f1dfd3);
}

.card-visual-gallery::before {
  top: 18%;
  left: 22%;
  width: 56%;
  height: 66%;
  background: var(--wood);
  border: 12px solid var(--gold-light);
  box-shadow: 10px 10px 0 rgba(31, 29, 26, 0.16);
}

.card-visual-3d {
  background: linear-gradient(145deg, #b9c1c2, #e9ece9);
}

.card-visual-3d::before {
  top: 23%;
  left: 30%;
  width: 40%;
  aspect-ratio: 1;
  border: 18px double var(--graphite);
  transform: rotate(45deg);
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 28px;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-weight: 400;
}

.card-content > p:not(.card-kicker) {
  min-height: 68px;
  margin: 16px 0 24px;
  color: var(--graphite);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.65;
}

.card-content a {
  margin-top: auto;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-content a span,
.outline-button span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 160ms ease;
}

.card-content a:hover span,
.card-content a:focus-visible span {
  transform: translateX(4px);
}

.card-content a.booking-attention {
  width: fit-content;
  padding: 14px 18px;
  color: var(--white);
  background: var(--black);
  box-shadow: 6px 6px 0 var(--gold);
  animation: booking-attention-pulse 2.4s ease-in-out infinite;
}

.card-content a.booking-attention:hover,
.card-content a.booking-attention:focus-visible {
  color: var(--black);
  background: var(--gold-light);
  animation-play-state: paused;
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

@keyframes booking-attention-pulse {
  0%, 58%, 100% {
    color: var(--white);
    background: var(--black);
    box-shadow: 6px 6px 0 var(--gold);
    transform: translateY(0);
  }
  70% {
    color: var(--black);
    background: var(--gold-light);
    box-shadow: 2px 2px 0 var(--wood);
    transform: translateY(2px);
  }
  82% {
    color: var(--white);
    background: var(--black);
    box-shadow: 6px 6px 0 var(--gold);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-content a.booking-attention {
    animation: none;
  }
}

.life-social {
  padding: 30px clamp(24px, 5vw, 80px) 42px;
  background: var(--black);
  color: var(--white);
}

.life-social-heading {
  padding: 8px 0 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.social-label {
  margin: 0 0 6px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.life-social h2 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  letter-spacing: -0.03em;
}

.life-social-action {
  max-width: 380px;
  text-align: right;
}

.life-social-action p {
  margin: 0 0 15px;
  color: #cfc7ba;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.65;
}

.social-icon-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.social-icon-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 50%;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-icon-links svg {
  width: 16px;
  height: 16px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-links .social-custom-link {
  width: auto;
  min-height: 34px;
  height: auto;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 18px;
  font-size: 0.875rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.social-icon-links .icon-fill {
  fill: currentColor;
  stroke: none;
}

.social-icon-links a:hover,
.social-icon-links a:focus-visible {
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
  outline: none;
  transform: translateY(-2px);
}

.social-icon-links a.spotify-link,
.social-icon-links a.spotify-link:hover,
.social-icon-links a.spotify-link:focus-visible {
  padding: 0;
  color: inherit;
  background: transparent;
  border-color: transparent;
}

.social-icon-links .spotify-logo {
  width: 34px;
  height: 34px;
}

.social-icon-links .spotify-disc {
  fill: #1ed760;
  stroke: none;
}

.social-icon-links .spotify-wave {
  fill: none;
  stroke: #191414;
  stroke-width: 1.55;
}

.life-carousel {
  position: relative;
}

.social-photo-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.social-photo-grid::-webkit-scrollbar {
  display: none;
}

.social-photo-grid > div {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 5);
  min-width: 0;
  height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.25);
  scroll-snap-align: start;
}

.social-photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.78);
  transition: transform 220ms ease, filter 220ms ease;
}

.life-carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 46px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(31, 29, 26, 0.9);
  border: 1px solid rgba(255, 253, 248, 0.55);
  font: 400 1.4rem/1 Arial, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.life-carousel-button.previous { left: -23px; }
.life-carousel-button.next { right: -23px; }
.life-carousel-button:hover,
.life-carousel-button:focus-visible { color: var(--black); background: var(--gold-light); outline: 2px solid var(--white); outline-offset: 2px; }
.life-carousel-button:disabled { opacity: 0.2; cursor: default; pointer-events: none; }

.coworking-feature {
  padding: clamp(50px, 7vw, 100px) clamp(24px, 6vw, 95px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: stretch;
  gap: clamp(38px, 6vw, 90px);
  background: var(--cream-deep);
  border-top: 1px solid rgba(31, 29, 26, 0.2);
}

.coworking-photo {
  position: relative;
  min-height: 610px;
}

.coworking-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--gold);
}

.coworking-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.98);
}

.coworking-photo img[data-home-image] { position: absolute; inset: 0; }

.coworking-photo > p {
  position: absolute;
  z-index: 2;
  right: -1px;
  bottom: -1px;
  width: min(340px, 80%);
  margin: 0;
  padding: 20px 22px;
  background: var(--black);
  color: #d8d0c4;
  font-size: 0.9rem;
  line-height: 1.55;
}

.coworking-photo > p span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coworking-details {
  align-self: center;
}

.homepage-section-title.coworking-section-title {
  margin-bottom: clamp(32px, 4vw, 46px);
}

.coworking-intro {
  max-width: 650px;
  margin: 0 0 38px;
  color: var(--graphite);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7;
}

.space-options {
  margin-bottom: 32px;
  border-top: 1px solid rgba(31, 29, 26, 0.25);
}

.space-options > div {
  padding: 21px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-bottom: 1px solid rgba(31, 29, 26, 0.25);
}

.space-options > div > span {
  padding-top: 2px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.space-options p {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.6;
}

.space-options strong {
  display: block;
  margin-bottom: 5px;
  color: var(--black);
  font-size: clamp(0.9rem, 1vw, 1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-note {
  max-width: 390px;
  margin: 16px 0 0;
  color: var(--graphite);
  font-size: 0.85rem;
  line-height: 1.5;
}

.workshops-feature {
  padding: clamp(70px, 9vw, 125px) clamp(24px, 6vw, 95px);
  background: var(--cream);
}

.workshops-heading {
  max-width: 570px;
  margin-bottom: clamp(52px, 7vw, 88px);
}

.homepage-section-title {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.homepage-section-title span {
  width: 56px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
}

.workshops-heading > p:not(.homepage-section-title),
.gallery-heading > p:not(.homepage-section-title) {
  margin: 0 0 19px;
  color: var(--graphite);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.65;
}

.workshops-heading > a,
.gallery-heading > a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workshops-heading > a span,
.gallery-heading > a span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 160ms ease;
}

.workshops-heading > a:hover span,
.workshops-heading > a:focus-visible span,
.gallery-heading > a:hover span,
.gallery-heading > a:focus-visible span {
  transform: translateY(3px);
}

.workshop-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workshop-preview {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(31, 29, 26, 0.25);
}

.workshop-preview > .workshop-preview-media {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: cover;
  filter: saturate(0.8) contrast(0.96);
}

.workshop-preview video.workshop-preview-media { background: var(--black); }

.workshop-preview-placeholder {
  display: grid !important;
  place-items: center;
  color: var(--gold);
  background: var(--cream-deep);
  font: 700 0.8rem/1 Arial, sans-serif;
  letter-spacing: 0.2em;
}

.workshop-preview > div {
  padding: 25px 23px 28px;
}

.workshop-date {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.workshop-preview h3 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.workshop-preview > div > p:last-child {
  margin: 15px 0 0;
  color: var(--graphite);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.65;
}

.gallery-feature {
  padding: clamp(70px, 9vw, 125px) clamp(24px, 6vw, 95px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.gallery-heading {
  max-width: 650px;
  margin-bottom: clamp(52px, 7vw, 88px);
}

.gallery-heading .homepage-section-title {
  color: var(--gold-light);
}

.gallery-heading .homepage-section-title span {
  background: var(--gold-light);
}

.gallery-heading > p:not(.homepage-section-title) {
  color: #cec6ba;
}

.gallery-heading > a {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 245px 245px;
  gap: 12px;
}

.gallery-piece {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.3);
}

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

.gallery-piece-wide {
  grid-column: 2 / 4;
}

.gallery-piece img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) brightness(0.98);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-piece::after {
  content: "";
  position: absolute;
  inset: 72% 0 0;
  background: linear-gradient(transparent, rgba(31, 29, 26, 0.68));
}

.gallery-piece figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-piece:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.025);
}

.company-section-label {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.find-us-section {
  scroll-margin-top: 90px;
  display: grid;
  grid-template-columns: minmax(390px, 42%) minmax(540px, 58%);
  min-height: 535px;
  border-top: 1px solid rgba(31, 29, 26, 0.22);
  border-bottom: 1px solid rgba(31, 29, 26, 0.22);
  background: #f2e8d8;
  overflow: hidden;
}

.find-us-panel {
  position: relative;
  min-width: 0;
  padding: clamp(58px, 5.4vw, 82px) clamp(28px, 4.7vw, 72px) clamp(48px, 4.2vw, 64px);
  border-right: 1px solid rgba(31, 29, 26, 0.18);
  background: linear-gradient(110deg, var(--cream) 0%, #f0e2cd 100%);
  overflow: hidden;
}

.find-us-plant {
  position: absolute;
  right: clamp(18px, 2.6vw, 42px);
  bottom: clamp(26px, 3vw, 44px);
  width: clamp(118px, 11vw, 158px);
  display: grid;
  place-items: end center;
  opacity: 0.68;
}

.find-us-plant svg { width: 100%; height: 300px; overflow: visible; }
.find-us-plant path { fill: none; stroke: #77603e; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.find-us-plant path:not(.plant-pot) { fill: rgba(182, 151, 94, 0.13); }
.find-us-plant .plant-pot { fill: #d7be91; stroke: #a68859; }

.find-us-copy {
  position: relative;
  z-index: 1;
  width: min(330px, calc(100% - 140px));
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.find-us-copy h2 {
  margin: 0;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.7rem, 3.8vw, 4.45rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.find-us-detail { display: grid; grid-template-columns: 22px 1fr; gap: 12px; margin-top: 30px; align-items: start; }
.find-us-copy h2 + .find-us-detail { margin-top: clamp(50px, 4.5vw, 68px); }
.find-us-detail > span { width: 22px; height: 22px; display: grid; place-items: center; color: var(--gold); font-size: 0.72rem; }
.find-us-detail p,
.find-us-detail address { margin: 0; color: var(--graphite); font-size: 0.88rem; font-style: normal; line-height: 1.5; }
.find-us-detail address strong { color: var(--brown); font-weight: 800; letter-spacing: 0.04em; }

.find-us-button {
  min-height: 44px;
  margin-top: auto;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--white);
  background: var(--black);
  box-shadow: 5px 5px 0 var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.find-us-button:hover,
.find-us-button:focus-visible { color: var(--black); background: var(--gold-light); }

.find-us-map { position: relative; min-width: 0; min-height: 535px; overflow: hidden; background: #eee4d2; }
.find-us-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% center;
}
.find-us-map > svg,
.find-us-map > .pernook-map-marker,
.find-us-map > .pernook-map-label { display: none; }
.map-highway { fill: none; stroke: #dfcfac; stroke-width: 68; opacity: 0.72; }
.map-blocks { fill: #f4ecde; stroke: #ddd1bd; stroke-width: 1; }
.map-roads { fill: none; stroke: #fffaf0; stroke-width: 5; opacity: 0.92; }
.map-roads path:nth-child(n+5) { stroke-width: 2.2; }
.map-parks { fill: #dce2c4; opacity: 0.75; }
.map-labels { fill: #6c665e; font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; }

.pernook-map-marker {
  position: absolute;
  left: 54%;
  top: 42%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 50% 50% 50% 0;
  background: var(--black);
  box-shadow: 0 6px 14px rgba(31,29,26,0.22);
}

.pernook-map-marker span { position: absolute; width: 12px; height: 12px; left: 14px; top: 14px; border-radius: 50%; background: #f4ead9; }
.pernook-map-label { position: absolute; left: 54%; top: calc(42% + 34px); transform: translateX(-50%); display: grid; justify-items: center; text-align: center; text-transform: uppercase; }
.pernook-map-label strong { font-size: 0.8rem; letter-spacing: 0.08em; }
.pernook-map-label span { margin-top: 16px; color: #4f4a43; font-size: 0.58rem; font-weight: 700; line-height: 1.35; }

.contact-section {
  scroll-margin-top: 90px;
  padding: clamp(48px, 6vw, 86px) clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(260px, 0.75fr) minmax(420px, 1.35fr);
  align-items: stretch;
  gap: clamp(30px, 4vw, 64px);
  border-top: 1px solid rgba(31, 29, 26, 0.22);
  background: linear-gradient(105deg, var(--cream) 0%, #f5e8d4 100%);
}

.contact-intro {
  position: relative;
  min-height: 360px;
  padding-right: clamp(18px, 2.5vw, 40px);
  border-right: 1px solid rgba(31, 29, 26, 0.2);
}

.contact-intro h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 0.95;
  white-space: nowrap;
}

.contact-intro > p:not(.company-section-label) {
  max-width: 400px;
  margin: 0;
  color: var(--graphite);
  font-size: 1.02rem;
  line-height: 1.6;
}

.contact-art {
  position: absolute;
  right: 34px;
  bottom: 0;
  left: 0;
  height: 118px;
  overflow: hidden;
  border-bottom: 2px solid var(--wood);
  color: var(--wood);
}

.contact-art::before,
.contact-art::after,
.contact-art-door,
.contact-art-window,
.contact-art-plant {
  content: "";
  position: absolute;
  bottom: 0;
}

.contact-art::before {
  left: 7%;
  width: 72%;
  height: 72px;
  border: 2px solid currentColor;
  border-bottom: 0;
}

.contact-art::after {
  left: 2%;
  width: 82%;
  height: 85px;
  border-top: 2px solid currentColor;
  transform: skewY(-5deg);
  transform-origin: left;
}

.contact-art-door {
  z-index: 1;
  left: 33%;
  width: 31px;
  height: 50px;
  border: 2px solid currentColor;
  border-bottom: 0;
}

.contact-art-window {
  z-index: 1;
  left: 58%;
  width: 48px;
  height: 32px;
  border: 2px solid currentColor;
  border-bottom: 0;
}

.contact-art-plant {
  right: 3%;
  width: 36px;
  height: 62px;
  border-left: 2px solid currentColor;
  transform: rotate(-7deg);
}

.contact-art strong {
  position: absolute;
  z-index: 2;
  bottom: 56px;
  left: 23%;
  padding: 3px 8px;
  background: #f3e6d2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: var(--black);
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 29, 26, 0.35);
  border-radius: 50%;
  font-size: 1.1rem;
}

.contact-detail small {
  display: block;
  margin-bottom: 4px;
  color: var(--wood);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hours {
  cursor: default;
}

.contact-detail:hover .contact-detail-icon,
.contact-detail:focus-visible .contact-detail-icon {
  color: var(--white);
  background: var(--black);
}

.contact-form {
  display: grid;
  align-content: center;
  gap: 10px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 29, 26, 0.34);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--black);
  background: rgba(255, 253, 249, 0.62);
  font: inherit;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.contact-form button {
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  background: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  color: var(--black);
  background: var(--gold-light);
}

.contact-form-note {
  margin: 2px 0 0;
  color: var(--graphite);
  font-size: 0.72rem;
}

.site-footer {
  padding: 36px clamp(24px, 5vw, 80px) 42px;
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) repeat(2, minmax(150px, 0.65fr)) minmax(280px, 1fr);
  gap: clamp(30px, 4vw, 64px);
  color: #ded8cf;
  background: var(--black);
}

.site-footer a {
  color: inherit;
}

.brand-light {
  width: fit-content;
  color: var(--white) !important;
}

.brand-light .brand-word {
  color: var(--gold-light);
}

.footer-brand p {
  max-width: 290px;
  margin: 22px 0;
  color: #bdb6ac;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-brand small {
  color: #8e887f;
  font-size: 0.7rem;
}

.footer-column {
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-column h2 {
  margin: 2px 0 10px;
  color: var(--gold-light);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  font-size: 0.76rem;
  line-height: 1.35;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold-light);
}

.footer-social > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
}

.about-page {
  background: var(--cream);
}

.about-simple {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 4vw, 48px) clamp(64px, 7vw, 96px);
}

.about-simple-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--gold);
}

.about-simple-heading h1 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.about-motto {
  max-width: 28ch;
  margin: 0;
  color: var(--wood);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-style: italic;
  line-height: 1.35;
  text-align: right;
}

.about-motto span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-simple-copy {
  padding-top: 32px;
}

.about-simple-copy p {
  margin: 0 0 24px;
  color: var(--graphite);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.8;
}

.about-simple-copy p:last-child {
  margin-bottom: 0;
}

.about-simple-copy .about-simple-lead {
  margin-bottom: 30px;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  line-height: 1.45;
}

.about-trail {
  margin: 0;
  padding-inline: clamp(24px, 5vw, 80px);
}

.about-hero {
  padding: clamp(44px, 6vw, 88px) clamp(24px, 5vw, 80px) clamp(62px, 8vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.section-label {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label span {
  width: 46px;
  height: 2px;
  background: var(--gold);
}

.about-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7.2vw, 8rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.05em;
}

.about-hero-copy > p:last-child {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.about-hero-image {
  position: relative;
  margin: 0;
}

.about-hero-image::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  background: var(--gold);
}

.about-hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(430px, 50vw, 660px);
  display: block;
  object-fit: cover;
}

.about-hero-image figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 16px 22px;
  color: var(--white);
  background: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-story {
  padding: clamp(60px, 8vw, 120px) clamp(24px, 8vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 130px);
  border-top: 1px solid rgba(31, 29, 26, 0.2);
  background: var(--white);
}

.about-story h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.about-story > div p {
  margin: 0 0 24px;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(31, 29, 26, 0.2);
}

.about-values article {
  min-height: 310px;
  padding: clamp(42px, 5vw, 74px);
  border-right: 1px solid rgba(31, 29, 26, 0.2);
}

.about-values article:last-child {
  border-right: 0;
}

.about-values span {
  color: var(--wood);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.about-values h2 {
  margin: 38px 0 18px;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
}

.about-values p {
  max-width: 390px;
  margin: 0;
  color: var(--graphite);
  font-size: 1rem;
  line-height: 1.65;
}

.page-closing-cta {
  width: 100%;
  margin: 0;
  padding: clamp(38px, 5vw, 68px) clamp(22px, 6vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 35px;
  color: var(--white);
  background: var(--black);
}

.page-closing-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.page-closing-cta p {
  margin: 0;
  padding-left: 34px;
  border-left: 2px solid var(--gold);
  color: #d8d0c5;
  font-size: 1rem;
  line-height: 1.55;
}

.page-closing-cta a {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .site-header {
    min-height: 82px;
    padding: 14px 24px;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }

  .brand {
    gap: 11px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .brand-mark::before {
    width: 5px;
    height: 5px;
    box-shadow: 22px 0 var(--gold), 0 22px var(--gold), 22px 22px var(--gold);
  }

  .brand-diamond {
    width: 16px;
    height: 16px;
  }

  .brand-word {
    font-size: 1.14rem;
    letter-spacing: 0.22em;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] .menu-line:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-line:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-line:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 24px 22px;
    background: var(--cream);
    border-bottom: 1px solid var(--black);
    box-shadow: 0 18px 30px rgba(30, 27, 24, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(30, 27, 24, 0.13);
    font-size: 0.76rem;
  }

  .main-nav a:nth-child(3) {
    margin-left: 0;
    padding-left: 0;
  }

  .main-nav a:nth-child(3)::before {
    display: none;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .store-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-art {
    min-height: 300px;
  }

  .arrival-badge {
    width: 96px;
    height: 96px;
  }

  .product-stage {
    inset: 20px 8% 0;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-photo-grid > div { flex-basis: calc((100% - 20px) / 3); }

  .coworking-feature {
    grid-template-columns: 1fr;
  }

  .coworking-photo {
    min-height: 480px;
  }

  .workshop-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workshop-preview:last-child {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 310px 240px 240px;
  }

  .gallery-piece-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-piece-wide {
    grid-column: 1 / -1;
  }

  .find-us-section {
    grid-template-columns: 1fr;
  }

  .find-us-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(31, 29, 26, 0.18);
  }

  .find-us-map {
    min-height: 350px;
  }

  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .contact-intro {
    grid-column: 1 / -1;
    min-height: 300px;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 29, 26, 0.2);
  }

  .contact-art {
    right: 50%;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero,
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-hero-image img {
    height: 520px;
  }

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

  .about-values article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 29, 26, 0.2);
  }

  .about-values article:last-child {
    border-bottom: 0;
  }

  .page-closing-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-closing-cta p {
    padding: 0;
    border-left: 0;
  }

}

@media (max-width: 520px) {
  .site-header {
    padding: 20px;
  }

  .brand-mark {
    display: none;
  }

  .brand-word {
    font-size: 1.12rem;
  }

  .store-hero {
    padding: 52px 20px 0;
  }

  h1 {
    font-size: clamp(4.8rem, 24vw, 7rem);
  }

  .hero-art {
    min-height: 250px;
  }

  .arrival-badge {
    top: 10px;
    right: 4px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .life-social {
    padding-inline: 20px;
  }

  .life-social-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .life-social-action {
    text-align: left;
  }

  .social-icon-links {
    justify-content: flex-start;
  }

  .social-photo-grid > div { flex-basis: calc((100% - 10px) / 2); }

  .social-photo-grid > div {
    height: 165px;
  }

  .life-carousel-button.previous { left: -12px; }
  .life-carousel-button.next { right: -12px; }

  .card-visual {
    min-height: 210px;
  }

  .card-content > p:not(.card-kicker) {
    min-height: auto;
  }

  .find-us-section {
    grid-template-columns: 1fr;
  }

  .find-us-panel {
    padding: 34px 20px;
    grid-template-columns: 1fr;
  }

  .find-us-plant {
    display: none;
  }

  .find-us-copy {
    width: 100%;
  }

  .find-us-map {
    min-height: 300px;
  }

  .contact-section {
    padding-inline: 20px;
    grid-template-columns: 1fr;
  }

  .contact-intro {
    min-height: 330px;
  }

  .contact-art {
    right: 0;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 20px;
    grid-template-columns: 1fr;
  }

  .footer-column {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .about-trail,
  .about-hero,
  .about-story {
    padding-inline: 20px;
  }

  .about-simple {
    padding: 36px 20px 64px;
  }

  .about-simple-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
  }

  .about-motto {
    max-width: 100%;
    text-align: left;
  }

  .about-simple-copy {
    padding-top: 26px;
  }

  .about-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.7rem);
  }

  .about-hero-image img {
    height: 390px;
  }

  .about-hero-image::before {
    inset: 10px -8px -10px 10px;
  }

  .about-values article {
    padding-inline: 20px;
  }

  .coworking-feature {
    padding: 46px 20px 62px;
  }

  .coworking-photo {
    min-height: 350px;
  }

  .coworking-photo::before {
    inset: 10px -8px -10px 10px;
  }

  .coworking-details h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .workshops-feature {
    padding: 62px 20px;
  }

  .workshop-preview-grid {
    grid-template-columns: 1fr;
  }

  .workshop-preview:last-child {
    grid-column: auto;
  }

  .workshop-preview > .workshop-preview-media {
    height: 230px;
  }

  .gallery-feature {
    padding: 62px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-piece,
  .gallery-piece-large,
  .gallery-piece-wide {
    grid-column: auto;
    grid-row: auto;
    height: 245px;
  }

  .gallery-piece-large {
    height: 320px;
  }
}
/* Saved social links can be hidden without leaving dead links in the footer. */
[data-social][hidden], .footer-social[hidden], .social-icon-links[hidden] { display: none !important; }
.about-simple-heading h1, .about-motto, .find-us-detail address { overflow-wrap: anywhere; }

/* Homepage Store banner: edge-to-edge photo with compact, readable copy. */
.store-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(507.195px, 77.0185svh, 770.185px);
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(42px, 5vw, 72px) clamp(24px, 7vw, 110px);
  gap: 0;
}
.store-hero > .hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 0;
  width: 100%;
  height: 100%;
}
.store-hero > .hero-art > .home-media-replacement {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.store-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(246,240,229,0.768) 0%, rgba(246,240,229,0.704) 32%, rgba(246,240,229,0.384) 53%, rgba(246,240,229,0.048) 76%);
}
.store-hero .hero-content { max-width: 620px; }
.store-hero h1 { font-size: clamp(5rem, 10vw, 9rem); }
.store-hero .hero-copy { max-width: 510px; margin: 26px 0 30px; }
@media (max-width: 600px) {
  .store-hero { min-height: 507.195px; padding: 44px 24px 88px; }
  .store-hero::before { background: linear-gradient(90deg, rgba(246,240,229,0.752), rgba(246,240,229,0.64) 65%, rgba(246,240,229,0.384)); }
  .store-hero h1 { font-size: clamp(4.5rem, 19vw, 6rem); }
}

.store-video-toggle { position:absolute; z-index:2; right:24px; bottom:24px; padding:12px 18px; border:1px solid #fff8; border-radius:30px; background:#211f1be6; color:#fff; font:600 14px Arial,sans-serif; cursor:pointer; }
.store-video-toggle[hidden] { display:none; }
.store-video-toggle:focus-visible { outline:3px solid #b78a36; outline-offset:4px; }
/* Animated still life, automatically hidden when an admin uploads banner media. */
.store-hero .hero-art>.store-placeholder{position:absolute;inset:0;width:100%;height:100%;display:block}
.store-hero .hero-art.has-home-media>.store-placeholder{display:none}
.store-art-float{animation:store-drift 10s ease-in-out infinite;transform-origin:976px 440px}
.store-stems{animation:store-sway 9s ease-in-out infinite;transform-origin:1175px 430px}
.store-glint{animation:store-shimmer 6s ease-in-out infinite}
@keyframes store-drift{50%{transform:translateY(-9px) rotate(-1deg)}}
@keyframes store-sway{50%{transform:rotate(2deg)}}
@keyframes store-shimmer{50%{opacity:.25}}
.store-hero.animation-paused .store-placeholder *{animation-play-state:paused}
@media(prefers-reduced-motion:reduce){.store-placeholder *{animation:none!important}}

/* Fractional motion keeps the slow photo wheel smooth between native scroll pixels. */
#life-photo-track > div { translate: var(--life-drift, 0px) 0; }

/* Neutral frames until the current saved media is known and decoded. */
img[data-image-state="loading"], img[data-image-state="error"], img[data-image-state="empty"] { visibility: hidden; }
[data-home-pending] { background: var(--cream-deep, #e9e0ce); }
[data-home-pending] > *, [data-home-pending]::before, [data-home-pending]::after { visibility: hidden; }
#workshop-previews[aria-busy="true"] > * { visibility: hidden; }
.social-photo-grid > div { background: rgba(255, 255, 255, .055); }

/* Keep the framed art visible when gallery cards stack on smaller screens. */
@media (min-width: 521px) and (max-width: 1050px) {
  .gallery-piece-large { grid-column: auto; grid-row: span 2; }
  .gallery-grid { grid-template-rows: 240px 240px auto; }
  .gallery-piece-wide { height: auto; aspect-ratio: 2 / 1; }
}
@media (max-width: 520px) {
  .gallery-piece { height: auto; aspect-ratio: 4 / 3; }
  .gallery-piece-large { height: auto; aspect-ratio: 1 / 1; }
  .gallery-piece-wide { height: auto; aspect-ratio: 2 / 1; }
}
