/* Jeyanthii Diamonds — Luxury Boutique Jewelry */

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

@font-face {
  font-family: 'Brilliant Honey';
  src: url('../fonts/BrilliantHoneyDemo.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-slate: #2e6171;
  --sand-dune: #e8dbc5;
  --linen: #fff4e9;
  --spicy-orange: #d74e09;
  --chocolate-plum: #664147;

  --cream: var(--linen);
  --off-white: var(--linen);
  --beige: var(--sand-dune);
  --beige-dark: #d5c5ad;
  --ink: var(--chocolate-plum);
  --ink-soft: var(--blue-slate);
  --ink-muted: #6b8f9c;
  --gold: var(--spicy-orange);
  --gold-dark: #b54308;
  --gold-light: #e8dbc5;
  --gold-line: #c4a35a;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 8.5rem;
  --section-pad: clamp(4rem, 10vw, 7rem);
  --container: min(1200px, 92vw);
  --container-narrow: min(800px, 88vw);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--off-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}

h1 { font-size: clamp(3rem, 7vw, 5.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.7rem, 3vw, 2.15rem); }
h4 { font-size: 1.35rem; letter-spacing: 0.08em; text-transform: uppercase; }

p { margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }

.container { width: var(--container); margin-inline: auto; }
.container--narrow { width: var(--container-narrow); margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--blue-slate);
  color: var(--linen);
  border-color: var(--blue-slate);
}
.btn--primary:hover {
  background: transparent;
  color: var(--blue-slate);
}

.btn--outline {
  background: transparent;
  color: var(--chocolate-plum);
  border-color: var(--chocolate-plum);
}
.btn--outline:hover {
  background: var(--chocolate-plum);
  color: var(--linen);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ── Navigation ── */
.site-header {
  --nav-bg-opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  min-height: 5.5rem;
  display: flex;
  align-items: flex-start;
  padding: 0.85rem 0 1.55rem;
  background: transparent;
  pointer-events: none;
  overflow: visible;
  transition: box-shadow 0.4s var(--ease);
}

/* Solid page-color wash — fades in as first content section approaches */
.site-header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  min-height: 5.5rem;
  background: var(--off-white);
  opacity: var(--nav-bg-opacity, 0);
  transition: opacity 0.35s ease-out;
  pointer-events: none;
  z-index: 0;
}

.site-header.is-scrolled {
  backdrop-filter: none;
  background-color: transparent;
}

.site-header .container,
.site-header .logo,
.site-header .nav-desktop,
.site-header .nav-desktop a,
.site-header .nav-toggle {
  pointer-events: auto;
}

.site-header .nav-desktop a:not(.nav-cta) {
  color: var(--spicy-orange);
}

.site-header .nav-desktop a:not(.nav-cta):hover,
.site-header .nav-desktop a:not(.nav-cta).is-active {
  color: var(--gold-dark);
}

.site-header .nav-desktop a:not(.nav-cta) .nav-dot {
  border-color: var(--spicy-orange);
}

.site-header .nav-desktop a:not(.nav-cta):hover .nav-dot,
.site-header .nav-desktop a:not(.nav-cta).is-active .nav-dot {
  background: var(--spicy-orange);
  border-color: var(--spicy-orange);
}

body.home .hero {
  padding-top: 0;
}

.site-header .logo {
  display: flex;
  align-items: center;
  margin-left: clamp(1.5rem, 5vw, 4rem);
  margin-top: 0.35rem;
}

.site-header .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-right: clamp(0.5rem, 3vw, 2rem);
}

.site-header .logo-mark {
  display: none;
}

.site-header .logo-text {
  flex-direction: row;
  align-items: baseline;
  gap: 0.55rem;
  line-height: 1.35;
  overflow: visible;
}

.site-header .logo-text__name {
  font-size: clamp(3.1rem, 5.2vw, 4.15rem);
  letter-spacing: 0.04em;
  line-height: 1.35;
  padding-bottom: 0.15em;
  overflow: visible;
}

.site-header .logo-text__tag {
  font-size: clamp(1.4rem, 2.3vw, 1.8rem);
  letter-spacing: 0.2em;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo img { height: auto; width: auto; max-height: 44px; }

.logo svg.logo-mark,
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text__name {
  font-family: 'Brilliant Honey', Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "dlig" 0, "calt" 0;
}

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

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a:not(.nav-cta) {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.35s var(--ease);
}

.nav-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--blue-slate);
  background: transparent;
  flex-shrink: 0;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav-desktop a:not(.nav-cta):hover .nav-dot,
.nav-desktop a:not(.nav-cta).is-active .nav-dot {
  background: var(--spicy-orange);
  border-color: var(--spicy-orange);
  transform: scale(1.1);
}

.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a:not(.nav-cta).is-active { color: var(--ink); }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.65rem 1.5rem !important;
  font-size: 0.82rem !important;
  background: var(--blue-slate) !important;
  color: var(--linen) !important;
  border: 1px solid var(--blue-slate) !important;
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--blue-slate) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-mobile a:not(.btn):hover { color: var(--gold); }
.nav-mobile a:not(.btn):hover .nav-dot,
.nav-mobile a:not(.btn).is-active .nav-dot {
  background: var(--spicy-orange);
  border-color: var(--spicy-orange);
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; margin-top: 0.2rem; }

  .site-header {
    --nav-bg-opacity: 1;
    min-height: 4.25rem;
    padding: 0.55rem 0 1rem;
  }

  .site-header::before {
    min-height: 4.25rem;
    opacity: 1;
  }

  .site-header .logo {
    margin-left: 0.85rem;
    margin-top: 0.1rem;
    max-width: calc(100vw - 4.25rem);
  }

  .site-header .logo-text {
    gap: 0.35rem;
    flex-wrap: wrap;
  }

  .site-header .logo-text__name {
    font-size: clamp(1.85rem, 7.2vw, 2.65rem);
  }

  .site-header .logo-text__tag {
    font-size: clamp(0.85rem, 3.1vw, 1.15rem);
  }

  .site-header .container {
    align-items: center;
    padding-right: 0.5rem;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 0;
  background-color: var(--linen);
  background-image:
    linear-gradient(
      rgba(255, 244, 233, 0.42),
      rgba(255, 244, 233, 0.42)
    ),
    url('../images/annie-spratt-xTaOPMa6wAE-unsplash.jpg');
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--gold-line);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem);
  padding-left: max(clamp(3rem, 8vw, 6rem), calc((100vw - var(--container)) / 2));
}

