/* =========================================================
   Iconicrafts — editorial, Swiss-made
   Brand references logo: thin letter-spaced caps in charcoal
   ========================================================= */

:root {
  /* palette */
  --bg:        #f4f1ec;
  --bg-alt:    #ebe5d8;
  --bg-deep:   #1c1a17;      /* deep charcoal for dark sections */
  --ink:       #141414;      /* logo-matching */
  --ink-soft:  #3a3631;
  --muted:     #8a8378;
  --accent:    #7a5a3c;      /* warm earth */
  --accent-dk: #4e3b29;
  --hairline:  rgba(20, 20, 20, 0.14);
  --hairline-2: rgba(20, 20, 20, 0.06);
  --light:     #f4f1ec;

  /* type */
  --ff-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* rhythm */
  --wrap: 1280px;
  --pad-x: clamp(1.25rem, 5vw, 3.5rem);
  --section-y: clamp(5.5rem, 11vw, 10rem);

  /* motion */
  --easing: cubic-bezier(.2, .7, .2, 1);
}

/* ===== reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: .5rem .9rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ===== typography ===== */
.eyebrow {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.eyebrow--light { color: rgba(244, 241, 236, 0.85); }

.h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.h3, .tile__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 .35rem;
}

.body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  max-width: 58ch;
}
.lede {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1.25rem;
  max-width: 56ch;
}

.brand-word {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.42em;
  color: var(--ink);
}
.brand-word--light { color: var(--light); }

.link-arrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: .25rem;
  border-bottom: 1px solid var(--ink);
  transition: color .35s var(--easing), transform .35s var(--easing);
}
.link-arrow:hover { transform: translateX(3px); color: var(--accent-dk); }

