/* =====================================================
   LITTLE WORLD WORKSHOP — style.css
   ===================================================== */

/* ----- Variables ----- */
:root {
  --cream:        #F5F2EC;
  --cream-alt:    #EDE9DF;
  --ink:          #1A1814;
  --ink-alt:      #111009;
  --text:         #2A2620;
  --muted:        #6A6358;
  --border:       #D8D3C8;
  --green:        #4B7919;
  --green-dark:   #2E4A0E;
  --gold:         #8C7340;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, -apple-system, sans-serif;

  --max-w:     1200px;
  --gutter:    clamp(20px, 5vw, 80px);
  --nav-h:     76px;
  --ease:      cubic-bezier(0.25, 0, 0.1, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ----- Layout ----- */
.container        { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow{ max-width: 800px;        margin: 0 auto; padding: 0 var(--gutter); }


/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: var(--ink-alt);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
}
.nav__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.nav__logo img:hover { opacity: 0.8; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,0.5);
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: rgba(255,255,255,0.1); border-color: white; }


.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  color: white;
}
.nav__hamburger span {
  width: 22px;
  height: 1.5px;
  background: currentColor;
  display: block;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); right: 0; bottom: 0; left: 0;
  background: var(--ink-alt);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: white;
  transition: color 0.2s;
}
.nav__mobile a:hover { color: rgba(255,255,255,0.55); }


/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.25s var(--ease);
}
.btn--primary { background: var(--green); color: white; }
.btn--primary:hover { background: var(--green-dark); }
.btn--outline-light { border: 1px solid rgba(255,255,255,0.55); color: white; }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn--outline-dark { border: 1px solid var(--text); color: var(--text); }
.btn--outline-dark:hover { background: var(--text); color: var(--cream); }
.btn--text {
  padding: 0;
  color: var(--green);
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--text::after { content: '→'; transition: transform 0.2s; }
.btn--text:hover::after { transform: translateX(5px); }


/* =====================================================
   HOME — HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(17,16,9,0.35) 0%,
    rgba(17,16,9,0.62) 60%,
    rgba(17,16,9,0.82) 100%
  );
}
.hero__content {
  position: relative;
  text-align: center;
  color: white;
  padding: 0 var(--gutter);
  max-width: 900px;
}
.hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 32px;
}
.hero__title em { font-style: italic; }
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.35);
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { opacity: 0.35; transform: scaleY(1);   }
  50%  { opacity: 0.9;  transform: scaleY(0.65); }
  100% { opacity: 0.35; transform: scaleY(1);   }
}


/* =====================================================
   HOME — INTRO
   ===================================================== */
.intro {
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.rule {
  width: 44px; height: 1px;
  background: var(--green);
  margin: 0 auto 36px;
}
.intro__headline {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  max-width: 740px;
  margin: 0 auto 28px;
  line-height: 1.2;
}
.intro__headline em { font-style: italic; }
.intro__text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.85;
}


/* =====================================================
   HOME — FEATURED WORKS
   ===================================================== */
.featured { padding: 0 0 clamp(80px, 10vw, 140px); }
.featured__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.featured__header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.featured__header h2 em { font-style: italic; }
.featured__intro {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 8px;
}

.featured__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 460px 320px;
  gap: 3px;
}
.work-card {
  position: relative;
  overflow: hidden;
  background: var(--cream-alt);
}
.work-card:nth-child(1) { grid-row: 1 / 3; }              /* col 1, tall */
.work-card:nth-child(2) { grid-column: 2; grid-row: 1; }  /* col 2, row 1 */
.work-card:nth-child(3) { grid-column: 3; grid-row: 1; }  /* col 3, row 1 */
.work-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; } /* cols 2-3, row 2 */

.work-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.work-card:hover .work-card__img { transform: scale(1.05); }

.work-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,16,9,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.work-card:hover .work-card__overlay { opacity: 1; }

.work-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  color: white;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}
.work-card:hover .work-card__info { transform: translateY(0); opacity: 1; }
.work-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.work-card__cat {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}


/* =====================================================
   HOME — PROCESS
   ===================================================== */
.process {
  background: var(--ink-alt);
  color: white;
  padding: clamp(80px, 10vw, 140px) 0;
}
.process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.process__img-wrap { position: relative; }
.process__img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.process__img-wrap::after {
  content: '';
  position: absolute;
  top: 18px; left: 18px;
  right: -18px; bottom: -18px;
  border: 1px solid rgba(255,255,255,0.12);
  z-index: -1;
}
.process__content { padding: 12px 0; }
.process__title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 28px;
}
.process__title em { font-style: italic; }
.process__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 18px;
}
.process__divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 28px 0;
}


