/* ---------- Reset & tokens ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0C0808;
  color: #F5EFE6;
  font-family: 'Archivo', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: #E6C79A; text-decoration: none; }
a:hover { color: #F5EFE6; }
button { font-family: inherit; }
::selection { background: #C8102E; color: #F5EFE6; }

:root {
  --bg: #0C0808;
  --bg2: #1E0A10;
  --red: #C8102E;
  --gold: #E6C79A;
  --offwhite: #F5EFE6;
  --muted: #C9BCA9;
  --faded: #9C8F7D;
  --hairline: rgba(230,199,154,.2);

  --section-pad-y: clamp(80px, 9vw, 150px);
  --section-pad-x: clamp(20px, 4vw, 56px);
  --notis-max-width: 78%;
  --press-grid-cols: 3;
  --pillar-numeral-size: clamp(70px, 8vw, 120px);
  --pillar-row-pad-left: clamp(100px, 10.5vw, 150px);
}

.section-inner { max-width: 1440px; margin: 0 auto; padding: var(--section-pad-y) var(--section-pad-x); position: relative; }
.section-border { border-top: 1px solid var(--hairline); }
.eyebrow { margin: 0 0 18px; font-size: 12px; font-weight: 700; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); }
.eyebrow--red { color: var(--red); }

/* ---------- Keyframes ---------- */
@keyframes glow { 0% { opacity: .4; } 50% { opacity: 1; } 100% { opacity: .4; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }
@keyframes rise { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }

.kenburns-layer { position: absolute; inset: 0; animation: kenburns 32s ease-in-out infinite alternate; }
.kenburns-layer img { width: 100%; height: 100%; object-fit: cover; }

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

/* ---------- Buttons / badges ---------- */
.btn {
  display: inline-block;
  border-radius: 2px;
  padding: 18px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--fill { background: var(--red); color: var(--offwhite); box-shadow: 0 20px 50px -14px rgba(200,16,46,.8); }
.btn--fill:hover { background: var(--offwhite); color: var(--red); }
.btn--outline { border: 1px solid rgba(245,239,230,.5); color: var(--offwhite); padding: 18px 32px; font-weight: 600; }
.btn--outline:hover { background: var(--offwhite); color: var(--bg); }
.pill { border: 1px solid rgba(230,199,154,.5); color: var(--gold); padding: 14px 28px; font-size: 12px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,8,8,.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline);
}
.nav-row {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px var(--section-pad-x);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 38px; height: 38px; object-fit: contain; mix-blend-mode: screen; }
.nav-brand span { font-weight: 800; font-size: 15px; letter-spacing: .3em; color: var(--offwhite); }
.nav-right { display: flex; align-items: center; gap: clamp(16px,2.5vw,36px); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(16px,2.5vw,36px); }
.nav-links a { color: #D8CCBB; }
.nav-cta { background: var(--red); border-radius: 2px; padding: 12px 24px; color: var(--offwhite); white-space: nowrap; box-shadow: 0 12px 30px -10px rgba(200,16,46,.7); }
.nav-cta:hover { background: var(--offwhite); color: var(--red); }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 0;
}
.burger span { width: 22px; height: 2px; background: var(--offwhite); }

.mobile-menu {
  display: none; flex-direction: column;
  padding: 8px var(--section-pad-x) 28px; gap: 20px;
  background: rgba(12,8,8,.97);
  border-top: 1px solid var(--hairline);
}
.mobile-menu a { color: #D8CCBB; font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.mobile-menu .nav-cta { padding: 14px 24px; font-size: 12px; font-weight: 700; text-align: center; }

@media (max-width: 1100px) {
  .mobile-menu.is-open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12,8,8,.6) 0%, rgba(12,8,8,.08) 35%, rgba(12,8,8,.3) 62%, rgba(12,8,8,.96) 100%),
    linear-gradient(90deg, rgba(12,8,8,.75) 0%, rgba(12,8,8,.3) 45%, transparent 72%);
}
.hero-content { position: relative; padding: 0 var(--section-pad-x) clamp(40px,5vw,64px); pointer-events: none; }
.hero-eyebrow { margin: 0 0 18px; font-size: 12px; font-weight: 600; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); text-shadow: 0 2px 14px rgba(0,0,0,.85); animation: rise 1s ease both; }
.hero-title { margin: 0 0 10px; font-weight: 900; font-size: clamp(52px,10vw,176px); line-height: .86; letter-spacing: -.01em; text-transform: uppercase; color: var(--offwhite); animation: rise 1s .1s ease both; }
.hero-title em { font-style: normal; color: var(--red); }
.hero-bottom { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; animation: rise 1s .2s ease both; }
.hero-sub { margin: 0; max-width: 44ch; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(22px,2.4vw,34px); line-height: 1.3; color: #EFE2CE; text-shadow: 0 2px 16px rgba(0,0,0,.85); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; pointer-events: auto; }

/* ---------- Ribbon ---------- */
.ribbon { background: var(--red); overflow: hidden; padding: 14px 0; }
.ribbon-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.ribbon-track span { font-weight: 800; font-size: 18px; letter-spacing: .3em; text-transform: uppercase; color: var(--offwhite); white-space: nowrap; padding-right: 56px; }

/* ---------- The Word ---------- */
.word { position: relative; overflow: hidden; background: var(--bg); }
.word-grid { position: relative; display: flex; flex-wrap: wrap; min-height: 100vh; }
.word-photo { flex: 1 1 480px; min-width: 320px; position: relative; min-height: 56vh; overflow: hidden; }
.word-photo-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, transparent 55%, rgba(12,8,8,.55) 100%); }
.word-quote { position: absolute; bottom: 40px; left: 40px; margin: 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(26px,2.6vw,38px); line-height: 1.2; color: var(--offwhite); max-width: 14ch; text-shadow: 0 4px 24px rgba(0,0,0,.8); }
.word-quote em { color: #E8B489; font-style: italic; }
.word-copy { flex: 1 1 460px; min-width: 320px; position: relative; padding: clamp(60px,7vw,120px) clamp(24px,4vw,64px); display: flex; flex-direction: column; justify-content: center; gap: clamp(28px,4vw,48px); }
.word-headline { margin: 0; font-weight: 900; font-size: clamp(48px,6.4vw,108px); line-height: .88; text-transform: uppercase; }
.word-headline em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; text-transform: none; color: var(--gold); }
.word-terms { display: flex; flex-wrap: wrap; gap: clamp(24px,3vw,44px); }
.word-term-label { margin: 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(46px,4.6vw,72px); line-height: 1; }
.word-term-desc { margin: 8px 0 0; max-width: 26ch; font-weight: 500; font-size: 14px; line-height: 1.7; color: var(--muted); }
.word-blockquote { margin: 0; max-width: 46ch; padding-left: 22px; border-left: 2px solid var(--red); }
.word-blockquote p { margin: 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(20px,2vw,26px); line-height: 1.5; color: #E8DCC8; }
.word-blockquote em { color: var(--gold); font-style: italic; }
.word-cite { font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--faded); }

