/* ============================================================
   v2 — White / Black Editorial
   Mostly monochrome with a very pale sky-blue accent used sparingly.
   "What I plan" is the only dark section.
   ============================================================ */

:root {
  --bg: #ffffff;            /* stark white */
  --bg-2: #f4f4f2;          /* alt section tone */
  --ink: #0a0a0a;           /* black */
  --ink-2: #2a2a2a;         /* secondary text */
  --muted: #767676;         /* tertiary */
  --line: #ececea;          /* hairlines */
  --line-2: #c8c8c6;        /* form underlines */

  --accent: #6fa1be;        /* sky blue (mid, used for hovers/CTAs) */
  --accent-2: #cfe6f1;      /* very pale (used on dark bg + hero) */
  --accent-deep: #4d8aa9;   /* deeper for form focus etc */
  --accent-light: #9ec5db;  /* light blue for display italic on white */

  --dark: #0c0c0b;          /* dark section bg */
  --dark-2: #1a1a18;        /* dark cards bg */
  --cream: #fbfbf9;         /* text on dark */

  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.eyebrow--light { color: rgba(255, 248, 240, 0.85); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 16ch;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-light);
}

.lede {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 60ch;
  letter-spacing: 0.015em;
}
.lede em { font-style: italic; color: var(--accent-light); }

.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0;
}
.section-head--center { text-align: center; }
.section-head--center .display { margin-left: auto; margin-right: auto; }
.section-head__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.15vw, 19px);
  color: var(--muted);
  margin: 8px auto 0;
  max-width: 50ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.85); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--pad);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--cream);
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.96);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__brand-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: currentColor;
}
/* Brand mark: geometric L inside thin circle (option 8) */
.nav__brand-mark,
.footer__brand-mark {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1.2px solid currentColor;
  border-radius: 50%;
}
.nav__brand-mark::before,
.footer__brand-mark::before {
  content: "";
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 1.4px;
  background: currentColor;
}
.nav__brand-mark::after,
.footer__brand-mark::after {
  content: "";
  position: absolute;
  left: 10px; bottom: 8px;
  height: 1.4px;
  width: 11px;
  background: currentColor;
}

.nav__brand-name, .nav__brand-tag { display: none; }
.nav__links {
  display: flex; gap: 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative; padding: 6px 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid currentColor;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__cta:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
@media (max-width: 820px) { .nav__links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: heroZoomOut 14s ease-in-out infinite alternate;
  will-change: transform;
}

/* Visible breathing zoom — clearly moves */
@keyframes heroZoomOut {
  0%   { transform: scale(1.32); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; transform: scale(1); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 42%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 75%);
}
.hero__content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(80px, 12vh, 140px);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 8.5vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 14px 0 24px;
  max-width: 16ch;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--accent-2); }
.hero__lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  letter-spacing: 0.015em;
  max-width: 52ch;
  margin: 0 0 32px;
  color: rgba(255, 248, 240, 0.92);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- About ---------- */
.about {
  padding: clamp(110px, 16vh, 180px) var(--pad);
  background: var(--bg);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about__content .display { margin-bottom: 22px; max-width: 16ch; }
.about__body {
  font-family: var(--sans);
  margin: 20px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
  font-weight: 200;
  letter-spacing: 0.015em;
}
.about__signature {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
}

/* ---------- WHAT I PLAN — DARK SECTION ---------- */
.how {
  padding: clamp(110px, 16vh, 180px) var(--pad);
  background: var(--dark);
  color: var(--cream);
}
.how .eyebrow { color: var(--accent-2); }
.how .display { color: var(--cream); }
.how .display em { color: var(--accent-2); }

.cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: clamp(36px, 5vw, 64px);
}
.card {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(251, 251, 249, 0.18);
  padding: 32px 0 0;
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  transition: border-top-color 0.3s ease;
}
.card:hover { border-top-color: var(--accent-2); }
.card:hover .card__title { color: var(--accent-2); }
.card__num {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 251, 249, 0.55);
  font-weight: 500;
  margin: 0;
}
.card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0;
  color: var(--cream);
  transition: color 0.3s ease;
}
.card__text {
  margin: 6px 0 0;
  color: rgba(251, 251, 249, 0.72);
  font-size: 16px;
  line-height: 1.75;
  max-width: 48ch;
  font-weight: 300;
}
@media (max-width: 900px) {
  .card { grid-template-columns: 1fr; gap: 14px; padding-top: 26px; }
  .card__title { font-size: clamp(34px, 8vw, 52px); }
  .card__text { max-width: 100%; }
}

