/* ========== MIROIR — Bridal Salon Sample ========== */
:root {
  --bg: #F7F1E3;
  --bg-alt: #EEE6D1;
  --bg-paper: #FDFAF0;
  --bg-dark: #1A1713;
  --ink: #1E1A15;
  --ink-soft: #59524A;
  --ink-dim: #8E857A;
  --line: rgba(30, 26, 21, 0.10);
  --line-2: rgba(30, 26, 21, 0.20);
  --gold: #B89968;
  --gold-deep: #94774B;
  --gold-soft: #EDDAB9;
  --rose: #EFC9C7;
  --rose-deep: #D89591;

  --ff-display: "Cormorant Garamond", "Noto Serif JP", serif;
  --ff-serif: "Fraunces", "Noto Serif JP", serif;
  --ff-jp: "Noto Serif JP", serif;
  --ff-sans: "Inter", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --container: 1260px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--bg); color: var(--ink); overflow-x: clip; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-feature-settings: "palt" 1, "kern" 1; }
body { background: var(--bg); color: var(--ink); font-family: var(--ff-jp); font-size: 16px; line-height: 1.85; letter-spacing: 0.02em; overflow-x: clip; width: 100%; max-width: 100vw; cursor: none; }
body.is-loading { overflow: hidden; height: 100svh; }
@media (hover: none) { body { cursor: auto; } .cursor { display: none; } }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #fff; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* GRAIN */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9997;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  animation: grain 8s steps(6) infinite;
}
@keyframes grain { 0%,100% { transform: translate(0,0); } 25% { transform: translate(-2%,-2%); } 50% { transform: translate(2%,1%); } 75% { transform: translate(-1%,2%); } }

/* CURSOR */
.cursor { position: fixed; top:0; left:0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor__dot { position: absolute; width: 6px; height: 6px; background: #fff; border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.25s var(--ease), height 0.25s var(--ease); }
.cursor__ring { position: absolute; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.6); border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.4s var(--ease), height 0.4s var(--ease), background 0.3s, border-color 0.3s; }
.cursor.is-link .cursor__ring { width: 56px; height: 56px; }
.cursor.is-cta .cursor__ring { width: 76px; height: 76px; background: rgba(184,153,104,0.3); border-color: var(--gold); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem; border-radius: 999px;
  font-family: var(--ff-sans); font-weight: 600; font-size: 13px; letter-spacing: 0.1em;
  line-height: 1; text-transform: uppercase;
  cursor: none; border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: var(--bg); box-shadow: 0 6px 18px rgba(30,26,21,0.2); }
.btn--primary:hover { background: var(--gold-deep); box-shadow: 0 12px 28px rgba(148,119,75,0.35); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--bg-paper); border-color: var(--ink); }
.btn--xl { padding: 1.2rem 2rem; font-size: 15px; }