/* Soft fabric-toned wash so copy stays readable while texture continues */
.hero__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(210, 200, 184, 0.55) 0%,
    rgba(220, 210, 194, 0.35) 48%,
    rgba(210, 200, 184, 0.12) 78%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__content > * {
  position: relative;
  z-index: 1;
}

/* Keep home hero headline at original display size */
.hero__content > h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero__image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: transparent;
  /* Fade left edge into the shared fabric — no hard column seam */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 8%,
    rgba(0, 0, 0, 0.45) 18%,
    rgba(0, 0, 0, 0.75) 30%,
    #000 46%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 8%,
    rgba(0, 0, 0, 0.45) 18%,
    rgba(0, 0, 0, 0.75) 30%,
    #000 46%
  );
}

.hero__image-base,
.hero__image-overlay,
.hero__image img,
.hero__image .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  min-height: 60vh;
}

/* Continuous hero fabric replaces this tile — keep for layout height only */
.hero__image-base {
  display: block;
  opacity: 0;
  pointer-events: none;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    ellipse 108% 103% at 50% 49%,
    #000 0%,
    #000 24%,
    rgba(0, 0, 0, 0.97) 38%,
    rgba(0, 0, 0, 0.85) 50%,
    rgba(0, 0, 0, 0.65) 62%,
    rgba(0, 0, 0, 0.42) 74%,
    rgba(0, 0, 0, 0.2) 86%,
    rgba(0, 0, 0, 0.06) 94%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 108% 103% at 50% 49%,
    #000 0%,
    #000 24%,
    rgba(0, 0, 0, 0.97) 38%,
    rgba(0, 0, 0, 0.85) 50%,
    rgba(0, 0, 0, 0.65) 62%,
    rgba(0, 0, 0, 0.42) 74%,
    rgba(0, 0, 0, 0.2) 86%,
    rgba(0, 0, 0, 0.06) 94%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Extra soft fabric-tone bridge on the left of the jewelry column */
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(196, 184, 166, 0.55) 0%,
    rgba(210, 200, 184, 0.32) 12%,
    rgba(200, 188, 170, 0.14) 26%,
    transparent 42%
  );
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.home .hero {
    padding-top: 4.5rem;
  }

  .hero__image {
    order: -1;
    min-height: 42vh;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero__image-base,
  .hero__image-overlay,
  .hero__image img {
    min-height: 42vh;
  }
  .hero__image::after {
    background: linear-gradient(to bottom, transparent 55%, rgba(196, 184, 166, 0.5) 100%);
  }
  .hero__content {
    padding: 2.75rem 1.35rem 3.5rem;
    text-align: center;
    align-items: center;
  }
  .hero__content::before {
    background: rgba(210, 200, 184, 0.42);
  }
  .hero__content > h1 {
    font-size: clamp(2.35rem, 9vw, 3.4rem);
  }
  .btn-group {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
  }
  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Sections ── */
.section {
  padding-block: var(--section-pad);
}

.section--cream { background: var(--cream); }

#studio {
  background-color: #f3ebe0;
  background-image: url('../images/studio-background.jpg');
  background-repeat: repeat;
  background-size: 640px auto;
  background-position: center top;
  border-top: 3px solid var(--gold-line);
  border-bottom: 3px solid var(--gold-line);
  overflow: hidden;
}

.studio-feature__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.studio-feature__portrait {
  position: relative;
  padding: 1.5rem 0 1.5rem 1.75rem;
}

.studio-feature__mark {
  position: absolute;
  left: -0.15rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--chocolate-plum);
  opacity: 0.28;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.studio-feature__frame {
  position: relative;
  margin: 0;
  max-width: 420px;
  margin-left: auto;
}

.studio-feature__frame::before {
  content: '';
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 3px solid var(--gold-line);
  border-radius: 1.35rem;
  pointer-events: none;
  z-index: 0;
}

.studio-feature__frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow:
    0 18px 40px rgba(102, 65, 71, 0.2),
    0 6px 16px rgba(46, 97, 113, 0.1);
}

