/* ============================================================
   TANDEM BRICK GALLERY — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* --- Design Tokens --- */
:root {
  --cream:        #F5F0E8;
  --cream-light:  #FAF7F2;
  --linen:        #EDE5D8;
  --brick:        #C4355E;
  --brick-dark:   #92244A;
  --brick-light:  #D9638A;
  --gold:         #E8B4C0;
  --gold-light:   #F5D8E0;
  --espresso:     #2C1810;
  --dark:         #1A1410;
  --text:         #2A201A;
  --text-muted:   #7A6B62;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.body-lg { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.75; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.container--narrow {
  max-width: 860px;
}

.section-pad {
  padding: clamp(5rem, 10vw, 10rem) 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brick);
  color: var(--white);
  border-color: var(--brick);
}
.btn--primary:hover {
  background: var(--brick-dark);
  border-color: var(--brick-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--dark {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.btn--dark:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--brick);
  border-color: var(--brick);
}
.btn--outline:hover {
  background: var(--brick);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-expo), padding 0.4s var(--ease-expo), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav.scrolled .nav__tagline { color: var(--text-muted); }
.nav.scrolled .nav__links a { color: var(--text); }
.nav.scrolled .nav__links a::after { background: var(--brick); }
.nav.scrolled .nav__hamburger span { background: var(--espresso); }

.nav__logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  line-height: 1;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* on dark/transparent nav: the sign's pink reads perfectly as-is */
  transition: opacity 0.4s;
}

/* on light (scrolled) nav the sign is still vivid — no filter needed */
.nav.scrolled .nav__logo-img {
  opacity: 1;
}

.nav__tagline {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.4s;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color 0.3s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s var(--ease-expo);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active { color: var(--espresso); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav__mobile a:hover { color: var(--gold); }

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: clamp(1.5rem, 5vw, 5rem);
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: scale(1.1);
  transition: transform 0s;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 20, 16, 0.85) 0%,
    rgba(26, 20, 16, 0.6) 50%,
    rgba(26, 20, 16, 0.25) 100%
  );
}

.hero__content {
  position: absolute;
  /* top clamps to nav height — eyebrow can never climb above this */
  top: 5rem;
  bottom: clamp(4rem, 8vw, 8rem);
  left: clamp(1.5rem, 5vw, 5rem);
  /* stop before the badge on wide screens */
  right: clamp(1.5rem, 5vw, 5rem);
  max-width: 900px;
  z-index: 2;
  /* push all children to the bottom of this box */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* clip rather than let anything escape above the nav */
  overflow: hidden;
}

.hero__sign {
  position: absolute;
  top: clamp(5.5rem, 10vw, 8rem);
  right: clamp(1.5rem, 6vw, 7rem);
  width: clamp(240px, 34vw, 520px);
  z-index: 2;
  opacity: 0.18;
  pointer-events: none;
  /* subtle drop shadow so it reads on lighter parts of the photo */
  filter: drop-shadow(0 4px 32px rgba(196, 53, 94, 0.4));
}

.hero__eyebrow {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__badge {
  position: absolute;
  bottom: clamp(4rem, 8vw, 8rem);
  right: clamp(1.5rem, 5vw, 5rem);
  z-index: 2;
  text-align: center;
  border: 1px solid rgba(232,180,192,0.5);
  padding: 1.2rem 1.4rem;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__badge-stars {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  margin-bottom: 0.4rem;
}

.hero__badge-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.2;
}

.hero__badge-sub {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,180,192,0.7);
  margin-top: 0.3rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */

.marquee-strip {
  background: var(--brick);
  color: var(--white);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}

.marquee__inner {
  display: inline-flex;
  animation: marquee-scroll 28s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

.marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   MANIFESTO SECTION
   ============================================================ */

.manifesto {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 11rem) 0;
}

.manifesto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.manifesto__left {}

.manifesto__eyebrow {
  color: var(--brick);
  margin-bottom: 1.5rem;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 2rem;
}

.manifesto__quote strong {
  font-weight: 600;
  font-style: normal;
  color: var(--brick);
}

.manifesto__body {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.manifesto__right {
  position: relative;
}

.manifesto__collage {
  position: relative;
  height: 520px;
}

.manifesto__img {
  position: absolute;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,20,16,0.2);
}

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

.manifesto__img--1 {
  width: 68%;
  height: 380px;
  top: 0;
  right: 0;
  transform: rotate(1.5deg);
}

.manifesto__img--2 {
  width: 52%;
  height: 280px;
  bottom: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: 2;
}

.manifesto__img--3 {
  width: 35%;
  height: 180px;
  top: 60px;
  left: 5%;
  transform: rotate(3deg);
  opacity: 0.85;
}

/* ============================================================
   SERVICES SPLIT
   ============================================================ */

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(500px, 70vw, 800px);
}

