/* ══ ANNOUNCEMENT BAR — see snippet-announcement.html ══ */
/* ══ NAV — see snippet-nav.html ══ */

/* ══ SHARED ══ */
.section-divider {
  height: 1px;
  background: var(--greige);
  opacity: 0.6;
  margin: 0;
}
.section-heading {
  font-family: "Exquise", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--aubergine);
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-heading em {
  font-style: italic;
  color: var(--pink);
}
.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;
}

/* ══ IMAGE PLACEHOLDERS ══ */
.img-placeholder {
  background: var(--light-plum);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.img-placeholder span {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ══ PAGE HERO — dusty blush ══ */
.page-hero {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--dusty-blush);
  padding: 80px 64px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.page-hero-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aubergine);
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
  opacity: 0.7;
}
.page-hero-title {
  font-family: "Exquise", serif;
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--aubergine);
  margin-bottom: 18px;
}
.page-hero-title em {
  font-style: italic;
  color: var(--pink);
}
.page-hero-rule {
  width: 48px;
  height: 2px;
  background: var(--pink);
  margin: 0 auto 22px;
}
.page-hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--aubergine);
  opacity: 0.78;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .page-hero {
    padding: 64px 32px;
    min-height: 320px;
  }
}
@media (max-width: 600px) {
  .page-hero {
    padding: 56px 24px;
    min-height: 280px;
  }
}

/* ══ ORANGE RULE (replaces jump nav) ══ */
.page-orange-rule {
  height: 3px;
  background: var(--orange);
}

/* ══ INTRO SECTION ══ */
.space-intro {
  background: var(--chalk);
  padding: 88px 64px;
}
.space-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-left .section-heading {
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 24px;
}
.intro-.intro-right {
  padding-top: 12px;
}
.intro-pull {
  font-family: "Exquise", serif;
  font-size: clamp(19px, 2vw, 25px);
  font-style: italic;
  color: var(--aubergine);
  line-height: 1.45;
  border-left: 3px solid var(--orange);
  padding-left: 22px;
  margin-top: 32px;
  margin-bottom: 0;
}
.intro-pull span {
  color: var(--pink);
}
.businesses-heading {
  font-family: "Exquise", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--aubergine);
  line-height: 1.15;
  margin-bottom: 18px;
}
.businesses-heading em {
  font-style: italic;
  color: var(--pink);
}
.businesses-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--greige);
}
.businesses-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--greige);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.businesses-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 10px;
}
.businesses-list strong {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 4px;
}
.businesses-list strong a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 0, 98, 0.3);
  transition: border-color 0.2s;
  padding-bottom: 1px;
}
.businesses-list strong a:hover {
  border-bottom-color: var(--pink);
}
.businesses-list span {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--aubergine);
  opacity: 0.82;
  display: block;
}
@media (max-width: 900px) {
  .space-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .space-intro {
    padding: 60px 32px;
  }
  .intro-body {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .space-intro {
    padding: 48px 24px;
  }
  .businesses-list span {
    font-size: 16px;
  }
}

/* ══ HERO IMAGE BAND ══ */
.hero-image-band {
  height: 580px;
  position: relative;
  overflow: hidden;
}
.hero-image-band .img-placeholder {
  height: 100%;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(59, 19, 46, 0) 50%,
    rgba(59, 19, 46, 0.55) 100%
  );
}
.hero-image-caption {
  position: absolute;
  bottom: 40px;
  left: 64px;
  z-index: 2;
}
.hero-image-caption span {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .hero-image-band {
    height: 440px;
  }
  .hero-image-caption {
    left: 32px;
    bottom: 32px;
  }
}
@media (max-width: 600px) {
  .hero-image-band {
    height: 320px;
  }
  .hero-image-caption {
    left: 24px;
    bottom: 24px;
  }
  .hero-image-caption span {
    font-size: 13px;
  }
}

