:root {
  --wine: #210006;
  --wine-soft: #360711;
  --wine-panel: #420d18;
  --cream: #f4ede3;
  --cream-deep: #e9ddce;
  --ink: #2b0008;
  --gold: #d7a06c;
  --gold-bright: #efc38f;
  --line-dark: rgba(239, 195, 143, 0.28);
  --line-light: rgba(65, 21, 27, 0.22);
  --serif: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  --display: "Bodoni Moda", "Noto Serif SC", Georgia, serif;
  --sans: "Jost", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--wine);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--wine);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-glow {
  position: fixed;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.12;
}

.page-glow-one {
  top: -240px;
  right: -180px;
  background: var(--gold);
}

.page-glow-two {
  bottom: -300px;
  left: -220px;
  background: #7b2335;
}

.private-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px clamp(24px, 6vw, 104px);
}

.private-logo {
  display: block;
  width: 148px;
  height: auto;
}

.language-switch {
  min-width: 108px;
  padding: 10px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(33, 0, 6, 0.42);
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-switch:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--wine);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(24px, 7vw, 126px) 58px;
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(
      circle at 78% 30%,
      rgba(214, 160, 108, 0.13),
      transparent 32%
    ),
    linear-gradient(135deg, #190004 0%, var(--wine) 50%, #350610 100%);
}

.hero::after {
  content: "MILANO";
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: 0.02em;
  color: rgba(239, 195, 143, 0.035);
  font-family: var(--display);
  font-size: clamp(110px, 20vw, 360px);
  line-height: 0.8;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.hero-inner {
  width: min(900px, 100%);
  margin-bottom: clamp(52px, 9vh, 110px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
}

h1 {
  margin-bottom: 28px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 154px);
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: #f4dfca;
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 27px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--wine);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--gold-bright);
}

.availability,
.limited-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.availability-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #d9a269;
  box-shadow: 0 0 0 0 rgba(217, 162, 105, 0.6);
  animation: capacityPulse 2s infinite;
}

@keyframes capacityPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 162, 105, 0.56);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(217, 162, 105, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(217, 162, 105, 0);
  }
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-details div {
  display: flex;
  min-height: 112px;
  padding: 20px clamp(15px, 2vw, 30px);
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-dark);
}

.hero-details div:last-child {
  border-right: 0;
}

.hero-details strong {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.hero-details span {
  margin-top: 8px;
  color: #dcb58f;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(84px, 10vw, 150px) clamp(24px, 7vw, 126px);
}

.section-dark {
  border-bottom: 1px solid var(--line-dark);
  background: var(--wine);
}

.section-light {
  background: var(--cream);
  color: var(--ink);
}

.split-layout,
.content-shell,
.answers-layout,
.application-layout {
  width: min(1560px, 100%);
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.94fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: start;
}

.section-heading h2,
.center-heading h2,
.application-summary h2 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 90px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-dark .section-heading h2,
.application-summary h2 {
  color: var(--gold-bright);
}

.section-copy {
  padding-top: 18px;
}

.section-copy p {
  margin-bottom: 24px;
  color: #efd7c1;
  font-size: clamp(20px, 1.65vw, 27px);
  line-height: 1.68;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.center-heading {
  max-width: 880px;
  margin: 0 auto clamp(50px, 6vw, 84px);
  text-align: center;
}

.section-light .eyebrow {
  color: #9b591f;
}

.center-heading > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: #6a3d35;
  font-size: 21px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line-light);
}

.journey-card {
  min-height: 360px;
  padding: clamp(26px, 3vw, 46px);
  border-right: 1px solid var(--line-light);
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.journey-card:last-child {
  border-right: 0;
}

.journey-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  background: var(--wine-soft);
  color: var(--cream);
  box-shadow: 0 22px 55px rgba(41, 1, 8, 0.18);
}

.journey-card > span,
.included-grid article > span {
  color: #a2642d;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.journey-card:hover > span {
  color: var(--gold-bright);
}

.card-label {
  margin: 58px 0 8px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.journey-card h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.1;
}

.journey-card > p:last-child {
  margin: 0;
  color: #704840;
  font-size: 18px;
  line-height: 1.55;
}