/* ===== nav ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.1rem 0;
  background: rgba(244, 241, 236, 0);
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .45s var(--easing), border-color .45s var(--easing), padding .45s var(--easing), color .45s var(--easing);
  color: var(--light);
}
.nav.is-scrolled {
  background: rgba(244, 241, 236, 0.94);
  border-bottom-color: var(--hairline);
  padding: .75rem 0;
  color: var(--ink);
}
.nav.is-scrolled .brand-word,
.nav.is-scrolled .nav__links a,
.nav.is-scrolled .lang__btn { color: inherit; }
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  color: inherit;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: inherit;
}
.nav .brand-word { color: inherit; }

.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(.9rem, 2.1vw, 1.9rem);
}
.nav__links a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: inherit;
  opacity: .85;
  padding: .35rem 0;
  position: relative;
  transition: opacity .3s var(--easing);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s var(--easing);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left center; }

.nav__right {
  display: flex; align-items: center; gap: 1rem;
  justify-content: flex-end;
  color: inherit;
}

.lang {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: inherit;
  opacity: .85;
}
.lang__btn {
  padding: .35rem .25rem;
  color: inherit;
  opacity: .7;
  transition: opacity .3s var(--easing);
}
.lang__btn.is-active, .lang__btn:hover { opacity: 1; }
.lang__sep { opacity: .5; }

/* mobile toggle */
.nav__toggle { display: none; width: 30px; height: 30px; position: relative; color: inherit; }
.nav__toggle span {
  display: block; position: absolute; left: 3px; right: 3px; height: 1px; background: currentColor;
  transition: transform .35s var(--easing), top .35s var(--easing);
}
.nav__toggle span:nth-child(1) { top: 11px; }
.nav__toggle span:nth-child(2) { top: 18px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { top: 14px; transform: rotate(-45deg); }

/* ===== hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(7rem, 15vh, 11rem);
  padding-bottom: clamp(4rem, 10vh, 7rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--light);
}
.hero__media {
  position: absolute; inset: 0;
  margin: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.02);
  animation: heroZoom 16s var(--easing) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.02); }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,20,20,0.35) 0%, rgba(20,20,20,0.15) 30%, rgba(20,20,20,0.7) 100%);
  z-index: -1;
}

.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 1100px;
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.96;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--light);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}
.hero__title .line { display: block; }
.hero__title .line--italic { font-style: italic; color: #b8c0cc; } /* sideral gray */

.hero__lede {
  font-family: var(--ff-body);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 46ch;
  color: rgba(244, 241, 236, 0.92);
  margin: .5rem 0 0;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 1.6rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: transform .4s var(--easing), background .4s var(--easing), color .4s var(--easing), border-color .4s var(--easing);
  will-change: transform;
}
.btn--primary {
  background: var(--light);
  color: var(--ink);
}
.btn--primary:hover { background: #fff; transform: translateY(-1px); }
.btn--ghost-light {
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(244, 241, 236, 0.55);
}
.btn--ghost-light:hover { border-color: var(--light); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

.hero__scroll {
  position: absolute;
  left: var(--pad-x); bottom: 2.25rem;
  display: inline-flex; align-items: center; gap: .9rem;
  color: rgba(244, 241, 236, 0.8);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero__scroll-line {
  display: inline-block;
  width: 44px; height: 1px;
  background: currentColor;
  transform-origin: left center;
  animation: scrollHint 2.4s var(--easing) infinite;
}
@keyframes scrollHint {
  0%   { transform: scaleX(0); opacity: 0; }
  30%  { transform: scaleX(1); opacity: 1; }
  80%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1) translateX(8px); opacity: 0; }
}

/* ===== hero — light variant (bright background, dark text) ===== */
.hero--light { color: var(--ink); background: var(--bg); }
/* Push the photo into the background so the title takes the foreground. */
.hero--light .hero__media img {
  filter: saturate(0.92) contrast(1.02) brightness(1.0);
  opacity: 0.78;
}
.hero--light::before {
  /* Lighter wash — let the photograph come forward, with just enough
     gradient at the bottom to settle the lede + buttons. */
  background:
    linear-gradient(180deg,
      rgba(244, 241, 236, 0.30) 0%,
      rgba(244, 241, 236, 0.15) 35%,
      rgba(244, 241, 236, 0.30) 70%,
      rgba(244, 241, 236, 0.55) 100%);
}
.hero--light .eyebrow,
.hero--light .eyebrow--light { color: rgba(20, 20, 20, 0.72); }
.hero--light .hero__title {
  color: var(--ink);
  text-shadow: 0 2px 38px rgba(244, 241, 236, 0.7);
}
.hero--light .hero__title .line--italic {
  color: var(--light); /* almond white */
  text-shadow:
    0 1px 2px rgba(0,0,0,0.35),
    0 2px 28px rgba(0,0,0,0.22);
}
.hero--light .hero__lede {
  color: rgba(20, 20, 20, 0.9);
  text-shadow: 0 1px 18px rgba(244, 241, 236, 0.55);
}
.hero--light .btn--primary {
  background: var(--ink);
  color: var(--light);
}
.hero--light .btn--primary:hover { background: #000; transform: translateY(-1px); }
.hero--light .btn--ghost-light {
  background: var(--light);
  color: var(--ink);
  border-color: var(--light);
  box-shadow: 0 6px 24px -10px rgba(0,0,0,0.25);
}
.hero--light .btn--ghost-light:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}
.hero--light .hero__scroll { color: rgba(20, 20, 20, 0.62); }

/* ===== section base ===== */
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section--mission         { background: var(--bg); }
.collection--mountain     { background: var(--bg); }
.collection--raindrop     { background: var(--bg-alt); }
.collection--pasay        { background: var(--bg-deep); color: var(--light); }
.collection--pasay .h2    { color: var(--light); }
.collection--pasay .lede  { color: rgba(244, 241, 236, 0.92); }
.collection--pasay .body  { color: rgba(244, 241, 236, 0.68); }
.collection--pasay .eyebrow { color: rgba(244, 241, 236, 0.6); }
.collection--pasay .link-arrow { color: var(--light); border-color: var(--light); }

.section--gallery  { background: var(--bg); }
.section--trust    { background: var(--bg-alt); }
.section--contact  { background: var(--bg); }

.section__head {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section__head .h2 { margin-bottom: 1rem; }
.section__note { margin: 0 auto; color: var(--ink-soft); }

.section__head--split {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: none;
  text-align: left;
  align-items: end;
  margin-bottom: 3.5rem;
}
.section__head--split .section__note { margin: 0; }

/* ===== mission ===== */
.mission {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.mission__title {
  display: flex; flex-direction: column; gap: .25rem;
  margin-bottom: 2rem;
}
.mission__title-em {
  font-style: italic;
  color: var(--accent-dk);
}
.mission__body {
  max-width: 700px; margin: 0 auto;
}
.mission__body .lede { margin-left: auto; margin-right: auto; }
.mission__body .body { margin-left: auto; margin-right: auto; max-width: 52ch; }

.mission__pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin: 2rem 0 1rem;
  text-align: left;
  padding: 2rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.mission__pair .body { margin: 0; }

.mission__close {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--ink);
  line-height: 1.35;
  margin: 1.5rem auto 0;
  max-width: 40ch;
}

/* ===== collection grid (Mountain) ===== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.collection-grid--three {
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* Mountain feature row — mirrors La Pasay structure exactly:
   image on the LEFT, copy on the RIGHT (eyebrow + title + lede + body
   + italic motto + link-arrow CTA). Both columns vertically centered. */
.mountain-feature {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.mountain-feature__media {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.18);
}
.mountain-feature__media img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center center;
  transition: transform 1.4s var(--easing);
}
.mountain-feature:hover .mountain-feature__media img { transform: scale(1.03); }
.mountain-feature__copy .eyebrow { margin-bottom: .75rem; }
.mountain-feature__copy .h2 { margin: 0 0 1.25rem; }
.mountain-feature__copy .lede { margin: 0 0 1.1rem; }
.mountain-feature__copy .body { margin: 0 0 1.1rem; }
.mountain-feature__motto {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.35;
  margin: 1.25rem 0 1.5rem !important;
  color: var(--ink-soft);
}
/* Tile: image on top, caption flows below — calm editorial feel.
   No dark gradient, no overlay. */
.tile {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.tile__media {
  display: block;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: 1px;
}
.tile__media img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.4s var(--easing);
}
.tile:hover .tile__media img { transform: scale(1.025); }
.tile figcaption {
  padding: 1.1rem 0 0;
  color: var(--ink);
}
.tile__title {
  color: var(--ink);
  margin: 0 0 .35rem;
}
.tile__sub {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.tile__buy {
  display: inline-block;
  margin-top: .85rem;
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: .25rem;
  border-bottom: 1px solid var(--ink);
  transition: color .3s var(--easing), border-color .3s var(--easing), transform .3s var(--easing);
}
.tile__buy:hover {
  color: var(--accent-dk);
  border-bottom-color: var(--accent-dk);
  transform: translateY(-1px);
}

/* Layout: hero centered (cols 3-10, 16:10 — matches La Pasay format),
   three 1:1 squares below */
.tile { grid-column: span 4; }
.tile--hero { grid-column: 3 / span 8; }
.tile--hero .tile__media img { aspect-ratio: 16/10; object-position: center 60%; }
.tile--third .tile__media img { aspect-ratio: 1/1; object-position: center center; }
/* In the 3-col row below the mountain hero, each tile spans 1 column. */
.collection-grid--three .tile--third { grid-column: span 1; }

/* "Coming soon" tile: same shape as a normal tile but with a placeholder
   panel instead of a photo. Stays visually inert (not hoverable, no scale). */
.tile--soon { background: var(--bg-alt); }
.tile--soon:hover img { transform: none; }
.tile__placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background:
    radial-gradient(120% 90% at 50% 35%, rgba(255,255,255,0.55), rgba(235,229,216,0) 60%),
    repeating-linear-gradient(135deg,
      rgba(20,20,20,0.04) 0 1px,
      transparent 1px 14px),
    linear-gradient(180deg, #efe9dc, #e3dcc9);
  color: rgba(20,20,20,0.55);
  text-align: center;
  padding: 1rem;
}
.tile__placeholder-mark {
  font-family: var(--ff-body);
  font-size: .72rem;
  letter-spacing: .42em;
  font-weight: 500;
  color: rgba(20,20,20,0.32);
}
.tile__placeholder-note {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: .01em;
  color: rgba(20,20,20,0.55);
}

/* ===== project section (La Soupe au Lait) ===== */
.section--project {
  background: var(--bg-alt);
}
.project {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.project__media {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.45);
}
.project__media img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 1.4s var(--easing);
}
.project:hover .project__media img { transform: scale(1.03); }
.project__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .55rem .9rem;
  margin-top: .5rem;
}
.project__kicker {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.project__sep {
  color: rgba(20,20,20,0.35);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.75em;
  letter-spacing: 0.05em;
}
.project__name {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* inspiration strip — three small squares, full-width row, calm */
.inspo {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: 2.75rem;
  border-top: 1px solid var(--hairline);
}
.inspo .eyebrow {
  margin-bottom: 1.5rem;
  text-align: center;
}
.inspo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.inspo__item {
  margin: 0;
  overflow: hidden;
  border-radius: 1px;
  background: var(--bg-alt);
}
.inspo__item img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 1.2s var(--easing);
}
.inspo__item:hover img { transform: scale(1.025); }

/* ===== rain-drop (duo) ===== */
.duo {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(1rem, 2vw, 1.75rem);
}
.duo__item { margin: 0; position: relative; overflow: hidden; }
.duo__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 5/4;
  transition: transform 1.2s var(--easing);
}
.duo__item--wide img { aspect-ratio: 7/5; }
.duo__item:hover img { transform: scale(1.03); }
.duo__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  color: var(--light);
}
.duo__item .tile__title { color: var(--light); }

