:root {
  --ink: #111315;
  --charcoal: #202428;
  --ash: #f4f1ec;
  --paper: #fffdf8;
  --line: #d9d3c8;
  --ocean: #1457c4;
  --pool: #23b8b0;
  --citrus: #f2c94c;
  --coral: #ec6a4b;
  --white: #ffffff;
  --muted: #65615a;
  --shadow: 0 22px 70px rgba(17, 19, 21, 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%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  background: rgba(17, 19, 21, 0.78);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.contact-panel,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: var(--ink);
  background: var(--citrus);
  font-size: 0.82rem;
}

.nav-links {
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.92rem;
}

.nav-links a,
.header-cta,
.footer-links a {
  text-decoration: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

.header-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 38% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.9) 0%, rgba(17, 19, 21, 0.62) 42%, rgba(17, 19, 21, 0.08) 100%),
    linear-gradient(0deg, rgba(17, 19, 21, 0.7) 0%, rgba(17, 19, 21, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
  padding: clamp(64px, 9vh, 104px) clamp(20px, 5vw, 72px) 132px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--citrus);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6.5vw, 5.75rem);
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--ink);
  background: var(--citrus);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 22px;
  left: clamp(20px, 5vw, 72px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-proof span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(17, 19, 21, 0.58);
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(12px);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

section {
  scroll-margin-top: 88px;
}

.band-light {
  background: var(--ash);
}

.band-dark {
  color: var(--white);
  background: var(--charcoal);
}

.band-coral {
  background: #fff1e7;
}

.intro,
.services,
.work,
.equipment,
.about,
.booking {
  padding: clamp(58px, 8vw, 110px) 0;
}

.intro-grid,
.equipment-grid,
.about-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.intro p,
.about-copy p,
.equipment-copy p,
.booking p,
.section-heading p,
.feature-copy p,
.package-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.band-dark .section-heading p,
.band-dark .feature-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 740px;
  margin-bottom: 32px;
}

.section-heading p {
  margin: 0;
}

.discount-banner {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(20, 87, 196, 0.16);
  border-radius: 8px;
  background: rgba(20, 87, 196, 0.08);
  color: var(--charcoal);
  font-weight: 700;
}

.discount-banner strong {
  color: var(--ocean);
}

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(17, 19, 21, 0.06);
}

.featured-package {
  border-color: rgba(20, 87, 196, 0.5);
  box-shadow: var(--shadow);
}

.package-badge {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ocean);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.package-topline span {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 22px;
  padding-left: 19px;
}

.package-card li::marker {
  color: var(--pool);
}

.price-row {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price-label {
  color: var(--muted);
  font-weight: 700;
}

.price-values {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.original-price {
  color: var(--muted);
  font-weight: 700;
  text-decoration: line-through;
}

.price-row strong {
  font-size: 1.15rem;
}

.addon-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.addon-strip span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 700;
}

.addon-strip span:first-child {
  color: var(--white);
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.feature-work {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-bottom: 28px;
}

.feature-work img,
.equipment-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-work img {
  object-position: 30% center;
}

.feature-copy {
  display: grid;
  gap: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid figure:nth-child(3) img {
  object-position: 35% center;
}

figcaption {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.interior-proof {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.interior-proof img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 42%;
}

.interior-proof p {
  color: rgba(255, 255, 255, 0.72);
}

.interior-proof .eyebrow {
  color: var(--citrus);
}

.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.equipment-list span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.team-photo {
  display: grid;
  gap: 10px;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 18%;
  box-shadow: var(--shadow);
}

.team-photo figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.booking-grid {
  align-items: start;
}

.contact-panel {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 28px;
}

.contact-panel a {
  padding: 14px 15px;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

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

.site-footer {
  padding: 28px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-image {
    object-position: 35% center;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-proof,
  .intro-grid,
  .equipment-grid,
  .about-grid,
  .booking-grid,
  .feature-work,
  .interior-proof,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100% - 40px, 1180px);
    margin: -112px auto 26px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content {
    padding: 56px 20px 90px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.75rem);
  }

  .hero-proof {
    display: none;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .intro,
  .services,
  .work,
  .equipment,
  .about,
  .booking {
    padding: 52px 0;
  }

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

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
