:root {
  --ink: #141b22;
  --muted: #5a6873;
  --line: #c8c2b6;
  --paper: #e8e2d6;
  --white: #ffffff;
  --sun: #f0c23c;
  --sun-deep: #b88a2a;
  --teal: #1f8076;
  --teal-dark: #155f57;
  --blue: #b88a2a;
  --charcoal: #151d24;
  --cream: #f5f1e8;
  --shadow: 0 20px 50px rgba(20, 27, 34, 0.2);
  --radius: 8px;
}

* {
  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%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(245, 241, 232, 0.94);
  border-bottom: 1px solid rgba(20, 27, 34, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  width: clamp(168px, 16vw, 210px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

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

.nav-cta {
  padding: 9px 13px;
  border-radius: var(--radius);
  color: var(--white) !important;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: min(620px, calc(100vh - 72px));
  padding: clamp(38px, 5vw, 66px) clamp(18px, 5vw, 72px) clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 84% 18%, rgba(240, 194, 60, 0.22), transparent 32%),
    linear-gradient(120deg, #10171e 0%, #18232c 54%, #20323a 100%);
}

.hero-copy {
  max-width: 680px;
}

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

.hero .eyebrow {
  color: #91d9cf;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.9rem, 5.1vw, 4.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  color: #f7f4ed;
}

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

h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: #c9d3d8;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 12px 26px rgba(240, 194, 60, 0.2);
}

.button-primary:hover {
  background: #ffd664;
}

.button-secondary {
  color: #f7f4ed;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-small {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.submit-button {
  width: min(100%, 360px);
  border: 0;
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #f7f4ed;
}

.hero-stats dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: #b8c4ca;
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  display: block;
  min-height: 360px;
  padding: clamp(16px, 2.5vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(150deg, #fffdf7 0%, #f3efe6 58%, #ffe38d 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: auto 12% 10% 12%;
  height: 26px;
  border-radius: 999px;
  background: rgba(23, 32, 42, 0.16);
  filter: blur(12px);
}

.service-preview {
  color: var(--ink);
}

.preview-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-top img {
  width: min(54%, 220px);
}

.preview-top span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #f7f4ed;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-title {
  position: relative;
  max-width: 440px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  font-weight: 900;
  line-height: 1.02;
}

.preview-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(20, 27, 34, 0.14);
  border-radius: var(--radius);
  background: rgba(20, 27, 34, 0.14);
}

.preview-grid div {
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.58);
}

.preview-grid strong,
.preview-grid span {
  display: block;
}

.preview-grid strong {
  font-size: 1.75rem;
  line-height: 1;
}

.preview-grid span {
  margin-top: 6px;
  color: #46525c;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-preview ul {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: #46525c;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #29323b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip p {
  margin: 0;
  padding: 18px;
  background: #141b22;
  color: #f7f4ed;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 830px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.intro-grid article,
.package,
.service-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.intro-grid article {
  padding: 24px;
}

.intro-grid p,
.package p,
.package li,
.service-panel li,
.steps p,
.faq-list p,
.service-copy p {
  color: var(--muted);
}

.package-section {
  background: #151d24;
  color: #f7f4ed;
}

.package-section .eyebrow {
  color: #91d9cf;
}

.package-section .section-heading p:not(.eyebrow),
.package-section .package-note {
  color: #c3cdd2;
}

.package-section .package p,
.package-section .package li {
  color: #c3cdd2;
}

.packages {
  align-items: stretch;
}

.package {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #10171e;
}

.package-featured {
  border-color: rgba(240, 194, 60, 0.5);
  background: #1b2831;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.package-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.price {
  margin: 0;
  color: var(--sun);
  font-size: 2rem;
  font-weight: 900;
}

.package ul,
.service-panel ul {
  padding-left: 20px;
}

.package-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: #405261;
  font-weight: 700;
}

.how-section {
  background: #f0ebe1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 22px;
  border-left: 4px solid var(--sun);
  background: var(--cream);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--sun);
  font-weight: 900;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  background: #ded7ca;
}

.service-copy p {
  max-width: 700px;
  font-size: 1.08rem;
}

.service-panel {
  padding: 26px;
  border-top: 6px solid var(--sun);
  box-shadow: 0 18px 42px rgba(20, 27, 34, 0.08);
}

.service-photo {
  width: 100%;
  max-height: 250px;
  margin: 18px 0 4px;
  object-fit: cover;
  object-position: center 54%;
  border-radius: var(--radius);
}

.booking-section {
  background: #162028;
  color: var(--white);
}

.booking-section .eyebrow {
  color: #8de1d5;
}

.booking-section .section-heading p:not(.eyebrow) {
  color: #c7d3dc;
}

.booking-form {
  display: grid;
  gap: 18px;
  max-width: 1080px;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(216, 225, 232, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

legend {
  padding: 0 8px;
  font-weight: 900;
}

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

label {
  display: grid;
  gap: 7px;
  color: #eaf1f4;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(216, 225, 232, 0.42);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #eaf1f4;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  flex: 0 0 18px;
}

.same-pickup {
  margin-bottom: 16px;
}

.estimate {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(245, 200, 66, 0.15);
  color: #fff2bd;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.faq-section {
  background: #e0d8ca;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

summary {
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #d6e1e8;
  background: #10161b;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  color: var(--white);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-links a {
  color: #d6e1e8;
  text-decoration: none;
}

.response-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  background: linear-gradient(145deg, #f0ebe1, #ded7ca);
}

.response-panel {
  width: min(100%, 720px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.response-panel h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

.response-panel p,
.response-panel li {
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .hero,
  .service-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 300px;
  }

  .intro-grid,
  .packages,
  .steps,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 10px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 18px;
    gap: 18px;
  }

  h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-media {
    display: none;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats,
  .intro-grid,
  .packages,
  .steps,
  .trust-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .package {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: min(100%, 188px);
  }

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

  .package-top {
    display: block;
  }
}