/* LOADER */
.loader { position: fixed; inset: 0; z-index: 9990; background: var(--bg); }
.loader__frame { position: absolute; inset: clamp(1.5rem, 4vw, 2.5rem); display: grid; grid-template-rows: auto 1fr auto auto; gap: 1rem; }
.loader__row { display: flex; justify-content: space-between; align-items: baseline; font: 500 11px/1 var(--ff-sans); letter-spacing: 0.3em; color: var(--ink-soft); text-transform: uppercase; }
.loader__row span:last-child { color: var(--gold-deep); }
.loader__center { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.loader__word { display: inline-flex; font-family: var(--ff-display); font-style: italic; font-weight: 400; font-size: clamp(4rem, 14vw, 10rem); line-height: 0.9; letter-spacing: -0.02em; color: var(--ink); overflow: hidden; padding: 0.1em 0; }
.loader__word .l { display: inline-block; will-change: transform; }
.loader__sub { font: 500 italic 13px/1 var(--ff-display); color: var(--gold-deep); letter-spacing: 0.2em; text-transform: uppercase; }
.loader__bar { width: 100%; height: 1px; background: var(--line); overflow: hidden; }
.loader__bar-fill { height: 100%; width: 0%; background: var(--gold); }

/* HEADER */
.hdr {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding: 1rem var(--pad-x);
  display: grid; grid-template-columns: auto 1fr auto auto auto;
  align-items: center; gap: 1.5rem;
  background: rgba(247,241,227,0); transition: background 0.3s, backdrop-filter 0.3s, border 0.3s, transform 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.is-scrolled { background: rgba(247,241,227,0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.hdr.is-hidden { transform: translateY(-110%); }
.hdr__brand { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--ff-display); font-style: italic; font-weight: 400; font-size: 24px; letter-spacing: -0.01em; color: var(--ink); }
.hdr__mark { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; display: inline-block; transition: transform 0.5s var(--ease); }
.hdr__brand:hover .hdr__mark { transform: scale(1.3); }
.hdr__nav { display: flex; justify-content: center; gap: 1.6rem; }
.hdr__nav a { display: inline-flex; align-items: baseline; gap: 0.3rem; font-size: 12px; font-weight: 500; color: var(--ink-soft); position: relative; transition: color 0.2s; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--ff-sans); }
.hdr__nav a i { font-style: italic; font-family: var(--ff-display); font-size: 10px; color: var(--gold); font-weight: 400; }
.hdr__nav a:hover { color: var(--ink); }
.hdr__cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.15rem; border-radius: 999px; background: var(--ink); color: var(--bg); font: 500 12px/1 var(--ff-sans); letter-spacing: 0.15em; text-transform: uppercase; transition: background 0.3s, transform 0.3s var(--ease); }
.hdr__cta:hover { background: var(--gold-deep); transform: translateY(-2px); }
.hdr__cta-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 3px rgba(184,153,104,0.3); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.25); } }
.hdr__back { display: inline-flex; align-items: center; gap: 0.35rem; font: 500 11px/1 var(--ff-sans); color: var(--ink-dim); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.hdr__back:hover { color: var(--ink); }
.hdr__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: transparent; border: none; cursor: none; }
.hdr__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 999px; transition: transform 0.3s var(--ease); }
.hdr.is-open .hdr__burger span:first-child { transform: translateY(4px) rotate(45deg); }
.hdr.is-open .hdr__burger span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mnav { position: fixed; top: 58px; left:0; right:0; background: var(--bg-paper); border-bottom: 1px solid var(--line); padding: 1rem var(--pad-x) 1.5rem; display: flex; flex-direction: column; z-index: 99; transform: translateY(-110%); transition: transform 0.4s var(--ease); }
.mnav.is-open { transform: translateY(0); }
.mnav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--ff-sans); }
.mnav__cta { margin-top: 1rem; padding: 1rem !important; background: var(--ink); color: var(--bg) !important; border-bottom: none !important; border-radius: 999px; text-align: center; }
@media (max-width: 1080px) { .hdr__nav { gap: 0.9rem; } .hdr__nav a { font-size: 11px; } .hdr__back { display: none; } }
@media (max-width: 900px) { .hdr__nav { display: none; } .hdr__burger { display: flex; } .hdr { grid-template-columns: auto 1fr auto auto; } }
@media (max-width: 520px) { .hdr__cta span:last-child { display: none; } .hdr__cta { padding: 0.55rem 0.7rem; } }

/* HERO */
.hero {
  position: relative; min-height: 100svh;
  padding: clamp(5.5rem, 14vh, 9rem) var(--pad-x) 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(239,201,199,0.5) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 0%, rgba(237,218,185,0.55) 0%, transparent 45%),
    var(--bg);
  display: grid; grid-template-rows: auto 1fr auto; gap: 1.5rem;
}
.hero__meta { display: inline-flex; align-items: center; gap: 0.5rem; font: 500 11px/1 var(--ff-sans); letter-spacing: 0.2em; color: var(--ink-soft); text-transform: uppercase; }
.hero__meta--tl { justify-self: start; }
.hero__meta--tr { justify-self: end; font-family: var(--ff-sans); }
.hero__meta .slash { color: var(--ink-dim); }
.hero__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(184,153,104,0.3); animation: pulse 2s ease-in-out infinite; }
#clock { font-feature-settings: "tnum"; }