.services-split__panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.services-split__panel:first-child::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.25);
  z-index: 3;
}

.services-split__bg {
  position: absolute;
  inset: 0;
}

.services-split__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}

.services-split__panel:hover .services-split__bg img {
  transform: scale(1.05);
}

.services-split__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.88) 0%, rgba(26,20,16,0.2) 60%, transparent 100%);
  transition: opacity 0.4s;
}

.services-split__panel:hover .services-split__overlay {
  opacity: 1.1;
}

.services-split__content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.services-split__eyebrow {
  color: var(--gold);
  margin-bottom: 1rem;
}

.services-split__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.services-split__body {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 340px;
  margin-bottom: 2rem;
}

.services-split__link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 0.3rem;
  transition: gap 0.3s, border-color 0.3s;
}

.services-split__link:hover {
  gap: 1.2rem;
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ============================================================
   STARLIGHTZ SECTION
   ============================================================ */

.starlightz {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: clamp(6rem, 12vw, 14rem) 0;
  text-align: center;
}

.starlightz__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196,53,94,0.22) 0%, rgba(232,180,192,0.08) 45%, transparent 70%);
  animation: glow-breathe 4s ease-in-out infinite;
  pointer-events: none;
}

.starlightz__glow--2 {
  width: 900px;
  height: 900px;
  animation-delay: 2s;
  opacity: 0.5;
}

@keyframes glow-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.starlightz__content {
  position: relative;
  z-index: 2;
}

.starlightz__eyebrow {
  color: var(--gold);
  margin-bottom: 2rem;
}

.starlightz__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 2.5rem;
}

.starlightz__heading em {
  color: var(--gold-light);
}

.starlightz__body {
  color: rgba(255,255,255,0.6);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* ============================================================
   ARTISTS PREVIEW
   ============================================================ */

.artists-preview {
  background: var(--cream-light);
  padding: clamp(5rem, 10vw, 11rem) 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.section-header__left {}

.section-header__eyebrow {
  color: var(--brick);
  margin-bottom: 1rem;
}

.section-header__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--espresso);
}

.section-header__heading em { font-style: italic; }

.section-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick);
  border-bottom: 1px solid var(--brick);
  padding-bottom: 0.3rem;
  white-space: nowrap;
  transition: gap 0.3s;
}
.section-header__link:hover { gap: 1rem; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.artist-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.artist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo);
}

.artist-card:hover .artist-card__img { transform: scale(1.06); }

.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.9) 0%, rgba(26,20,16,0.2) 50%, transparent 100%);
  transition: opacity 0.4s;
}

.artist-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  transform: translateY(2rem);
  transition: transform 0.5s var(--ease-expo);
}

.artist-card:hover .artist-card__content { transform: translateY(0); }

.artist-card__medium {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.artist-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.artist-card__location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.artist-card__bio {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-expo), opacity 0.4s;
}

.artist-card:hover .artist-card__bio {
  max-height: 120px;
  opacity: 1;
}

/* ============================================================
   GIFT GALLERY
   ============================================================ */

