:root {
  --ink: #17211d;
  --muted: #5d6a64;
  --paper: #f7f4ed;
  --white: #fffdf8;
  --sage: #7c9b83;
  --sage-dark: #263f35;
  --teal: #145f8d;
  --gold: #d8a64f;
  --rail-blue: #145f8d;
  --signal-red: #c94d43;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 22px 70px rgba(23, 33, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 54px rgba(21, 30, 27, 0.13);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 184px;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.7);
}

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

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

.brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #31423b;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a:hover {
  background: rgba(48, 79, 62, 0.09);
}

.header-action {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--signal-red);
}

.header-action svg,
.icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 1000px;
  overflow: hidden;
  color: var(--white);
  background: #1e3028;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 28, 38, 0.88) 0%, rgba(15, 39, 47, 0.64) 38%, rgba(19, 47, 55, 0.22) 78%),
    linear-gradient(180deg, rgba(12, 28, 38, 0.18), rgba(12, 28, 38, 0.62));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 188px 0 180px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--signal-red);
  box-shadow: 0 16px 36px rgba(201, 77, 67, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.62);
  background: rgba(255, 253, 248, 0.1);
}

.button.secondary.dark {
  color: var(--sage-dark);
  border-color: rgba(48, 79, 62, 0.32);
  background: rgba(255, 253, 248, 0.64);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 100px;
  width: min(360px, calc(100% - 48px));
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  background: rgba(23, 33, 29, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel p,
.hero-panel strong,
.hero-panel span {
  display: block;
  margin: 0;
}

.hero-panel p {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel strong {
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.hero-panel span {
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.8);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-strip::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--rail-blue), var(--signal-red), var(--gold));
  content: "";
}

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

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

.quick-strip span {
  display: block;
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 900;
}

.quick-strip p {
  margin: 4px 0 0;
  color: var(--muted);
}

.section-pad {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  padding-bottom: 42px;
}

.services {
  padding-top: 42px;
}

.depot-services {
  margin-top: 34px;
  color: var(--white);
  background: #050505;
  box-shadow: 0 0 0 100vmax #050505;
  clip-path: inset(0 -100vmax);
}

.depot-services .section-heading p {
  color: rgba(255, 253, 248, 0.76);
}

.depot-services .service-card {
  color: var(--ink);
  background: var(--white);
}

.depot-services .service-card h3 {
  margin-top: 0;
  color: var(--ink);
}

.depot-services .service-card p {
  color: var(--muted);
}

.insider-section {
  color: var(--white);
  background: var(--sage-dark);
  box-shadow: 0 0 0 100vmax var(--sage-dark);
  clip-path: inset(0 -100vmax);
}

.insider-section .section-heading p {
  color: rgba(255, 253, 248, 0.78);
}

.intro-grid,
.section-heading,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 52px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.booking-copy p,
.visit-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.visit-copy p + p {
  margin-top: 16px;
}

.service-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-card,
.plan,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 36px rgba(23, 33, 29, 0.07);
}

.service-card {
  padding: 26px;
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal);
  background: rgba(15, 107, 114, 0.1);
}

.service-card h3,
.plan h3 {
  margin: 22px 0 10px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.service-card p,
.plan p {
  margin: 0;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  color: #3d4b45;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal-red);
  content: "";
}

.local-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 60px;
  align-items: center;
  padding: 78px max(20px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: var(--sage-dark);
}

.local-copy h2 {
  max-width: 760px;
}

.local-list {
  display: grid;
  gap: 12px;
}

.local-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  color: rgba(255, 253, 248, 0.84);
  background: rgba(255, 253, 248, 0.08);
}

.plan {
  padding: 24px;
}

.plan span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 8px;
  padding: 5px 10px;
  color: var(--teal);
  background: rgba(15, 107, 114, 0.1);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.plan strong {
  display: block;
  margin-top: 24px;
  font-size: 1.1rem;
}

.plan.featured {
  color: var(--white);
  background: var(--rail-blue);
}

.plan.featured p,
.plan.featured span {
  color: rgba(255, 253, 248, 0.82);
}

.plan.featured span {
  background: rgba(255, 253, 248, 0.14);
}

.booking {
  align-items: stretch;
}

.booking-copy dl {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
}

.booking-copy dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.booking-copy dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-copy dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #3c4944;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 33, 29, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

.booking-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.visit {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
  padding: 88px max(20px, calc((100vw - 1120px) / 2));
  background: #e8efe9;
}

.map-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(48, 79, 62, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(216, 166, 79, 0.24), rgba(20, 95, 141, 0.22)),
    #f5f2ea;
  box-shadow: 0 18px 46px rgba(23, 33, 29, 0.1);
}

.map-grid {
  position: absolute;
  inset: -40px;
  opacity: 0.5;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(38, 63, 53, 0.25) 48%, rgba(38, 63, 53, 0.25) 52%, transparent 53%),
    linear-gradient(100deg, transparent 47%, rgba(20, 95, 141, 0.22) 48%, rgba(20, 95, 141, 0.22) 52%, transparent 53%);
  background-size: 96px 96px, 118px 118px;
}

.pin {
  position: absolute;
  top: 46%;
  left: 52%;
  width: 28px;
  height: 28px;
  border: 6px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--signal-red);
  box-shadow: 0 8px 22px rgba(23, 33, 29, 0.24);
  transform: rotate(-45deg);
}

.map-card p {
  position: absolute;
  right: 22px;
  bottom: 20px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--sage-dark);
  background: rgba(255, 253, 248, 0.82);
  font-weight: 900;
}

.visit-copy .button {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 30px max(20px, calc((100vw - 1120px) / 2));
  color: rgba(255, 253, 248, 0.76);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 900;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-email {
  color: rgba(255, 253, 248, 0.92);
  text-decoration: none;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 850;
}

.social-link:hover {
  background: rgba(255, 253, 248, 0.1);
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 680px);
  }

  .nav-links {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 950px;
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    padding: 146px 0 140px;
  }

  .hero-panel {
    right: 16px;
    bottom: 90px;
    left: 16px;
    width: auto;
  }

  .quick-strip,
  .intro-grid,
  .section-heading,
  .service-grid,
  .plan-grid,
  .booking,
  .local-band,
  .visit {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    width: min(100% - 32px, 620px);
  }

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

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

  .section-pad {
    width: min(100% - 32px, 620px);
    padding: 72px 0;
  }

  .intro {
    padding-bottom: 34px;
  }

  .services {
    padding-top: 34px;
  }

  .local-band,
  .visit {
    gap: 32px;
    padding-top: 66px;
    padding-bottom: 66px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 10px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .brand-mark,
  .header-action {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-card,
  .plan,
  .booking-form {
    padding: 22px;
  }
}
