:root {
  color: #17221d;
  background: #f4f3ef;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

.hero {
  color: #fff;
  min-height: 94vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transition: opacity .35s ease;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 24, 20, .91), rgba(7, 24, 20, .65) 49%, rgba(7, 24, 20, .2)),
    linear-gradient(0deg, rgba(7, 24, 20, .76), transparent 42%);
}

nav, .hero-inner { position: relative; z-index: 1; }

nav {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-actions { display: flex; align-items: center; gap: 22px; }
.nav-actions a { color: #fff; text-decoration: none; font-size: 14px; font-weight: 750; }
.nav-actions .nav-cta { border: 1px solid rgba(255, 255, 255, .52); border-radius: 7px; padding: 10px 15px; }
.header-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}
.header-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}

.hero-inner {
  flex: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 64px;
  align-items: center;
}

.hero-copy { max-width: 750px; }
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 850;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, .9);
  font-size: 21px;
  line-height: 1.48;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 750;
}

.planner, .panel, .price-card {
  border: 1px solid rgba(23, 34, 29, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .97);
}

.planner {
  color: #17221d;
  padding: 24px;
  display: grid;
  gap: 17px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.planner-top { display: flex; align-items: center; gap: 12px; }
.planner-top > img {
  width: 42px; height: 42px; border-radius: 7px;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}
.planner-top p { margin-bottom: 2px; color: #68736d; font-size: 12px; }

label { color: #3f4d46; display: grid; gap: 7px; font-size: 13px; font-weight: 750; }
input, textarea {
  width: 100%;
  border: 1px solid #cdd5d0;
  border-radius: 7px;
  background: #fff;
  color: #17221d;
  padding: 12px 13px;
  outline: none;
}
textarea { min-height: 82px; resize: vertical; }
input:focus, textarea:focus { border-color: #176044; box-shadow: 0 0 0 3px rgba(23, 96, 68, .13); }
.field-row { display: grid; grid-template-columns: .7fr 1fr; gap: 12px; }

.primary-button, .secondary-button {
  min-height: 49px;
  border-radius: 7px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 850;
}
.primary-button { border: 0; background: #176044; color: #fff; }
.primary-button:hover { background: #104d36; }
.secondary-button { border: 1px solid #176044; background: #fff; color: #176044; }
.form-note { margin-bottom: 0; text-align: center; color: #758079; font-size: 12px; }

.workspace { background: #f4f3ef; padding: 28px 22px 62px; }
.metrics, .keela-introduction, .destination-preview, .plans-section, .itinerary-panel, .flow-band {
  width: min(1240px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.metrics {
  transform: translateY(-59px);
  margin-bottom: -25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric {
  min-height: 86px;
  background: #fff;
  border: 1px solid rgba(23, 34, 29, .1);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 36px rgba(23, 34, 29, .08);
}
.metric > span { color: #b96636; font-weight: 900; }
.metric p { color: #6d7872; font-size: 13px; margin-bottom: 2px; }
.metric strong { display: block; font-size: 21px; }

.keela-introduction {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 29, .12);
  border-radius: 8px;
  background: #17221d;
  color: #fff;
}

.keela-portrait {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.keela-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

.keela-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 24, 20, .62), transparent 48%);
  pointer-events: none;
}

.keela-portrait span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(12, 28, 23, .78);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 850;
}

.keela-intro-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.keela-intro-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.08;
}

.keela-intro-copy > p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, .83);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55;
}

.keela-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
}

.keela-signature strong { color: #eec467; }

.destination-preview {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  padding: 0;
  min-height: 520px;
}
.destination-media { min-height: 520px; position: relative; overflow: hidden; background: #d9ddd9; }
.destination-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s ease; }
.image-label {
  position: absolute;
  left: 22px; bottom: 22px;
  color: #fff;
  background: rgba(12, 28, 23, .84);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 7px;
  padding: 12px 14px;
}
.image-label span { display: block; margin-bottom: 3px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.destination-copy { padding: 34px; display: flex; flex-direction: column; }

.panel-header { display: flex; align-items: start; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.panel-header h2, .section-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.08;
}
.section-kicker { color: #b96636; }
.pill {
  border-radius: 999px;
  background: #e1f2e8;
  color: #176044;
  padding: 7px 11px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
}
.pill.locked { background: #f2e5d8; color: #8b4c29; }
.pill.paid { background: #e1f2e8; color: #176044; }
.fit-text { color: #46534d; line-height: 1.65; font-size: 17px; }
.finds-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 22px 0; }
.find-card {
  min-height: 78px;
  border: 1px solid #d9dfdb;
  border-radius: 7px;
  padding: 14px;
  display: flex;
  gap: 9px;
  color: #283a32;
  line-height: 1.36;
}
.find-card div { min-width: 0; }
.find-card span { display: block; margin-bottom: 4px; color: #b96636; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.find-card p { margin-bottom: 0; font-weight: 750; }
.sample-day {
  margin: 0 0 14px;
  border: 1px solid #d9dfdb;
  border-radius: 7px;
  overflow: hidden;
  background: #fafbf9;
}
.sample-day-heading {
  padding: 14px 15px;
  border-bottom: 1px solid #d9dfdb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sample-day-heading span { display: block; margin-bottom: 4px; color: #b96636; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.sample-day-heading strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; }
.sample-day-heading small { color: #176044; font-size: 10px; font-weight: 900; white-space: nowrap; }
.sample-stops { display: grid; grid-template-columns: repeat(3, 1fr); }
.sample-stop { min-width: 0; padding: 14px 15px; border-right: 1px solid #e1e5e2; }
.sample-stop:last-child { border-right: 0; }
.sample-stop time { display: block; margin-bottom: 6px; color: #176044; font-size: 11px; font-weight: 900; }
.sample-stop strong { display: block; margin-bottom: 5px; font-size: 13px; line-height: 1.3; }
.sample-stop p { margin-bottom: 0; color: #68736d; font-size: 11px; line-height: 1.45; }
.route-bar {
  margin-top: auto;
  background: #17221d;
  color: #fff;
  border-radius: 7px;
  padding: 15px;
  display: flex;
  gap: 10px;
  line-height: 1.45;
}
.route-bar p { margin-bottom: 0; }

.plans-section { padding: 82px 0 24px; }
.section-heading { max-width: 680px; margin: 0 auto 32px; text-align: center; }
.section-heading > p:last-child { color: #68736d; margin-top: 12px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 430px)); justify-content: center; gap: 18px; }
.price-card { position: relative; padding: 28px; }
.price-card.featured { border-color: #176044; box-shadow: 0 20px 50px rgba(23, 96, 68, .12); }
.popular {
  position: absolute; top: 0; right: 20px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #176044; color: #fff;
  padding: 7px 11px;
  font-size: 11px; font-weight: 850;
}
.plan-label { margin-bottom: 8px; color: #b96636; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.price { font-family: Georgia, "Times New Roman", serif; font-size: 62px; line-height: 1; }
.price span { vertical-align: top; font-family: Inter, sans-serif; font-size: 20px; font-weight: 800; }
.plan-summary { min-height: 52px; margin: 17px 0; color: #5f6b65; line-height: 1.45; }
.price-card ul { min-height: 180px; margin: 0 0 22px; padding: 0; list-style: none; }
.price-card li { position: relative; padding: 9px 0 9px 24px; border-bottom: 1px solid #e4e7e4; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: #176044; font-weight: 900; }
.plan-button { width: 100%; }

.itinerary-panel { margin-top: 34px; padding: 30px; }
.timeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 20px; }
.timeline-item { display: grid; grid-template-columns: 74px 1fr; gap: 13px; border: 1px solid #e0e4e1; border-radius: 7px; padding: 16px; }
.day-badge { height: 36px; border-radius: 7px; background: #edf0ed; color: #46534d; display: grid; place-items: center; font-size: 12px; font-weight: 900; }
.timeline-item h3 { margin-bottom: 6px; font-size: 18px; }
.timeline-item p { color: #66726c; line-height: 1.45; margin-bottom: 10px; }
.locked-detail { border: 1px dashed #ccb8a7; border-radius: 7px; background: #fbf5ef; color: #8b4c29; padding: 10px; display: flex; gap: 8px; line-height: 1.4; font-size: 13px; }
.locked-detail.open { border-style: solid; border-color: #c5dfd1; background: #f0faf5; color: #245440; }
.full-width { width: 100%; }

.flow-band { margin-top: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.flow-band article { min-height: 172px; background: #fff; border: 1px solid rgba(23, 34, 29, .1); border-radius: 8px; padding: 18px; }
.flow-band article > span { width: 40px; height: 40px; border-radius: 7px; background: #edf0ed; display: grid; place-items: center; color: #b96636; margin-bottom: 16px; font-weight: 900; }
.flow-band h3 { margin-bottom: 8px; }
.flow-band p { color: #68736d; line-height: 1.48; margin-bottom: 0; }

@media (max-width: 980px) {
  .hero-inner, .keela-introduction, .destination-preview, .flow-band { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 32px; }
  .planner { max-width: 620px; }
  .metrics { transform: none; margin: 0 auto 18px; }
  .keela-portrait { min-height: 440px; }
  .destination-media { min-height: 440px; }
}

@media (max-width: 700px) {
  nav, .hero-inner { width: min(100% - 28px, 1240px); }
  nav { padding-top: 16px; }
  .nav-actions > a:first-child { display: none; }
  .nav-right { gap: 10px; }
  .header-avatar { width: 43px; height: 43px; flex-basis: 43px; }
  .brand { font-size: 24px; }
  .hero { min-height: auto; }
  .hero-inner { gap: 28px; padding-bottom: 44px; }
  h1 { font-size: 54px; }
  .hero-lede { font-size: 18px; }
  .metrics, .finds-grid, .pricing-grid, .timeline { grid-template-columns: 1fr; }
  .sample-stops { grid-template-columns: 1fr; }
  .sample-stop { border-right: 0; border-bottom: 1px solid #e1e5e2; }
  .sample-stop:last-child { border-bottom: 0; }
  .sample-day-heading { align-items: start; }
  .field-row { grid-template-columns: 1fr; }
  .destination-copy, .itinerary-panel { padding: 20px; }
  .keela-intro-copy { padding: 26px 20px; }
  .keela-intro-copy h2 { font-size: 31px; }
  .keela-portrait { min-height: 360px; }
  .panel-header { flex-direction: column; }
  .timeline-item { grid-template-columns: 1fr; }
  .destination-media { min-height: 330px; }
  .price-card ul, .plan-summary { min-height: auto; }
}