.gift-gallery {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 11rem) 0;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: clamp(0.5rem, 1vw, 1rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.gift-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.gift-item:nth-child(1) { grid-column: span 2; aspect-ratio: 4/3; }
.gift-item:nth-child(2) { aspect-ratio: 3/4; }
.gift-item:nth-child(3) { aspect-ratio: 3/4; }
.gift-item:nth-child(4) { aspect-ratio: 4/3; }
.gift-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }
.gift-item:nth-child(6) { aspect-ratio: 1/1; }
.gift-item:nth-child(7) { aspect-ratio: 1/1; }

.gift-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo);
}

.gift-item:hover img { transform: scale(1.06); }

.gift-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.gift-cta p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews {
  background: var(--espresso);
  padding: clamp(5rem, 10vw, 11rem) 0;
}

.reviews__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.reviews__eyebrow {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.reviews__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.reviews__featured {
  max-width: 780px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(232,180,192,0.2);
}

.reviews__featured-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.reviews__featured-marks {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--brick);
  display: block;
  margin-bottom: 1rem;
}

.reviews__featured-attr {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  transition: background 0.3s;
}

.review-card:hover { background: rgba(255,255,255,0.07); }

.review-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-card__author {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews__cta {
  text-align: center;
  margin-top: clamp(3rem, 5vw, 4rem);
}

.reviews__cta p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 8rem) 0 2rem;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {}

.footer__logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 0.75rem;
  display: block;
  /* sign is pink — on dark footer it glows nicely */
  filter: drop-shadow(0 2px 12px rgba(196, 53, 94, 0.35));
}

.footer__slogan {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer__brand-body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__info-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer__info-item strong {
  display: block;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0;
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer__award {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.page-hero {
  position: relative;
  height: clamp(420px, 60vw, 700px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.85) 0%, rgba(26,20,16,0.4) 60%, rgba(26,20,16,0.2) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.page-hero__eyebrow {
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.page-hero__title em { font-style: italic; color: var(--gold-light); }

.page-hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  max-width: 500px;
  margin-top: 1.5rem;
}

/* ============================================================
   FRAMING PAGE
   ============================================================ */

.framing-intro {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.framing-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.framing-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.framing-intro__body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.framing-intro__pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--brick);
  border-left: 2px solid var(--brick);
  padding-left: 1.5rem;
  line-height: 1.3;
}

.framing-intro__img {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px rgba(26,20,16,0.2);
}

.framing-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-we-frame {
  background: var(--linen);
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.what-we-frame__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--espresso);
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.frame-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.frame-item {
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(44,24,16,0.2);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--espresso);
  transition: all 0.3s;
  cursor: default;
}

.frame-item:hover {
  background: var(--brick);
  border-color: var(--brick);
  color: var(--white);
}

.framing-process {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: clamp(3rem, 5vw, 5rem);
}

.process-step {}

.process-step__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}

.process-step__body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.framing-cta {
  background: var(--espresso);
  padding: clamp(5rem, 10vw, 10rem) 0;
  text-align: center;
}

.framing-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1rem;
}

.framing-cta__phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.framing-cta__phone:hover { color: var(--gold-light); }

.framing-cta__sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   GIFTS PAGE
   ============================================================ */

.gifts-intro {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.gifts-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.gifts-intro__body {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.gifts-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1vw, 1.5rem);
}

.gifts-full-grid .gift-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
}

.gifts-full-grid .gift-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.brands-section {
  background: var(--linen);
  padding: clamp(4rem, 8vw, 8rem) 0;
  text-align: center;
}

.brands-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
}

.brand-item {
  text-align: center;
}

.brand-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--espresso);
  letter-spacing: 0.04em;
}

.brand-item__desc {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.brand-divider {
  width: 1px;
  height: 40px;
  background: rgba(44,24,16,0.15);
}

/* ============================================================
   ARTISTS PAGE
   ============================================================ */

.artists-intro {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 10rem) 0;
  max-width: 780px;
}

