/* ============================================================
   Naavi Jewels — Luxury cream & gold theme
   ============================================================ */

:root {
  /* Palette — warm gold-orange */
  --cream: #FAF4E8;
  --cream-deep: #F1E7D0;
  --cream-warm: #EDE0C6;
  --gold: #CC8A3E;
  --gold-bright: #E5A864;
  --gold-deep: #9C6420;
  --gold-shimmer: linear-gradient(135deg, #A8621E 0%, #E8AA5E 45%, #D49250 70%, #9C6420 100%);
  --ink: #1a1612;
  --ink-soft: #3a3027;
  --ink-mute: #6a5e51;
  --orange: #D87333;
  --orange-deep: #B85A24;

  /* Type */
  --f-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --f-wordmark: 'Italiana', 'Playfair Display', Georgia, serif;
  --f-italic: 'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --container: 1240px;
  --radius: 4px;
  --header-h: 110px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease), opacity .25s var(--ease);
}

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

.gold {
  background: var(--gold-shimmer);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
}

/* ============================================================
   Splash / Intro
   ============================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #D87333; /* match the logo's patterned orange so the edges blend */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: splashOut 2.6s var(--ease) forwards;
}

.splash__inner {
  position: relative;
  width: min(92vmin, 760px);
  height: min(92vmin, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashZoom 2.6s var(--ease) forwards;
}

.splash__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Feather the square edges of the patterned art into the matching orange bg */
  -webkit-mask-image: radial-gradient(circle at center, #000 58%, transparent 92%);
          mask-image: radial-gradient(circle at center, #000 58%, transparent 92%);
  animation: splashPulse 2.2s var(--ease);
}

/* Fallback if logo image missing — renders an orange disc with a gold N */
.splash__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F5EDD8;
  border: 14px solid #D87333;
  font-family: var(--f-display);
  font-size: 38vmin;
  font-weight: 600;
  background-image: var(--gold-shimmer);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -1;
}
.splash__inner img + .splash__fallback { display: none; }
.splash__inner img[style*="display: none"] + .splash__fallback,
.splash__inner img[style*="display:none"] + .splash__fallback { display: flex; z-index: 1; }

@keyframes splashOut {
  0%, 70% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes splashZoom {
  0%   { transform: scale(1.05); opacity: 0; }
  20%  { transform: scale(1);    opacity: 1; }
  75%  { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(1.15); opacity: 0; }
}

@keyframes splashPulse {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.06); }
}

.no-splash .splash { display: none; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 244, 232, 0);
  backdrop-filter: blur(0);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 244, 232, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(204, 138, 62, .25), 0 8px 24px rgba(0, 0, 0, .04);
  height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.brand__wordmark {
  height: 72px;
  width: auto;
  transition: height .35s var(--ease), filter .35s var(--ease);
}

.is-scrolled .brand__wordmark { height: 58px; }

.brand__text {
  font-family: var(--f-wordmark);
  letter-spacing: .22em;
  font-weight: 400;
  font-size: 52px;
  line-height: 1;
  background: var(--gold-shimmer);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: font-size .35s var(--ease);
  padding-right: .12em; /* compensate for letter-spacing on last glyph */
}

.is-scrolled .brand__text { font-size: 42px; }

.brand__text--footer {
  font-size: 64px;
  -webkit-text-fill-color: initial;
  background: var(--gold-shimmer);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav */
.nav__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
}

.nav__list a {
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}

.is-scrolled .nav__list a { color: var(--ink); }

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

.nav__list a:hover::after { width: 100%; }

.nav__cta {
  border: 1px solid var(--gold);
  padding: 10px 18px !important;
  border-radius: var(--radius);
  background: transparent;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--cream) !important;
}

.nav__cta::after { display: none; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  padding: 8px;
  position: relative;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  transform-origin: center;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 14px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  border: 1px solid transparent;
}

.btn--gold {
  background: var(--gold-shimmer);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(201, 169, 97, .6);
}