.journey-card:hover > p:last-child {
  color: #ead1b9;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.included-grid article {
  min-height: 230px;
  padding: clamp(28px, 3vw, 46px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.included-grid article:hover {
  transform: translateY(-5px);
  background: #eadbca;
}

.included-grid h3 {
  margin: 42px 0 12px;
  font-size: 27px;
  line-height: 1.2;
}

.included-grid p {
  margin: 0;
  color: #714a43;
  font-size: 17px;
  line-height: 1.5;
}

.answers-section {
  background: #eee4d7;
  color: var(--ink);
}

.answers-layout {
  display: grid;
  grid-template-columns:
    minmax(260px, 0.7fr)
    minmax(0, 1.3fr);
  gap: clamp(55px, 8vw, 130px);
}

.answers-section .section-heading h2 {
  color: var(--ink);
}

.answers-section .section-heading > p:last-child {
  max-width: 410px;
  color: #704840;
  font-size: 19px;
}

.accordion {
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item button {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 22px;
  gap: 22px;
  align-items: center;
  width: 100%;
  padding: 26px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-item button b {
  color: #a2642d;
  font-family: var(--sans);
  font-size: 10px;
}

.faq-item button span {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
}

.faq-item button i,
.faq-item button i::after {
  display: block;
  width: 16px;
  height: 1px;
  background: #b07543;
  transition: transform 180ms ease;
}

.faq-item button i::after {
  content: "";
  transform: rotate(90deg);
}

.faq-item.is-open button i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0 38px 0 64px;
  color: #68423b;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  transition:
    margin 250ms ease,
    opacity 180ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  margin-top: -4px;
  margin-bottom: 28px;
  opacity: 1;
}

.application-section {
  background: linear-gradient(125deg, #200005, #3c0812);
}

.application-layout {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.8fr)
    minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.application-summary > p:not(.eyebrow):not(.limited-note) {
  max-width: 580px;
  color: #ecd1ba;
  font-size: 21px;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin: 36px 0 20px;
}

.price-line strong {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 105px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.price-line span {
  color: #e4b98f;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.limited-note {
  margin-top: 34px;
}

.application-form {
  display: grid;
  gap: 24px;
  padding: clamp(30px, 4vw, 62px);
  border: 1px solid var(--line-dark);
  background: rgba(94, 20, 34, 0.28);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.application-form label:not(.consent) {
  display: grid;
  gap: 8px;
}

.application-form label > span {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.application-form input:not([type="checkbox"]),
.application-form textarea {
  width: 100%;
  padding: 10px 2px;
  border: 0;
  border-bottom: 1px solid rgba(239, 195, 143, 0.38);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font-size: 18px;
}

.application-form textarea {
  min-height: 115px;
  resize: vertical;
}

.application-form input:focus,
.application-form textarea:focus {
  border-color: var(--gold-bright);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: #ead0b9;
  font-size: 15px;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.application-form .primary-button {
  justify-self: start;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: #d8b79a;
  font-size: 15px;
}

.private-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px clamp(24px, 7vw, 126px);
  border-top: 1px solid var(--line-dark);
  background: #160003;
}

.private-footer img {
  width: 120px;
}

.private-footer p {
  margin: 0;
  color: #cba98b;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .split-layout,
  .answers-layout,
  .application-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .journey-card:nth-child(even) {
    border-right: 0;
  }

  .journey-card:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line-light);
  }

  .journey-card:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }
}

/* Keep all five journey days on one horizontal line on desktop. */
@media (min-width: 901px) {
  .journey-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .journey-card,
  .journey-card:nth-child(even) {
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .journey-card:last-child {
    grid-column: auto;
    border-right: 0;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .journey-card {
    padding: 28px 20px;
  }

  .journey-card h3 {
    font-size: 29px;
  }

  .journey-card > p:last-child {
    font-size: 16px;
  }

  .card-label {
    margin-top: 40px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .private-header {
    padding: 18px 20px;
  }

  .private-logo {
    width: 118px;
  }

  .language-switch {
    min-width: 92px;
    padding: 9px 12px;
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    padding: 130px 20px 35px;
  }

  .hero-inner {
    margin-bottom: 56px;
  }

  h1 {
    font-size: clamp(54px, 20vw, 88px);
  }

  .hero-copy {
    font-size: 20px;
  }

  .hero-actions,
  .primary-button {
    width: 100%;
  }

  .availability {
    justify-content: center;
    width: 100%;
  }

  .hero-details {
    grid-template-columns: 1fr 1fr;
  }

  .hero-details div {
    min-height: 92px;
  }

  .hero-details div:nth-child(2) {
    border-right: 0;
  }

  .hero-details div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .section {
    padding: 74px 20px;
  }

  .section-heading h2,
  .center-heading h2,
  .application-summary h2 {
    font-size: 43px;
  }

  .section-copy {
    padding-top: 0;
  }

  .section-copy p {
    font-size: 19px;
  }

  .journey-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .journey-card,
  .journey-card:nth-child(2),
  .included-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .journey-card:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .card-label {
    margin-top: 34px;
  }

  .included-grid {
    border-right: 1px solid var(--line-light);
  }

  .included-grid h3 {
    margin-top: 26px;
  }

  .faq-item button {
    grid-template-columns: 28px 1fr 18px;
    gap: 10px;
    padding: 22px 0;
  }

  .faq-answer p,
  .faq-item.is-open .faq-answer p {
    margin-left: 38px;
    margin-right: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .application-form {
    padding: 28px 20px;
  }

  .application-form .primary-button {
    justify-self: stretch;
  }

  .private-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   LOCAL LOGO FIX
   logo.png and favicon.jpeg must sit beside this CSS/HTML pair.
   ========================================================= */
.private-header {
  min-height: 112px;
}

.private-logo {
  display: block;
  width: 190px;
  height: 96px;
  max-width: 42vw;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.private-footer img {
  display: block;
  width: 150px;
  height: 76px;
  max-width: 46vw;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .private-header {
    min-height: 86px;
  }

  .private-logo {
    width: 142px;
    height: 68px;
    max-width: 48vw;
  }

  .private-footer img {
    width: 132px;
    height: 66px;
    object-position: center;
  }
}

/* Price display safeguard */
.hero-details strong,
.price-line strong {
  white-space: nowrap;
}

.hero-details div:last-child strong {
  font-size: clamp(27px, 2.7vw, 44px);
}

@media (max-width: 760px) {
  .hero-details div:last-child strong {
    font-size: clamp(25px, 8vw, 38px);
  }
}