.artists-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.artists-intro__body {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.artist-profile {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid var(--linen);
}

.artist-profile:nth-child(even) .artist-profile__inner {
  direction: rtl;
}
.artist-profile:nth-child(even) .artist-profile__inner > * {
  direction: ltr;
}

.artist-profile__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.artist-profile__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.artist-profile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}

.artist-profile__media:hover img { transform: scale(1.04); }

.artist-profile__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}

.artist-profile__medium {
  color: var(--brick);
  margin-bottom: 1rem;
}

.artist-profile__name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.artist-profile__location {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.artist-profile__bio {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

/* ============================================================
   OUR STORY PAGE
   ============================================================ */

.story-opening {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.story-opening__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.story-opening__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 2rem;
}

.story-opening__heading em { font-style: italic; color: var(--brick); }

.story-opening__body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.story-opening__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 32px 80px rgba(26,20,16,0.18);
}

.story-opening__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-stats {
  background: var(--espresso);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.story-values {
  background: var(--cream-light);
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.values-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--espresso);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid var(--brick);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}

.value-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   FIND US PAGE
   ============================================================ */

.find-us-grid {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.find-us-grid__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
}

.find-us__section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--linen);
}

.hours-table td {
  padding: 0.8rem 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--espresso);
  width: 50%;
}

.hours-table td:last-child {
  color: var(--text-muted);
  text-align: right;
}

.hours-table .today {
  color: var(--brick);
  font-weight: 500;
}

.contact-info {
  margin-bottom: 2.5rem;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.contact-info__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brick);
}

.contact-info__value {
  font-size: 1.05rem;
  color: var(--espresso);
}

.contact-info__value a {
  color: var(--espresso);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.contact-info__value a:hover {
  border-color: var(--brick);
}

.contact-form {}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--brick);
}

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

.find-us-map {
  background: var(--linen);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.map-embed {
  margin-top: clamp(2rem, 4vw, 4rem);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 450px;
  box-shadow: 0 16px 48px rgba(26,20,16,0.12);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.directions-note {
  text-align: center;
  margin-top: 2rem;
}

.directions-note p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

.animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate--delay-1 { transition-delay: 0.1s; }
.animate--delay-2 { transition-delay: 0.2s; }
.animate--delay-3 { transition-delay: 0.3s; }
.animate--delay-4 { transition-delay: 0.4s; }
.animate--delay-5 { transition-delay: 0.5s; }

.animate--fade {
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__brand {
    grid-column: span 2;
  }

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

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

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

@media (max-width: 900px) {
  .manifesto__inner {
    grid-template-columns: 1fr;
  }

  .manifesto__collage {
    height: 380px;
  }

  .services-split {
    grid-template-columns: 1fr;
    height: auto;
  }

  .services-split__panel {
    height: 480px;
  }

  .services-split__panel:first-child::after { display: none; }

  .framing-intro__inner,
  .story-opening__inner,
  .artist-profile__inner,
  .find-us-grid__inner {
    grid-template-columns: 1fr;
  }

  .artist-profile:nth-child(even) .artist-profile__inner {
    direction: ltr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

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

  .gift-item:nth-child(1),
  .gift-item:nth-child(5) { grid-column: span 2; }

  .gifts-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gifts-full-grid .gift-item:first-child { grid-column: span 2; }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__badge { display: none; }

  .manifesto__collage {
    height: 300px;
  }

  .manifesto__img--1 { width: 75%; height: 280px; }
  .manifesto__img--2 { width: 55%; height: 200px; }
  .manifesto__img--3 { display: none; }

  .artists-grid { grid-template-columns: 1fr; }

  .gift-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__main {
    grid-template-columns: 1fr;
  }

  .footer__brand { grid-column: span 1; }

  .stats-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-row { gap: 1.5rem; }
  .brand-divider { display: none; }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 480px) {
  .gift-grid {
    grid-template-columns: 1fr;
  }

  .gift-item:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; }
}
