/* =============================================================
   JR DESIGNS ENTERPRISES — Luxury Furniture Atelier
   Design system + layout
   ============================================================= */

:root {
  /* Palette — warm, luxurious neutrals */
  --ink:        #1c1a17;   /* near-black espresso */
  --ink-soft:   #2a2621;
  --charcoal:   #33302b;
  --stone:      #6b5d4f;   /* warm taupe text */
  --stone-2:    #8a7d6d;
  --cream:      #faf7f2;   /* page background */
  --cream-2:    #f2ece2;
  --sand:       #ece3d6;
  --line:       #e3d9ca;   /* hairline borders */
  --gold:       #b08d57;   /* brass accent (decorative / large text) */
  --gold-2:     #c9a96a;
  --gold-deep:  #8a6630;   /* darkened brass — passes WCAG AA for small text on light bg */

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.08; margin: 0; }

.wrap { width: min(100% - 2 * var(--pad), var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: var(--cream); padding: 10px 18px; border-radius: 0 0 6px 6px;
  z-index: 200; transition: top .25s var(--ease); font-size: .82rem; letter-spacing: .08em;
}
.skip-link:focus { top: 0; }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; margin: 0 0 1.1rem;
}
.eyebrow--light { color: var(--gold-2); }

.section { padding: clamp(70px, 10vw, 140px) 0; position: relative; }

.section__title {
  font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.01em; color: var(--ink);
}
.section__title--light { color: var(--cream); }

.section__head { max-width: 720px; margin-bottom: clamp(38px, 6vw, 70px); }
.section__intro { color: var(--stone); font-size: 1.06rem; margin: 1.2rem 0 0; max-width: 60ch; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-sans); font-weight: 500; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 1.05em 2.1em; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all .4s var(--ease); white-space: nowrap;
}
/* Dark espresso label on brass — ~5.6:1, passes AA; hover brightens the gold. */
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 30px -12px rgba(150,112,63,.7); }
.btn--gold:hover { background: var(--gold-2); color: var(--ink); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(150,112,63,.85); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--full { width: 100%; }

/* ---------- Reveal animation (progressive enhancement) ----------
   Content is visible by default. Hiding is gated on `.reveals-ready`, added by an
   inline head script BEFORE paint (so no flash). A head failsafe reveals everything
   if main.js never runs — so a JS failure can never leave content hidden. */
.reveals-ready .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveals-ready .reveal.is-in { opacity: 1; transform: none; }

/* =============================================================
   TOP BAR
   ============================================================= */
.topbar { background: var(--ink); color: var(--cream-2); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 0; text-align: center; }
.topbar__sep { opacity: .4; }
.topbar__link { color: var(--gold-2); transition: color .3s; }
.topbar__link:hover { color: #fff; }

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
/* Blur lives on a pseudo-element so the header itself does NOT become a
   containing block for the fixed off-canvas nav (backdrop-filter would trap it). */
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(250, 247, 242, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  transition: background .4s var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 30px -20px rgba(28,26,23,.5); }
.header.is-scrolled::before { background: rgba(250,247,242,.94); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark { color: var(--gold-deep); display: grid; place-items: center; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-serif); font-size: 1.42rem; font-weight: 600; letter-spacing: .08em; }
.brand__sub { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--stone); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.nav a { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color .3s; }
.nav a:not(.nav__cta)::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold); transition: width .35s var(--ease); }
.nav a:not(.nav__cta):hover { color: var(--gold-deep); }
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { border: 1px solid var(--ink); padding: .7em 1.3em !important; border-radius: var(--radius); transition: all .35s var(--ease); }
.nav__cta:hover { background: var(--ink); color: var(--cream); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero { position: relative; min-height: calc(100vh - 96px); display: flex; align-items: center; overflow: hidden; padding: 90px 0; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 82% 12%, rgba(201,169,106,.20), transparent 55%),
    radial-gradient(90% 80% at 10% 100%, rgba(107,93,79,.16), transparent 50%),
    linear-gradient(180deg, #f6f1e8 0%, var(--cream) 55%, #f3ece0 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 80% at 70% 20%, #000 0%, transparent 70%);
          mask-image: radial-gradient(120% 80% at 70% 20%, #000 0%, transparent 70%);
  opacity: .35;
}
.hero__inner { position: relative; }
.hero__title { font-size: clamp(2.9rem, 8vw, 6.2rem); letter-spacing: -0.015em; margin: 0 0 1.4rem; max-width: 15ch; }
.hero__title em { font-style: italic; color: var(--gold-deep); }
.hero__lede { font-size: clamp(1.02rem, 1.6vw, 1.28rem); color: var(--stone); max-width: 56ch; margin: 0 0 2.4rem; font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 3rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; color: var(--stone); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; }
.hero__meta span { position: relative; padding-left: 22px; }
.hero__meta span::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .7em; top: 2px; }

.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: var(--stone-2); }
.hero__scroll span { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee { background: var(--ink); color: var(--cream); overflow: hidden; padding: 20px 0; border-block: 1px solid rgba(201,169,106,.25); }
.marquee__track { display: inline-flex; align-items: center; gap: 34px; white-space: nowrap; animation: marquee 30s linear infinite; will-change: transform; }
.marquee__track span { font-family: var(--font-serif); font-size: 1.5rem; font-style: italic; letter-spacing: .02em; }
.marquee__track .dot { color: var(--gold-2); font-size: .8rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   ABOUT
   ============================================================= */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about__frame { position: relative; aspect-ratio: 4/5; background: linear-gradient(160deg, var(--cream-2), var(--sand)); border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-items: center; color: var(--stone); box-shadow: 0 40px 80px -50px rgba(28,26,23,.5); overflow: hidden; }
.about__frame::before { content: ""; position: absolute; inset: 16px; border: 1px solid var(--gold-2); opacity: .55; border-radius: 2px; z-index: 2; pointer-events: none; }
.about__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.about__badge { position: absolute; bottom: 20px; right: 20px; z-index: 3; background: var(--ink); color: var(--gold-2); font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; padding: 8px 14px; border-radius: 2px; }
.about__body p { color: var(--stone); margin: 0 0 1.3rem; font-size: 1.05rem; }
.about__body strong { color: var(--ink); font-weight: 500; }

.stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 54px); margin-top: 2.6rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; color: var(--gold-deep); line-height: 1; }
.stat__label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }

