:root {
  --leaf: #123f31;
  --leaf-2: #0d6b4d;
  --mint: #d7f1df;
  --cream: #fffaf0;
  --paper: #f7f3e8;
  --gold: #c5923a;
  --clay: #9f5630;
  --ink: #17221e;
  --muted: #68766d;
  --line: rgba(23, 34, 30, 0.14);
  --shadow: 0 24px 70px rgba(18, 63, 49, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 20, 16, 0.58), rgba(10, 20, 16, 0));
}

.site-header.solid,
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: linear-gradient(135deg, var(--gold), #f3dc96 48%, var(--leaf-2));
  color: var(--leaf);
  font-weight: 900;
  letter-spacing: 0;
  border-radius: 50%;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  font-size: 0.75rem;
  color: currentColor;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 6vw, 86px) 76px;
  color: #fff;
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 25, 18, 0.88), rgba(11, 25, 18, 0.48) 42%, rgba(11, 25, 18, 0.12)),
    linear-gradient(0deg, rgba(8, 17, 13, 0.74), rgba(8, 17, 13, 0.04) 56%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

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

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

h1,
h2 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 7.6rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.16;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #15120b;
}

.btn-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
  color: currentColor;
}

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

.hero-note {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 34px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 430px;
}

.hero-note span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 800;
}

.section-pad {
  padding: clamp(74px, 10vw, 130px) clamp(18px, 5vw, 74px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 42px;
}

.section-heading.narrow {
  display: block;
  max-width: 790px;
  margin-left: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 70px);
  max-width: 980px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--leaf);
  color: #fff;
}

.stats div {
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stats strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.services {
  background: var(--paper);
}

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

.service-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(40, 32, 22, 0.08);
}

.service-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-grid article > div {
  padding: 24px;
}

.service-number {
  color: var(--gold);
  font-weight: 900;
}

.service-grid p,
.event-copy p,
.tick-list,
.contact-band p,
.showcase-hero p {
  color: var(--muted);
}

.event-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 10vw, 140px) clamp(18px, 5vw, 74px);
  background: #fff;
}

.tick-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 750;
}

.tick-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.event-media {
  position: relative;
  min-height: 610px;
}

.event-main,
.event-float {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.event-main {
  inset: 0 12% 7% 0;
  width: 76%;
  height: 93%;
  border-radius: 8px;
}

.event-float {
  right: 0;
  bottom: 0;
  width: 43%;
  height: 45%;
  border: 8px solid #fff;
  border-radius: 8px;
}

.motion-reel {
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.reel-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 12px 0;
  animation: reelMove 34s linear infinite;
}

.reel-track img {
  width: clamp(190px, 24vw, 360px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes reelMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.gallery-preview {
  background: var(--leaf);
  color: #fff;
}

.gallery-preview .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  justify-self: end;
  color: var(--gold);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr;
  gap: 16px;
}

.preview-grid a {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 8px;
}

.preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.preview-grid a:hover img {
  transform: scale(1.04);
}

.preview-grid span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(10, 22, 16, 0.72);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin: clamp(28px, 5vw, 60px);
  padding: clamp(34px, 6vw, 70px);
  background: linear-gradient(135deg, var(--mint), #fff, #f4dfb6);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-band address {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
}

.contact-band address a {
  color: var(--leaf-2);
  font-weight: 900;
}

.contact-band.compact {
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 74px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #082017;
  box-shadow: 0 18px 45px rgba(7, 77, 48, 0.32);
  font-weight: 950;
}

.showcase-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  padding: 150px clamp(18px, 5vw, 74px) 70px;
  background: linear-gradient(135deg, var(--leaf), #0e2c25 58%, var(--clay));
  color: #fff;
}

.showcase-hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.showcase-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.showcase-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.showcase-card strong {
  font-size: 1.35rem;
}

.showcase-card span {
  color: rgba(255, 255, 255, 0.72);
}

.filter-bar {
  position: sticky;
  top: 84px;
  z-index: 12;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(18px, 5vw, 74px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--leaf);
  color: #fff;
}

.showcase-block {
  background: var(--cream);
}

.alt-block {
  background: var(--paper);
}

.masonry-gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  box-shadow: 0 16px 44px rgba(33, 25, 18, 0.08);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 738px;
}

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

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

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

.gallery-item div {
  position: absolute;
  inset: auto 0 0;
  padding: 52px 18px 18px;
  color: #fff;
  background: linear-gradient(0deg, rgba(7, 16, 12, 0.86), rgba(7, 16, 12, 0));
}

.gallery-item h3,
.gallery-item p {
  margin: 0;
}

.gallery-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.gallery-item.is-hidden {
  display: none;
}

@media (max-width: 980px) {
  .site-nav,
  .header-call {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .intro-grid,
  .event-band,
  .contact-band,
  .showcase-hero {
    grid-template-columns: 1fr;
  }

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

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

  .event-media {
    min-height: 520px;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: auto;
  }

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

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

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

  .hero {
    min-height: 92svh;
    padding: 118px 18px 102px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 17, 13, 0.9), rgba(8, 17, 13, 0.18));
  }

  .hero-note {
    right: 18px;
    left: 18px;
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .stats,
  .service-grid,
  .preview-grid,
  .masonry-gallery {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-grid img {
    height: 310px;
  }

  .event-media {
    min-height: auto;
  }

  .event-main,
  .event-float {
    position: static;
    width: 100%;
    height: auto;
  }

  .event-float {
    margin-top: 16px;
    border: 0;
  }

  .preview-grid a,
  .gallery-item,
  .gallery-item.tall {
    min-height: 380px;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
  }

  .filter-bar {
    top: 70px;
  }
}