/* ---------- Style (split) ---------- */
.style {
  padding: clamp(110px, 16vh, 180px) var(--pad);
  background: var(--bg);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.style__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.style__media img { width: 100%; height: 100%; object-fit: cover; }
.style__content .display { margin-bottom: 18px; max-width: 16ch; }
.style__list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 12px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 200;
  line-height: 1.7;
  letter-spacing: 0.015em;
}
.style__list li {
  display: grid; grid-template-columns: 18px 1fr; gap: 14px; align-items: baseline;
}
.style__list span {
  color: var(--accent-deep);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 900px) { .style { grid-template-columns: 1fr; } }

/* ---------- Quote — DARK with pale-blue italic ---------- */
.quote {
  padding: clamp(110px, 16vh, 180px) var(--pad);
  background: var(--dark);
  color: var(--cream);
  text-align: center;
}
.quote__inner { max-width: 880px; margin: 0 auto; }
.quote__rule {
  display: block;
  width: 56px; height: 1px;
  background: var(--accent-2);
  margin: 0 auto 36px;
  opacity: 0.75;
}
.quote__text {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 3.8vw, 50px);
  line-height: 1.28;
  margin: 0 0 32px;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.quote__attribution {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251, 251, 249, 0.65);
  margin: 0;
}

/* ---------- Destinations grid (asymmetric, Italy as feature) ---------- */
.destinations {
  padding: clamp(100px, 14vh, 160px) var(--pad);
  background: var(--bg);
}
.dest-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(220px, 22vw, 320px);
  gap: 12px;
}
.dest {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #000;
}
.dest:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.dest img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease, opacity 0.35s ease;
}
.dest:hover img { transform: scale(1.05); }
.dest figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dest__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
}
.dest:nth-child(1) .dest__name { font-size: clamp(32px, 3vw, 44px); }
.dest__sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 248, 240, 0.85);
}
@media (max-width: 900px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .dest:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 600px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest:nth-child(1) { grid-column: span 1; }
}

/* ---------- Connect ---------- */
.connect {
  padding: clamp(110px, 16vh, 180px) var(--pad);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.connect__inner { max-width: 760px; margin: 0 auto; text-align: left; }
.connect .display { margin-bottom: 44px; max-width: none; }
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  text-align: left;
}
.form label { display: grid; gap: 8px; }
.form label span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form__full { grid-column: 1 / -1; }
.form input, .form select, .form textarea {
  font: inherit;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  padding: 12px 0;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-deep);
}
.form textarea { resize: vertical; }
.form__submit { grid-column: 1 / -1; justify-self: start; margin-top: 12px; }
@media (max-width: 700px) { .form { grid-template-columns: 1fr; } }

.connect__or {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: left;
}
.connect__or p {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.connect__links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 28px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.connect__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.connect__links a:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

/* ---------- Footer — DARK ---------- */
.footer {
  background: var(--dark);
  color: rgba(251, 251, 249, 0.7);
  padding: 56px var(--pad) 36px;
}
.footer__inner { max-width: var(--max); margin: 0 auto; display: grid; gap: 12px; }
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  margin: 0;
}
.footer__brand-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: currentColor;
}
.footer__meta { font-size: 13px; margin: 0; max-width: 70ch; line-height: 1.7; }
.footer__legal { font-size: 11px; letter-spacing: 0.04em; margin: 16px 0 0; color: rgba(251, 251, 249, 0.5); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