/* =====================================================
   HOME — TESTIMONIAL
   ===================================================== */
.testimonial {
  padding: clamp(80px, 10vw, 130px) 0;
  text-align: center;
}
.testimonial__stars {
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  max-width: 780px;
  margin: 0 auto 28px;
  color: var(--ink);
}
.testimonial__quote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  vertical-align: -0.55em;
  color: var(--green);
  opacity: 0.35;
  margin-right: 2px;
  font-style: normal;
}
.testimonial__attr {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial__attr::before,
.testimonial__attr::after {
  content: '';
  width: 36px; height: 1px;
  background: var(--border);
}


/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}
.section-header h2 em { font-style: italic; }
.section-header p { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* =====================================================
   HOME — TIERS (Choose your piece)
   ===================================================== */
.tiers {
  /* Top padding zeroed — intro section's own bottom padding provides the gap */
  padding: 0 0 clamp(80px, 10vw, 140px);
}
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.tier-card {
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 1;
}
.tier-card:hover::before { transform: scaleX(1); }
.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,24,20,0.1);
}
/* Card image */
.tier-card__img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}
.tier-card__img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.tier-card:hover .tier-card__img-wrap img { transform: scale(1.05); }
/* Card text body */
.tier-card__body {
  padding: 36px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tier-card__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.tier-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.1;
}
.tier-card__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 32px;
  flex: 1;
}
/* Signature tier — premium dark treatment */
.tier-card--signature {
  background: var(--ink);
}
.tier-card--signature::before { background: var(--gold); }
.tier-card--signature .tier-card__eyebrow { color: var(--gold); }
.tier-card--signature .tier-card__title   { color: white; }
.tier-card--signature .tier-card__text    { color: rgba(255,255,255,0.62); }
.tier-card--signature .btn--text          { color: var(--gold); }
/* Commission tier — elevated, bespoke feel */
.tier-card--commission {
  background: var(--cream-alt);
}
.tier-card--commission::before { background: var(--gold); }
.tier-card--commission .tier-card__eyebrow { color: var(--gold); }


/* =====================================================
   HOME — CTA BAND
   ===================================================== */
.cta-band {
  background: var(--ink);
  color: white;
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  margin-bottom: 20px;
}
.cta-band h2 em { font-style: italic; }
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* =====================================================
   PAGE HERO (Interior)
   ===================================================== */
.page-hero {
  background: var(--ink-alt);
  color: white;
  padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(28px, 3.5vw, 44px);
}
.page-hero__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.page-hero__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  max-width: 860px;
}
.page-hero__title em { font-style: italic; }
.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin-top: 24px;
  line-height: 1.75;
}


/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-intro { padding: clamp(40px, 5vw, 60px) 0 clamp(80px, 10vw, 140px); }
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}
.about-intro__img-wrap { position: relative; }
.about-intro__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-intro__img-caption {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 14px;
}
.about-intro__content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 28px;
  line-height: 1.15;
}
.about-intro__content h2 em { font-style: italic; }
.about-intro__content p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-intro__content p strong { color: var(--text); font-weight: 400; }
.about-intro__content .btn { margin-top: 12px; }

/* Credentials */
.credentials {
  background: var(--cream-alt);
  padding: clamp(60px, 8vw, 100px) 0;
}
.credentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.credential__number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.credential__label {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Mission banner */
.mission {
  background: var(--ink-alt);
  color: white;
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}
.mission__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}

/* Collections detail */
.collections-detail { padding: clamp(80px, 10vw, 140px) 0; }
.collections-detail__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  margin-bottom: clamp(80px, 10vw, 120px);
}
.collections-detail__item:last-child { margin-bottom: 0; }
.collections-detail__item.reverse .collections-detail__text { order: -1; }

.collections-detail__num {
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(26,24,20,0.06);
  margin-bottom: -20px;
}
.collections-detail__subtitle {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.collections-detail__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.collections-detail__title em { font-style: italic; }
.collections-detail__text p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1rem;
}
.collections-detail__text .btn { margin-top: 12px; }
.collections-detail__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Commission section */
.commission {
  background: var(--cream-alt);
  padding: clamp(80px, 10vw, 140px) 0;
}
.commission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 80px);
  align-items: start;
}
.commission__content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 24px;
}
.commission__content h2 em { font-style: italic; }
.commission__content p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1rem;
}
.commission__steps { display: flex; flex-direction: column; gap: 28px; }
.commission__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.commission__step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--green);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.commission__step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.commission__step-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}


