:root {
  --bg: #f4f1ea;
  --paper: #fffaf1;
  --surface: #ffffff;
  --ink: #18201c;
  --muted: #687168;
  --line: #ddd5c8;
  --green: #163d34;
  --green-2: #245b4c;
  --sand: #d8bd8a;
  --clay: #9d6045;
  --blue: #344e66;
  --shadow: 0 24px 70px rgba(23, 31, 27, 0.12);
  --radius: 24px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(216, 189, 138, 0.22), transparent 34%),
    linear-gradient(180deg, #f7f3ea 0%, #efe7da 100%);
  color: var(--ink);
  line-height: 1.65;
}

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

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

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 234, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 32, 28, 0.08);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--sand);
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(22, 61, 52, 0.25);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #35413b;
  font-size: 15px;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--green);
  color: #fffaf1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 61, 52, 0.92), rgba(22, 61, 52, 0.62), rgba(22, 61, 52, 0.12)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-home::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -150px;
  background: rgba(216, 189, 138, 0.38);
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  color: #fffaf1;
  max-width: 740px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-copy .eyebrow,
.cta-box .eyebrow {
  color: var(--sand);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(44px, 7vw, 86px);
}

h2 {
  font-size: clamp(32px, 4.4vw, 56px);
}

h3 {
  font-size: 25px;
}

p {
  color: var(--muted);
}

.hero-copy p {
  margin-top: 24px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 19px;
  max-width: 650px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--clay);
  color: #fff;
}

.btn-soft {
  background: rgba(255, 250, 241, 0.14);
  color: #fffaf1;
  border: 1px solid rgba(255, 250, 241, 0.28);
}

.btn-dark {
  background: var(--green);
  color: #fffaf1;
}

.btn-light {
  background: #fffaf1;
  color: var(--green);
}