/* =============================================================
   COLLECTIONS
   ============================================================= */
.collections { background: linear-gradient(180deg, var(--cream) 0%, #f4eee4 100%); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -45px rgba(28,26,23,.55); border-color: var(--gold); }
.card__media { position: relative; aspect-ratio: 4/3; background-color: var(--tone-a, #2a2621); background-size: cover; background-position: center; background-repeat: no-repeat; overflow: hidden; transition: transform .6s var(--ease); }
.card:hover .card__media { transform: scale(1.04); }
/* Darken top (for the index number) and bottom (depth + separation from card body) */
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,16,.34) 0%, transparent 26%, transparent 60%, rgba(20,18,16,.40) 100%); }
.card__index { position: absolute; top: 16px; left: 18px; font-family: var(--font-serif); font-size: 1.1rem; color: rgba(255,255,255,.6); letter-spacing: .1em; z-index: 1; }
.card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { font-size: 1.7rem; }
.card__body p { margin: 0; color: var(--stone); font-size: .96rem; flex: 1; }
.card__link { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; margin-top: 6px; display: inline-flex; gap: 8px; align-items: center; transition: gap .3s; }
.card__link:hover { gap: 14px; }
.card--feature { grid-column: span 1; }
.card__index { text-shadow: 0 1px 6px rgba(0,0,0,.5); }

/* =============================================================
   CRAFTSMANSHIP
   ============================================================= */
.craft { background: var(--ink); color: var(--cream); position: relative; }
.craft::before { content: ""; position: absolute; inset: 0; opacity: .06; background-image: radial-gradient(circle at 1px 1px, var(--gold-2) 1px, transparent 0); background-size: 32px 32px; pointer-events: none; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); position: relative; }
.pillar { padding-top: 26px; border-top: 1px solid rgba(201,169,106,.35); }
.pillar__num { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold-2); letter-spacing: .2em; display: block; margin-bottom: 18px; }
.pillar h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: 12px; }
.pillar p { color: #cabfae; font-size: .96rem; margin: 0; }

/* =============================================================
   TEAM
   ============================================================= */
.team { background: linear-gradient(180deg, #f4eee4, var(--cream)); }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 40px); }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 32px; text-align: center; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.member:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -45px rgba(28,26,23,.5); }
.member__avatar { width: 96px; height: 96px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(150deg, var(--ink), var(--charcoal)); color: var(--gold-2); font-family: var(--font-serif); font-size: 1.9rem; letter-spacing: .06em; border: 1px solid var(--gold); position: relative; }
.member__avatar::after { content: ""; position: absolute; inset: -6px; border: 1px solid var(--line); border-radius: 50%; }
.member__name { font-size: 1.65rem; margin-bottom: 4px; }
.member__role { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; margin: 0 0 14px; }
.member__bio { color: var(--stone); font-size: .95rem; margin: 0; }

/* =============================================================
   SHOWROOM
   ============================================================= */
.showroom { background: var(--cream); }
.showroom__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.showroom__list { list-style: none; padding: 0; margin: 2.2rem 0; display: grid; gap: 20px; }
.showroom__list li { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); align-items: baseline; }
.showroom__label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }
.showroom__value { color: var(--ink); font-size: 1.05rem; }
.showroom__value a { color: var(--gold-deep); border-bottom: 1px solid transparent; transition: border-color .3s; }
.showroom__value a:hover { border-bottom-color: var(--gold-deep); }
.showroom__map { aspect-ratio: 1/1; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 80px -50px rgba(28,26,23,.5); background: var(--cream-2); }
.showroom__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(1.04); }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; top: -30%; right: -10%; width: 60%; height: 120%; background: radial-gradient(circle, rgba(201,169,106,.14), transparent 65%); pointer-events: none; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; position: relative; }
.contact__text { color: #cabfae; max-width: 46ch; margin: 1.4rem 0 2.2rem; }
.contact__details { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.contact__details li { display: grid; grid-template-columns: 90px 1fr; gap: 14px; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid rgba(201,169,106,.22); }
.contact__details span:first-child { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); }
.contact__details a, .contact__details li > span:last-child { color: var(--cream); }
.contact__details a:hover { color: var(--gold-2); }

.contact__form { background: rgba(255,255,255,.04); border: 1px solid rgba(201,169,106,.25); border-radius: 6px; padding: clamp(24px, 3vw, 40px); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; grid-column: 1 / -1; }
.field--half { grid-column: span 1; }
.field label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: #cabfae; }
.field .opt { text-transform: none; letter-spacing: 0; opacity: .6; }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: .98rem; font-weight: 300; color: var(--cream);
  background: rgba(0,0,0,.22); border: 1px solid rgba(201,169,106,.3); border-radius: var(--radius);
  padding: 13px 15px; transition: border-color .3s, background .3s; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-2); background: rgba(0,0,0,.32); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }
