/* ── VARS & RESET ── */
:root {
  --ink:    #1A1A1A;
  --white:  #ffffff;
  --light:  #aaaaaa;
  --border: #e8e8e8;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-u: 'Outfit', 'Helvetica Neue', sans-serif;
  --nav-h:  52px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--white); color: var(--ink); font-family: var(--font-u); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
#ra-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
#ra-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: var(--nav-h);
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
}
.ra-nav-logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; align-items: center; }
.ra-logo-r { font-family: var(--font-d); font-size: 1.5rem; font-weight: 300; letter-spacing: .22em; color: var(--ink); }
.ra-logo-a { font-family: var(--font-u); font-size: .625rem; font-weight: 300; letter-spacing: .44em; color: var(--ink); }
.ra-nav-right ul { display: flex; gap: 32px; }
.ra-nav-right a { font-family: var(--font-u); font-size: .8125rem; font-weight: 300; letter-spacing: .18em; text-transform: uppercase; color: var(--light); transition: color .2s; }
.ra-nav-right a:hover { color: var(--ink); }
.ra-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.ra-hamburger span { display: block; width: 20px; height: 0.5px; background: var(--ink); transition: transform .25s; }
.ra-hamburger[aria-expanded=true] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.ra-hamburger[aria-expanded=true] span:nth-child(2) { transform: translateY(-5.5px) rotate(-45deg); }
#ra-nav-mobile { display: none; background: #fff; border-bottom: 0.5px solid var(--border); position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99; }
#ra-nav-mobile a { display: block; padding: 14px 24px; font-family: var(--font-u); font-size: .875rem; font-weight: 300; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); border-bottom: 0.5px solid var(--border); }

/* ── FOOTER ── */
#ra-footer {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 10px 24px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-top: 0.5px solid var(--border); z-index: 90;
}
.ra-footer-right { font-family: var(--font-u); font-size: .625rem; font-weight: 300; letter-spacing: .14em; color: var(--light); }

/* ── INTRO ── */
.ra-intro {
  padding-top: var(--nav-h);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100vh; text-align: center; border-bottom: 0.5px solid var(--border);
}
.ra-intro-title { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 28px; }
.ra-brand-main { font-family: var(--font-d); font-size: clamp(4rem,12vw,10rem); font-weight: 300; letter-spacing: .08em; color: var(--ink); line-height: 1; display: block; }
.ra-brand-sub { font-family: var(--font-u); font-size: clamp(.75rem,2vw,1.125rem); font-weight: 300; letter-spacing: .55em; color: var(--ink); display: block; text-transform: uppercase; }
.ra-intro-claim { font-family: var(--font-d); font-size: clamp(.875rem,1.5vw,1.125rem); font-weight: 300; font-style: italic; color: var(--light); margin-bottom: 8px; }
.ra-intro-season { font-family: var(--font-u); font-size: .625rem; font-weight: 300; letter-spacing: .24em; text-transform: uppercase; color: var(--light); margin-bottom: 48px; }
.ra-intro-scroll { font-family: var(--font-u); font-size: .625rem; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; color: var(--light); animation: pulse 2.5s ease infinite; }
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:.9} }

/* ── HOME COLLECTIONS ── */
.ra-home { padding-top: var(--nav-h); }
.ra-collection { padding: 60px 0 80px; border-bottom: 0.5px solid var(--border); }
.ra-collection-header { padding: 0 32px 36px; display: flex; flex-direction: column; gap: 8px; }
.ra-collection-title { font-family: var(--font-d); font-size: clamp(2rem,5vw,3.5rem); font-weight: 300; color: var(--ink); letter-spacing: .02em; }

/* ── GRID ── */
.ra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 32px;
}
.ra-grid-item {
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--border);
}
.ra-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), opacity .3s;
}
.ra-grid-item:hover img { transform: scale(1.04); opacity: .9; }

