/* =========================================================
   Villa Torre Rossa — Landing
   Design tokens
   ========================================================= */
:root {
  --c-ink: #1a1715;
  --c-ink-soft: #4a3f38;
  --c-cream: #f5ede2;
  --c-cream-2: #ede2d0;
  --c-sand: #d9c7ad;
  --c-bone: #faf6ef;
  --c-rust: #8a2a25;       /* logo red */
  --c-rust-dark: #6b1f1c;
  --c-gold: #b08a5a;
  --c-line: rgba(26, 23, 21, 0.14);
  --c-line-light: rgba(245, 237, 226, 0.22);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --radius: 2px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--c-bone);
  color: var(--c-ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--c-rust); color: var(--c-bone); }

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: clip;
}

/* =========================================================
   Typography helpers
   ========================================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  display: inline-block;
}
.eyebrow.light { color: rgba(255,255,255,.85); }

.section-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-rust);
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 7.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--c-ink);
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-rust);
}

.section-lead {
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--c-ink-soft);
  max-width: 36ch;
  margin: 0 0 40px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn-primary {
  background: var(--c-rust);
  color: var(--c-bone);
}
.btn-primary:hover { background: var(--c-rust-dark); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-ghost {
  border: 1px solid var(--c-ink);
  color: var(--c-ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--c-ink); color: var(--c-bone); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--c-line);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.logo { height: 44px; width: auto; transition: opacity .4s var(--ease), height .4s var(--ease); }
.logo-red { display: none; }
.site-header.is-scrolled .logo-white { display: none; }
.site-header.is-scrolled .logo-red { display: block; height: 38px; }
.header-cta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bone);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  font-weight: 500;
}
.header-cta:hover { background: var(--c-bone); color: var(--c-ink); }
.site-header.is-scrolled .header-cta {
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.site-header.is-scrolled .header-cta:hover { background: var(--c-ink); color: var(--c-bone); }

@media (max-width: 600px) {
  .logo { height: 36px; }
  .header-cta {
    font-size: 11px;
    padding: 8px 14px;
    letter-spacing: 0.14em;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }
  .site-header:not(.is-scrolled) .header-cta { display: none; }
  .site-header.is-scrolled .header-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  color: var(--c-bone);
  overflow: hidden;
}
.hero-darken {
  position: absolute; inset: 0;
  background: #000;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  will-change: opacity;
}
/* Le sezioni successive scorrono sopra la hero coprendola */
.hero ~ .section,
.hero ~ section,
.hero ~ footer {
  position: relative;
  z-index: 1;
}
/* Garantisce sfondo opaco anche dove era trasparente */
.hero ~ .section-experience,
.hero ~ .section-custom,
.hero ~ .section-where,
.hero ~ .section-spaces { background-color: var(--c-bone); }
/* Estende lo sfondo a tutta la larghezza viewport anche per sezioni con max-width */
.hero ~ .section-experience,
.hero ~ .section-custom,
.hero ~ .section-where {
  box-shadow: 0 0 0 100vmax var(--c-bone);
  clip-path: inset(0 -100vmax);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(var(--hero-scale, 1.05));
  transform-origin: center center;
  will-change: transform;
}
.hero-content {
  will-change: transform, opacity;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(40px, 8vh, 72px);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 80px);
  animation: fadeInUp 1.2s var(--ease) .2s both;
}
.hero-headline { flex: 1 1 auto; min-width: 0; }
.hero-aside {
  flex: 0 1 380px;
  max-width: 380px;
  padding-bottom: 6px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 8.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 10px 0 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
@media (max-width: 760px) {
  .hero-content { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-aside { max-width: 100%; flex: 1 1 auto; padding-bottom: 0; }
  .hero-title { font-size: clamp(40px, 11vw, 68px); }
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.hero-cta {
  background: var(--c-bone);
  color: var(--c-ink);
}
.hero-cta:hover { background: var(--c-rust); color: var(--c-bone); }
.hero-micro {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 38ch;
  letter-spacing: 0.01em;
}
.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}
.hero-scroll span {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--c-bone);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .hero-scroll { display: none; }
  .hero-content { padding-bottom: 24px; }
}

/* =========================================================
   Generic section
   ========================================================= */
.section {
  padding: clamp(80px, 14vw, 160px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Esperienza
   ========================================================= */
.section-experience .section-lead { max-width: 42ch; margin-bottom: 64px; }

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.exp-img {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-cream-2);
}
.exp-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.exp-img:hover img { transform: scale(1.04); }

.exp-img--tall  { grid-row: span 2; aspect-ratio: 3/4.4; }
.exp-img--wide  { aspect-ratio: 4/3; }
.exp-img--small { aspect-ratio: 4/3; transform: translateY(0); }

@media (min-width: 800px) {
  .experience-grid { gap: 24px; }
  .exp-img--tall  { aspect-ratio: 3/4.4; }
  .exp-img--small { transform: translateY(-32px); }
}

/* =========================================================
   Spazi
   ========================================================= */
.section-spaces { background: linear-gradient(180deg, transparent 0%, var(--c-cream) 12%, var(--c-cream) 100%); max-width: none; padding-left: 0; padding-right: 0; }
.section-spaces .section-num,
.section-spaces .section-title,
.section-spaces .spaces-list,
.section-spaces .exclusive {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.spaces-list {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 9vw, 96px);
  margin-top: 40px;
}
.space-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
.space-media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.space-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.space-card:hover .space-media img { transform: scale(1.04); }
.space-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-rust);
  font-weight: 500;
  margin-bottom: 12px;
}
.space-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
  margin: 0 0 14px;
}
.space-text p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-ink-soft);
  max-width: 38ch;
  margin: 0;
}