.btn--gold:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(201, 169, 97, .75);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn--gold-outline {
  background: transparent;
  color: var(--gold-deep);
  border-color: var(--gold);
}

.btn--gold-outline:hover {
  background: var(--gold);
  color: var(--cream);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 40px) clamp(20px, 5vw, 80px) 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(216, 115, 51, .08), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(201, 169, 97, .14), transparent 55%),
    var(--cream);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, .12) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(216, 115, 51, .08) 0%, transparent 30%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}

.hero__content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s var(--ease) .8s both;
}

.hero__eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 24px;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin: 0 0 24px;
  color: var(--ink);
}

.hero__title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
  background: var(--gold-shimmer);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.hero__sub {
  font-size: 20px;
  color: var(--ink-mute);
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(58, 48, 39, .35),
    0 8px 20px -8px rgba(201, 169, 97, .35);
  animation: fadeRight 1.1s var(--ease) 1s both;
}

.hero__image::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
  transform: translate(10px, 10px);
  opacity: .8;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: var(--cream-deep);
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
  padding: 24px;
}
.hero__image-fallback code {
  background: rgba(0,0,0,.06);
  padding: 2px 6px;
  border-radius: 3px;
}
.hero__image--missing img { display: none; }
.hero__image--missing .hero__image-fallback { display: flex; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--gold-bright);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 97, .35);
  border-bottom: 1px solid rgba(201, 169, 97, .35);
}

.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--f-display);
  letter-spacing: .3em;
  font-size: 13px;
  text-transform: uppercase;
  animation: marquee 38s linear infinite;
  width: max-content;
}

.marquee__track span:nth-child(even) {
  color: var(--gold);
  font-size: 10px;
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Section primitives
   ============================================================ */
.section__eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
}

.section__eyebrow.on-dark { color: var(--gold-bright); }

.section__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--ink);
}

.section__title.on-dark { color: var(--cream); }

.section__lede {
  font-size: 19px;
  color: var(--ink-mute);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   About
   ============================================================ */
.about {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.about__media { position: relative; }

.about__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-deep);
}

.about__frame::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .6);
  pointer-events: none;
}

.about__frame::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  border: 1px solid var(--gold);
  border-radius: 6px;
  z-index: -1;
}

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

.about__frame-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
  padding: 24px;
}
.about__frame-fallback code {
  background: rgba(0,0,0,.06);
  padding: 2px 6px;
  border-radius: 3px;
}
.about__frame--missing img { display: none; }
.about__frame--missing .about__frame-fallback { display: flex; }

.about__body p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.7;
}

.about__signature {
  font-style: italic;
  color: var(--gold-deep) !important;
  font-size: 18px !important;
  margin-top: 8px !important;
}

.about__body .btn { margin-top: 16px; }

/* ============================================================
   Collection
   ============================================================ */
.collection {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 80px);
  background: var(--cream-deep);
  position: relative;
}

.collection::before,
.collection::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.collection::before { top: 0; }
.collection::after { bottom: 0; }

.collection__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 7vw, 80px);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  max-width: var(--container);
  margin: 0 auto;
}

.card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid rgba(201, 169, 97, .25);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(58, 48, 39, .25);
}

.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(216, 115, 51, .12), transparent 60%),
    linear-gradient(135deg, var(--cream-warm), var(--cream-deep));
}

.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.card:hover .card__media img { transform: scale(1.06); }

.card__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-size: 16px;
}

.card__media--missing img { display: none; }
.card__media--missing .card__placeholder { display: flex; }
.card__media--missing::after {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 28px));
  color: var(--gold);
  font-size: 24px;
  opacity: .6;
}

.card__body {
  padding: 24px 26px 28px;
}

.card__body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: .04em;
}

.card__body p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1.5;
}

.collection__cta {
  text-align: center;
  margin-top: clamp(40px, 6vw, 64px);
}

