:root {
  --ink: #141414;
  --muted: #5a6472;
  --line: #dce2ea;
  --panel: #ffffff;
  --soft: #f5f7fa;
  --accent: #e6b447;
  --accent-dark: #94702a;
  --blue: #234d63;
  --green: #2e6f5e;
  --shadow: 0 18px 45px rgba(21, 29, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 226, 234, 0.86);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: 132px;
  height: 54px;
  object-fit: cover;
  object-position: left center;
  border: 1px solid rgba(35, 77, 99, 0.18);
  border-radius: 8px;
  background: #050608;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 28px);
  color: #27313d;
  font-size: 0.94rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: clamp(32px, 7vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0) 0%, rgba(5, 6, 8, 0) 48%, rgba(5, 6, 8, 0.9) 78%),
    #050608 url("assets/flyer-top.png") top center / contain no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(transparent, var(--soft));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  color: #fff;
  padding-bottom: clamp(26px, 5vw, 54px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-logo {
  display: block;
  width: min(420px, 92vw);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-content p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.contact-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-contact,
.contact-list,
.social-links,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-contact {
  margin: 18px 0 20px;
}

.hero-contact a,
.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  font-weight: 800;
}

.hero-contact a {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-list {
  margin-top: 18px;
}

.contact-list a,
.contact-list span {
  color: #26313d;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

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

.button.primary {
  color: #111;
  background: var(--accent);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.35);
}

.section,
.booking-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 28px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(24, 36, 48, 0.06);
}

.package-badge {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #111;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.package-badge.best-value {
  background: #f2c84d;
  box-shadow: 0 0 0 1px rgba(148, 112, 42, 0.35);
}

.package-badge.most-popular {
  color: #fff;
  background: #d82323;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.service-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #2b3641;
  font-size: 0.86rem;
  list-style: none;
}

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

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 999px;
}

.service-card strong {
  color: var(--blue);
  font-size: 2rem;
}

.service-card.featured {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.service-card.featured p,
.service-card.featured strong,
.service-card.featured ul {
  color: rgba(255, 255, 255, 0.9);
}

.service-card.featured li::before {
  background: var(--accent);
}

.feature-band {
  display: grid;
  width: min(1160px, calc(100% - 36px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
  background: #172128;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.feature-band div {
  display: grid;
  gap: 4px;
  padding: 22px;
}

.feature-band strong {
  color: var(--accent);
}

.feature-band span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.payment-section {
  padding-bottom: clamp(40px, 6vw, 76px);
}

.payment-section .section-heading p:not(.eyebrow),
.customer-reviews-section .section-heading p:not(.eyebrow),
.review-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

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

.payment-item {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(24, 36, 48, 0.06);
}

.payment-item span {
  width: fit-content;
  padding: 5px 9px;
  color: #111;
  background: var(--accent);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-item h3 {
  margin-bottom: 0;
  color: var(--blue);
}

.payment-item p {
  margin-bottom: 0;
  color: #2b3641;
  font-weight: 700;
}

.payment-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 0 14px;
  color: #111;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
}

.payment-qr {
  width: min(230px, 100%);
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

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

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

.booking-form {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.review-section {
  padding-top: 0;
}

.customer-reviews-section {
  padding-bottom: clamp(34px, 5vw, 62px);
}

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

.testimonial-card {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(24, 36, 48, 0.06);
}

.testimonial-card p {
  margin-bottom: 0;
  color: #2b3641;
  font-weight: 700;
}

.testimonial-card strong {
  align-self: end;
  color: var(--blue);
}

.stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.review-form {
  display: grid;
  width: min(820px, 100%);
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

label,
legend {
  color: #26313d;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-list,
.check-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.option input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--green);
}

.option span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.option strong {
  white-space: nowrap;
}

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

.estimate {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: #fff;
  background: #172128;
  border-radius: 8px;
}

.estimate div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.estimate span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.estimate strong {
  color: var(--accent);
  font-size: 2rem;
}

.estimate p,
.confirmation {
  margin: 0;
}

.submit-button {
  width: 100%;
  border: 0;
  font-size: 1rem;
}

.confirmation {
  display: none;
  padding: 13px 14px;
  color: #123d2e;
  background: #dff3ea;
  border: 1px solid #a9d9c6;
  border-radius: 8px;
  font-weight: 700;
}

.confirmation.show {
  display: block;
}

.policy-section {
  padding-top: 0;
}

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

.policy-grid article {
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(24, 36, 48, 0.06);
}

.policy-grid p:not(.eyebrow) {
  color: var(--muted);
}

.contact-band {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  padding: clamp(28px, 5vw, 42px);
  color: #fff;
  background: #172128;
  border-radius: 8px;
}

.contact-band h2 {
  margin-bottom: 10px;
}

.contact-band p:not(.eyebrow) {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.bottom-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bottom-contact a {
  color: #fff;
  font-weight: 800;
}

.social-links {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.social-links span {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.contact-actions {
  justify-content: flex-end;
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-card {
    min-height: 190px;
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
    padding: 28px 18px;
  }

  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    position: static;
  }

  .form-grid,
  .service-grid,
  .feature-band,
  .payment-grid,
  .testimonial-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .option {
    grid-template-columns: auto 1fr;
  }

  .option strong {
    grid-column: 2;
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-contact a,
  .contact-list a,
  .contact-list span,
  .contact-actions {
    width: 100%;
  }

  .hero-actions .button.secondary {
    background: rgba(255, 255, 255, 0.2);
  }

  .estimate div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