.hero__wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; align-self: center; max-width: var(--container); width: 100%; margin: 0 auto; }
.hero__left { min-width: 0; }
.hero__kicker { font-family: var(--ff-display); font-style: italic; font-weight: 400; font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: var(--gold-deep); letter-spacing: 0.1em; margin-bottom: 1.5rem; overflow: hidden; }
.hero__kicker span { display: inline-block; }
.hero__h1 { font-family: var(--ff-display); font-weight: 400; color: var(--ink); letter-spacing: -0.02em; line-height: 0.95; margin-bottom: 2rem; }
.hero__h1 .row { display: block; overflow: hidden; font-size: clamp(3rem, 7vw, 6.5rem); }
.hero__h1 .row > * { display: inline-block; will-change: transform; }
.hero__h1 em { font-family: var(--ff-display); font-style: italic; font-weight: 400; color: var(--gold-deep); }
.hero__lede { font-family: var(--ff-jp); font-size: clamp(0.95rem, 1.1vw, 1.05rem); color: var(--ink-soft); line-height: 1.95; margin-bottom: 2rem; max-width: 42ch; overflow: hidden; }
.hero__lede { position: relative; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__right { position: relative; justify-self: center; width: 100%; max-width: 440px; }
.hero__img { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; box-shadow: 0 30px 80px -20px rgba(30,26,21,0.3); }
.hero__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s var(--ease); }
.hero__img:hover img { transform: scale(1.04); }
.hero__caption { display: inline-block; margin-top: 1rem; font: 400 italic 12px/1.4 var(--ff-display); color: var(--gold-deep); letter-spacing: 0.05em; }

.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; max-width: var(--container); margin: 0 auto; width: 100%; }
.hero__facts { display: grid; grid-template-columns: repeat(4, auto); gap: clamp(1rem, 3vw, 2.5rem); }
.hero__facts > div { display: flex; flex-direction: column; gap: 0.2rem; padding-left: 1rem; border-left: 1px solid var(--line); }
.hero__facts dt { font: 500 10px/1 var(--ff-sans); letter-spacing: 0.2em; color: var(--ink-dim); text-transform: uppercase; }
.hero__facts dd { display: flex; align-items: baseline; gap: 2px; font-family: var(--ff-display); font-style: italic; font-weight: 400; font-size: clamp(1.4rem, 2vw, 1.75rem); color: var(--ink); line-height: 1; }
.hero__facts dd em { font-style: normal; font-family: var(--ff-sans); font-weight: 500; font-size: 0.55em; color: var(--ink-dim); letter-spacing: 0.05em; }
.hero__facts > div:first-child dd { color: var(--gold-deep); }
.hero__scroll { display: inline-flex; align-items: center; gap: 0.5rem; font: 400 italic 11px/1 var(--ff-display); color: var(--ink-soft); letter-spacing: 0.2em; text-transform: uppercase; }
.hero__scroll span { display: inline-block; width: 1px; height: 24px; background: linear-gradient(180deg, var(--gold-deep), transparent); transform-origin: top; animation: scrolL 2.6s var(--ease) infinite; }
@keyframes scrolL { 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;} }

@media (max-width: 900px) { .hero__wrap { grid-template-columns: 1fr; } .hero__right { max-width: 340px; margin: 0 auto; } .hero__meta--tr { display: none; } }
@media (max-width: 600px) { .hero__facts { grid-template-columns: repeat(2, 1fr); } }

