:root {
  --green-900: #123328;
  --green-700: #1f6f54;
  --leaf: #53a35d;
  --aqua: #06a8d8;
  --sun: #f5c842;
  --coral: #f26c4f;
  --ink: #17231f;
  --muted: #5e6c66;
  --line: #dfe8e3;
  --paper: #fbf8f1;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 51, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 51, 40, 0.88), rgba(18, 51, 40, 0.34));
}

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

.brand-mark {
  display: grid;
  width: 74px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.brand-mark img {
  width: 64px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

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

.brand strong {
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 650;
}

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

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.primary-button {
  color: #093024;
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.header-cta {
  min-width: 112px;
  padding: 0 18px;
}

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.header-cta:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible {
  transform: translateY(-2px);
}

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

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 31, 24, 0.9) 0%, rgba(10, 31, 24, 0.66) 42%, rgba(10, 31, 24, 0.14) 100%),
    linear-gradient(180deg, rgba(10, 31, 24, 0.16), rgba(10, 31, 24, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 82vh;
  width: min(760px, calc(100% - 36px));
  flex-direction: column;
  justify-content: center;
  padding: 108px 0 64px;
  margin-left: clamp(18px, 7vw, 96px);
}

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

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

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 7vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.55;
}

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

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

.quick-strip div {
  min-height: 106px;
  padding: 22px;
  color: var(--white);
  background: var(--green-700);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-strip div:nth-child(2) {
  background: #0785a6;
}

.quick-strip div:nth-child(3) {
  background: #d9812d;
}

.quick-strip div:nth-child(4) {
  background: #476f3c;
  border-right: 0;
}

.quick-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.85rem;
  line-height: 1;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 650;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 116px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.feature-grid article {
  min-height: 236px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-icon {
  display: inline-flex;
  min-width: 68px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--green-900);
  background: #dff2ee;
  font-size: 0.76rem;
  font-weight: 800;
}

.feature-grid article:nth-child(2) .feature-icon,
.feature-grid article:nth-child(5) .feature-icon {
  background: #fff1c6;
}

.feature-grid article:nth-child(3) .feature-icon,
.feature-grid article:nth-child(6) .feature-icon {
  background: #ffe3d9;
}

.feature-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 8px;
  width: min(1380px, calc(100% - 20px));
  margin: 0 auto;
}

.photo-band img {
  width: 100%;
  height: clamp(240px, 34vw, 460px);
  object-fit: cover;
}

.gallery-section {
  padding-bottom: 72px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.gallery-filters button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-900);
  background: var(--white);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 750;
  cursor: pointer;
}

.gallery-filters button.active {
  color: var(--white);
  border-color: var(--green-700);
  background: var(--green-700);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 190px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #dbe8e2;
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.booking-band {
  display: flex;
  width: min(1180px, calc(100% - 36px));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), #0d7a91 58%, #d57932);
}

.booking-band p:last-child {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.social-section {
  padding-bottom: 0;
}

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

.social-card {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.social-card.instagram {
  background: linear-gradient(135deg, #743ad5, #d53a9d 48%, #f5a742);
}

.social-card.facebook {
  background: linear-gradient(135deg, #164a9b, #1877f2);
}

.social-icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.social-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.facebook .social-icon svg {
  fill: currentColor;
  stroke: none;
}

.social-card strong,
.social-card small {
  display: block;
}

.social-card strong {
  margin-bottom: 4px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1;
}

.social-card small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  align-items: stretch;
}

.address-panel {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  color: var(--white);
  background: var(--green-900);
}

.address-panel h3 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.address-panel p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.address-panel .secondary-button {
  align-self: flex-start;
  margin-top: 16px;
}

.location-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
}

.contact {
  padding-top: 0;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.contact-list a {
  min-height: 130px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-list strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--green-900);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-900);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--sun);
  font-weight: 800;
}

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

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: #1ebe5d;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 56px 18px 24px;
  background: rgba(7, 20, 16, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

  .main-nav {
    display: none;
  }

  .hero-content {
    margin-left: 18px;
  }

  .quick-strip,
  .feature-grid,
  .contact-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

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

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

  .brand-mark {
    width: 58px;
    height: 44px;
  }

  .brand-mark img {
    width: 50px;
    max-height: 38px;
  }

  .header-cta {
    min-width: 92px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 31, 24, 0.72), rgba(10, 31, 24, 0.86));
  }

  .hero-content {
    min-height: 78vh;
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
  }

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

  .quick-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: -18px;
  }

  .quick-strip div {
    min-height: 92px;
    padding: 18px;
  }

  .quick-strip strong {
    font-size: 1.45rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading h2,
  .booking-band h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .feature-grid,
  .contact-list,
  .photo-band {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 0;
  }

  .photo-band img {
    height: 260px;
  }

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

  .gallery-filters button {
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .gallery-grid {
    grid-auto-rows: 160px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .address-panel,
  .location-grid img {
    min-height: 340px;
  }

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
