:root {
  --body-font: "Inter", Arial, Helvetica, sans-serif;
  --heading-font: "Playfair Display", Baskerville, "Libre Baskerville", Georgia, "Times New Roman", serif;
  --ivory: #fbf7ef;
  --warm-cream: #f4eadc;
  --champagne: #d8bd93;
  --soft-gold: #b88a4a;
  --slate: #2f3f46;
  --slate-medium: #3f555f;
  --slate-soft: #526874;
  --slate-muted: #667276;
  --white: #ffffff;
  --muted: #667276;
  --border: rgba(184, 138, 74, 0.22);
  --shadow: 0 22px 55px rgba(47, 63, 70, 0.14);
  --soft-shadow: 0 14px 35px rgba(47, 63, 70, 0.08);
  --cut-large: 28px;
  --cut-medium: 22px;
  --cut-small: 16px;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--body-font);
  font-weight: 300;
  background: var(--ivory);
  color: var(--slate);
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }

img {
  max-width: 100%;
  display: block;
  filter: brightness(1.06) contrast(0.97) saturate(1.04);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 26px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.logo img { width: 190px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  font-family: var(--body-font);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 0 22px;
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a + a { border-left: 1px solid rgba(255, 255, 255, 0.42); }
.nav a:hover { opacity: 1; color: var(--champagne); }

.hero {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 132px 6% 84px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(47, 63, 70, 0.28) 0%, rgba(47, 63, 70, 0.44) 46%, rgba(47, 63, 70, 0.56) 100%),
    radial-gradient(circle at center, rgba(47, 63, 70, 0.08), rgba(47, 63, 70, 0.38)),
    url("/images/hero-home.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(251, 247, 239, 0), var(--ivory));
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  width: min(100%, 980px);
  position: relative;
  z-index: 2;
  animation: heroRise 1.1s ease forwards;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow,
.section-kicker,
.small-label {
  font-family: var(--body-font);
  text-transform: uppercase;
  color: var(--soft-gold);
  letter-spacing: 0.02em;
}

.eyebrow { font-size: 0.76rem; margin-bottom: 16px; }
.hero h1, h2, h3 { font-family: var(--heading-font); }

.hero h1 {
  font-size: clamp(3.2rem, 6.2vw, 6.25rem);
  line-height: 0.98;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--white);
  text-wrap: balance;
}

.hero h1 .no-break { white-space: nowrap; }

.hero p {
  max-width: 820px;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.94);
  margin: 0 auto 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--champagne);
  color: var(--slate);
  font-family: var(--body-font);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 28px rgba(47, 63, 70, 0.12);
  clip-path: polygon(var(--cut-small) 0, 100% 0, 100% calc(100% - var(--cut-small)), calc(100% - var(--cut-small)) 100%, 0 100%, 0 var(--cut-small));
}

.button:hover {
  transform: translateY(-3px);
  background: #e2c9a1;
  box-shadow: 0 18px 38px rgba(47, 63, 70, 0.18);
}

section { padding: 92px 6%; position: relative; }

.reveal,
.reveal-slow,
.image-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-slow { transform: translateY(48px); transition-duration: 1.1s; }
.image-reveal { transform: scale(1.025) translateY(28px); transition-duration: 1.2s; }

.reveal.in-view,
.reveal-slow.in-view,
.image-reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.stagger.in-view > * { opacity: 1; transform: translateY(0); }
.stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.in-view > *:nth-child(2) { transition-delay: 0.14s; }
.stagger.in-view > *:nth-child(3) { transition-delay: 0.23s; }
.stagger.in-view > *:nth-child(4) { transition-delay: 0.32s; }
.stagger.in-view > *:nth-child(5) { transition-delay: 0.41s; }

.section-kicker { font-size: 0.76rem; margin-bottom: 14px; }

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.3rem);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--slate);
  text-wrap: balance;
}

.section-copy { font-size: 1.08rem; color: var(--muted); max-width: 720px; }

.intro {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.intro-image {
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  min-height: 460px;
  background: url("/images/europe-mediterranean.jpg") center/cover no-repeat;
  clip-path: polygon(var(--cut-large) 0, 100% 0, 100% calc(100% - var(--cut-large)), calc(100% - var(--cut-large)) 100%, 0 100%, 0 var(--cut-large));
}

.travel-ways {
  background: radial-gradient(circle at 10% 15%, rgba(216, 189, 147, 0.18), transparent 32%), linear-gradient(180deg, var(--white), var(--ivory));
  overflow: hidden;
}

.travel-ways::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  width: 88%;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 138, 74, 0), rgba(184, 138, 74, 0.35), rgba(184, 138, 74, 0));
}

.section-heading { max-width: 980px; margin: 0 auto 52px; text-align: center; }
.section-heading .section-copy { margin: 0 auto; }
.travel-ways .section-heading h2 { font-size: clamp(2.25rem, 4.1vw, 4rem); white-space: nowrap; }

.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.way-card {
  position: relative;
  background: rgba(251, 247, 239, 0.9);
  border: 1px solid var(--border);
  padding: 32px 22px 28px;
  min-height: 250px;
  box-shadow: 0 12px 30px rgba(47, 63, 70, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  clip-path: polygon(var(--cut-medium) 0, 100% 0, 100% calc(100% - var(--cut-medium)), calc(100% - var(--cut-medium)) 100%, 0 100%, 0 var(--cut-medium));
}

.way-card::before {
  content: attr(data-number);
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--heading-font);
  font-size: 2.7rem;
  line-height: 1;
  color: rgba(184, 138, 74, 0.13);
}

.way-card:hover { transform: translateY(-6px); box-shadow: var(--soft-shadow); border-color: rgba(184, 138, 74, 0.34); }
.way-card .small-label { font-size: 0.64rem; margin-bottom: 12px; position: relative; z-index: 1; }

.way-card h3 {
  font-size: clamp(1.1rem, 1.42vw, 1.3rem);
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--slate);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.way-card p {
  font-family: var(--body-font);
  font-size: 0.91rem;
  line-height: 1.5;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