/* TICKER */
.ticker { padding: 1.25rem 0; background: var(--ink); color: var(--bg); overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticker__track { display: inline-flex; white-space: nowrap; gap: 2rem; font-family: var(--ff-display); font-style: italic; font-weight: 400; font-size: clamp(1.75rem, 4.5vw, 3.5rem); color: var(--bg); will-change: transform; letter-spacing: 0.01em; }
.ticker__track span { flex-shrink: 0; }
.ticker .sep { color: var(--gold); font-size: 0.6em; font-style: normal; }

/* SHARED HEAD */
.eyebrow { display: inline-block; font: 500 11px/1 var(--ff-sans); letter-spacing: 0.22em; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 1.25rem; }
.head__title { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.2; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 1rem; }
.head__title em { font-style: italic; color: var(--gold-deep); }
.head__lede { font-size: clamp(0.95rem, 1.05vw, 1rem); color: var(--ink-soft); line-height: 1.95; max-width: 54ch; }
.head--split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; max-width: var(--container); margin-bottom: 3.5rem; }
.head--center { text-align: center; max-width: 820px; margin: 0 auto 3.5rem; }
@media (max-width: 760px) { .head--split { grid-template-columns: 1fr; align-items: start; } }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font: 500 italic 14px/1 var(--ff-display); color: var(--gold-deep); letter-spacing: 0.04em; border-bottom: 1px solid var(--gold-deep); padding-bottom: 0.3rem; transition: color 0.2s, border-color 0.2s, gap 0.3s var(--ease); }
.link-arrow:hover { color: var(--ink); border-color: var(--ink); gap: 0.8rem; }

/* CONCEPT */
.concept { padding: clamp(5rem, 11vh, 8rem) 0; background: var(--bg); position: relative; }
.concept__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.concept__text .eyebrow { margin-bottom: 1.25rem; }
.concept__title { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 1.5rem; }
.concept__title em { font-style: italic; color: var(--gold-deep); }
.concept__title .cwl { display: block; overflow: hidden; }
.concept__title .cwl > * { display: inline-block; will-change: transform; }
.concept__body { font-size: 14px; line-height: 2; color: var(--ink-soft); margin-bottom: 1.5rem; }
.concept__visual { position: relative; }
.concept__img { aspect-ratio: 1; overflow: hidden; border-radius: 2px; box-shadow: 0 24px 60px -16px rgba(30,26,21,0.2); }
.concept__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
.concept__note { display: block; margin-top: 0.85rem; font: 400 italic 11px/1 var(--ff-display); color: var(--gold-deep); letter-spacing: 0.05em; }
@media (max-width: 800px) { .concept__inner { grid-template-columns: 1fr; } }