/* ══ STUDIO SECTIONS ══ */
.studio-section {
  position: relative;
  overflow: hidden;
}
.studio-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}
.studio-inner.reverse {
  direction: rtl;
}
.studio-inner.reverse > * {
  direction: ltr;
}
.studio-copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.studio-copy h3 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--aubergine);
}
.studio-copy h3 em {
  font-style: italic;
  color: var(--pink);
}
.studio-copy p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--aubergine);
  opacity: 0.82;
}
.studio-image {
  position: relative;
  overflow: hidden;
}
.studio-image .img-placeholder {
  height: 100%;
  min-height: 560px;
}
.studio-bg-chalk {
  background: var(--chalk);
}
.studio-bg-linen {
  background: var(--linen);
}
@media (max-width: 900px) {
  .studio-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .studio-inner.reverse {
    direction: ltr;
  }
  .studio-copy {
    padding: 60px 32px;
  }
  .studio-image .img-placeholder {
    height: auto;
    aspect-ratio: 1/1;
    min-height: 0;
  }
  .studio-copy p {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .studio-copy {
    padding: 48px 24px;
  }
}

/* ══ BUILDING SECTION ══ */
.building-section {
  background: var(--aubergine);
  position: relative;
  overflow: hidden;
}
.building-section::before {
  content: '"';
  position: absolute;
  top: -80px;
  right: 40px;
  font-family: "Exquise", serif;
  font-size: clamp(220px, 30vw, 440px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.building-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
  position: relative;
  z-index: 1;
}
.building-copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.building-copy h3 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}
.building-copy h3 em {
  font-style: italic;
  color: var(--orange);
}
.building-copy p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}
.building-image {
  position: relative;
  overflow: hidden;
}
.building-image .img-placeholder {
  height: 100%;
  min-height: 560px;
  background: var(--grey-magenta);
}
@media (max-width: 900px) {
  .building-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .building-copy {
    padding: 60px 32px;
  }
  .building-image .img-placeholder {
    height: auto;
    aspect-ratio: 1/1;
    min-height: 0;
  }
  .building-copy p {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .building-copy {
    padding: 48px 24px;
  }
  .building-section::before {
    right: 10px;
    top: -40px;
  }
}

/* ══ FACILITIES ══ */
.facilities-section {
  background: var(--greige);
  position: relative;
  overflow: hidden;
}
.facilities-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}
.facilities-copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.facilities-copy h3 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--aubergine);
}
.facilities-copy h3 em {
  font-style: italic;
  color: var(--pink);
}
.facilities-copy p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--aubergine);
  opacity: 0.82;
}
.facilities-image {
  position: relative;
  overflow: hidden;
}
.facilities-image .img-placeholder {
  height: 100%;
  min-height: 560px;
  background: var(--light-plum);
}
@media (max-width: 900px) {
  .facilities-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .facilities-copy {
    padding: 60px 32px;
  }
  .facilities-image .img-placeholder {
    height: auto;
    aspect-ratio: 1/1;
    min-height: 0;
  }
  .facilities-copy p {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .facilities-copy {
    padding: 48px 24px;
  }
}

/* ══ ARTWORK SECTION ══ */
.artwork-section {
  background: var(--chalk);
  position: relative;
  overflow: hidden;
}
.artwork-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}
.artwork-copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.artwork-copy h3 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--aubergine);
}
.artwork-copy h3 em {
  font-style: italic;
  color: var(--pink);
}
.artwork-copy p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--aubergine);
  opacity: 0.82;
  margin-bottom: 16px;
}
.artwork-copy p em {
  font-style: italic;
  color: var(--aubergine);
}
.artwork-copy a {
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 0, 98, 0.3);
  transition: border-color 0.2s;
}
.artwork-copy a:hover {
  border-bottom-color: var(--pink);
}
.artwork-images {
  display: block;
  height: 100%;
}
.artwork-images .img-placeholder {
  height: 100%;
  min-height: 560px;
  background: var(--greige);
}
@media (max-width: 900px) {
  .artwork-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .artwork-copy {
    padding: 60px 32px;
  }
  .artwork-copy p {
    font-size: 17px;
  }
  .artwork-images .img-placeholder {
    aspect-ratio: 1/1;
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .artwork-copy {
    padding: 48px 24px;
  }
}

/* ══ DEREK DEDICATION ══ */
.derek-section {
  background: var(--charcoal-plum);
  position: relative;
  overflow: hidden;
}
.derek-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}
.derek-image {
  position: relative;
  overflow: hidden;
}
.derek-image .img-placeholder {
  height: 100%;
  min-height: 520px;
  background: var(--grey-magenta);
}
.derek-copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.derek-copy h3 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}
.derek-copy h3 em {
  font-style: italic;
  color: var(--orange);
}
.derek-copy p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}
.derek-dates {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  display: block;
}
@media (max-width: 900px) {
  .derek-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .derek-copy {
    padding: 60px 32px;
  }
  .derek-image .img-placeholder {
    height: auto;
    aspect-ratio: 1/1;
    min-height: 0;
  }
  .derek-copy p {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .derek-copy {
    padding: 48px 24px;
  }
}

/* ══ NEWSLETTER ══ */
.newsletter-band {
  background: var(--pink);
  padding: 72px 64px;
  text-align: center;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-inner h3 {
  font-family: "Exquise", serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}
.newsletter-inner h3 em {
  font-style: italic;
  color: var(--orange);
}
.newsletter-inner > p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 28px;
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto 12px;
}
.nl-input {
  padding: 13px 18px;
  border: none;
  background: white;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  color: var(--aubergine);
  outline: none;
  min-width: 0;
  width: 100%;
}
.nl-input::placeholder {
  color: var(--light-plum);
}
.nl-btn {
  padding: 13px 24px;
  background: white;
  color: var(--pink);
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
  margin-top: 4px;
  font-weight: 500;
}
.nl-btn:hover {
  background: var(--pinked-linen);
  color: var(--pink);
}
.nl-note {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
}
@media (max-width: 900px) {
  .newsletter-band {
    padding: 60px 32px;
  }
}
@media (max-width: 600px) {
  .newsletter-band {
    padding: 48px 24px;
  }
  .nl-btn {
    padding: 14px 24px;
  }
}

/* for section images and mobile section layout*/

.hero-image-band,
.studio-image,
.building-image,
.facilities-image,
.artwork-images,
.derek-image {
  overflow: hidden;
}

.hero-image-band img,
.studio-image img,
.building-image img,
.facilities-image img,
.artwork-images img,
.derek-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .studio-copy,
  .building-copy,
  .facilities-copy,
  .artwork-copy,
  .derek-copy {
    order: 1;
  }

  .studio-image,
  .building-image,
  .facilities-image,
  .artwork-images,
  .derek-image {
    order: 2;
  }
}
