/* ============================================================
   SIMONI Club — Bakırköy
   Deep-green luxury tailoring house aesthetic
   ============================================================ */

:root {
  --green-950: #081f18;
  --green-900: #0d352a;
  --green-800: #124534;
  --green-700: #1a5a44;
  --gold: #c9a962;
  --gold-light: #e2ca94;
  --ivory: #f4efe4;
  --ivory-dim: #d8d2c2;
  --ink: #142019;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pad-x: clamp(1.25rem, 5vw, 5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--green-950);
  color: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain overlay for atmosphere */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--gold); color: var(--green-950); }

/* ---------- shared ---------- */

.overline {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.overline::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
  text-wrap: balance;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-out), transform 0.2s ease-out;
  white-space: nowrap;
}
.btn.is-releasing {
  transition: all 0.35s var(--ease-out), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn--gold {
  background: var(--gold);
  color: var(--green-950);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(201, 169, 98, 0.45);
}
.btn--ghost {
  border-color: rgba(244, 239, 228, 0.35);
  color: var(--ivory);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* scroll reveal — hidden state only applies once JS has added .js,
   so content stays visible (and paintable for LCP/crawlers) without JS */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--pad-x);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.is-scrolled {
  background: rgba(8, 31, 24, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 169, 98, 0.18);
  padding-block: 0.7rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav__brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
}
.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.28em;
}
.nav__brand-text em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-left: 0.4rem;
  font-size: 0.95rem;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__right { display: flex; align-items: center; gap: 1.4rem; }

.lang { display: flex; align-items: center; gap: 0.45rem; }
.lang__btn {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--ivory-dim);
  padding: 0.2rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.lang__btn.is-active { color: var(--gold); border-color: var(--gold); }
.lang__btn:hover { color: var(--gold-light); }
.lang__sep { color: rgba(244, 239, 228, 0.3); font-size: 0.7rem; }

.btn--nav { padding: 0.6rem 1.2rem; font-size: 0.68rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.4rem;
}
.nav__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav__burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--green-950);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--ivory);
}
.mobile-menu a:last-child { color: var(--gold); font-size: 1.4rem; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 14vh, 10rem) var(--pad-x) clamp(3rem, 8vh, 6rem);
  background:
    radial-gradient(ellipse 80% 60% at 75% 15%, rgba(26, 90, 68, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(18, 69, 52, 0.4), transparent 65%),
    var(--green-950);
  overflow: hidden;
}

.hero__watermark {
  position: absolute;
  will-change: transform;
  top: 50%;
  left: -4rem;
  transform: translateY(-52%);
  font-family: var(--font-display);
  font-size: clamp(24rem, 55vw, 46rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 98, 0.09);
  user-select: none;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin-bottom: 1.8rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero__sub {
  max-width: 32rem;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--ivory-dim);
  margin-bottom: 2.4rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(201, 169, 98, 0.22);
  font-size: 0.92rem;
}
.hero__meta > div { display: flex; flex-direction: column; gap: 0.15rem; }
.hero__meta a:hover { color: var(--gold); }
.hero__meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__figure {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
  perspective: 1100px;
}
/* hero entrance is pure CSS: starts at first paint, no JS dependency */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy > * { animation: riseIn 0.9s var(--ease-out) backwards; }
  .hero__copy > *:nth-child(2) { animation-delay: 0.08s; }
  .hero__copy > *:nth-child(3) { animation-delay: 0.16s; }
  .hero__copy > *:nth-child(4) { animation-delay: 0.24s; }
  .hero__copy > *:nth-child(5) { animation-delay: 0.32s; }
  .hero__figure { animation: riseIn 1s var(--ease-out) 0.12s backwards; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
}
.hero__tilt {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero__imgwrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
  transform: translateZ(0.1px);
}
.hero__imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__imgwrap img { animation: kenburns 26s ease-in-out infinite alternate; }
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__frame {
  position: absolute;
  z-index: 1;
  inset: -1.2rem 1.2rem 1.2rem -1.2rem;
  border: 1px solid rgba(201, 169, 98, 0.55);
  transform: translate(0.6rem, 0.6rem) translateZ(-48px);
}
.hero__badge {
  position: absolute;
  z-index: 3;
  right: -1.4rem;
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--green-900);
  border: 1px solid rgba(201, 169, 98, 0.4);
  padding: 0.9rem 1.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--ivory);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.6);
  transform: translateZ(46px);
}
.hero__badge-star { color: var(--gold); font-size: 1rem; }

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(201, 169, 98, 0.25);
  background: var(--green-900);
  padding: 1.05rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__track > span { margin-right: 3.2rem; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  display: flex;
  align-items: center;
  gap: 3.2rem;
  white-space: nowrap;
}
.marquee__track span::after {
  content: "✦";
  font-style: normal;
  font-size: 0.7rem;
  color: var(--gold);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- atelier ---------- */

.atelier {
  padding: clamp(5rem, 12vh, 9rem) var(--pad-x);
  background:
    radial-gradient(ellipse 70% 55% at 90% 10%, rgba(26, 90, 68, 0.25), transparent 60%),
    var(--green-950);
}
.atelier__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
}