.studio-feature__frame figcaption {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
  margin-left: auto;
  max-width: 92%;
  text-align: right;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.studio-feature__copy {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: rgba(255, 244, 233, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.studio-feature__copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.studio-feature__copy h2 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
}

.studio-feature__pull {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 1.35rem;
  max-width: 28ch;
}

.studio-feature__copy p {
  color: var(--ink-soft);
}

.studio-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 1.5rem 0 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(196, 163, 90, 0.35);
}

.studio-feature__meta span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

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

  .studio-feature__portrait {
    padding: 0 0 0.5rem;
  }

  .studio-feature__mark {
    display: none;
  }

  .studio-feature__frame {
    max-width: 360px;
    margin-inline: auto;
  }

  .studio-feature__frame::before {
    inset: 0.9rem -0.9rem -0.9rem 0.9rem;
  }

  .studio-feature__copy {
    text-align: center;
  }

  .studio-feature__copy h2,
  .studio-feature__pull {
    margin-inline: auto;
  }

  .studio-feature__meta {
    justify-content: center;
  }

  .studio-feature__copy .btn {
    margin-inline: auto;
  }
}
.section--beige { background: var(--beige); }
.section--dark {
  background: var(--blue-slate);
  color: var(--sand-dune);
}
.section--dark h2, .section--dark h3 { color: var(--linen); }
.section--dark .eyebrow { color: var(--gold-light); }
.section--dark p { color: rgba(232, 219, 197, 0.85); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header--left {
  text-align: left;
  margin-inline: 0;
  max-width: 520px;
}

/* ── Image Placeholders ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(215, 78, 9, 0.12) 0%, transparent 60%);
}

.img-placeholder--dark {
  background: linear-gradient(135deg, #3d5560 0%, var(--blue-slate) 50%, var(--chocolate-plum) 100%);
}

.aspect-4-5 { aspect-ratio: 4/5; }
.aspect-3-4 { aspect-ratio: 3/4; }
.aspect-1-1 { aspect-ratio: 1/1; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-3-2 { aspect-ratio: 3/2; }

/* ── Category Grid ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-card .img-placeholder,
.category-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.category-card:hover .img-placeholder,
.category-card:hover img { transform: scale(1.04); }

.category-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(46, 97, 113, 0.6) 0%, transparent 50%);
  transition: background 0.4s var(--ease);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(102, 65, 71, 0.75) 0%, transparent 60%);
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.category-card__link {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spicy-orange);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.95),
    0 0 0.5px rgba(255, 255, 255, 0.9),
    0.4px 0 0 rgba(255, 255, 255, 0.75),
    -0.4px 0 0 rgba(255, 255, 255, 0.75),
    0 0.4px 0 rgba(255, 255, 255, 0.75),
    0 -0.4px 0 rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}

.category-card:hover .category-card__link {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card__link {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
}

@media (hover: none) {
  .category-card__link {
    opacity: 1;
    transform: none;
  }

  .portfolio-item__overlay {
    background: rgba(102, 65, 71, 0.42);
  }

  .portfolio-item__title,
  .portfolio-item__category {
    opacity: 1;
    transform: none;
  }
}

/* ── Split Layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split--reverse .split__image { order: 2; }
.split--reverse .split__content { order: 1; }

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split__image .aspect-4-5 {
  aspect-ratio: 4/5;
}

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__image,
  .split--reverse .split__content { order: unset; }
}

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.process-step__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--gold-dark);
}

.process-step h3 { margin-bottom: 0.75rem; }
.process-step p { font-size: 1.1rem; color: var(--ink-muted); }

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── Materials ── */
.section--materials {
  position: relative;
  isolation: isolate;
  background-color: var(--linen);
  background-image:
    linear-gradient(
      rgba(255, 244, 233, 0.72),
      rgba(255, 244, 233, 0.78)
    ),
    url('../images/annie-spratt-xTaOPMa6wAE-unsplash.jpg');
  background-size: cover;
  background-position: center;
  border-top: 3px solid var(--gold-line);
  border-bottom: 3px solid var(--gold-line);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.material-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(2.25rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.25rem) clamp(2rem, 3.5vw, 2.75rem);
  background: rgba(255, 244, 233, 0.55);
  border: none;
  border-radius: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  overflow: hidden;
  transition:
    transform 0.55s var(--ease-out),
    background 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.material-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 163, 90, 0.85),
    transparent
  );
  transition: left 0.45s var(--ease), right 0.45s var(--ease);
}

.material-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 50%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.55s var(--ease-out);
}

.material-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 244, 233, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 18px 40px rgba(102, 65, 71, 0.1);
}

.material-card:hover::before {
  left: 0.75rem;
  right: 0.75rem;
}

.material-card:hover::after {
  transform: scaleX(1);
}

.material-card__index {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  letter-spacing: 0.04em;
  transition: opacity 0.4s var(--ease), transform 0.55s var(--ease-out);
}

.material-card:hover .material-card__index {
  opacity: 0.7;
  transform: translateX(4px);
}

.material-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.7rem);
  margin: 0;
  max-width: 12ch;
  line-height: 1.2;
}

.material-card p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.7;
  flex-grow: 1;
}

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

/* ── Instagram Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.gallery-grid .img-placeholder,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: opacity 0.4s var(--ease);
  cursor: pointer;
}

.gallery-grid .img-placeholder:hover,
.gallery-grid img:hover { opacity: 0.85; }

.gallery-grid .gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item--tall { grid-row: span 1; aspect-ratio: 1/1; height: auto; }
}

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: var(--cream);
  border-top: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
}

.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner .lead { max-width: 520px; margin-inline: auto; margin-bottom: 0; }

/* ── Footer ── */
.site-footer {
  background-color: var(--blue-slate);
  background-image:
    linear-gradient(rgba(20, 40, 50, 0.28), rgba(20, 40, 50, 0.28)),
    url('../images/footer-background.jpg');
  background-repeat: repeat;
  background-size: 520px auto;
  background-position: center top;
  color: var(--sand-dune);
  padding: clamp(4rem, 8vw, 5rem) 0 2rem;
  border-top: 3px solid var(--gold-line);
  border-bottom: 3px solid var(--gold-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  flex-wrap: wrap;
  max-width: 100%;
}

.footer-brand .logo-text {
  min-width: 0;
}

.footer-brand p {
  font-size: 1.1rem;
  color: rgba(232, 219, 197, 0.7);
  margin-top: 1.25rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 1.05rem;
  color: rgba(232, 219, 197, 0.8);
  margin-bottom: 0.65rem;
  transition: color 0.3s;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 219, 197, 0.3);
  border-radius: 50%;
  transition: border-color 0.3s, color 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 219, 197, 0.15);
  font-size: 0.92rem;
  color: rgba(232, 219, 197, 0.5);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: none; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── Page Header ── */
.page-hero {
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
  background: var(--cream);
}