.field select option { background: var(--ink); color: var(--cream); }
.field input::placeholder, .field textarea::placeholder { color: #8a7d6d; }
#submitBtn { grid-column: 1 / -1; margin-top: 4px; }
.form__status { grid-column: 1 / -1; margin: 0; font-size: .9rem; min-height: 1.2em; }
.form__status.ok { color: var(--gold-2); }
.form__status.err { color: #e0a58f; }
.form__fallback { grid-column: 1 / -1; margin: 0; font-size: .82rem; color: var(--stone-2); }
.form__fallback a { color: var(--gold-2); }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: #141210; color: #b9ad9c; padding: clamp(56px, 8vw, 90px) 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
.brand__name--footer { color: var(--cream); font-size: 1.7rem; display: block; margin-bottom: 12px; }
.footer__legal-name { color: var(--gold-2); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
.footer__tag { font-size: .95rem; max-width: 34ch; margin: 0; }
.footer__col h3 { font-family: var(--font-sans); font-weight: 500; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream); margin: 0 0 18px; }
.footer__col a, .footer__col p { display: block; color: #b9ad9c; font-size: .92rem; margin: 0 0 10px; transition: color .3s; }
.footer__col a:hover { color: var(--gold-2); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: clamp(40px, 6vw, 64px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; }
.footer__bottom p { margin: 0; }
.footer__made { color: var(--stone-2); letter-spacing: .08em; }

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

/* Switch to the off-canvas hamburger menu well before the horizontal
   nav + brand would collide (covers 768/820/912/1024px tablets). */
@media (max-width: 1080px) {
  /* Panel stays inside the viewport (right-anchored) and is revealed with a
     clip-path wipe — so it never parks off-screen and never creates horizontal
     scroll, keeping the sticky header intact. visibility:hidden also removes the
     closed links from the tab order / a11y tree. */
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column;
    align-items: flex-start; justify-content: center; gap: 26px; padding: 40px;
    background: var(--cream); border-left: 1px solid var(--line);
    box-shadow: -30px 0 60px -30px rgba(0,0,0,.4);
    visibility: hidden; opacity: 0; clip-path: inset(0 0 0 100%);
    transition: clip-path .45s var(--ease), opacity .3s var(--ease), visibility .45s var(--ease);
    z-index: 90;
  }
  .nav.is-open { visibility: visible; opacity: 1; clip-path: inset(0 0 0 0); }
  .nav a { font-size: 1rem; }
  .nav__cta { margin-top: 6px; }
  .nav-toggle { display: flex; z-index: 95; }
}

@media (max-width: 980px) {
  .about__grid, .showroom__grid, .contact__grid { grid-template-columns: 1fr; }
  .cards, .pillars, .team__grid { grid-template-columns: repeat(2, 1fr); }
  .about__media { max-width: 400px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact__form { order: 2; }
}

@media (max-width: 720px) {
  .topbar__inner { flex-direction: column; gap: 2px; }
  .topbar__sep { display: none; }
  .cards, .pillars, .team__grid, .footer__grid { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .showroom__list li { grid-template-columns: 1fr; gap: 4px; }
  .contact__details li { grid-template-columns: 1fr; gap: 2px; }
  .hero { min-height: auto; padding: 70px 0 90px; }
  .hero__scroll { display: none; }
  .footer__bottom { flex-direction: column; }
}

/* ---------- Motion / accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .marquee__track, .hero__scroll span { animation: none; }
  * { transition-duration: .01ms !important; }
}

:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 2px; }
/* On the dark sections, use the brighter brass so the ring stays visible */
.craft :focus-visible, .contact :focus-visible, .footer :focus-visible { outline-color: var(--gold-2); }
::selection { background: var(--gold); color: #fff; }