/* ── SPOTLIGHT ── */
.ra-spotlight {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.ra-spotlight.is-open { opacity: 1; pointer-events: all; }
.ra-spotlight img {
  max-height: 90vh; max-width: 90vw;
  object-fit: contain; display: block;
}
.ra-spotlight-close {
  position: fixed; top: 20px; right: 24px;
  background: none; border: none;
  color: rgba(255,255,255,.5); font-size: .75rem;
  letter-spacing: .2em; cursor: pointer;
  font-family: var(--font-u); transition: color .2s; z-index: 210;
}
.ra-spotlight-close:hover { color: #fff; }

.ra-mosaic { padding: 0 32px; }
.ra-mosaic-img { width: 100%; height: auto; display: block; }
.ra-page-collection { padding-top: var(--nav-h); padding-bottom: 80px; }
.ra-col-section { border-bottom: 0.5px solid var(--border); }
.ra-col-header { padding: 52px 32px 36px; display: flex; flex-direction: column; gap: 8px; }

/* ── STAGE / SLIDER ── */
.ra-stage {
  position: relative; width: 100%;
  height: calc(100vh - var(--nav-h));
  overflow: hidden; background: var(--white); cursor: grab;
}
.ra-stage:active { cursor: grabbing; }
.ra-track {
  display: flex; align-items: center; height: 100%;
  will-change: transform;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  user-select: none; -webkit-user-select: none;
}
.ra-slide {
  flex: 0 0 auto;
  width: clamp(260px,55vh,520px);
  margin-right: 2px; position: relative;
  transform: translateY(var(--offset,0%));
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.ra-slide img { width: 100%; height: auto; display: block; pointer-events: none; border-radius: 1px; }
.ra-slide-n { position: absolute; bottom: 8px; right: 10px; font-family: var(--font-d); font-size: 4rem; font-weight: 300; color: rgba(255,255,255,.15); line-height: 1; user-select: none; }
.ra-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.85); border: none; cursor: pointer; font-family: var(--font-u); font-size: .75rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); padding: 14px 18px; transition: background .2s, opacity .2s; z-index: 10; backdrop-filter: blur(4px); }
.ra-arrow:hover { background: rgba(255,255,255,1); opacity: .8; }
.ra-arrow--prev { left: 16px; }
.ra-arrow--next { right: 16px; }
.ra-counter { position: absolute; bottom: 20px; right: 24px; font-family: var(--font-u); font-size: .5rem; font-weight: 300; letter-spacing: .14em; color: var(--light); display: flex; gap: 4px; }
.ra-counter-sep { opacity: .4; }

/* ── PAGINE TESTO ── */
.ra-page-text { padding-top: var(--nav-h); }
.ra-display-serif { font-family: var(--font-d); font-weight: 300; }
.ra-label-muted { font-family: var(--font-u); font-size: .625rem; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; color: var(--light); }
.ra-italic { font-family: var(--font-d); font-weight: 300; font-style: italic; }
.ra-text-header { padding: 52px 28px 36px; border-bottom: 0.5px solid var(--border); }
.ra-text-header h1 { font-size: 2.5rem; color: var(--ink); margin-bottom: 10px; }
.ra-text-body { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.ra-text-block { padding: 44px 0; border-bottom: 0.5px solid var(--border); }
.ra-text-block p { font-size: .8125rem; font-weight: 300; line-height: 1.85; color: var(--ink); margin-bottom: 14px; }
.ra-text-block p:last-child { margin-bottom: 0; }
.ra-text-claim { padding: 56px 0; display: flex; justify-content: center; }
.ra-text-claim p { font-size: 1.5rem; color: var(--ink); text-align: center; }

/* ── CONTACT ── */
.ra-contact-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 760px; margin: 0 auto; padding: 0 28px; }
.ra-contact-block { padding: 44px 0 44px 28px; border-right: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.ra-contact-block:nth-child(2n) { border-right: none; }
.ra-contact-block .ra-label-muted { display: block; margin-bottom: 4px; }
.ra-contact-block h2 { font-size: 1.75rem; color: var(--ink); }
.ra-contact-block p { font-size: .8125rem; font-weight: 300; color: #666; line-height: 1.9; }
.ra-contact-block a { color: #666; border-bottom: 0.5px solid #ddd; padding-bottom: 1px; transition: color .2s, border-color .2s; }
.ra-contact-block a:hover { color: var(--ink); border-color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .ra-nav-right { display: none; }
  .ra-hamburger { display: flex; }
  .ra-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 16px; }
  .ra-collection-header { padding: 0 20px 24px; }
  .ra-slide { width: 82vw; }
  .ra-contact-grid { grid-template-columns: 1fr; padding: 0; }
  .ra-contact-block { padding: 32px 28px; border-right: none; }
}