.booking-card,
.contact-form,
.contact-info,
.feature-panel,
.detail-card,
.offer-card,
.compare-box,
.itinerary {
  background: rgba(255, 250, 241, 0.95);
  border: 1px solid rgba(255, 250, 241, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card {
  padding: 28px;
}

.booking-label {
  display: block;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

label {
  display: grid;
  gap: 7px;
  color: #2c3832;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 15px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8d0c2;
  background: #fff;
  color: var(--ink);
  border-radius: 15px;
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 61, 52, 0.1);
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note {
  font-size: 13px;
  margin-top: 12px;
}

.intro-strip {
  margin-top: -46px;
  position: relative;
  z-index: 5;
}

.strip-grid {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
}

.strip-grid div {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.strip-grid div:last-child {
  border-right: 0;
}

.strip-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.strip-grid span {
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 96px 0;
}

.soft-section {
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.84), rgba(232, 221, 202, 0.75));
  border-top: 1px solid rgba(24, 32, 28, 0.06);
  border-bottom: 1px solid rgba(24, 32, 28, 0.06);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 54px;
  align-items: center;
}

.section-copy p {
  margin-top: 18px;
  font-size: 18px;
}

.feature-panel {
  padding: 32px;
}

.check-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.check-list li {
  padding-left: 31px;
  position: relative;
  color: #39453f;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.stay-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(23, 31, 27, 0.08);
}

.card-image {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.london-img {
  background-image:
    linear-gradient(rgba(22, 61, 52, 0.12), rgba(22, 61, 52, 0.18)),
    url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=1100&q=80");
}

.coast-img {
  background-image:
    linear-gradient(rgba(22, 61, 52, 0.08), rgba(22, 61, 52, 0.2)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1100&q=80");
}

.country-img {
  background-image:
    linear-gradient(rgba(22, 61, 52, 0.08), rgba(22, 61, 52, 0.2)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1100&q=80");
}

.card-body {
  padding: 26px;
}

.card-body span,
.room-tag,
.offer-kicker,
.destination-card span {
  display: inline-block;
  color: var(--clay);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
  margin-bottom: 10px;
}

.card-body p {
  margin: 12px 0 18px;
}

.card-body a {
  color: var(--green);
  font-weight: 900;
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 52px;
}

.experience-list {
  display: grid;
  gap: 16px;
}

.experience-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.experience-item > span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--sand);
  font-weight: 900;
}

.cta-section {
  padding: 90px 0;
}

.cta-box {
  background:
    linear-gradient(135deg, rgba(22, 61, 52, 0.97), rgba(52, 78, 102, 0.88)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 34px;
  color: #fffaf1;
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow);
}

.cta-box p {
  color: rgba(255, 250, 241, 0.78);
  max-width: 670px;
  margin-top: 15px;
}

.page-hero {
  padding: 120px 0 90px;
  background:
    linear-gradient(135deg, rgba(22, 61, 52, 0.94), rgba(52, 78, 102, 0.72)),
    url("https://images.unsplash.com/photo-1531973576160-7125cd663d86?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: #fffaf1;
}

.page-hero p {
  color: rgba(255, 250, 241, 0.8);
  margin-top: 20px;
  font-size: 19px;
}

.destination-hero {
  background:
    linear-gradient(135deg, rgba(22, 61, 52, 0.94), rgba(52, 78, 102, 0.65)),
    url("https://images.unsplash.com/photo-1520986606214-8b456906c813?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.offers-hero {
  background:
    linear-gradient(135deg, rgba(22, 61, 52, 0.94), rgba(157, 96, 69, 0.62)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.contact-hero {
  background:
    linear-gradient(135deg, rgba(22, 61, 52, 0.94), rgba(52, 78, 102, 0.64)),
    url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.detail-card,
.offer-card {
  padding: 34px;
}

.detail-card p,
.offer-card p {
  margin-top: 15px;
}

.detail-card ul,
.offer-card ul {
  margin-top: 18px;
  padding-left: 20px;
  color: #3c4741;
}

.detail-card li,
.offer-card li {
  margin-bottom: 8px;
}

.benefit-stack {
  display: grid;
  gap: 15px;
}

.benefit-stack div {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 18px;
}

.benefit-stack strong,
.benefit-stack span {
  display: block;
}

.benefit-stack span {
  color: var(--muted);
  margin-top: 4px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.destination-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 265px;
  box-shadow: 0 18px 50px rgba(23, 31, 27, 0.08);
}

.destination-card p {
  margin-top: 14px;
}

.itinerary {
  padding: 38px;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.timeline div {
  padding-left: 24px;
  border-left: 3px solid var(--green);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.featured-offer {
  background: var(--green);
  color: #fffaf1;
  transform: translateY(-14px);
}

.featured-offer p,
.featured-offer li {
  color: rgba(255, 250, 241, 0.82);
}

.featured-offer .offer-kicker {
  color: var(--sand);
}

.offer-card .btn {
  margin-top: 24px;
}

.compare-box {
  padding: 30px;
  display: grid;
  gap: 18px;
}

.compare-box div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
}

.compare-box div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 34px;
  align-items: start;
}

.contact-form,
.contact-info {
  padding: 32px;
}

.contact-info p {
  margin-top: 14px;
}

.info-line {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.info-line strong,
.info-line span {
  display: block;
}

.info-line span {
  color: var(--muted);
  margin-top: 4px;
}

.notice {
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  background: #efe6d6;
  color: #4a463f;
  font-size: 14px;
}

.site-footer {
  background: #111a16;
  color: #fffaf1;
  padding: 58px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.8fr;
  gap: 40px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 250, 241, 0.72);
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

.footer-brand {
  margin-bottom: 15px;
}

.site-footer h4 {
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 250, 241, 0.12);
  margin-top: 44px;
  padding: 20px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 84px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-radius: 14px;
  }

  .hero-grid,
  .split,
  .experience-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .booking-card {
    max-width: 560px;
  }

  .strip-grid,
  .card-grid.three,
  .destination-grid,
  .offer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-grid div:last-child {
    border-bottom: 0;
  }

  .featured-offer {
    transform: none;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .main-nav {
    top: 74px;
  }

  .hero,
  .section,
  .cta-section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 88px 0 70px;
  }

  .booking-row,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .booking-card,
  .contact-form,
  .contact-info,
  .detail-card,
  .offer-card,
  .feature-panel,
  .itinerary {
    padding: 24px;
  }

  .experience-item {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }
}