/* =====================================================
   GALLERY PAGE
   ===================================================== */
.gallery-grid {
  columns: 3;
  column-gap: 4px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(17,16,9,0.62);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: white;
  margin-bottom: 4px;
}
.gallery-item__cat {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.gallery-note {
  margin-top: 60px;
  padding: 40px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.gallery-note h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.gallery-note p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }


/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--ink-alt);
  color: rgba(255,255,255,0.45);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: 56px;
}
.footer__brand img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 20px;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  max-width: 240px;
}
.footer__col-title {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
}
.footer__links a:hover { color: white; }
.footer__legal {
  display: flex;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__legal a {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }
.footer__mid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__badges {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__badges a {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 4px;
  padding: 4px 8px;
  transition: opacity 0.2s;
}
.footer__badges a:hover { opacity: 0.85; }
.footer__address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  text-align: center;
}
.footer__address strong {
  display: block;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
}
.footer__social {
  display: flex;
  gap: 24px;
}
.footer__social a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__social a:hover { color: white; }


/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .featured__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 280px;
  }
  .work-card:nth-child(1) { grid-row: 1; grid-column: 1 / 3; }
  .work-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .work-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .work-card:nth-child(4) { display: none; }

  .tiers__grid { grid-template-columns: 1fr; gap: 20px; }
  .tier-card--signature { margin-bottom: 24px; }

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

@media (max-width: 768px) {
  :root { --nav-h: 64px; --gutter: 24px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .footer__mid { flex-direction: column; gap: 20px; }
  .footer__badges { position: static; }

  .featured__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .work-card { aspect-ratio: 4/3 !important; }
  .work-card:nth-child(1),
  .work-card:nth-child(2),
  .work-card:nth-child(3) { grid-column: 1; grid-row: auto; }
  .work-card:nth-child(4) { display: block; grid-column: 1; }

  .process__inner,
  .about-intro__inner,
  .collections-detail__item,
  .commission__inner {
    grid-template-columns: 1fr;
  }
  .collections-detail__item.reverse .collections-detail__text { order: 0; }

  .gallery-grid { columns: 2; }

  .gallery-note { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

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

  .comm-intro__inner { grid-template-columns: 1fr; }
  .comm-intro__heading { position: static; }
  .comm-types__grid { grid-template-columns: 1fr 1fr; }
  .comm-process__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .hero__actions,
  .cta-band__actions { flex-direction: column; align-items: center; }
  .footer__top { grid-template-columns: 1fr; }
  .comm-types__grid { grid-template-columns: 1fr; }
  .comm-form__2col { grid-template-columns: 1fr; }
}


/* =====================================================
   COMMISSION PAGE
   ===================================================== */

/* Intro split */
.comm-intro { padding: clamp(80px, 10vw, 140px) 0; }
.comm-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}
.comm-intro__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  position: sticky;
  top: calc(var(--nav-h) + 48px);
}
.comm-intro__body p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.comm-intro__body p:last-child { margin-bottom: 0; }

/* Types grid */
.comm-types {
  background: var(--cream-alt);
  padding: clamp(80px, 10vw, 140px) 0;
}
.comm-types__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.comm-type-card {
  background: var(--cream);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.comm-type-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--green);
  transition: height 0.4s var(--ease);
}
.comm-type-card:hover::before { height: 100%; }
.comm-type-card:hover { box-shadow: 0 12px 40px rgba(26,24,20,0.08); }
.comm-type-card__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.comm-type-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}
.comm-type-card__text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Process */
.comm-process {
  background: var(--ink-alt);
  color: white;
  padding: clamp(80px, 10vw, 140px) 0;
}
.comm-process .section-header { margin-bottom: 60px; }
.comm-process .section-header h2 { color: white; }
.comm-process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px) clamp(44px, 7vw, 100px);
}
.comm-process__step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.comm-process__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--green);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.comm-process__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
}
.comm-process__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
}

/* Pricing */
.comm-pricing {
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}
.comm-pricing__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin: 0 auto 28px;
}
.comm-pricing p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.comm-pricing__note {
  margin: 40px auto 0;
  padding: 28px 36px;
  border: 1px solid var(--border);
  text-align: left;
}
.comm-pricing__note p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.comm-pricing__note p:last-child { margin-bottom: 0; }
.comm-pricing__note strong { color: var(--text); font-weight: 500; }