/* ---------- Sensorial band ---------- */
.sensorial { position: relative; height: clamp(460px,74vh,760px); overflow: hidden; }
.sensorial-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(12,8,8,.75), rgba(30,10,16,.35) 50%, rgba(12,8,8,.85)); }
.sensorial-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(20px,2.6vw,32px); padding: 0 clamp(20px,6vw,80px); pointer-events: none; text-align: center; }
.sensorial-quote { margin: 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: clamp(34px,5.4vw,84px); line-height: 1.08; color: var(--offwhite); max-width: 19ch; text-shadow: 0 6px 40px rgba(12,8,8,.9); }
.sensorial-quote em { color: var(--gold); font-style: italic; }
.sensorial-rule { width: 64px; height: 1px; background: var(--gold); }
.sensorial-copy { margin: 0; font-weight: 500; font-size: clamp(14px,1.3vw,17px); line-height: 1.7; color: #D9CFC0; max-width: 52ch; text-shadow: 0 4px 24px rgba(12,8,8,.9); }

/* ---------- Accordion (shared component) ---------- */
.accordion { }
.accordion + .accordion { border-top: 1px solid rgba(230,199,154,.22); }
.accordion-header {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  cursor: pointer; background: none; border: none; width: 100%; text-align: left; color: inherit;
  padding: 22px 0;
}
.accordion-header:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.accordion-title { margin: 0; flex: 1; font-weight: 800; text-transform: uppercase; color: var(--offwhite); }
.accordion-label { font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.accordion-label::before { content: "Read more +"; }
.accordion.is-open .accordion-label::before { content: "Close —"; }
.accordion-body { padding: 0 0 24px; }
.accordion-body p { margin: 0; font-weight: 500; font-size: 15px; line-height: 1.85; color: var(--muted); }
.accordion-body p + p { margin-top: 16px; }

/* Italian Touch — full text */
.italian-full { background: var(--bg); position: relative; overflow: hidden; }
.italian-full .section-inner { max-width: 900px; display: flex; flex-direction: column; gap: clamp(4px,1vw,8px); }
.italian-full .accordion:first-child { border-top: none; }
.italian-full .accordion:last-child { border-bottom: 1px solid rgba(230,199,154,.22); }
.italian-full .accordion-title { font-size: clamp(22px,2.6vw,32px); }
.italian-full .accordion-body .quote-line { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(18px,1.8vw,22px); line-height: 1.6; color: var(--gold); }

/* ---------- Not / Is ---------- */
.notis { background: linear-gradient(160deg, var(--bg2), var(--bg)); position: relative; overflow: hidden; }
.notis-glow { position: absolute; top: -220px; right: -160px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(200,16,46,.28), transparent 62%); animation: glow 7s ease-in-out infinite; pointer-events: none; }
.notis-image { position: absolute; top: 8%; right: clamp(-40px,-2vw,-10px); width: clamp(220px,26vw,380px); height: clamp(320px,42vw,560px); z-index: 2; box-shadow: 0 60px 120px -40px rgba(0,0,0,.9); transform: rotate(2deg); overflow: hidden; }
.notis-image img { width: 100%; height: 100%; object-fit: cover; }
.notis-headlines { font-weight: 900; font-size: clamp(44px,7vw,120px); line-height: .92; text-transform: uppercase; max-width: var(--notis-max-width); }
.notis-headlines p { margin: 0; }
.notis-headlines .is-outline { color: transparent; -webkit-text-stroke: 1.5px rgba(245,239,230,.4); }
.notis-headlines .is-solid { color: var(--red); }
.notis-tags { margin-top: clamp(44px,5vw,72px); display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Final CTA (Begin / contact) ---------- */
.contact { background: radial-gradient(110% 90% at 50% 100%, #3A0E18 0%, var(--bg) 60%); position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; pointer-events: none; }
.contact-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,8,8,.75), rgba(12,8,8,.55)); pointer-events: none; }
.contact-glow { position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(200,16,46,.3), transparent 62%); animation: glow 8s ease-in-out infinite; pointer-events: none; }
.contact .eyebrow { text-align: center; letter-spacing: .44em; }
.contact-title { margin: 0 auto clamp(44px,6vw,76px); text-align: center; font-weight: 900; font-size: clamp(42px,6.4vw,110px); line-height: .9; text-transform: uppercase; max-width: 14ch; color: var(--offwhite); }
.contact-title em { color: var(--red); font-style: normal; }
.contact-links { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.contact-link { display: flex; justify-content: space-between; align-items: center; gap: 20px; border: 1px solid rgba(230,199,154,.4); padding: 28px 34px; color: var(--offwhite); transition: background .2s ease; }
.contact-link:hover { background: var(--red); color: var(--offwhite); }
.contact-link span:first-child { font-weight: 700; font-size: clamp(18px,2vw,28px); text-transform: uppercase; letter-spacing: .04em; }
.contact-link span:last-child { font-size: 24px; color: var(--gold); }
.contact-footnote { margin: 28px 0 0; text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: var(--faded); }

/* ---------- Membership ---------- */
.membership { background: radial-gradient(130% 90% at 50% 0%, #3A0E18 0%, var(--bg) 60%); position: relative; overflow: hidden; }
.membership-glow { position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(200,16,46,.24), transparent 60%); animation: glow 9s ease-in-out infinite; pointer-events: none; }
.membership-intro { text-align: center; margin-bottom: clamp(48px,7vw,88px); }
.membership-title { margin: 0; font-weight: 900; font-size: clamp(54px,9vw,160px); line-height: .86; text-transform: uppercase; color: var(--offwhite); }
.membership-title span { color: var(--red); }
.membership-lede { margin: 24px auto 0; max-width: 52ch; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(20px,2vw,28px); line-height: 1.5; color: #EFE2CE; }
.membership-cards { display: flex; flex-wrap: wrap; gap: clamp(20px,3vw,32px); justify-content: center; }
.card {
  flex: 1 1 420px; max-width: 560px; position: relative; height: clamp(440px,52vw,600px);
  overflow: hidden; box-shadow: 0 50px 100px -40px rgba(0,0,0,.85);
}
.card--platinum { box-shadow: 0 60px 130px -40px rgba(200,16,46,.55); outline: 2px solid var(--red); }
.card img { width: 100%; height: 100%; object-fit: cover; }
.card-scrim { position: absolute; inset: 0; pointer-events: none; }
.card--gold .card-scrim { background: linear-gradient(180deg, rgba(12,8,8,.2) 0%, rgba(12,8,8,.55) 55%, rgba(12,8,8,.92) 100%); }
.card--platinum .card-scrim { background: linear-gradient(180deg, rgba(12,8,8,.2) 0%, rgba(58,14,24,.6) 55%, rgba(12,8,8,.94) 100%); }
.card-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(28px,3.5vw,42px); pointer-events: none; }
.card-badge { align-self: flex-start; margin-bottom: 14px; font-size: 10px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; padding: 6px 14px; }
.card--gold .card-badge { color: var(--gold); border: 1px solid rgba(230,199,154,.5); }
.card--platinum .card-badge { color: var(--offwhite); background: var(--red); }
.card-title { margin: 0 0 10px; font-weight: 900; font-size: clamp(38px,4.4vw,58px); text-transform: uppercase; color: var(--offwhite); }
.card-desc { margin: 0 0 16px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; line-height: 1.4; color: var(--offwhite); }
.card-link { pointer-events: auto; color: var(--offwhite); font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; border-bottom: 2px solid var(--red); padding-bottom: 4px; align-self: flex-start; }
.card--platinum .card-link { border-bottom-color: var(--gold); }
.card-link:hover { color: var(--gold); }
.membership-footnote { margin: 36px 0 0; text-align: center; font-weight: 500; font-size: 13px; color: var(--faded); }
.membership-footnote a { border-bottom: 1px solid rgba(230,199,154,.5); }
.membership-footnote a:hover { color: var(--offwhite); }

/* ---------- Simone / Founder ---------- */
.simone { background: var(--bg); position: relative; overflow: hidden; }
.simone-grid { position: relative; display: flex; flex-wrap: wrap; min-height: 100vh; }
.simone-photo { flex: 1 1 480px; min-width: 320px; position: relative; min-height: 60vh; overflow: hidden; }
.simone-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; filter: saturate(.9) contrast(1.05); }
.simone-photo-tint { position: absolute; inset: 0; background: linear-gradient(200deg, rgba(200,16,46,.16), transparent 55%); mix-blend-mode: multiply; pointer-events: none; }
.simone-photo-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(12,8,8,.35) 0%, transparent 30%); pointer-events: none; }
.simone-badge { position: absolute; top: 32px; left: 32px; margin: 0; background: var(--red); color: var(--offwhite); font-weight: 800; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; padding: 12px 22px; box-shadow: 0 18px 40px -14px rgba(200,16,46,.8); }
.simone-copy { flex: 1 1 460px; min-width: 320px; position: relative; padding: clamp(60px,7vw,120px) clamp(24px,4vw,64px); display: flex; flex-direction: column; justify-content: center; gap: clamp(20px,3vw,30px); }
.simone-copy > * { position: relative; z-index: 1; }
.decor-watermark { pointer-events: none; user-select: none; }
.wm-sg { position: absolute; top: clamp(20px,3vw,50px); right: clamp(10px,2vw,30px); margin: 0; font-weight: 900; font-size: clamp(90px,13vw,220px); line-height: 1; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(200,16,46,.18); z-index: 0; }
.simone-name { margin: 0; font-weight: 900; font-size: clamp(46px,6vw,100px); line-height: .88; text-transform: uppercase; }
.simone-lede { margin: 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(24px,2.6vw,38px); line-height: 1.25; color: var(--gold); max-width: 20ch; }
.simone-copy p.body-copy { margin: 0; font-weight: 500; font-size: 15px; line-height: 1.8; color: var(--muted); max-width: 52ch; }
.simone-box { border: 1px solid rgba(230,199,154,.25); padding: 0 22px; max-width: 56ch; }
.simone-box .accordion-header { padding: 18px 0; }
.simone-box .accordion-title { font-size: clamp(16px,1.6vw,20px); }
.simone-box .accordion-body { padding: 0 0 20px; }
.simone-quote { margin: 0; padding-left: 20px; border-left: 2px solid var(--red); }
.simone-quote p { margin: 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(18px,1.8vw,22px); line-height: 1.6; color: var(--gold); }
.simone-tags { display: flex; flex-wrap: wrap; gap: 12px 32px; border-top: 1px solid rgba(230,199,154,.3); padding-top: 20px; font-size: 11px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.simone-tags span.sep { color: var(--red); }

/* ---------- Italian Touch hero ---------- */
.italian-hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.italian-hero-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(100deg, rgba(12,8,8,.92) 0%, rgba(12,8,8,.5) 42%, rgba(12,8,8,.15) 70%); }
.italian-hero .section-inner { width: 100%; }
.italian-hero-copy { max-width: 640px; }
.tag-chip { display: inline-block; margin-bottom: 22px; background: var(--gold); color: var(--bg); font-weight: 800; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; padding: 10px 20px; }
.italian-hero-title { margin: 0 0 26px; font-weight: 900; font-size: clamp(40px,5.6vw,92px); line-height: .9; text-transform: uppercase; color: var(--offwhite); text-shadow: 0 4px 24px rgba(0,0,0,.6); }
.italian-hero-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; text-transform: none; color: var(--red); }
.italian-hero-copy p.body-copy { margin: 0 0 16px; font-weight: 500; font-size: 15px; line-height: 1.8; color: #EFE2CE; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.italian-hero-tagline { margin: 34px 0 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(24px,2.4vw,34px); color: var(--gold); text-shadow: 0 2px 16px rgba(0,0,0,.7); }

/* ---------- Pillars ---------- */
.pillars { background: linear-gradient(180deg, var(--bg2), var(--bg)); position: relative; overflow: hidden; }
.pillars .section-inner { display: flex; flex-wrap: wrap; gap: clamp(40px,5vw,80px); }
.pillars-aside { flex: 0 1 380px; min-width: 280px; position: relative; }
.pillars-sticky { position: sticky; top: 100px; }
.pillars-title { margin: 0 0 30px; font-weight: 900; font-size: clamp(34px,4.1vw,60px); line-height: .96; text-transform: uppercase; }
.pillars-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; text-transform: none; color: var(--gold); }
.pillars-image-wrap { position: relative; height: clamp(280px,32vw,420px); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); }
.pillars-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pillars-list { flex: 1 1 480px; min-width: 300px; display: flex; flex-direction: column; }
.pillar-row { border-top: 1px solid rgba(230,199,154,.25); padding: 30px 0 30px var(--pillar-row-pad-left); position: relative; }
.pillars-list .pillar-row:last-child { border-bottom: 1px solid rgba(230,199,154,.25); }
.pillar-numeral { position: absolute; top: -2px; left: 0; font-weight: 900; font-size: var(--pillar-numeral-size); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(200,16,46,.25); z-index: 0; }
.pillar-row .accordion-header { padding: 0; position: relative; z-index: 1; }
.pillar-row .accordion-title { font-size: clamp(22px,2.6vw,38px); letter-spacing: .01em; }
.pillar-row .accordion-body { padding: 18px 0 4px; position: relative; z-index: 1; }
.pillar-row .accordion-body p { max-width: 60ch; }