.process-band {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 244, 233, 0.78), rgba(255, 244, 233, 0.9)),
    url('../images/annie-spratt-xTaOPMa6wAE-unsplash.jpg') center top / cover no-repeat;
  background-color: var(--cream);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-hero--process {
  background: transparent;
  padding-top: clamp(7.5rem, 15vw, 11rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.page-hero--process .eyebrow {
  color: var(--gold-dark);
}

.page-hero--process h1,
.page-hero--process .lead {
  color: var(--ink);
}

.process-band__steps {
  padding-top: 0;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  background: transparent;
}

.page-hero .lead {
  max-width: 560px;
  margin-inline: auto;
  margin-top: 1.25rem;
}

/* ── Portfolio Masonry ── */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 3rem;
}

.portfolio-filters button {
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.portfolio-filters button:hover,
.portfolio-filters button.is-active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.portfolio-masonry {
  columns: 3;
  column-gap: 1.25rem;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img,
.portfolio-item .img-placeholder {
  width: 100%;
  transition: transform 0.7s var(--ease-out);
}

.portfolio-item:hover img,
.portfolio-item:hover .img-placeholder { transform: scale(1.03); }

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 97, 113, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s var(--ease);
}

.portfolio-item:hover .portfolio-item__overlay {
  background: rgba(102, 65, 71, 0.5);
}

.portfolio-item__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s var(--ease);
}

.portfolio-item__category {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s var(--ease) 0.05s;
}

.portfolio-item:hover .portfolio-item__title,
.portfolio-item:hover .portfolio-item__category {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .portfolio-masonry { columns: 2; }
}
@media (max-width: 480px) {
  .portfolio-masonry { columns: 1; }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(46, 97, 113, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox__image {
  max-height: 70vh;
  margin-inline: auto;
  aspect-ratio: 4/5;
  width: auto;
  max-width: 100%;
}

.lightbox__info {
  margin-top: 1.5rem;
  color: var(--cream);
}

.lightbox__info h3 {
  color: var(--cream);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.lightbox__info p {
  color: rgba(232, 219, 197, 0.75);
  font-size: 1.1rem;
  max-width: 500px;
  margin-inline: auto;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.lightbox__close:hover { color: var(--gold-light); }

/* ── Process Timeline ── */
.process-timelines {
  background-color: #f3ebe0;
  background-image: url('../images/studio-background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top: 3px solid var(--gold-line);
  border-bottom: 3px solid var(--gold-line);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--beige-dark);
}

.timeline-step {
  position: relative;
  padding-left: 4.5rem;
  padding-bottom: 3.5rem;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-step__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-dark);
  background: var(--off-white);
}

.timeline-step h3 { margin-bottom: 0.5rem; }
.timeline-step p { font-size: 1.1rem; color: var(--ink-muted); }

.timeline-step__duration {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── FAQ Block ── */
.faq-block {
  position: relative;
  overflow: hidden;
  padding-top: clamp(8rem, 16vw, 11rem);
  padding-bottom: clamp(5rem, 12vw, 8rem);
  background-color: var(--cream);
  background-image: url('../images/faq-background.jpg');
  background-repeat: repeat;
  background-size: 280px auto;
  background-position: center top;
}

.faq-block__watermark {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0;
  padding-top: 0.5rem;
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  font-family: 'Brilliant Honey', Georgia, serif;
  font-weight: 700;
  font-size: clamp(7rem, 22vw, 14rem);
  letter-spacing: 0.08em;
  line-height: 0.95;
  color: #1f4652;
  pointer-events: none;
  user-select: none;
}

.faq-block__watermark::before {
  content: 'FAQ';
  position: absolute;
  left: 50%;
  top: 0.5rem;
  z-index: -1;
  transform: translate(calc(-50% + 0.04em), 0.03em);
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: rgba(181, 67, 8, 0.72);
  white-space: nowrap;
}

.faq-block__inner {
  position: relative;
  z-index: 2;
  display: block;
}

.faq-block__content {
  min-width: 0;
  max-width: 40rem;
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 244, 233, 0.9);
}

.page-faq .accordion {
  max-width: none;
  margin-inline: 0;
}

.page-faq .accordion-item {
  border-bottom-color: rgba(196, 163, 90, 0.35);
}

.page-faq .accordion-trigger {
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.45rem);
  letter-spacing: 0.01em;
  padding: 1.35rem 0;
}

.page-faq .accordion-panel__inner {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  padding-bottom: 1.5rem;
}

.page-faq .accordion-icon::before,
.page-faq .accordion-icon::after {
  background: var(--gold-line);
}

@media (max-width: 768px) {
  .faq-block {
    padding-top: clamp(5.5rem, 16vw, 7.5rem);
    padding-bottom: clamp(3.5rem, 10vw, 5.5rem);
  }

  .faq-block__watermark {
    font-size: clamp(3.25rem, 20vw, 5.5rem);
    padding-bottom: 1.25rem;
    letter-spacing: 0.04em;
  }

  .faq-block__watermark::before {
    top: 0.35rem;
  }

  .faq-block__content {
    max-width: none;
    padding: 1rem 0.85rem;
    background: rgba(255, 244, 233, 0.94);
  }

  .page-faq .accordion-trigger {
    font-size: 1.15rem;
    padding: 1.15rem 0;
    text-align: left;
    gap: 0.75rem;
  }
}

/* ── FAQ Accordion ── */
.accordion { max-width: 720px; margin-inline: auto; }

.accordion-item {
  border-bottom: 1px solid var(--beige-dark);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  transition: color 0.3s;
}

.accordion-trigger:hover { color: var(--gold-dark); }

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.accordion-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.accordion-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.accordion-item.is-open .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.accordion-panel__inner {
  padding-bottom: 1.5rem;
  font-size: 1.15rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ── Form ── */
.inquiry-form {
  max-width: 640px;
  margin-inline: auto;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--beige-dark);
  transition: border-color 0.3s var(--ease);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid,
.form-file.is-invalid,
.form-group .is-invalid {
  border-color: var(--spicy-orange);
}

.form-error {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: var(--gold-dark);
  line-height: 1.4;
}

.form-error-banner {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  padding: 0.9rem 1.1rem;
  background: rgba(215, 78, 9, 0.1);
  border: 1px solid rgba(215, 78, 9, 0.35);
  color: var(--gold-dark);
  font-size: 1rem;
}

.form-success {
  max-width: 640px;
  margin-inline: auto;
  padding: calc(var(--nav-height) + 2.5rem) 0 5rem;
}

.inquiry-submitting {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    linear-gradient(160deg, rgba(255, 244, 233, 0.88) 0%, rgba(232, 219, 197, 0.82) 55%, rgba(102, 65, 71, 0.28) 100%);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.inquiry-submitting[hidden] {
  display: none;
}

.inquiry-submitting__panel {
  width: min(100%, 28rem);
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: rgba(255, 244, 233, 0.94);
  border: 1px solid rgba(102, 65, 71, 0.18);
  box-shadow: 0 18px 48px rgba(46, 97, 113, 0.12);
}

.inquiry-submitting__mark {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 auto 1.35rem;
  background: var(--spicy-orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: inquiry-pulse 1.4s var(--ease) infinite;
}

.inquiry-submitting__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.5vw, 2.15rem);
  color: var(--ink);
  margin: 0.35rem 0 0.85rem;
  line-height: 1.15;
}

.inquiry-submitting__copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-muted);
}

html.is-inquiry-submitting,
html.is-inquiry-submitting body {
  overflow: hidden;
}

@keyframes inquiry-pulse {
  0%, 100% { transform: scale(0.92); opacity: 0.75; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-captcha__row {
  display: grid;
  grid-template-columns: 1fr minmax(5.5rem, 7rem) auto;
  gap: 0.65rem;
  align-items: center;
}

.form-captcha__question {
  margin: 0;
  padding: 0.9rem 1rem;
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  font-size: 1.05rem;
  color: var(--ink);
}

.form-captcha__refresh {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--beige-dark);
  color: var(--ink-soft);
  font-size: 1.25rem;
  transition: border-color 0.3s, color 0.3s;
}

.form-captcha__refresh:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.form-footnote {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  text-align: center;
}

@media (max-width: 600px) {
  .form-captcha__row {
    grid-template-columns: 1fr auto;
  }

  .form-captcha__question {
    grid-column: 1 / -1;
  }
}

.form-other {
  margin-top: 0.75rem;
}

.form-other label {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-file {
  border: 1px dashed var(--beige-dark);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.form-file:hover {
  border-color: var(--gold);
  background: rgba(215, 78, 9, 0.05);
}

.form-file input { display: none; }
.form-file p { font-size: 1.05rem; color: var(--ink-muted); margin: 0; }
.form-file .form-file__hint { font-size: 0.92rem; margin-top: 0.5rem; }

.form-file-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.form-file-preview {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--beige-dark);
}

.form-file-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-file-preview__pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  text-align: center;
  color: var(--ink);
}

.form-file-preview__pdf span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
}

.form-file-preview__pdf small {
  font-size: 0.68rem;
  line-height: 1.3;
  color: var(--ink-muted);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.form-file-preview__remove {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(46, 97, 113, 0.88);
  color: var(--linen);
  font-size: 1.1rem;
  line-height: 1;
  z-index: 1;
}

.form-file-preview__remove:hover {
  background: var(--spicy-orange);
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }

  .form-file-previews {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Blog / Journal ── */
.page-journal .page-hero {
  background: transparent;
}

.journal-hero {
  position: relative;
  overflow: hidden;
}

.journal-hero__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: clamp(280px, 48vw, 520px);
  height: clamp(220px, 38vw, 400px);
  background: url('../images/journal-image.jpg') center / cover no-repeat;
  transform: translate(-50%, -42%) rotate(-6deg);
  opacity: 0.42;
  filter: brightness(1.18) saturate(0.9);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 50%, #000 35%, transparent 78%);
  mask-image: radial-gradient(ellipse 72% 68% at 50% 50%, #000 35%, transparent 78%);
}

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

.journal-feed {
  position: relative;
  padding-top: 0;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.journal-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 244, 233, 0.92);
  box-shadow: 0 12px 36px rgba(102, 65, 71, 0.08);
  overflow: hidden;
}

.journal-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.journal-card__image {
  overflow: hidden;
  margin-bottom: 0;
}

.journal-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.journal-card:hover .journal-card__image img {
  transform: scale(1.03);
}

.journal-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem 1.5rem 1.75rem;
}

.journal-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.journal-card__meta span:not(:last-child)::after {
  content: '·';
  margin-left: 0.85rem;
  opacity: 0.55;
}

.journal-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.journal-card:hover h3 { color: var(--gold-dark); }

.journal-card__body > p {
  font-size: 1.1rem;
  color: var(--ink-muted);
  flex-grow: 1;
  margin: 0;
}

.journal-card__read {
  margin-top: 1.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}

.journal-card--featured {
  grid-column: span 2;
}

.journal-card--featured .journal-card__link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
}

.journal-card--featured .journal-card__image img {
  aspect-ratio: 16 / 11;
  height: 100%;
  min-height: 280px;
}

.journal-card--featured .journal-card__body {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  justify-content: center;
}

.journal-card--featured h3,
.journal-card--featured h2 { font-size: 2.4rem; }

/* ── Article / Journal post ── */
.page-article {
  --article-ink: #3f2a2e;
  --article-ink-soft: #4a3539;
  --article-muted: #7a5f55;
  --article-accent: #b54308;
  --article-panel: rgba(255, 248, 240, 0.92);
  --article-rule: rgba(102, 65, 71, 0.18);
  background-color: #f3ebe0;
  background-image:
    linear-gradient(rgba(255, 244, 233, 0.72), rgba(255, 244, 233, 0.78)),
    url('../images/handmade-paper-background.jpg');
  background-repeat: no-repeat, repeat;
  background-size: auto, 420px auto;
  background-position: center top, center top;
  color: var(--article-ink-soft);
}

.page-article .site-header::before {
  background: rgba(255, 248, 240, 0.94);
}

.breadcrumbs {
  padding-top: clamp(5.5rem, 12vw, 7.5rem);
  padding-bottom: 0.75rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--article-muted);
}