/* Commission enquiry form */
.comm-form {
  max-width: 600px;
  margin: 48px auto 0;
  text-align: left;
}
.comm-form__2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comm-form__field { margin-bottom: 20px; }
.comm-form__field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.comm-form__field input,
.comm-form__field select,
.comm-form__field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 13px 18px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.comm-form__field input::placeholder,
.comm-form__field textarea::placeholder { color: rgba(255,255,255,0.2); }
.comm-form__field input:focus,
.comm-form__field select:focus,
.comm-form__field textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.09);
}
.comm-form__field select option { background: var(--ink-alt); color: white; }
.comm-form__field textarea { resize: vertical; min-height: 130px; }
.comm-form__submit { margin-top: 8px; }
.comm-form__note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
}
.comm-form__note a { color: rgba(255,255,255,0.45); text-decoration: underline; }
.comm-form__note a:hover { color: rgba(255,255,255,0.7); }

/* FAQ */
.comm-faq { padding: clamp(80px, 10vw, 140px) 0; }
.comm-faq__list {
  max-width: 780px;
  margin: 56px auto 0;
}
.comm-faq__item {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.comm-faq__item:last-child { border-bottom: 1px solid var(--border); }
.comm-faq__q {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.comm-faq__a {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}


/* =====================================================
   HEADING EM — non-italic override
   ===================================================== */
.hero__title em, .intro__headline em, .featured__header h2 em,
.section-header h2 em, .cta-band h2 em, .page-hero__title em,
.process__title em, .about-intro__content h2 em,
.collections-detail__title em, .commission__content h2 em,
.gallery-section-header__title em,
.comm-intro__heading em, .comm-pricing__heading em,
.comm-type-card__title em { font-style: normal; }


/* =====================================================
   COMMISSION PAGE — MOBILE OVERRIDES
   Must appear after the desktop commission rules above
   so these win the cascade on small screens.
   ===================================================== */
@media (max-width: 768px) {
  .comm-types__grid   { grid-template-columns: 1fr; }
  .comm-process__grid { grid-template-columns: 1fr; }
}


/* =====================================================
   HOMEPAGE — TWO-COLUMN TIER GRID
   ===================================================== */
.tiers__grid--two {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
  .tiers__grid--two { grid-template-columns: 1fr; }
}


/* =====================================================
   CATEGORY CARDS (shared: gallery/originals + homepage)
   ===================================================== */
.cat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
}
.cat-card {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 24px 24px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.cat-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.cat-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
}
.cat-card__desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}
.cat-card__arrow {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-top: auto;
  padding-top: 12px;
}
@media (max-width: 768px) {
  .cat-cards { grid-template-columns: 1fr; }
}


/* =====================================================
   GALLERY SECTION HEADER (shared: gallery.html + homepage)
   ===================================================== */
.gallery-section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.gallery-section-header__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.gallery-section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
}
.gallery-section-header__title a { color: inherit; text-decoration: none; }
.gallery-section-header__title a:hover { color: var(--green); }
.gallery-section-header__title em { font-style: normal; }
.gallery-section-header__desc {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 560px;
  margin-top: 10px;
  line-height: 1.7;
}
.gallery-section-header__price {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}
.gallery-section-header__price strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
}

/* =====================================================
   ORIGINALS PANEL + SUBCARDS (shared: gallery.html + homepage)
   ===================================================== */
.originals-panel-container {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  margin-top: 8px;
}
.originals-subcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.originals-subcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0 0 24px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.originals-subcard:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.originals-subcard:hover .originals-subcard__img { transform: scale(1.04); }
.originals-subcard__img-wrap { overflow: hidden; flex-shrink: 0; }
.originals-subcard__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.originals-subcard__body {
  padding: 20px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.originals-subcard__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
}
.originals-subcard__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.originals-subcard__arrow {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-top: auto;
  padding-top: 12px;
}
.originals-browse-all {
  margin-top: 20px;
  text-align: right;
  font-size: 0.78rem;
  color: var(--muted);
}
.originals-browse-all a { color: var(--green); text-decoration: none; }
.originals-browse-all a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .gallery-section-header { grid-template-columns: 1fr; }
  .gallery-section-header__price { text-align: left; }
  .originals-subcards { grid-template-columns: 1fr; }
  .originals-panel-container { padding: 20px; }
}
