:root {
  --ink: #17211d;
  --muted: #65736c;
  --line: #dfe7e2;
  --paper: #f7f4ec;
  --white: #ffffff;
  --green: #176b5d;
  --green-dark: #12352d;
  --green-soft: #e7f3ee;
  --terracotta: #d9654b;
  --gold: #c79b4b;
  --sand: #efe5d2;
  --sky: #dbeff1;
  --shadow: 0 22px 60px rgba(18, 53, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 236, 0.9);
  border-bottom: 1px solid rgba(223, 231, 226, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-logo-wrap {
  display: block;
  width: clamp(138px, 13vw, 190px);
  height: 68px;
  padding: 3px;
  overflow: visible;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: #35443e;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 2px;
}

.nav-links a:hover {
  color: var(--green);
}

.primary-button,
.secondary-button,
.ghost-button,
.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 850;
  border: 0;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.primary-button,
.nav-action {
  color: var(--white);
  background: var(--terracotta);
  box-shadow: 0 16px 30px rgba(217, 101, 75, 0.26);
}

.secondary-button {
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(23, 107, 93, 0.24);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.nav-action:hover {
  transform: translateY(-1px);
}

svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.25;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1900&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 53, 45, 0.88), rgba(18, 53, 45, 0.55) 50%, rgba(18, 53, 45, 0.18)),
    linear-gradient(0deg, rgba(18, 53, 45, 0.9), rgba(18, 53, 45, 0.08) 58%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  width: min(1240px, calc(100% - 36px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 118px) 0 48px;
  color: var(--white);
}

.hero-copy-block {
  padding-bottom: 32px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd7c7;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-shell {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-intro {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
  align-items: end;
  padding: 24px 26px 12px;
}

.booking-intro h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.booking-intro p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-search {
  padding: 0 26px 26px;
}

.tpwl-panel {
  margin: 0 26px 22px;
  padding: 16px;
  min-height: 118px;
  border: 1px solid rgba(23, 107, 93, 0.16);
  border-radius: 14px;
  background: #f7faf8;
}

#tpwl-search {
  min-height: 86px;
}

.booking-tabs {
  display: flex;
  gap: 4px;
  padding: 10px 0 0;
  margin-bottom: 20px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.booking-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  color: #4c5c55;
  background: transparent;
  font-weight: 800;
}

.booking-tab::after {
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 3px;
  content: "";
  background: transparent;
  border-radius: 999px;
}

.booking-tab.active {
  color: var(--green-dark);
}

.booking-tab.active::after {
  background: var(--terracotta);
}

.service-description {
  margin-bottom: 18px;
  color: var(--muted);
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.booking-fields .field:nth-child(1),
.booking-fields .field:nth-child(2) {
  grid-column: span 2;
}

.booking-fields .field:nth-child(3),
.booking-fields .field:nth-child(4),
.booking-fields .field:nth-child(5),
.booking-fields .field:nth-child(6) {
  grid-column: span 3;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #3a4741;
  font-size: 0.8rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  outline: none;
  box-shadow: 0 8px 20px rgba(18, 53, 45, 0.05);
}

.field textarea {
  min-height: 128px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 107, 93, 0.14);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.integration-button {
  min-width: 210px;
}

.booking-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.search-summary {
  min-height: 28px;
  margin-top: 12px;
  padding: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.search-summary:not(:empty) {
  padding: 12px 14px;
  border: 1px solid rgba(23, 107, 93, 0.18);
  border-radius: 10px;
  background: var(--green-soft);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-band div {
  display: grid;
  gap: 5px;
  padding: 28px clamp(18px, 5vw, 56px);
  background: var(--white);
}

.stats-band strong {
  color: var(--green-dark);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
}

.flight-results-section {
  background: #fbfaf6;
}

.tpwl-results-panel,
.tpwl-widget-weedle {
  border: 1px solid rgba(223, 231, 226, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(18, 53, 45, 0.08);
}

.tpwl-results-panel {
  width: min(1180px, 100%);
  min-height: 180px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
}

#tpwl-tickets {
  min-height: 120px;
}

.tpwl-destinations-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(247, 244, 236, 0.95)),
    var(--paper);
}

.tpwl-widget-weedles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.tpwl-widget-weedle {
  display: grid;
  place-items: center;
  min-height: 238px;
  overflow: hidden;
}

.section,
.traveler-band,
.contact-section {
  padding: clamp(62px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-heading,
.benefit-grid,
.rural-grid,
.trip-grid,
.traveler-grid,
.inspiration,
.faq-grid,
.contact-section {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: end;
}

.benefit-grid,
.club-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card,
.trip-card,
.rural-card,
.contact-form,
.faq-grid details {
  border: 1px solid rgba(223, 231, 226, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(18, 53, 45, 0.08);
}

.benefit-card {
  padding: 24px;
}

.benefit-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--terracotta);
}

.benefit-card h3,
.trip-card h3,
.rural-card h3 {
  margin-bottom: 8px;
}

.benefit-card p,
.trip-card p,
.rural-card p,
.contact-copy p,
.inspiration-copy p,
.faq-grid p {
  color: var(--muted);
}

.rural-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(231, 243, 238, 0.72)),
    var(--paper);
}

.travel-widget-panel {
  width: min(1180px, 100%);
  margin: 0 auto 26px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(223, 231, 226, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(18, 53, 45, 0.08);
}

.widget-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.widget-heading h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.widget-frame {
  min-height: 220px;
  overflow: hidden;
  border-radius: 12px;
}

.rural-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rural-card {
  overflow: hidden;
}

.rural-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.rural-card div {
  padding: 20px;
}

.rural-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  color: var(--green-dark);
  border-radius: 999px;
  background: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.trips-section {
  background: #fbfaf6;
}

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow-x: auto;
}

.segment {
  min-width: max-content;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  font-weight: 850;
}

.segment.active {
  color: var(--white);
  background: var(--green-dark);
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trip-card {
  overflow: hidden;
}

.trip-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.trip-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.trip-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trip-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #405149;
  background: #f7faf8;
  font-size: 0.82rem;
  font-weight: 750;
}

.trip-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.trip-price strong {
  color: var(--green-dark);
  font-size: 1.18rem;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: var(--terracotta);
  background: transparent;
  font-weight: 900;
}

.traveler-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 53, 45, 0.96), rgba(23, 107, 93, 0.92)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
}

.traveler-band .eyebrow {
  color: #ffd7c7;
}

.traveler-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.traveler-tile {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 148px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.traveler-tile:hover,
.traveler-tile.active {
  background: var(--terracotta);
}

.traveler-tile svg {
  width: 28px;
  height: 28px;
}

.inspiration {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.inspiration-copy {
  padding: 18px 0;
}

.tag-row {
  margin-top: 24px;
}

.quote-panel {
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: 340px;
  padding: 34px;
  color: var(--white);
  border-radius: 18px;
  background:
    linear-gradient(0deg, rgba(18, 53, 45, 0.74), rgba(18, 53, 45, 0.74)),
    url("https://images.unsplash.com/photo-1499678329028-101435549a4e?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.quote-panel svg {
  width: 42px;
  height: 42px;
  color: #ffd7c7;
}

.quote-panel blockquote {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.08;
}

.faq-section {
  background: #fffaf1;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-grid details {
  padding: 20px;
}

.faq-grid summary {
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
}

.faq-grid p {
  margin: 12px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(231, 243, 238, 0.96), rgba(247, 244, 236, 0.98)),
    var(--green-soft);
}

.contact-copy {
  padding-top: 12px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 850;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #111c18;
}

.footer strong,
.footer span {
  display: block;
}

.footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  color: #ffd7c7;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-copy-block {
    max-width: 840px;
    padding-bottom: 0;
  }

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

  .booking-fields .field:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .booking-intro,
  .section-heading.split,
  .benefit-grid,
  .widget-heading,
  .tpwl-widget-weedles,
  .rural-grid,
  .trip-grid,
  .inspiration,
  .faq-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .widget-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .stats-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    gap: 12px;
  }

  .brand small,
  .nav-action {
    display: none;
  }

  .brand-logo-wrap {
    width: 112px;
    height: 52px;
    padding: 2px;
  }

  .brand-logo {
    width: 100%;
  }

  .hero-content {
    width: min(100% - 28px, 1240px);
    padding-top: 52px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .booking-shell {
    border-radius: 14px;
  }

  .booking-intro,
  .booking-search {
    padding-right: 16px;
    padding-left: 16px;
  }

  .tpwl-panel {
    margin-right: 16px;
    margin-left: 16px;
  }

  .booking-fields {
    grid-template-columns: 1fr;
  }

  .booking-actions,
  .hero-actions,
  .trip-price,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .ghost-button {
    width: 100%;
  }

  .traveler-grid {
    grid-template-columns: 1fr;
  }
}