/* ============================================================
   Story (dark band)
   ============================================================ */
.story {
  background: linear-gradient(135deg, #1a1612 0%, #2a221b 60%, #1a1612 100%);
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(216, 175, 55, .12), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(216, 115, 51, .08), transparent 40%);
  pointer-events: none;
}

.story__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.story__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(48px, 6vw, 72px);
  text-align: left;
}

.pillar {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(201, 169, 97, .25);
  border-radius: 4px;
  padding: 36px 30px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.pillar:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.pillar__icon {
  font-size: 22px;
  color: var(--gold-bright);
  margin-bottom: 14px;
}

.pillar h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--cream);
  letter-spacing: .04em;
}

.pillar p {
  margin: 0;
  color: rgba(250, 244, 232, .68);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 80px);
  background: var(--cream);
  text-align: center;
}

.contact__inner {
  max-width: 880px;
  margin: 0 auto;
}

.contact__lede {
  font-size: 19px;
  color: var(--ink-mute);
  max-width: 560px;
  margin: 0 auto 48px;
}

.contact__channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.channel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 24px;
  border: 1px solid rgba(201, 169, 97, .35);
  border-radius: 4px;
  background: var(--cream-deep);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.channel:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: #fff;
  color: var(--ink);
}

.channel__label {
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: .03em;
  color: var(--gold-deep);
  font-weight: 500;
}

.channel__value {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: .04em;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250, 244, 232, .72);
  padding: 64px clamp(20px, 5vw, 80px) 28px;
  font-family: var(--f-sans);
  font-size: 14px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto 48px;
}

.site-footer__wordmark {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.site-footer__brand p {
  margin: 0;
  max-width: 360px;
  font-family: var(--f-serif);
  font-size: 17px;
  font-style: italic;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.site-footer__links h4 {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--gold-bright);
  margin: 0 0 14px;
  font-weight: 500;
}

.site-footer__links ul {
  list-style: none;
  margin: 0; padding: 0;
}

.site-footer__links li { margin-bottom: 8px; }
.site-footer__links a { color: rgba(250, 244, 232, .68); }
.site-footer__links a:hover { color: var(--gold-bright); }

.site-footer__bottom {
  border-top: 1px solid rgba(201, 169, 97, .2);
  padding-top: 24px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.site-footer__bottom p { margin: 0; }

.credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(204, 138, 62, .08), rgba(216, 115, 51, .06));
  border: 1px solid rgba(204, 138, 62, .3);
  border-radius: 999px;
  font-style: italic;
  letter-spacing: .02em;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.credit:hover {
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}

.credit__sparkle {
  color: var(--gold-bright);
  animation: twinkle 2.4s ease-in-out infinite;
}

.credit__sparkle:last-of-type {
  animation-delay: 1.2s;
}

@keyframes twinkle {
  0%, 100% { opacity: .4; transform: scale(.85); }
  50%      { opacity: 1;  transform: scale(1.15); }
}

.credit__link {
  background: var(--gold-shimmer);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-family: var(--f-sans);
  letter-spacing: .05em;
}

.credit__dot {
  -webkit-text-fill-color: var(--gold-bright);
  opacity: .8;
  margin: 0 4px;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 64px;
    text-align: left;
  }
  .hero__image { max-width: 520px; margin: 0 auto; width: 100%; }

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

  .collection__grid,
  .story__pillars,
  .contact__channels {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .nav__toggle { display: block; }

  .nav__list {
    position: fixed;
    inset: 0 0 0 30%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 32px;
    background: var(--cream);
    box-shadow: -20px 0 40px rgba(0,0,0,.1);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    font-size: 16px;
    gap: 22px;
  }

  .nav__list.is-open { transform: translateX(0); }
  .nav__list a { color: var(--ink); }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .hero__title { font-size: 42px; }
  .hero__sub { font-size: 17px; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .credit { text-align: center; flex-wrap: wrap; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
