:root {
  color-scheme: light;
  --accent: #f26a21;
  --accent-dark: #c84d12;
  --forest: #1f5d4a;
  --ink: #111113;
  --muted: #626976;
  --line: #e4e7ec;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --night: #111722;
  --gold: #f5b544;
  --shadow: 0 18px 42px rgba(17, 23, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.75rem 5vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-logo {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  max-height: 48px;
  padding: 0.28rem 0.45rem;
  border-radius: 8px;
  background: #050505;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: #303642;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 0.35rem 0;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.15;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover,
.btn-accent:focus {
  background: var(--accent-dark);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: rgba(17, 17, 19, 0.16);
}

.hero {
  min-height: 76vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.hero-overlay {
  display: flex;
  min-height: 76vh;
  align-items: center;
  padding: 5rem 5vw 4rem;
}

.hero-content {
  width: min(680px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.quick-booking h2,
.story-layout h2,
.contact-band h2,
.modal-heading h2 {
  margin: 0;
  line-height: 1.08;
  font-weight: 850;
}

.hero h1 {
  max-width: 11ch;
  font-size: 4rem;
}

.hero-copy {
  max-width: 620px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.section,
.quick-booking,
.contact-band {
  padding: 5rem 5vw;
}

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

.quick-booking {
  background: var(--night);
  color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.quick-booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: 2rem;
  align-items: end;
}

.quick-booking h2 {
  font-size: 1.85rem;
}

.quick-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: end;
}

label span {
  display: block;
  margin-bottom: 0.35rem;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0.68rem 0.78rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 106, 33, 0.25);
  border-color: var(--accent);
}

.section-muted {
  background: var(--paper);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.story-layout h2,
.contact-band h2,
.modal-heading h2 {
  font-size: 2.45rem;
}

.section-heading p,
.story-layout p,
.contact-band p,
.modal-heading p {
  color: var(--muted);
}

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

.service-card,
.proof-grid article,
.testimonial-grid blockquote,
.package-card,
.deal-card,
.poster-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card,
.proof-grid article,
.testimonial-grid blockquote {
  padding: 1.35rem;
}

.service-icon,
.deal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  border-radius: 8px;
  background: rgba(242, 106, 33, 0.12);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3,
.proof-grid strong,
.package-card h3,
.deal-card h3 {
  display: block;
  margin: 0.9rem 0 0.35rem;
  font-size: 1.12rem;
}

.service-card p,
.proof-grid p,
.package-card p,
.deal-card p,
.testimonial-grid p {
  margin: 0;
  color: var(--muted);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.package-card {
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17, 23, 34, 0.08);
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.package-body {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 800;
}

.package-card h3 {
  margin: 0;
}

.package-card strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.poster-section {
  background: #fff;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.poster-card {
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17, 23, 34, 0.08);
}

.poster-frame {
  display: grid;
  aspect-ratio: 9 / 16;
  place-items: center;
  background: #e4f5b2;
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.poster-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem;
}

.poster-body h3 {
  margin: 0;
  font-size: 1rem;
}

.poster-body .text-button {
  margin-top: 0;
  white-space: nowrap;
}

.deals-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.deal-list {
  display: grid;
  gap: 1rem;
}

.deal-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 0.85rem;
  align-items: center;
}

.deal-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.text-button {
  margin-top: 0.8rem;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  padding: 0;
  font-weight: 800;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.story-photo {
  position: relative;
  margin: 0;
}

.story-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.story-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  min-width: 128px;
  padding: 0.9rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.story-photo strong {
  font-size: 1.7rem;
  line-height: 1;
}

.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.footer-logo img {
  width: 40px;
  height: auto;
}

.footer-logo h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-credits p {
  margin: 4px 0;
  font-size: 14px;
  color: #aaa;
}

.footer-credits span {
  color: #fff;
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #222;
  padding-top: 10px;
  font-size: 13px;
  color: #777;
}


.testimonial-grid blockquote {
  margin: 0;
}

.testimonial-grid span {
  color: var(--gold);
}

.testimonial-grid cite {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.contact-band {
  background: var(--forest);
  color: #fff;
}

.contact-band .eyebrow,
.contact-band p {
  color: #cfe8dc;
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer {
  background: var(--night);
  color: #fff;
  padding: 3rem 5vw;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.footer-brand .brand-logo {
  width: min(280px, 100%);
  max-height: 54px;
}

.footer-credit {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.footer-credit-logo {
  width: 48px;
  height: auto;
  display: block;
}

.footer-credit p {
  margin: 0;
  color: #c8d0dc;
  font-size: 0.95rem;
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: #c8d0dc;
}

.site-footer h3 {
  margin: 0 0 0.8rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: #1fa855;
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.booking-modal {
  width: min(760px, calc(100% - 2rem));
  max-height: calc(100% - 2rem);
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-modal::backdrop {
  background: rgba(9, 12, 18, 0.68);
}

.modal-shell {
  position: relative;
  margin: 0;
  padding: 1.5rem;
  background: #fff;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 1.4rem;
}

.modal-heading {
  max-width: 560px;
  padding-right: 2.5rem;
}

.modal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.full-field {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--forest);
  font-weight: 700;
}

.form-status.is-error {
  color: #b42318;
}

.form-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.quick-form .form-status {
  color: #cfe8dc;
}

.quick-form .form-status.is-error {
  color: #ffd2c7;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 80;
  width: min(520px, calc(100% - 2rem));
  transform: translateX(-50%);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 700;
}

.toast.is-error {
  background: #b42318;
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 3rem;
  }

  .quick-booking-grid,
  .quick-form,
  .deals-layout,
  .story-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    display: grid;
  }

  .quick-form {
    align-items: stretch;
  }

  .service-grid,
  .proof-grid,
  .package-grid,
  .poster-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 64px;
    padding: 0.6rem 1rem;
  }

  .brand-logo {
    width: clamp(156px, 58vw, 220px);
    max-height: 42px;
    padding: 0.22rem 0.35rem;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-overlay {
    min-height: 72vh;
  }

  .hero-overlay {
    padding: 3.5rem 1rem 3rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: 2.45rem;
  }

  .section,
  .quick-booking,
  .contact-band {
    padding: 3.5rem 1rem;
  }

  .quick-booking {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .section-heading h2,
  .story-layout h2,
  .contact-band h2,
  .modal-heading h2 {
    font-size: 2rem;
  }

  .service-grid,
  .proof-grid,
  .package-grid,
  .poster-grid,
  .testimonial-grid,
  .modal-form {
    grid-template-columns: 1fr;
  }

  .deal-card {
    grid-template-columns: 1fr;
  }

  .poster-body {
    display: grid;
  }

  .deal-card img {
    aspect-ratio: 16 / 9;
  }

  .contact-actions,
  .hero-actions {
    display: grid;
  }

  .modal-shell {
    padding: 1.1rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