@media (min-width: 800px) {
  .space-card { grid-template-columns: 1.15fr 1fr; gap: 64px; }
  .space-card.reverse { grid-template-columns: 1fr 1.15fr; }
  .space-card.reverse .space-media { order: 2; }
  .space-card.reverse .space-text  { order: 1; }
}

/* Esclusiva */
.exclusive {
  margin-top: clamp(80px, 14vw, 140px);
  text-align: center;
  padding-top: 60px;
  position: relative;
}
.exclusive-line {
  width: 1px;
  height: 60px;
  background: var(--c-rust);
  margin: 0 auto 28px;
}
.exclusive-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 7vw, 60px);
  line-height: 1.05;
  margin: 0 0 36px;
}
.exclusive-title em { font-style: italic; font-weight: 300; color: var(--c-rust); }
.exclusive-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--c-ink-soft);
}
.exclusive-list li span {
  color: var(--c-rust);
  margin-right: 8px;
  font-weight: 500;
}
@media (min-width: 700px) {
  .exclusive-list { flex-direction: row; justify-content: center; gap: 48px; }
}

/* =========================================================
   Cucina
   ========================================================= */
.section-food { background: var(--c-cream); max-width: none; padding-left: 0; padding-right: 0; }
.section-food .section-num,
.section-food .section-title,
.section-food .section-lead,
.section-food .food-features {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.food-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding-top: 32px;
  padding-bottom: 32px;
  margin-bottom: 56px;
}
.food-feat strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}
.food-feat span {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-ink-soft);
}
@media (min-width: 700px) {
  .food-features { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .food-feat { padding: 0 8px; }
  .food-feat + .food-feat { border-left: 1px solid var(--c-line); }
}

.food-marquee {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.food-row {
  width: 100%;
  overflow: hidden;
}
.food-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
  transform: translate3d(var(--marquee-x, 0px), 0, 0);
}
.food-track figure {
  margin: 0;
  flex: 0 0 auto;
  width: 240px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-cream-2);
}
.food-track img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 700px) {
  .food-marquee { gap: 18px; }
  .food-track { gap: 18px; }
  .food-track figure { width: 360px; }
}
@media (prefers-reduced-motion: reduce) {
  .food-track { transform: none !important; }
}

/* =========================================================
   Personalizzazione
   ========================================================= */
.section-custom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.custom-wrap .btn { margin-top: 8px; }
.custom-img {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
}
.custom-img img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 800px) {
  .section-custom { grid-template-columns: 1fr 1fr; gap: 80px; }
  .custom-img { aspect-ratio: 4/5; }
}

/* =========================================================
   Riprova sociale
   ========================================================= */
.section-social { background: var(--c-rust-dark); color: var(--c-bone); max-width: none; padding-left: 0; padding-right: 0; }
.section-social .section-num,
.section-social .section-title,
.section-social .stats,
.section-social .testimonials {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section-social .section-num { color: var(--c-sand); }
.section-social .section-title { color: var(--c-bone); }
.section-social .section-title em { color: var(--c-sand); }

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  border-top: 1px solid var(--c-line-light);
  border-bottom: 1px solid var(--c-line-light);
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 64px;
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 76px);
  line-height: 1;
  display: block;
  color: var(--c-bone);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-sand);
}
@media (min-width: 700px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat + .stat { padding-left: 32px; border-left: 1px solid var(--c-line-light); }
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.testi {
  margin: 0;
  padding: 0;
}
.testi blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  margin: 0 0 18px;
  color: var(--c-bone);
  position: relative;
  padding-left: 22px;
}
.testi blockquote::before {
  content: "“";
  position: absolute;
  left: 0; top: -8px;
  font-size: 48px;
  line-height: 1;
  color: var(--c-sand);
  font-weight: 400;
}
.testi figcaption {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-sand);
  padding-left: 22px;
}
@media (min-width: 800px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}