/* ---------- Concept / Method ---------- */
.concept { background: var(--bg); position: relative; overflow: hidden; }
.concept-watermark { position: absolute; top: clamp(-20px,-2vw,-50px); right: 0; margin: 0; font-weight: 900; font-size: clamp(140px,20vw,320px); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(200,16,46,.2); }
.concept-title { margin: 0 0 22px; font-weight: 900; font-size: clamp(36px,4.6vw,72px); line-height: .98; text-transform: uppercase; overflow-wrap: normal; }
.concept-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; text-transform: none; color: var(--red); }
.concept-lede { margin: 0 0 20px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(19px,2vw,26px); line-height: 1.4; color: var(--gold); }
.concept-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; background: rgba(230,199,154,.25); margin-top: clamp(24px,3vw,44px); }
.concept-cell { background: var(--bg); padding: 24px clamp(16px,2vw,26px) 0; }
.concept-cell:first-child { padding-left: 0; }
.concept-cell:last-child { padding-right: 0; }
.concept-cell-title { margin: 0 0 10px; font-weight: 900; font-size: 15px; text-transform: uppercase; letter-spacing: .02em; color: var(--gold); }
.concept-cell-desc { margin: 0; font-weight: 500; font-size: 13px; line-height: 1.6; color: var(--faded); }