.atelier__images {
  position: relative;
  min-height: 480px;
}
.atelier__img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7);
}
.atelier__img--back {
  top: 0; left: 0;
  width: 68%;
  aspect-ratio: 3 / 4;
}
.atelier__img--front {
  bottom: 0; right: 0;
  width: 58%;
  aspect-ratio: 3 / 4;
  border: 6px solid var(--green-950);
  outline: 1px solid rgba(201, 169, 98, 0.5);
  outline-offset: 6px;
}

.atelier__copy p { color: var(--ivory-dim); margin-bottom: 1.2rem; max-width: 34rem; }

.atelier__points {
  list-style: none;
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.atelier__points li {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.16);
}
.atelier__points li:last-child { border-bottom: none; padding-bottom: 0; }
.atelier__point-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1.3;
}
.atelier__points strong {
  display: block;
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}
.atelier__points span:not(.atelier__point-num) {
  color: var(--ivory-dim);
  font-size: 0.92rem;
}

/* ---------- collections ---------- */

.collections {
  padding: clamp(5rem, 12vh, 9rem) var(--pad-x);
  background: var(--ivory);
  color: var(--ink);
}
.collections .overline { color: var(--green-800); }
.collections .overline::before { background: var(--green-800); }

.collections__head {
  max-width: 1280px;
  margin: 0 auto 3.5rem;
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  max-width: 1280px;
  margin-inline: auto;
}

.card {
  display: block;
  background: #fff;
  border: 1px solid rgba(20, 32, 25, 0.08);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), opacity 0.9s var(--ease-out);
}
.card:hover {
  box-shadow: 0 30px 50px -20px rgba(13, 53, 42, 0.35);
}
.card figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
}
.card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.28), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover figure::after { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .card.is-visible {
    transform: perspective(950px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
  }
  .card.is-visible:hover { --ty: -6px; }
  .card.tilting { transition: transform 0.09s linear, box-shadow 0.45s var(--ease-out); }
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s;
}
.card:hover img { transform: scale(1.05); }

.card__body { padding: 1.5rem 1.6rem 1.8rem; }
.card__num {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.card__body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 0.35rem 0 0.4rem;
  color: var(--green-900);
}
.card__body p {
  font-size: 0.9rem;
  color: rgba(20, 32, 25, 0.65);
}

/* stagger the grid reveal */
.collections__grid .card:nth-child(2) { transition-delay: 0.08s; }
.collections__grid .card:nth-child(3) { transition-delay: 0.16s; }
.collections__grid .card:nth-child(4) { transition-delay: 0.08s; }
.collections__grid .card:nth-child(5) { transition-delay: 0.16s; }
.collections__grid .card:nth-child(6) { transition-delay: 0.24s; }

/* ---------- gallery ---------- */

.gallery {
  padding: clamp(5rem, 12vh, 9rem) var(--pad-x);
  background: var(--green-900);
}
.gallery__head { max-width: 1280px; margin: 0 auto 3rem; }
.gallery__note { color: var(--ivory-dim); max-width: 30rem; }

.gallery__grid {
  columns: 3;
  column-gap: 1.2rem;
  max-width: 1280px;
  margin-inline: auto;
}
.gallery__item {
  display: block;
  width: 100%;
  margin-bottom: 1.2rem;
  break-inside: avoid;
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}
.gallery__item:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}
.gallery__item::after {
  content: "+";
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(8, 31, 24, 0.75);
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery__item:hover::after { opacity: 1; }

/* ---------- visit ---------- */

.visit {
  padding: clamp(5rem, 12vh, 9rem) var(--pad-x);
  background:
    radial-gradient(ellipse 65% 55% at 15% 20%, rgba(26, 90, 68, 0.3), transparent 60%),
    var(--green-950);
}
.visit__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
}
.overline--gold { color: var(--gold); }
.visit__copy > p { color: var(--ivory-dim); max-width: 32rem; }

.visit__rows { margin-top: 2.2rem; display: flex; flex-direction: column; }
.visit__row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.16);
  font-size: 0.96rem;
}
.visit__row:first-child { border-top: 1px solid rgba(201, 169, 98, 0.16); }
.visit__row a:hover { color: var(--gold); }
.visit__label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.25rem;
}