.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  opacity: 0.55;
}

.breadcrumbs a {
  color: var(--article-ink);
  text-decoration: none;
}

.breadcrumbs a:hover { color: var(--article-accent); }

.article {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.article__header {
  text-align: left;
  max-width: min(52rem, 92vw);
  margin-inline: auto;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--article-panel);
  border: 1px solid var(--article-rule);
  box-shadow: 0 10px 28px rgba(102, 65, 71, 0.06);
}

.article__header h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin-bottom: 1rem;
  color: var(--article-ink);
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--article-accent);
  margin-bottom: 1rem;
}

.article__deck {
  margin: 0;
  max-width: none;
  color: var(--article-ink-soft);
}

.article__hero {
  max-width: min(52rem, 92vw);
  margin: 0 auto 2rem;
}

.article__hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 14px 36px rgba(102, 65, 71, 0.12);
}

.article__body {
  max-width: min(52rem, 92vw);
  margin-inline: auto;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--article-panel);
  border: 1px solid var(--article-rule);
  box-shadow: 0 10px 28px rgba(102, 65, 71, 0.06);
}

.article__body h2 {
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--article-ink);
}

.article__body h2:first-child {
  margin-top: 0;
}

.article__body h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: var(--blue-slate);
}

.article__body p,
.article__body li {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--article-ink-soft);
  font-weight: 400;
}