/* ===== La Pasay ===== */
.la-pasay {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.la-pasay__media {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.55);
}
.la-pasay__media img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center center;
  transition: transform 1.4s var(--easing);
}
.la-pasay:hover .la-pasay__media img { transform: scale(1.03); }
.la-pasay__motto {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.35;
  margin-top: 1.25rem;
  color: rgba(244, 241, 236, 0.86);
}

/* ===== gallery mosaic — calm 3-col grid of squares ===== */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.mosaic li {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: 1px;
  aspect-ratio: 1/1;
}
.mosaic li img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s var(--easing);
}
.mosaic li:hover img { transform: scale(1.025); }
/* Re-frame: show more of the top of the image (e.g. ICONICRAFTS branding) */
.mosaic li.mosaic__item--top img { object-position: center 25%; }

/* ===== trust ===== */
.trust__eyebrow { text-align: center; margin-bottom: 2rem; }
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.trust li {
  padding: 2rem 1rem;
  border-left: 1px solid var(--hairline);
}
.trust li:nth-child(3n+1) { border-left: 0; }
.trust__name {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-style: italic;
  color: var(--ink);
  margin: 0 0 .4rem;
  line-height: 1.15;
}
.trust__place {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ===== contact ===== */
.contact {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.contact__title { margin-bottom: 1rem; }
.contact__body { margin: 0 auto 2.25rem; color: var(--ink-soft); max-width: 52ch; }
.contact__email {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-style: italic;
  color: var(--accent-dk);
  letter-spacing: -0.005em;
  padding-bottom: .2rem;
  border-bottom: 1px solid var(--hairline);
  transition: color .35s var(--easing), border-color .35s var(--easing), transform .35s var(--easing);
  word-break: break-word;
}
.contact__email:hover { color: var(--ink); border-bottom-color: var(--ink); transform: translateY(-1px); }

.meta { display: grid; gap: 1rem 2rem; }
.meta dt {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .35rem;
}
.meta dd {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--ink);
}
.meta dd a { border-bottom: 1px solid transparent; transition: border-color .3s var(--easing); }
.meta dd a:hover { border-bottom-color: var(--ink); }

.meta--contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 520px;
  margin: 3rem auto 0;
  text-align: left;
}
.socials { display: inline-flex; flex-wrap: wrap; gap: .55rem; }
.socials a { font-size: 1.1rem; }