.visit__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.visit__map {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border: 1px solid rgba(201, 169, 98, 0.4);
  padding: 0.8rem;
}
.visit__map iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) contrast(1.05);
}
.visit__map-fallback {
  position: absolute;
  inset: 0.8rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--green-900);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.visit__map-fallback span[aria-hidden] { font-size: 1.4rem; }

/* ---------- footer ---------- */

.footer {
  background: var(--green-950);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  padding: 3rem var(--pad-x) 2rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin-inline: auto;
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.24em;
  display: block;
}
.footer__brand strong em { color: var(--gold); font-weight: 400; letter-spacing: 0.05em; }
.footer__brand span {
  font-size: 0.82rem;
  color: var(--ivory-dim);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9rem;
  text-align: right;
}
.footer__contact a { color: var(--gold); letter-spacing: 0.08em; }
.footer__contact span { color: var(--ivory-dim); }
.footer__fine {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(244, 239, 228, 0.4);
  margin-top: 2.5rem;
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 31, 24, 0.94);
  display: grid;
  place-items: center;
  padding: 4vh 4vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(201, 169, 98, 0.35);
}
.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  transition: color 0.3s, transform 0.3s;
}
.lightbox__close:hover { color: var(--gold); transform: rotate(90deg); }

/* ---------- fab ---------- */

.fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 200;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s var(--ease-out);
}
.fab:hover { transform: scale(1.08) translateY(-2px); }

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { columns: 2; }
}

@media (max-width: 820px) {
  .nav__burger { display: flex; }
  .btn--nav { display: none; }

  .hero { padding-top: 6.5rem; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__figure { justify-self: center; width: min(100%, 380px); margin-top: 1rem; }
  .hero__badge { right: 0.5rem; }
  .hero__watermark { display: none; }

  .atelier__inner,
  .visit__inner { grid-template-columns: 1fr; }
  .atelier__images { min-height: 0; height: auto; aspect-ratio: 1 / 0.95; }
}

@media (max-width: 560px) {
  .collections__grid { grid-template-columns: 1fr; }
  .gallery__grid { columns: 1; }
  .hero__meta { gap: 1.2rem 2.5rem; }
  .footer__contact { text-align: left; }
  .visit__row { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* ============================================================
   signature effects — thread, letters, sparkles, cursor
   ============================================================ */

/* letter-by-letter hero title */
.hero__title .word { display: inline-block; white-space: nowrap; }
.chr {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) rotate(6deg);
  animation: chrIn 0.7s var(--ease-out) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .chr { opacity: 1; transform: none; animation: none; }
}
@keyframes chrIn {
  to { opacity: 1; transform: none; }
}

/* hero sparkles (crystal-tuxedo echo) */
.hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__sparkles span {
  position: absolute;
  color: var(--gold);
  opacity: 0;
  animation: twinkle ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__sparkles span { animation: none; opacity: 0.25; }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.05; transform: scale(0.6) rotate(0deg); }
  50% { opacity: 0.85; transform: scale(1.15) rotate(24deg); }
}

/* the golden thread */
.thread {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
  opacity: 0.55;
}
.thread__stitch {
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-dasharray: 9 7;
  stroke-linecap: round;
}
.thread__needle { opacity: 0; transition: opacity 0.4s; }
.thread__needle line { stroke: var(--gold-light); stroke-width: 2; stroke-linecap: round; }
.thread__needle circle { stroke: var(--gold-light); stroke-width: 1.4; fill: none; }

/* nav scroll progress */
.nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: calc(var(--scrollp, 0) * 100%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* gold button sheen */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-22deg);
}
@media (prefers-reduced-motion: no-preference) {
  .btn--gold::after { animation: sheen 5.2s ease-in-out infinite; }
}
@keyframes sheen {
  0%, 74% { left: -70%; }
  90%, 100% { left: 140%; }
}

/* custom cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}
body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring { opacity: 1; }
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transition: opacity 0.35s;
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 169, 98, 0.65);
  transition: opacity 0.35s, border-color 0.3s, background 0.3s;
  --cs: 1;
}
.cursor-ring.is-active {
  --cs: 1.55;
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring { display: none; }
}

/* micro touches */
.marquee:hover .marquee__track { animation-play-state: paused; }
@media (prefers-reduced-motion: no-preference) {
  .lightbox img { transform: scale(0.94); transition: transform 0.4s var(--ease-out); }
  .lightbox.is-open img { transform: scale(1); }
}

/* review fixes */
.collections__grid .card.tilting { transition-delay: 0s; }
@media (max-width: 700px) {
  .thread { opacity: 0.35; }
  .thread__stitch { stroke-width: 1.3; }
}