/* ---------- Books + Press ---------- */
.books { background: var(--bg); position: relative; overflow: hidden; }
.books-header, .press-header { display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: baseline; justify-content: space-between; margin-bottom: clamp(40px,5vw,64px); }
.books-title, .press-title { margin: 0; font-weight: 900; text-transform: uppercase; }
.books-title { font-size: clamp(42px,5.6vw,96px); line-height: .88; }
.books-title em, .press-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; text-transform: none; color: var(--gold); }
.books-note, .press-note { margin: 0; max-width: 38ch; font-weight: 500; font-size: 14px; line-height: 1.7; color: var(--faded); }

.carousel { position: relative; }
.carousel-track {
  display: flex; gap: clamp(20px,2.6vw,32px); overflow-x: auto;
  padding: 14px 4px 22px; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item { flex: 0 0 200px; display: flex; flex-direction: column; gap: 12px; scroll-snap-align: start; cursor: pointer; }
.carousel-item-cover { height: 296px; overflow: hidden; box-shadow: 0 34px 60px -26px rgba(0,0,0,.9); }
.carousel-item-cover img { width: 100%; height: 100%; object-fit: cover; }
.carousel-item-title { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: 16px; line-height: 1.25; color: var(--offwhite); }
.carousel-arrow {
  position: absolute; top: 130px; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(230,199,154,.4); background: rgba(12,8,8,.85); color: var(--offwhite);
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.carousel-arrow:hover, .carousel-arrow:focus-visible { background: var(--red); border-color: var(--red); }
.carousel-arrow--prev { left: -14px; }
.carousel-arrow--next { right: -14px; }
.carousel-arrow:disabled { opacity: .3; cursor: default; }
.carousel-dots { display: flex; gap: 10px; justify-content: center; margin-top: 6px; }
.carousel-dot { height: 8px; border-radius: 4px; border: none; padding: 0; width: 8px; background: rgba(230,199,154,.35); cursor: pointer; }
.carousel-dot.is-active { width: 22px; background: var(--red); }

.press { margin-top: clamp(40px,5vw,60px); border-top: 1px solid rgba(230,199,154,.2); padding-top: clamp(40px,5vw,64px); }
.press-title { font-size: clamp(32px,4.4vw,72px); line-height: .94; }
.press-grid { display: grid; grid-template-columns: repeat(var(--press-grid-cols), 1fr); gap: clamp(20px,2.5vw,32px); }
.press-logo { display: flex; align-items: center; justify-content: center; height: clamp(110px,12vw,150px); background: var(--bg); border: 1px solid rgba(230,199,154,.22); padding: 26px 34px; transition: border-color .2s ease; }
.press-logo:hover { border-color: var(--gold); }
.press-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ---------- Europe ---------- */
.europe { background: var(--bg); position: relative; overflow: hidden; }
.europe-watermark { position: absolute; top: clamp(-20px,-2vw,-50px); left: 0; margin: 0; font-weight: 900; font-size: clamp(140px,20vw,320px); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(230,199,154,.16); }
.europe-intro { max-width: 680px; margin-bottom: clamp(48px,6vw,84px); }
.europe-title { margin: 0 0 26px; font-weight: 900; font-size: clamp(38px,5vw,84px); line-height: .92; text-transform: uppercase; }
.europe-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; text-transform: none; color: var(--red); }
.europe-copy { margin: 0; font-weight: 500; font-size: 15px; line-height: 1.8; color: var(--muted); }
.europe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); column-gap: clamp(20px,3vw,40px); row-gap: 0; border-top: 1px solid rgba(230,199,154,.22); }
.europe-cell { border-bottom: 1px solid rgba(230,199,154,.22); padding: 16px 0; }
.europe-cell span { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(18px,1.8vw,23px); color: var(--offwhite); }
.europe-footnote { margin: 34px 0 0; font-weight: 600; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--faded); }
.europe-footnote a { border-bottom: 1px solid rgba(230,199,154,.5); }
.europe-footnote a:hover { color: var(--offwhite); }