/* ===== footer ===== */
.foot {
  padding: 3rem 0 2rem;
  background: var(--bg-deep);
  color: rgba(244, 241, 236, 0.7);
  font-size: .86rem;
}
.foot a { transition: color .3s var(--easing); }
.foot a:hover { color: var(--light); }

.foot__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(244, 241, 236, 0.1);
}
.foot__inner--slim {
  grid-template-columns: 2fr 1fr;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}
.foot__col { min-width: 0; }
.foot__col--brand .brand-word { display: block; margin-bottom: .9rem; }
.foot__line { margin: 0; color: rgba(244, 241, 236, 0.55); max-width: 32ch; }

.foot__h {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
  margin: 0 0 .9rem;
}
.foot__col ul li { margin-bottom: .35rem; }
.foot__col ul a { color: rgba(244, 241, 236, 0.78); }

/* ===== Minimalist footer ===== */
.foot--minimal {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 3vw, 2.5rem);
}
.foot-min {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .65rem;
}
.foot-min__brand {
  display: inline-block;
  margin-bottom: .25rem;
}
.foot-min__brand .brand-word {
  font-size: 1.05rem;
  letter-spacing: .42em;
}
.foot-min__tag {
  margin: 0 0 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(244, 241, 236, 0.6);
}
.foot-min__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .55rem .85rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.foot-min__legal a {
  color: rgba(244, 241, 236, 0.72);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .3s var(--easing), border-color .3s var(--easing);
}
.foot-min__legal a:hover {
  color: var(--light);
  border-bottom-color: rgba(244, 241, 236, 0.4);
}
.foot-min__legal span {
  color: rgba(244, 241, 236, 0.3);
  font-size: .7rem;
}
.foot-min__rights {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .06em;
  color: rgba(244, 241, 236, 0.4);
}