/* =========================================================
   Dove
   ========================================================= */
.where-img {
  margin: 16px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/10;
}
.where-img img { width: 100%; height: 100%; object-fit: cover; }

.where-info {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  border-top: 1px solid var(--c-line);
  padding-top: 40px;
}
.where-block p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: var(--c-ink);
  margin: 0 0 12px;
}
.where-block a { color: var(--c-rust); }
.where-block a:hover { text-decoration: underline; text-underline-offset: 4px; }
.where-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.where-link {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (min-width: 700px) {
  .where-info { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* =========================================================
   CTA + Form
   ========================================================= */
.section-cta {
  background:
    linear-gradient(180deg, var(--c-cream) 0%, var(--c-cream-2) 100%);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.cta-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 7vw, 60px);
  line-height: 1.05;
  margin: 18px 0 24px;
}
.cta-title em { font-style: italic; font-weight: 300; color: var(--c-rust); }
.cta-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--c-ink-soft);
  max-width: 46ch;
  margin: 0 auto 48px;
}

.form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--c-bone);
  padding: clamp(24px, 5vw, 40px);
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  box-shadow: 0 30px 80px -40px rgba(26,23,21,0.25);
}
.field {
  position: relative;
}
.field input {
  width: 100%;
  padding: 22px 16px 10px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--c-ink);
  outline: none;
  transition: border-color .3s var(--ease);
}
.field input:focus { border-bottom-color: var(--c-rust); }
.field label {
  position: absolute;
  left: 16px;
  top: 18px;
  font-size: 14px;
  color: var(--c-ink-soft);
  letter-spacing: 0.02em;
  pointer-events: none;
  transition: all .25s var(--ease);
  background: transparent;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rust);
}
.field.has-error input { border-bottom-color: var(--c-rust); }
.field.has-error::after {
  content: attr(data-error);
  position: absolute;
  bottom: -18px; left: 16px;
  font-size: 11px;
  color: var(--c-rust);
  letter-spacing: 0.04em;
}

.form .btn { margin-top: 8px; padding: 20px 28px; }
.form-micro {
  margin: 4px 0 0;
  font-size: 12px;
  text-align: center;
  color: var(--c-ink-soft);
  letter-spacing: 0.02em;
}

.form-success {
  background: var(--c-bone);
  border: 1px solid var(--c-line);
  padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 40px);
  border-radius: var(--radius);
  text-align: center;
  animation: fadeInUp .8s var(--ease);
}
.form-success h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400;
  margin: 16px 0 12px;
  color: var(--c-rust);
}
.form-success p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  color: var(--c-ink-soft);
  margin: 0;
}
.success-mark {
  width: 56px;
  height: 56px;
  border: 1px solid var(--c-rust);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.success-mark::after {
  content: "";
  position: absolute;
  top: 18px; left: 16px;
  width: 22px; height: 11px;
  border-left: 2px solid var(--c-rust);
  border-bottom: 2px solid var(--c-rust);
  transform: rotate(-45deg);
}

/* =========================================================
   FAQ
   ========================================================= */
.section-faq {
  background: var(--c-bone);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.faq-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.faq-shell .section-lead {
  max-width: 34ch;
  margin-bottom: 42px;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: rgba(245, 237, 226, 0.62);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.faq-item[open] {
  background: var(--c-cream);
  border-color: rgba(138, 42, 37, 0.22);
}
.faq-item:hover {
  transform: translateY(-1px);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.1;
  color: var(--c-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1;
  color: var(--c-rust);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  max-width: 64ch;
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-ink-soft);
}
@media (max-width: 700px) {
  .faq-item summary {
    padding: 18px 18px;
    gap: 16px;
  }
  .faq-item p {
    padding: 0 18px 18px;
  }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--c-ink);
  color: var(--c-bone);
  text-align: center;
  padding: 64px var(--pad) 100px;
}
.footer-logo { height: 56px; margin: 0 auto 18px; }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: rgba(245, 237, 226, 0.7);
  margin: 0 0 24px;
}
.footer-mini {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 237, 226, 0.4);
  margin: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 640px;
  margin: 36px auto 36px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line-light);
  text-align: left;
}
.footer-grid p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245, 237, 226, 0.85);
  margin: 0;
}
.footer-grid a { color: var(--c-sand); }
.footer-grid a:hover { color: var(--c-bone); }
.footer-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-rust);
  margin-bottom: 10px;
  font-weight: 500;
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; text-align: left; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-img { animation: none; transform: none; transition: none; }
}