/* SERVICES */
.services { padding: clamp(5rem, 10vh, 7rem) 0; background: var(--bg-alt); }
.slist { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1rem; }
.sc { position: relative; padding: 2rem 1.75rem; background: var(--bg-paper); border: 1px solid var(--line); border-radius: 2px; transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s; }
.sc:hover { border-color: var(--gold-deep); transform: translateY(-4px); box-shadow: 0 10px 24px rgba(30,26,21,0.08); }
.sc__n { font-family: var(--ff-display); font-style: italic; font-weight: 400; font-size: 14px; color: var(--gold-deep); letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.sc h3 { font-family: var(--ff-display); font-weight: 400; font-size: clamp(1.25rem, 2vw, 1.6rem); color: var(--ink); margin-bottom: 0.75rem; letter-spacing: -0.01em; line-height: 1.2; }
.sc p { font-size: 13px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1.25rem; min-height: 4em; }
.sc__price { display: inline-block; padding-top: 1rem; border-top: 1px solid var(--line); width: 100%; font-family: var(--ff-display); font-style: italic; font-weight: 500; font-size: 18px; color: var(--ink); letter-spacing: -0.01em; }
.sc__price em { font-style: italic; color: var(--gold-deep); font-size: 0.75em; }

/* PIN GALLERY */
.pin { background: var(--ink); color: var(--bg); overflow: clip; position: relative; }
.pin__shell { padding: clamp(4rem, 9vh, 7rem) 0 clamp(3rem, 6vh, 5rem); overflow: clip; }
.pin__head { padding: 0 var(--pad-x); max-width: 1400px; margin: 0 auto 3rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.pin .eyebrow { color: var(--gold); }
.pin .head__title, .pin__title { color: var(--bg); }
.pin .head__title em { color: var(--gold); }
.pin__meta { display: flex; align-items: center; gap: 0.75rem; font: 500 11px/1 var(--ff-sans); letter-spacing: 0.22em; color: rgba(247,241,227,0.6); text-transform: uppercase; }
.pbar { width: 180px; height: 1px; background: rgba(255,255,255,0.12); position: relative; overflow: hidden; }
.pbar #pbar { position: absolute; left:0; top:0; bottom:0; width: 10%; background: var(--gold); }
.pin__track { display: flex; gap: 1.25rem; padding: 0 var(--pad-x); will-change: transform; }
.pc { flex-shrink: 0; width: clamp(320px, 36vw, 520px); display: flex; flex-direction: column; gap: 1rem; color: var(--bg); }
.pc--wide { width: clamp(420px, 44vw, 640px); }
.pc--sq { width: clamp(320px, 32vw, 480px); }
.pc__img { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.pc--sq .pc__img { aspect-ratio: 1; }
.pc--wide .pc__img { aspect-ratio: 16/10; }
.pc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); }
.pc:hover .pc__img img { transform: scale(1.05); }
.pc__info { padding: 0 0.25rem; }
.pc__n { font-family: var(--ff-sans); font-weight: 600; font-size: 11px; color: var(--gold); letter-spacing: 0.18em; display: inline-block; margin-bottom: 0.5rem; }
.pc__info h3 { font-family: var(--ff-display); font-weight: 400; font-size: clamp(1.15rem, 1.6vw, 1.45rem); color: var(--bg); margin-bottom: 0.45rem; letter-spacing: 0.01em; }
.pc__info p { font-size: 13px; line-height: 1.8; color: rgba(247,241,227,0.75); }
@media (max-width: 720px) { .pin__head { grid-template-columns: 1fr; } }

/* PROCESS */
.process { padding: clamp(5rem, 10vh, 7rem) 0; background: var(--bg); }
.flow { list-style: none; max-width: 720px; margin: 0 auto; }
.flow li { display: grid; grid-template-columns: auto 1fr; gap: 1.75rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); transition: background 0.3s; }
.flow li:last-child { border-bottom: none; }
.flow li:hover { background: rgba(184,153,104,0.05); }
.flow__n { font-family: var(--ff-display); font-style: italic; font-weight: 400; font-size: 20px; color: var(--gold-deep); width: 36px; padding-top: 0.2rem; }
.flow h4 { font-family: var(--ff-display); font-weight: 400; font-size: 18px; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.flow p { font-size: 13.5px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 0.65rem; }
.flow__t { display: inline-block; font: 400 italic 11px/1 var(--ff-display); color: var(--gold-deep); padding: 0.25rem 0.65rem; border: 1px solid var(--line-2); border-radius: 999px; letter-spacing: 0.02em; }

/* ACCESS */
.access { padding: clamp(5rem, 10vh, 7rem) 0; background: var(--bg-alt); }
.access__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.access p { font-size: 14px; line-height: 1.95; color: var(--ink-soft); margin-bottom: 1.5rem; }
.info { list-style: none; }
.info div { display: grid; grid-template-columns: 80px 1fr; gap: 1rem; padding: 0.65rem 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.info div:last-child { border-bottom: none; }
.info dt { font-family: var(--ff-display); font-style: italic; font-weight: 400; color: var(--gold-deep); font-size: 12px; letter-spacing: 0.05em; }
.info dd { color: var(--ink); font-weight: 500; }
.access__map { aspect-ratio: 4/3; position: relative; }
.mapbox { position: absolute; inset: 0; background: var(--bg-paper); border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.mapbox__label { position: absolute; top: 1.25rem; left: 1.25rem; font-family: var(--ff-display); font-style: italic; color: var(--gold-deep); z-index: 2; letter-spacing: 0.05em; }
.mapbox__grid { position: absolute; inset: 0; background-image: linear-gradient(to right, var(--line) 1px, transparent 1px), linear-gradient(to bottom, var(--line) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.8; }
.mapbox__pin { position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; background: var(--gold); border: 2px solid var(--bg-paper); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 0 rgba(184,153,104,0.6); animation: mapPulse 2.2s ease-in-out infinite; }
@keyframes mapPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(184,153,104,0.6); } 50% { box-shadow: 0 0 0 14px rgba(184,153,104,0); } }
@media (max-width: 800px) { .access__inner { grid-template-columns: 1fr; } }

/* CONTACT */
.contact { padding: clamp(5rem, 12vh, 9rem) 0; background: var(--ink); color: var(--bg); text-align: center; position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(184,153,104,0.12), transparent 60%); pointer-events: none; }
.contact__inner { position: relative; max-width: 720px; margin: 0 auto; }
.contact__title { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.25; color: var(--bg); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.contact__title .line { display: block; overflow: hidden; }
.contact__title .li { display: inline-block; will-change: transform; }
.contact__title em { font-style: italic; color: var(--gold); }
.contact__sub { font-size: 14px; color: rgba(247,241,227,0.78); line-height: 1.9; margin-bottom: 2.5rem; }
.contact__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
.contact .btn--primary { background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px rgba(184,153,104,0.35); }
.contact .btn--primary:hover { background: var(--bg); }
.contact .btn--ghost { color: var(--bg); border-color: rgba(255,255,255,0.2); }
.contact .btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--bg); }

