:root {
  --navy-950: #030913;
  --navy-900: #07111f;
  --navy-850: #0a1626;
  --navy-800: #0e1d31;
  --navy-700: #172a43;
  --blue-300: #9bb5d2;
  --cream: #f5f3ed;
  --white: #ffffff;
  --muted: #9aa9ba;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.045);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --radius: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-950);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  color: var(--blue-300);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.25;
}

.button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 999px;
  color: var(--navy-950);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-small {
  min-height: 43px;
  padding: 0 19px;
}

.button-outline {
  background: transparent;
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--navy-950);
}

.button-light {
  background: var(--cream);
  border-color: var(--cream);
}

.button-full {
  width: 100%;
}

/* Header */
.site-header {
  background: rgba(3, 9, 19, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.navbar {
  align-items: center;
  display: flex;
  height: 78px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.02em;
}

.brand-mark {
  border-radius: 50%;
  height: 34px;
  object-fit: cover;
  width: 34px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 30px;
}

.nav-links > a:not(.button) {
  color: #d8e0e9;
  font-size: 0.91rem;
}

.nav-links > a:not(.button):hover {
  color: var(--white);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 8px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

/* Hero */
.hero {
  align-items: center;
  background-image: url("../assets/images/land-rover-coffee.png");
  background-position: center 45%;
  background-size: cover;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 125px 0 70px;
  position: relative;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 9, 19, 0.98) 0%, rgba(3, 9, 19, 0.86) 46%, rgba(3, 9, 19, 0.3) 100%),
    linear-gradient(0deg, rgba(3, 9, 19, 0.82) 0%, transparent 45%);
  inset: 0;
  position: absolute;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7.5rem);
  letter-spacing: -0.055em;
  margin: 18px 0 25px;
  max-width: 900px;
}

.hero-copy {
  color: #c4ced9;
  font-size: 1.08rem;
  max-width: 630px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 34px;
}

.text-link {
  font-weight: 600;
}

.text-link span {
  margin-left: 6px;
  transition: margin-left 180ms ease;
}

.text-link:hover span {
  margin-left: 12px;
}

.hero-stats {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 60px;
  margin-top: 85px;
  max-width: 730px;
  padding-top: 24px;
}

.hero-stats div {
  display: grid;
  gap: 2px;
}

.hero-stats strong {
  font-size: 1.1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.scroll-indicator {
  bottom: 34px;
  color: var(--muted);
  font-size: 1.35rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

/* About */
.about {
  background: var(--cream);
  color: var(--navy-950);
}

.split-layout {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
}

.about .eyebrow {
  color: #48637f;
}

.section-heading h2 {
  margin-top: 16px;
}

.about-copy {
  font-size: 1.05rem;
}

.about-copy p + p {
  margin-top: 22px;
}

.about-copy .lead {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  line-height: 1.42;
}

blockquote {
  border-left: 2px solid var(--navy-700);
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  margin-top: 34px;
  padding-left: 24px;
}

/* Media */
.media-section {
  background: var(--navy-900);
}

.media-grid {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: 1.05fr 0.95fr;
}

.media-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.media-card-large {
  height: 650px;
}

.media-card-small {
  height: 350px;
  margin-left: 18%;
  width: 82%;
}

.media-content {
  padding: 20px 0 20px 35px;
}

.media-content h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  margin: 16px 0 44px;
}

.feature-list {
  display: grid;
  gap: 0;
}

.feature-list article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr;
  padding: 25px 0;
}

.feature-number {
  color: var(--blue-300);
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-list h3 {
  margin-bottom: 7px;
}

.feature-list p {
  color: var(--muted);
}

/* Packages */
.packages {
  background: var(--navy-950);
}

.section-heading.centered {
  margin: 0 auto 58px;
  max-width: 760px;
  text-align: center;
}

.section-heading.centered h2 {
  margin-bottom: 20px;
}

.section-heading.centered > p:last-child {
  color: var(--muted);
}

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

.package-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 34px;
  position: relative;
}

.package-card.featured {
  background: var(--navy-800);
  border-color: rgba(155, 181, 210, 0.45);
  transform: translateY(-12px);
}

.popular-badge {
  background: var(--white);
  border-radius: 999px;
  color: var(--navy-950);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 7px 13px;
  position: absolute;
  right: 24px;
  top: 22px;
}

.package-label {
  color: var(--blue-300);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 12px 0;
}

.package-description {
  color: var(--muted);
  min-height: 84px;
}

.package-price {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  margin: 26px 0;
  padding: 23px 0;
}

.package-price span,
.package-price small {
  color: var(--muted);
}

.package-price strong {
  font-size: 1.35rem;
}

.package-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-bottom: 30px;
}

.package-card li {
  color: #c5cfda;
  padding-left: 22px;
  position: relative;
}

