:root {
  --navy: #0A1628;
  --ivory: #F8F3EC;
  --gold: #B8703A;
  --gold-light: #D4945A;
  --slate: #3A4A5C;
  --mist: rgba(248,243,236,0.08);
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--navy);
  color: var(--ivory);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 40px;
}
.headline-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}
.headline-main {
  display: block;
  font-size: clamp(48px, 6vw, 88px);
  font-style: italic;
  color: var(--ivory);
  font-weight: 300;
}

.hero-lede {
  font-size: 16px;
  color: rgba(248,243,236,0.7);
  max-width: 400px;
  line-height: 1.7;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-image-stack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.img-back {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,112,58,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 30% 70%, rgba(58,74,92,0.6) 0%, transparent 80%),
    linear-gradient(160deg, #0A1628 0%, #1A2A3F 30%, #2A4055 50%, #B8703A 80%, #D4945A 100%);
  animation: gradientShift 12s ease-in-out infinite alternate;
}

.img-mid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 50%, rgba(212,148,90,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 80% 20%, rgba(184,112,58,0.15) 0%, transparent 60%);
}

.img-front {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px;
}

.img-front-text {
  border-left: 1px solid var(--gold);
  padding-left: 16px;
}
.img-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,243,236,0.5);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 80px;
  border-top: 1px solid rgba(248,243,236,0.08);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 70% at 100% 50%, rgba(184,112,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  max-width: 900px;
  position: relative;
}
.manifesto-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(184,112,58,0.3);
  line-height: 1;
  padding-top: 8px;
}
.manifesto-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 16px;
  color: rgba(248,243,236,0.65);
  line-height: 1.8;
  max-width: 680px;
}

/* ── SECTION SHARED ── */
.section-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(184,112,58,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 60px;
}

/* ── APPROACH ── */
.approach {
  padding: 120px 80px;
  background: rgba(248,243,236,0.03);
}
.approach-header {
  margin-bottom: 64px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
}
.approach-item {
  border-top: 1px solid rgba(184,112,58,0.3);
  padding-top: 32px;
}
.approach-icon {
  margin-bottom: 20px;
}
.approach-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 14px;
  line-height: 1.3;
}
.approach-desc {
  font-size: 14px;
  color: rgba(248,243,236,0.6);
  line-height: 1.75;
}

/* ── DESTINATIONS ── */
.destinations {
  padding: 120px 80px;
}
.destinations-header {
  margin-bottom: 64px;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.dest-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 4px;
}
.dest-card-large { grid-column: span 2; }
.dest-card-wide { grid-column: span 2; }

.dest-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-card-bg { transform: scale(1.03); }

.dest-bg-dubrovnik {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(184,112,58,0.4) 0%, transparent 60%),
    linear-gradient(135deg, #1a2a3f 0%, #2a4a5f 30%, #B8703A 80%, #d4945a 100%);
}
.dest-bg-split {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(58,74,92,0.5) 0%, transparent 60%),
    linear-gradient(140deg, #0A1628 0%, #1e3a5f 50%, #B8703A 100%);
}
.dest-bg-hvar {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(212,148,90,0.3) 0%, transparent 60%),
    linear-gradient(130deg, #1a2a3f 0%, #2a5a4f 40%, #B8703A 100%);
}
.dest-bg-korcula {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(184,112,58,0.25) 0%, transparent 60%),
    linear-gradient(125deg, #0A1628 0%, #2a4a6f 50%, #B8703A 100%);
}
.dest-bg-elaphiti {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(212,148,90,0.2) 0%, transparent 60%),
    linear-gradient(145deg, #1a2a3f 0%, #3a5a6f 50%, #B8703A 100%);
}
.dest-bg-dalmatia {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(184,112,58,0.3) 0%, transparent 60%),
    linear-gradient(135deg, #0A1628 0%, #1e3a5f 30%, #2a5a4f 60%, #B8703A 100%);
}

.dest-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 100%);
}
.dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 4px;
}
.dest-tagline {
  font-size: 12px;
  color: rgba(248,243,236,0.6);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ── CLOSING ── */
.closing {
  padding: 140px 80px 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(184,112,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.closing-badge {
  margin-bottom: 40px;
  display: inline-block;
}
.badge-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,112,58,0.4);
  padding: 8px 20px;
  border-radius: 2px;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 36px;
}
.closing-headline em { color: var(--gold); }
.closing-body {
  font-size: 16px;
  color: rgba(248,243,236,0.6);
  line-height: 1.85;
}

/* ── FOOTER ── */
.footer {
  padding: 60px 80px 48px;
  border-top: 1px solid rgba(248,243,236,0.08);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(248,243,236,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-note {
  font-size: 13px;
  color: rgba(248,243,236,0.4);
  text-align: right;
  max-width: 260px;
}
.footer-divider {
  height: 1px;
  background: rgba(248,243,236,0.06);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  color: rgba(248,243,236,0.25);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── KEYFRAMES ── */
@keyframes gradientShift {
  0% {
    background: linear-gradient(160deg, #0A1628 0%, #1A2A3F 30%, #2A4055 50%, #B8703A 80%, #D4945A 100%);
  }
  100% {
    background: linear-gradient(160deg, #0A1628 0%, #1A2A3F 20%, #2A4055 40%, #B8703A 70%, #E8A870 100%);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 40px; }
  .hero-right { height: 50vw; min-height: 320px; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-number { display: none; }
  .manifesto, .approach, .destinations { padding: 80px 40px; }
  .approach-grid { grid-template-columns: 1fr; gap: 32px; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card-large, .dest-card-wide { grid-column: span 2; }
  .closing { padding: 80px 40px 100px; }
  .footer { padding: 48px 40px 36px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-note { text-align: left; }
}

@media (max-width: 600px) {
  .hero-left { padding: 48px 24px; }
  .manifesto, .approach, .destinations { padding: 60px 24px; }
  .closing { padding: 60px 24px 80px; }
  .footer { padding: 40px 24px 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card-large, .dest-card-wide { grid-column: span 1; }
  .dest-card { height: 200px; }
}