/* ============ TOKENS ============
   Same values as the rest of the site, duplicated here so this page stays
   self-contained and editing it can never affect other pages. */
:root {
  --red: #c23c1a;
  --blue: #1c1cb0;
  --black: #0e0e0e;
  --cream: #f2ede4;
  --white: #fbf9f5;

  --pad: clamp(1.5rem, 6vw, 5rem);

  --font-display: "Archivo Black", sans-serif;
  --font-body: "Archivo Expanded", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--blue);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 0.92; }

/* ============ NAV (same as the rest of the site) ============ */
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding: 1.4rem var(--pad) 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blue);
}

.nav__link { color: var(--white); opacity: 0.95; transition: opacity 0.15s ease; }
.nav__link:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.nav__link--current { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

/* ============ HERO — STUDIO BADASS ============ */
.st-hero {
  position: relative;
  background: var(--blue);
  padding: clamp(1.5rem, 4vw, 3rem) var(--pad) clamp(3rem, 7vw, 5rem);
}

.st-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.st-hero__title {
  font-weight: 800;
  font-size: clamp(3.4rem, 9.5vw, 6.6rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: clamp(1.6px, 0.18vw, 2.6px) var(--white);
  text-stroke: clamp(1.6px, 0.18vw, 2.6px) var(--white);
}

.st-hero__tagline {
  margin: clamp(0.6rem, 1.5vw, 1rem) 0 0;
  font-weight: 800;
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  letter-spacing: 0.01em;
  color: var(--red);
  text-transform: uppercase;
}

.st-hero__sub {
  margin: clamp(3rem, 8vw, 5.5rem) 0 0;
  max-width: 22rem;
  font-weight: 600;
  font-size: clamp(0.78rem, 1.15vw, 0.9rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(251, 249, 245, 0.55);
  text-transform: uppercase;
}

.st-hero__photo-frame {
  width: 100%;
  aspect-ratio: 1244 / 1769;
  overflow: hidden;
}

.st-hero__photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ============ LOOK GOOD, FEEL GOOD ============ */
.st-look {
  position: relative;
  background-image: url("assets/zebra.jpg");
  background-size: cover;
  background-position: center;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad) clamp(3rem, 7vw, 5rem);
}

.st-look__heading {
  font-weight: 800;
  font-size: clamp(2rem, 6.5vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.01em;
  color: var(--red);
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
}

.st-look__break { display: none; }

.st-look__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  max-width: 52rem;
  margin: 0 auto;
}

.st-look__card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  min-height: clamp(18rem, 30vw, 23rem);
  padding: clamp(1.5rem, 3.5vw, 2rem) clamp(1.5rem, 3.5vw, 2.25rem) clamp(2rem, 4.5vw, 2.75rem);
}

/* The "?" is the dominant graphic of the card — centered in the space
   above the title, large and heavy, not a small icon sitting in a
   corner. The title/description stay left-aligned beneath it. */
.st-look__mark-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-look__mark {
  font-weight: 800;
  font-size: clamp(5.5rem, 12vw, 8rem);
  line-height: 1;
  color: var(--blue);
  -webkit-text-stroke: 0.02em var(--blue);
  text-stroke: 0.02em var(--blue);
  margin: 0;
}

.st-look__card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 0.4em;
}

.st-look__card-text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #2c2c2c;
}

/* ============ ARTSHOW ============ */
.st-art {
  background: var(--red);
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}

.st-art__heading {
  font-weight: 800;
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: clamp(1.6px, 0.2vw, 3px) var(--white);
  text-stroke: clamp(1.6px, 0.2vw, 3px) var(--white);
  margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
}

.st-art__intro {
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
}

.st-art__grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

/* Portrait lines up with the photo row on the right (not with the
   "HER WORK:" label above it), so the two columns read as one
   deliberately aligned composition instead of two independently
   top-anchored blocks. */
.st-art__portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-top: 1.85rem;
}

.st-art__portrait img { width: 100%; height: 100%; object-fit: cover; }

.st-art__name {
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--blue);
  text-transform: uppercase;
  margin: clamp(1rem, 2.5vw, 1.5rem) 0 0.6rem;
}

.st-art__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  text-transform: uppercase;
}

.st-art__ig svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

.st-art__bio {
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  max-width: 30rem;
  font-weight: 500;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.st-art__work-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.st-art__work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.6rem, 1.5vw, 1rem);
}

.st-art__work-frame {
  aspect-ratio: 1 / 1.35;
  overflow: hidden;
}

.st-art__work-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ============ STUDIO POLICIES ============ */
.st-policies {
  background: var(--cream);
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  text-align: center;
}

.st-policies__heading {
  font-weight: 800;
  font-size: clamp(2.2rem, 6.5vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--blue);
  text-transform: uppercase;
}

.st-policies__intro {
  max-width: 34rem;
  margin: clamp(1rem, 2.5vw, 1.5rem) auto clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.st-policies__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  max-width: 38rem;
  margin: 0 auto;
}

.st-policies__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--blue);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.st-policies__text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #2c2c2c;
}

/* ============ FEEDBACK ============ */
.st-feedback {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(24rem, 46vw, 34rem);
}

.st-feedback__copy {
  position: relative;
  background: var(--blue);
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.st-feedback__heading-wrap {
  position: relative;
  display: inline-block;
}

.st-feedback__heading {
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  text-transform: uppercase;
}

/* The "?" is meant to merge with FEEDBACK as one graphic shape — large,
   solid, overlapping the word itself — not a small flourish beside it. */
.st-feedback__mark {
  position: absolute;
  left: 46%;
  top: -110%;
  z-index: 1;
  font-weight: 800;
  font-size: clamp(9rem, 20vw, 15rem);
  line-height: 1;
  color: var(--red);
  -webkit-text-stroke: 0.015em var(--red);
  text-stroke: 0.015em var(--red);
}

.st-feedback__email {
  position: relative;
  z-index: 2;
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  font-weight: 800;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}

.st-feedback__rug {
  background-image: url("assets/carpet.jpg");
  background-size: cover;
  background-position: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .st-hero__grid { grid-template-columns: 1fr; }
  .st-hero__photo-frame { max-width: 22rem; margin: 0 auto; }
  .st-hero__sub { margin-top: 2rem; }

  .st-look__break { display: block; }

  .st-look__cards { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }

  .st-art__grid { grid-template-columns: 1fr; }
  .st-art__portrait { max-width: 14rem; margin: 0 auto; }
  .st-art__name, .st-art__bio { text-align: center; margin-left: auto; margin-right: auto; }
  .st-art__ig { display: flex; width: fit-content; margin: 0 auto; }
  .st-art__work-label { text-align: center; margin-top: 2.5rem; }

  .st-feedback { grid-template-columns: 1fr; }
  .st-feedback__copy { min-height: 20rem; text-align: center; align-items: center; }
  .st-feedback__rug { min-height: 14rem; }
}