.package-card li::before {
  color: var(--blue-300);
  content: "✓";
  left: 0;
  position: absolute;
}

.package-card .button {
  margin-top: auto;
}

/* Process */
.process {
  background: var(--cream);
  color: var(--navy-950);
}

.process .eyebrow {
  color: #48637f;
}

.process-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  border-top: 1px solid rgba(3, 9, 19, 0.2);
  padding-top: 24px;
}

.process-grid span {
  color: #5e7691;
  font-weight: 700;
}

.process-grid h3 {
  font-size: 1.1rem;
  margin: 30px 0 10px;
}

.process-grid p {
  color: #536170;
}

/* Booking */
.booking {
  background:
    radial-gradient(circle at 12% 10%, rgba(58, 91, 128, 0.22), transparent 28%),
    var(--navy-900);
}

.booking-layout {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: 0.8fr 1.2fr;
}

.booking-intro {
  position: sticky;
  top: 120px;
}

.booking-intro h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  margin: 16px 0 25px;
}

.booking-intro > p {
  color: var(--muted);
}

.contact-card {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin-top: 38px;
  padding-top: 25px;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.booking-form {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px;
}

.form-progress {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 34px;
}

.form-progress span {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 99px;
  height: 3px;
}

.form-progress span.active {
  background: var(--white);
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 19px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
}

.form-group small {
  color: var(--muted);
}

input,
select,
textarea {
  background: rgba(3, 9, 19, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  outline: none;
  padding: 14px 15px;
  width: 100%;
}

input,
select {
  min-height: 52px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(155, 181, 210, 0.13);
}

select option {
  color: #111;
}

.checkbox-row {
  align-items: flex-start;
  color: #c4ced9;
  display: flex;
  font-size: 0.88rem;
  gap: 11px;
  margin: 5px 0 22px;
}

.checkbox-row input {
  min-height: auto;
  margin-top: 5px;
  width: auto;
}

.form-note {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 15px;
  text-align: center;
}

.form-note code {
  color: #dce7f2;
}

.form-message {
  border-radius: 12px;
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
}

.form-message.success {
  background: rgba(90, 180, 130, 0.15);
  border: 1px solid rgba(90, 180, 130, 0.35);
  display: block;
}

.form-message.error {
  background: rgba(220, 85, 85, 0.15);
  border: 1px solid rgba(220, 85, 85, 0.35);
  display: block;
}

/* CTA + Footer */
.final-cta {
  background: var(--navy-800);
  padding: 80px 0;
}

.final-cta-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.final-cta h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-top: 14px;
}

.site-footer {
  background: #02060c;
  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 2fr 1fr 1fr;
}

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

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid > div:not(:first-child) {
  display: grid;
  gap: 9px;
}

.footer-grid h3 {
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: #687788;
  display: flex;
  font-size: 0.8rem;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 22px;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
    z-index: 102;
  }

  .nav-links {
    align-items: flex-start;
    background: var(--navy-950);
    display: none;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    padding: 40px;
    position: fixed;
    z-index: 101;
  }

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

  .nav-links > a {
    font-size: 1.35rem !important;
  }

  .split-layout,
  .media-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .media-content {
    padding-left: 0;
  }

  .media-card-small {
    margin-left: 0;
    width: 100%;
  }

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

  .package-card.featured {
    transform: none;
  }

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

  .booking-intro {
    position: static;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 880px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(3, 9, 19, 0.98) 0%, rgba(3, 9, 19, 0.77) 78%, rgba(3, 9, 19, 0.48) 100%);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stats {
    gap: 24px;
    justify-content: space-between;
  }

  .split-layout {
    gap: 45px;
  }

  .media-card-large {
    height: 520px;
  }

  .media-card-small {
    height: 430px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 24px 18px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}


/* ==============================
   LOCATION AND MAP SECTION
================================ */

.location-section {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(58, 91, 128, 0.18),
      transparent 30%
    ),
    var(--navy-950);
}

.location-layout {
  align-items: center;
  display: grid;
  gap: 65px;
  grid-template-columns: 0.85fr 1.15fr;
}

.location-content h2 {
  margin: 16px 0 25px;
}

.location-content > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.location-intro {
  color: #dbe4ed !important;
  font-size: 1.08rem;
}

.location-details {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  margin: 32px 0;
  padding: 27px 0;
}

.location-detail {
  display: grid;
  gap: 4px;
}

.location-detail span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location-detail strong {
  font-size: 1.02rem;
}

.map-container {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  display: block;
  filter: grayscale(25%) contrast(95%);
  width: 100%;
}

@media (max-width: 960px) {
  .location-layout {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 430px;
  }
}

@media (max-width: 650px) {
  .location-layout {
    gap: 40px;
  }

  .map-container iframe {
    height: 350px;
  }

  .location-content .button {
    width: 100%;
  }
}