.article__body strong {
  color: var(--article-ink);
  font-weight: 500;
}

.article__body ul,
.article__body ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.article__body ol { list-style: decimal; }

.article__body li { margin-bottom: 0.45rem; }

.article__body a {
  color: var(--article-accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.article__body a:hover {
  color: var(--spicy-orange);
}

.article__figure {
  margin: 2rem 0;
}

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

.article__figure figcaption {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  color: var(--article-muted);
  font-style: italic;
}

.article__table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border: 1px solid rgba(46, 97, 113, 0.28);
  background: rgba(255, 255, 255, 0.55);
}

.article__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
  min-width: 28rem;
}

.article__table th,
.article__table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(46, 97, 113, 0.18);
  vertical-align: top;
  color: var(--article-ink-soft);
}

.article__table thead th {
  background: rgba(46, 97, 113, 0.1);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-slate);
}

.article__table tbody th {
  font-weight: 500;
  color: var(--article-ink);
}

.article__faq {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--article-rule);
}

.article__conclusion {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--article-rule);
}

@media (max-width: 768px) {
  .page-article {
    overflow-x: hidden;
    background-size: auto, 280px auto;
  }

  .page-article .breadcrumbs {
    padding-top: clamp(5rem, 18vw, 6.25rem);
    padding-bottom: 0.85rem;
  }

  .page-article .breadcrumbs .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .page-article .breadcrumbs ol {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    gap: 0.25rem 0.35rem;
    line-height: 1.45;
  }

  .page-article .breadcrumbs li[aria-current="page"] {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .article {
    padding-bottom: 2.75rem;
  }

  .article__header {
    max-width: none;
    width: auto;
    margin-inline: 0.85rem;
    padding: 1.15rem 1rem 1.25rem;
  }

  .article__header h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.45rem);
    line-height: 1.18;
  }

  .article__meta {
    gap: 0.25rem 0.75rem;
    font-size: 0.78rem;
  }

  .article__deck {
    font-size: clamp(1.15rem, 4.5vw, 1.35rem);
  }

  .article__hero {
    max-width: none;
    width: 100%;
    margin: 0 0 1.25rem;
    padding-inline: 0;
  }

  .article__hero img {
    max-height: 42vh;
    min-height: 200px;
  }

  .article__body {
    max-width: none;
    width: auto;
    margin-inline: 0.85rem;
    padding: 1.2rem 1rem 1.6rem;
  }

  .article__body h2 {
    margin-top: 2rem;
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }

  .article__body h3 {
    font-size: clamp(1.15rem, 4.5vw, 1.35rem);
  }

  .article__body p,
  .article__body li {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .article__figure {
    margin: 1.5rem -0.15rem;
  }

  .article__table-wrap {
    margin: 1.15rem -0.35rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .article__table {
    min-width: 22rem;
    font-size: 0.92rem;
  }

  .article__table th,
  .article__table td {
    padding: 0.7rem 0.75rem;
  }

  .article__faq,
  .article__conclusion {
    margin-top: 2.25rem;
  }

  .page-article .site-footer {
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .article__header,
  .article__body {
    margin-inline: 0.65rem;
    padding-inline: 0.9rem;
  }

  .article__meta {
    flex-direction: column;
    gap: 0.35rem;
  }

  .article__table {
    min-width: 19.5rem;
  }

  .page-article .breadcrumbs ol {
    font-size: 0.68rem;
  }
}

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

  .journal-card--featured {
    grid-column: span 1;
  }

  .journal-card--featured .journal-card__link {
    grid-template-columns: 1fr;
  }

  .journal-card--featured .journal-card__image img {
    min-height: 0;
  }
}

/* ── Collections ── */
.collection-showcase {
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.collection-showcase:last-child { margin-bottom: 0; }

.collection-showcase__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 70vh;
}

.collection-showcase:nth-child(even) .collection-showcase__image { order: 2; }
.collection-showcase:nth-child(even) .collection-showcase__content { order: 1; }

.collection-showcase__image .img-placeholder,
.collection-showcase__image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.collection-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem);
  background: var(--cream);
}

.collection-showcase__content .eyebrow { margin-bottom: 1.5rem; }
.collection-showcase__content h2 { margin-bottom: 1.25rem; }
.collection-showcase__content p { max-width: 420px; }