/* ---------- Footer ---------- */
.footer { background: #080505; color: var(--faded); border-top: 1px solid var(--hairline); }
.footer-row { max-width: 1440px; margin: 0 auto; padding: 44px var(--section-pad-x); display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: space-between; align-items: baseline; }
.footer-brand { font-weight: 800; font-size: 14px; letter-spacing: .3em; color: var(--offwhite); }
.footer-area { font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.footer-email { color: var(--gold); font-size: 12px; letter-spacing: .08em; }
.footer-email:hover { color: var(--offwhite); }
.footer-disclaimer { font-weight: 500; font-size: 11px; }

/* ---------- Nav breakpoint (wider than content breakpoint — 5 links + CTA + logo
   don't fit between ~861px and ~1040px, so the nav collapses to burger earlier) ---------- */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-right > .nav-cta { display: none; }
  .burger { display: flex; }
}

/* ---------- Mobile breakpoint ---------- */
@media (max-width: 860px) {
  .decor-watermark { display: none; }

  :root {
    --section-pad-y: 56px;
    --section-pad-x: 20px;
    --notis-max-width: 100%;
    --press-grid-cols: 2;
    --pillar-numeral-size: 52px;
  }

  .pillars-image-wrap { margin-left: -20px; margin-right: -20px; width: calc(100% + 40px); }

  .accordion-header--stack-mobile {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .concept-cell { padding: 24px 0 0 !important; }

  .pillar-row { padding: 26px 0; }

  .simone-tags { justify-content: center; }

  .sensorial .kenburns-layer img { object-position: 12% 50%; }

  .europe-grid { grid-template-columns: repeat(2, 1fr); }
}