/* ===== Legal pages ===== */
.section--legal { padding-top: clamp(5rem, 9vw, 8rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.legal { max-width: 62ch; }
.legal__head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.legal__head .eyebrow { margin-bottom: .75rem; }
.legal__title { margin: 0 0 .75rem; }
.legal__updated {
  margin: 0;
  font-size: .85rem;
  letter-spacing: .04em;
  color: rgba(20, 20, 20, 0.55);
}
.legal__body p { margin: 0 0 1.1rem; }
.legal__body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  letter-spacing: .005em;
  margin: 2.25rem 0 .85rem;
  color: var(--ink);
}
.legal__body h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  margin: 1.5rem 0 .65rem;
  color: var(--ink);
}
.legal__body ul, .legal__body ol {
  margin: 0 0 1.1rem 1.25rem;
  padding: 0;
}
.legal__body li { margin-bottom: .35rem; }
.legal__body a { text-decoration: underline; text-underline-offset: .15em; }
.legal__body strong { font-weight: 500; color: var(--ink); }
.legal__back { margin-top: clamp(2rem, 4vw, 3rem); }

.foot__bar {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-top: 1.75rem;
  color: rgba(244, 241, 236, 0.4);
  font-size: .78rem;
}
.foot__bar p { margin: 0; }
.foot__colophon { letter-spacing: .06em; }

/* ===== reveal ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 1s var(--easing), transform 1s var(--easing); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   Tile as clickable card (homepage)
   ========================================================= */
.tile--linked { position: relative; }
.tile__link {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.tile__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.tile--linked .tile__media img { transition: transform 1.4s var(--easing); }
.tile--linked:hover .tile__media img,
.tile--linked .tile__link:focus-visible .tile__media img { transform: scale(1.025); }

/* =========================================================
   Solid nav variant (product page — no hero behind nav)
   ========================================================= */
.nav--solid {
  background: var(--bg);
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.nav--solid .nav__brand,
.nav--solid .nav__links a,
.nav--solid .lang__btn { color: var(--ink); }
.page-product { padding-top: 0; }

/* =========================================================
   Product page
   ========================================================= */
.product {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--bg);
}
.product__inner { padding-inline: var(--pad-x); }

.product__back {
  display: inline-block;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .25s var(--easing);
}
.product__back:hover { color: var(--ink); }

.product__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.product__media {
  margin: 0;
  border-radius: 1px;
  overflow: hidden;
  background: var(--bg-alt);
}
.product__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.product__info { padding-top: .25rem; }
.product__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: .5rem 0 .9rem;
  color: var(--ink);
}
.product__tagline {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
  max-width: 38ch;
}
.product__story p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 52ch;
}
.product__story p:last-child { margin-bottom: 2rem; }

.product__specs {
  margin: 0 0 2rem;
  padding: 1.4rem 0 1.6rem;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1.5rem;
}
.product__spec { display: contents; }
.product__spec dt {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.product__spec dd {
  margin: 0;
  font-size: .92rem;
  color: var(--ink);
}

.product__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.product__price { display: flex; flex-direction: column; line-height: 1.1; }
.product__price-label {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}
.product__price-amount {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3.4vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
}
.product__buy {
  background: var(--ink);
  color: var(--light);
  padding: 1rem 1.8rem;
  text-decoration: none;
}
.product__buy:hover { background: var(--accent-dk); transform: translateY(-1px); }

.product__shipping {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  max-width: 48ch;
}

/* Provenance section */
.section--provenance {
  background: var(--bg-alt);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.provenance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.provenance__copy p.body { color: var(--ink-soft); max-width: 50ch; }
.provenance__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: .5rem 0 1.2rem;
}
.provenance__media { margin: 0; overflow: hidden; border-radius: 1px; }
.provenance__media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: grayscale(1) contrast(1.02);
}