@media (max-width: 768px) {
  .collection-showcase__layout { grid-template-columns: 1fr; min-height: auto; }
  .collection-showcase:nth-child(even) .collection-showcase__image,
  .collection-showcase:nth-child(even) .collection-showcase__content { order: unset; }
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-grid--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.contact-grid--centered .contact-panel {
  width: min(100%, 36rem);
}

.contact-grid--centered .btn-group {
  justify-content: center;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.contact-info-item a,
.contact-info-item p {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info-item a:hover { color: var(--gold-dark); }

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

/* ── About Page ── */
.page-about {
  background: var(--cream);
}

.page-about main {
  position: relative;
}

/* Let stagger photos show through banded sections */
.page-about .page-hero,
.page-about .section--cream,
.page-about .cta-banner {
  background: transparent;
}

.page-about .section--beige {
  background: color-mix(in srgb, var(--beige) 58%, transparent);
}

.page-about main > section {
  position: relative;
  z-index: 1;
}

.story-stagger {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.story-stagger__item {
  position: absolute;
  display: block;
  width: clamp(180px, 24vw, 340px);
  height: auto;
  object-fit: cover;
  opacity: 0.16;
  mix-blend-mode: multiply;
  filter: saturate(0.75) brightness(1.22) contrast(0.92);
}

/*
  Soft dissolving edges — masks fade borders so pieces read as
  atmospheric fragments, not hard photo cards.
*/
.story-stagger__item--1 {
  top: 0;
  left: auto;
  right: 2%;
  width: clamp(280px, 42vw, 540px);
  transform: rotate(6deg);
  opacity: 0.28;
  filter: saturate(0.8) brightness(0.92) contrast(1.05);
  -webkit-mask-image: radial-gradient(ellipse 72% 70% at 50% 42%, #000 18%, transparent 74%);
  mask-image: radial-gradient(ellipse 72% 70% at 50% 42%, #000 18%, transparent 74%);
}

.story-stagger__item--2 {
  top: 0.5rem;
  left: 2%;
  width: clamp(280px, 42vw, 540px);
  transform: rotate(-8deg);
  opacity: 0.28;
  filter: saturate(0.8) brightness(0.92) contrast(1.05);
  -webkit-mask-image: radial-gradient(ellipse 72% 70% at 50% 42%, #000 18%, transparent 74%);
  mask-image: radial-gradient(ellipse 72% 70% at 50% 42%, #000 18%, transparent 74%);
}

.story-stagger__item--7 {
  top: 74%;
  right: 3%;
  width: clamp(185px, 22vw, 310px);
  transform: rotate(4deg);
  opacity: 0.13;
  -webkit-mask-image:
    radial-gradient(ellipse 68% 74% at 58% 32%, #000 18%, transparent 74%),
    linear-gradient(to top, transparent 0%, #000 40%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse 68% 74% at 58% 32%, #000 18%, transparent 74%),
    linear-gradient(to top, transparent 0%, #000 40%);
  mask-composite: intersect;
}

.story-stagger__item--8 {
  top: 86%;
  left: 6%;
  width: clamp(195px, 24vw, 330px);
  transform: rotate(-6deg);
  opacity: 0.12;
  -webkit-mask-image: linear-gradient(205deg, transparent 8%, #000 32%, #000 55%, transparent 88%);
  mask-image: linear-gradient(205deg, transparent 8%, #000 32%, #000 55%, transparent 88%);
}

@media (max-width: 768px) {
  .story-stagger__item:not(.story-stagger__item--1):not(.story-stagger__item--2) {
    display: none;
  }

  .story-stagger__item--1,
  .story-stagger__item--2 {
    width: clamp(140px, 42vw, 220px);
    opacity: 0.16;
  }

  .story-stagger__item--1 {
    top: 0.5rem;
    left: auto;
    right: -6%;
    transform: rotate(5deg);
  }

  .story-stagger__item--2 {
    top: 1rem;
    left: -6%;
    transform: rotate(-7deg);
  }
}

.page-about .page-hero {
  padding-bottom: clamp(5rem, 12vw, 9rem);
}

.about-bio {
  position: relative;
  overflow: visible;
  background: transparent;
  padding-top: calc(var(--section-pad) + 7rem);
}

.about-bio::before,
.about-bio::after {
  content: none;
}

.about-philosophy {
  position: relative;
  overflow: hidden;
  margin-top: clamp(3rem, 8vw, 6rem);
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(255, 244, 233, 0.42), rgba(255, 244, 233, 0.42)),
    url('../images/about-page-background.jpg');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center top;
  border-top: 3px solid var(--gold-line);
  border-bottom: 3px solid var(--gold-line);
  padding-top: calc(var(--section-pad) + 8rem);
}

.about-philosophy .container {
  position: relative;
  z-index: 1;
}

.about-scenes {
  position: relative;
  overflow: hidden;
  background-color: var(--cream);
  background-image: url('../images/handmade-paper-background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top: 3px solid var(--gold-line);
  border-bottom: 3px solid var(--gold-line);
}

.about-scenes .container {
  position: relative;
  z-index: 1;
}

.about-bio__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: center;
}

.about-bio__copy {
  position: relative;
  z-index: 2;
  align-self: start;
  margin-top: 0.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: rgba(255, 244, 233, 0.9);
  border: none;
  border-radius: 1.5rem;
  box-shadow: none;
  text-align: left;
  -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 50%, #000 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 88% at 50% 50%, #000 58%, transparent 100%);
}

.about-bio__copy::before {
  content: none;
}

.about-bio__copy h2 {
  margin-bottom: 1.25rem;
  max-width: 10ch;
}

.about-bio__copy p + p {
  margin-top: 1rem;
}

.about-bio__portrait {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  align-self: end;
  margin-left: -2.25rem;
  margin-bottom: -2.5rem;
  padding-top: 9rem;
  transform: translateY(4.5rem);
}

.about-bio__frame {
  position: relative;
  margin: 0;
  max-width: 380px;
  width: 100%;
}

.about-bio__frame::before,
.about-bio__frame::after {
  content: none;
}

.about-bio__frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.about-bio__frame figcaption {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--linen);
  background: linear-gradient(to top, rgba(26, 46, 40, 0.82), rgba(26, 46, 40, 0.35) 70%, transparent);
}

@media (max-width: 900px) {
  .about-bio {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
  }

  .about-philosophy {
    margin-top: 2.5rem;
    padding-top: clamp(7.5rem, 32vw, 12rem);
    padding-bottom: var(--section-pad);
    background-position: center top;
  }

  .about-bio__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-bio__portrait {
    order: -1;
    margin-left: 0;
    justify-content: center;
    padding-top: 0;
    transform: none;
  }

  .about-bio__frame {
    max-width: 340px;
    margin-inline: auto;
  }

  .about-bio__copy {
    text-align: left;
  }
}

.about-craft__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-craft__copy h2 {
  margin-bottom: 1.25rem;
}

.about-craft__copy p + p {
  margin-top: 1rem;
}

.about-craft__stack {
  position: relative;
  min-height: clamp(360px, 52vw, 560px);
  max-width: 480px;
  margin-left: auto;
  width: 100%;
}

.about-craft__img {
  position: absolute;
  display: block;
  width: clamp(180px, 28vw, 280px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(102, 65, 71, 0.22);
}

.about-craft__img--back {
  top: 0;
  right: 0;
  z-index: 1;
  transform: rotate(5deg);
}

.about-craft__img--front {
  bottom: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-4deg);
}

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

  .about-craft__stack {
    margin-inline: auto;
    min-height: 380px;
  }

  .about-craft__img {
    width: clamp(160px, 42vw, 240px);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.about-grid .img-placeholder,
.about-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.split__image .aspect-3-2 {
  aspect-ratio: 3/2;
}

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

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Custom cursor dot ── */
@media (pointer: fine) {
  body.has-cursor-dot,
  body.has-cursor-dot a,
  body.has-cursor-dot button,
  body.has-cursor-dot input,
  body.has-cursor-dot select,
  body.has-cursor-dot textarea,
  body.has-cursor-dot .btn,
  body.has-cursor-dot .portfolio-item,
  body.has-cursor-dot .category-card,
  body.has-cursor-dot .journal-card,
  body.has-cursor-dot .form-file,
  body.has-cursor-dot .accordion-trigger {
    cursor: none;
  }
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.2s var(--ease);
  contain: layout style;
  --cursor-color: var(--spicy-orange);
}

.cursor-dot--center,
.cursor-orbit span {
  border-radius: 50%;
  background: var(--cursor-color);
  transition: background 0.2s var(--ease);
}

.cursor-dot--center {
  position: absolute;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
}

.cursor-orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  animation: cursor-orbit-spin 6s linear infinite;
}

.cursor-orbit span {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
}

.cursor-orbit span:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateX(9px); }
.cursor-orbit span:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg) translateX(9px); }
.cursor-orbit span:nth-child(3) { transform: translate(-50%, -50%) rotate(120deg) translateX(9px); }
.cursor-orbit span:nth-child(4) { transform: translate(-50%, -50%) rotate(180deg) translateX(9px); }
.cursor-orbit span:nth-child(5) { transform: translate(-50%, -50%) rotate(240deg) translateX(9px); }
.cursor-orbit span:nth-child(6) { transform: translate(-50%, -50%) rotate(300deg) translateX(9px); }

@keyframes cursor-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

body.has-cursor-dot .cursor-ring.is-visible {
  opacity: 1;
}

body.has-cursor-dot .cursor-ring.is-on-footer {
  --cursor-color: #e8dbc5;
}

@media (prefers-reduced-motion: reduce) {
  .cursor-orbit {
    animation: none;
  }
}

/* ── Divider ── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.divider--left { margin-inline: 0; }

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ── Sitewide mobile polish ── */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 1.1rem;
  }

  .container,
  .container--narrow {
    width: min(100% - 2rem, var(--container));
  }

  .page-hero {
    padding-top: clamp(5.75rem, 18vw, 7.5rem);
    padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 9vw, 3.25rem);
  }

  .page-about .page-hero {
    padding-top: clamp(5.75rem, 18vw, 7.5rem);
    padding-bottom: clamp(2.75rem, 8vw, 4rem);
  }

  .page-hero--process,
  .process-band .page-hero--process {
    padding-top: clamp(5.75rem, 18vw, 7.75rem);
    padding-bottom: clamp(2.75rem, 7vw, 4rem);
  }

  .journal-hero__bg {
    width: min(78vw, 320px);
    height: min(58vw, 240px);
    opacity: 0.32;
  }

  .journal-card--featured h3,
  .journal-card--featured h2 {
    font-size: clamp(1.7rem, 6vw, 2rem);
  }

  .journal-card--featured .journal-card__body {
    padding: 1.5rem 1.25rem;
  }

  .collection-showcase__content {
    padding: 2.25rem 1.35rem;
    text-align: center;
  }

  .collection-showcase__content p {
    margin-inline: auto;
  }

  .collection-showcase__image .img-placeholder,
  .collection-showcase__image img {
    min-height: 260px;
  }

  .cta-banner {
    padding: 3.25rem 1.25rem;
  }

  .cta-banner h2 {
    font-size: clamp(2rem, 7.5vw, 2.6rem);
  }

  .cta-banner .btn-group {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    max-width: 20rem;
    margin-inline: auto;
  }

  .cta-banner .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  .section-header {
    margin-bottom: clamp(2.25rem, 6vw, 3.5rem);
  }

  .section-header--left {
    text-align: center;
    margin-inline: auto;
  }

  .studio-feature__frame figcaption {
    max-width: 100%;
    text-align: center;
  }

  .about-craft__stack {
    min-height: 320px;
    max-width: 360px;
  }

  .about-bio__copy h2 {
    max-width: none;
  }

  .about-bio__copy {
    padding: 1.35rem 1.15rem;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .nav-mobile {
    padding: 5.5rem 1.5rem 2rem;
    gap: 1.5rem;
    overflow-y: auto;
  }

  .nav-mobile a:not(.btn) {
    font-size: 1.35rem;
  }

  .inquiry-form {
    padding-inline: 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .process-step {
    padding: 1.5rem 0.75rem;
  }

  .timeline-step p {
    font-size: 1.05rem;
  }

  .footer-brand .logo-text__name {
    font-size: 1.35rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  .site-header .logo-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1.15;
  }

  .site-header .logo-text__name {
    font-size: clamp(1.7rem, 9vw, 2.15rem);
  }

  .site-header .logo-text__tag {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

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

  .materials-grid {
    gap: 1.5rem;
  }

  .timeline-step {
    padding-left: 3.75rem;
    padding-bottom: 2.5rem;
  }

  .btn {
    padding: 0.85rem 1.35rem;
    letter-spacing: 0.12em;
  }
}