/* FOOTER */
.ft { padding: 0 0 1.5rem; background: var(--bg); border-top: 1px solid var(--line); }
.ft__mega { overflow: hidden; padding: 1.5rem 0; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.ft__mega-track { display: inline-flex; white-space: nowrap; gap: 2.5rem; font-family: var(--ff-display); font-style: italic; font-weight: 400; font-size: clamp(2.5rem, 8vw, 7rem); color: var(--gold-deep); will-change: transform; letter-spacing: -0.02em; line-height: 1; }
.ft__mega-track span { flex-shrink: 0; }
.ft__mega-track .dot { color: var(--ink); opacity: 0.4; font-size: 0.5em; }
.ft__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 2rem; padding: 3rem var(--pad-x) 1.5rem; align-items: start; }
.ft__tag { margin-top: 0.75rem; font-size: 13px; color: var(--ink-soft); font-family: var(--ff-display); font-style: italic; }
.ft__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1.5rem; }
.ft__cols h5 { font: 600 11px/1 var(--ff-sans); letter-spacing: 0.2em; color: var(--gold-deep); margin-bottom: 1rem; text-transform: uppercase; }
.ft__cols div { display: flex; flex-direction: column; gap: 0.55rem; }
.ft__cols a { font-size: 13px; color: var(--ink-soft); transition: color 0.2s; }
.ft__cols a:hover { color: var(--ink); }
.ft__bot { display: flex; justify-content: space-between; padding: 1.5rem var(--pad-x) 0; border-top: 1px solid var(--line); font-size: 11.5px; color: var(--ink-dim); letter-spacing: 0.08em; }
.ft__back { transition: color 0.2s; }
.ft__back:hover { color: var(--ink); }
@media (max-width: 720px) { .ft__inner { grid-template-columns: 1fr; } .ft__bot { flex-direction: column; gap: 0.5rem; text-align: center; } }

/* SAMPLE TAG */
.sample-tag { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 90; padding: 0.55rem 1.1rem; background: var(--ink); color: var(--bg); border-radius: 999px; font: 500 11px/1 var(--ff-sans); letter-spacing: 0.1em; box-shadow: 0 10px 22px rgba(30,26,21,0.2); }
.sample-tag a { color: var(--gold); margin-left: 0.25rem; }
@media (max-width: 520px) { .sample-tag { font-size: 10px; padding: 0.45rem 0.85rem; } }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