/* Mini contact CTA at end of product page */
.section--contact-mini {
  background: var(--bg);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--hairline);
}
.section--contact-mini .contact__email {
  display: inline-block;
  margin-top: .6rem;
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-decoration: none;
  color: var(--ink);
  transition: color .25s var(--easing);
}
.section--contact-mini .contact__email:hover { color: var(--accent); }
.section--contact-mini .contact__body { max-width: 55ch; margin-top: 1.2rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .product__layout { grid-template-columns: 1fr; }
  .product__specs { grid-template-columns: 1fr; gap: .55rem 0; }
  .provenance { grid-template-columns: 1fr; }
  .provenance__media { order: -1; }
}

/* ===== responsive ===== */
@media (max-width: 1000px) {
  .section__head--split { grid-template-columns: 1fr; align-items: start; }
  .tile { grid-column: span 6; }
  .tile--hero { grid-column: span 12; }
  .tile--third { grid-column: span 6; }
  .duo { grid-template-columns: 1fr; }
  .la-pasay { grid-template-columns: 1fr; gap: 2rem; }
  .project { grid-template-columns: 1fr; gap: 2rem; }
  .project__media { order: -1; }
  .mountain-feature { grid-template-columns: 1fr; gap: 2rem; }
  .collection-grid--three { grid-template-columns: 1fr; }
  .collection-grid--three .tile--third { grid-column: 1 / -1; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust li { border-left: 1px solid var(--hairline); }
  .trust li:nth-child(3n+1) { border-left: 1px solid var(--hairline); }
  .trust li:nth-child(2n+1) { border-left: 0; }
  .mission__pair { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem 0; }
  .foot__inner { grid-template-columns: 1fr 1fr; }
  .foot__inner--slim { grid-template-columns: 1fr; }
  .foot__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-grid; place-items: center; }
  .nav.is-open .nav__links {
    display: flex;
    position: fixed; top: 58px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem var(--pad-x) 2rem;
    background: var(--bg);
    color: var(--ink);
    border-bottom: 1px solid var(--hairline);
    gap: .5rem;
  }
  .nav.is-open .nav__links a { font-size: 1.15rem; padding: .5rem 0; opacity: 1; }
  .nav:not(.is-scrolled).is-open { background: var(--bg); color: var(--ink); }

  .trust { grid-template-columns: 1fr; }
  .trust li, .trust li:first-child { border-left: 0; border-top: 1px solid var(--hairline); }
  .trust li:first-child { border-top: 0; }
  .foot__bar { flex-direction: column; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .tile, .tile--hero,
  .duo,
  .foot__inner { grid-template-columns: 1fr; }
  .tile, .tile--third { grid-column: 1 / -1; }
  /* keep inspiration 3-in-a-row on mobile too */
  .inspo__grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic li,
  .mosaic li:nth-child(n) { grid-column: span 1; aspect-ratio: 1/1; }
  .meta--contact { grid-template-columns: 1fr; }
  .foot__inner { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
}

/* "coming soon" subtitle — same look as regular .tile__sub (uppercase, tracked) */
.tile__sub--italic {
  font-style: normal;
}

/* ===== inspiration carousel ===== */
.carousel {
  position: relative;
  width: 100%;
  margin-top: clamp(1.25rem, 3vw, 2rem);
  border-radius: 4px;
  overflow: hidden;
  background: #0e0d0c;
  aspect-ratio: 16/9;
}
.carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 900ms var(--easing);
  pointer-events: none;
}
.carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 300ms var(--easing), transform 300ms var(--easing);
}
.carousel__dot.is-active {
  background: rgba(255,255,255,0.95);
  transform: scale(1.2);
}
@media (max-width: 720px) {
  .carousel { aspect-ratio: 4/5; }
}

/* ===== gallery: home shows first 5, full page shows all ===== */
.section--gallery .mosaic .mosaic__more { display: none !important; }
.section--gallery--full .mosaic .mosaic__more { display: block !important; }
.gallery__cta {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  text-align: right;
}

/* ===== reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__media img { animation: none; transform: none; }
  .hero__scroll-line { animation: none; }
  .carousel__slide { transition: none; }
}
