:root {
  --ink: #1d2621;
  --muted: #66716a;
  --ivory: #f4f0e7;
  --linen: #ebe4d4;
  --moss: #263d2f;
  --moss-2: #3f6149;
  --pdf-beige: #ece9dc;
  --pdf-taupe: #afa79c;
  --pdf-coffee: #786f66;
  --pdf-coffee-dark: #5e574f;
  --pdf-heading: #696969;
  --aqua: #8ad8e8;
  --gold: #c7a24b;
  --terracotta: #ad6246;
  --charcoal: #101613;
  --white: #fff;
  --shadow: 0 24px 70px rgba(23, 31, 26, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

.site-header {
  align-items: center;
  background: linear-gradient(135deg, rgba(175, 167, 156, .96), rgba(120, 111, 102, .95));
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 82px;
  padding: 12px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background .25s ease, box-shadow .25s ease, min-height .25s ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(112, 103, 94, .97);
  box-shadow: 0 16px 44px rgba(74, 67, 60, .24);
  min-height: 70px;
}

.brand {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  display: grid;
  height: 74px;
  justify-items: center;
  overflow: hidden;
  width: 74px;
}

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

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.8vw, 34px);
}

.site-nav a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  background: var(--aqua);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  width: 100%;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  position: relative;
  width: 44px;
}

.nav-toggle span {
  background: var(--white);
  height: 2px;
  left: 9px;
  position: absolute;
  transition: transform .2s ease, top .2s ease;
  width: 26px;
}

.nav-toggle span:first-child {
  top: 17px;
}

.nav-toggle span:last-child {
  top: 26px;
}

.nav-open .nav-toggle span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 160px clamp(22px, 6vw, 92px) 70px;
  position: relative;
}

.hero-media,
.hero-media img,
.hero-shade {
  inset: 0;
  position: absolute;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 18, 14, .78), rgba(11, 18, 14, .28) 55%, rgba(11, 18, 14, .62)),
    linear-gradient(0deg, rgba(11, 18, 14, .68), transparent 42%);
  z-index: 1;
}

.hero-content {
  align-self: end;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 112px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .92;
  margin: 0;
  max-width: 980px;
}

.hero-copy {
  color: rgba(255, 255, 255, .84);
  font-size: clamp(17px, 2vw, 24px);
  margin: 26px 0 0;
  max-width: 660px;
}

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

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: var(--aqua);
  color: #102026;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .45);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .8);
}

.hero-panel {
  align-self: end;
  background: rgba(244, 240, 231, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  bottom: 72px;
  max-width: 310px;
  padding: 22px;
  position: absolute;
  right: clamp(22px, 6vw, 92px);
  z-index: 2;
}

.hero-panel span {
  color: var(--aqua);
  display: block;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.hero-panel p {
  color: rgba(255, 255, 255, .78);
  margin: 8px 0 0;
}

.section {
  padding: clamp(74px, 9vw, 130px) clamp(22px, 6vw, 92px);
}

.section-heading {
  max-width: 860px;
}

.section-heading h2,
.band-copy h2,
.gallery-top h2,
.footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
}

.section-heading h2 {
  color: var(--pdf-heading);
}

.section-heading h2::after,
.gallery-top h2::after,
.footer h2::after {
  background: var(--aqua);
  content: "";
  display: block;
  height: 4px;
  margin-top: 22px;
  width: 92px;
}

.intro {
  background: linear-gradient(135deg, var(--ivory), #e6dfcf);
}

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

.service-card {
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(38, 61, 47, .14);
  border-radius: 8px;
  min-height: 290px;
  padding: 28px;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-number {
  color: var(--terracotta);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 62px;
}

.service-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin: 0 0 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.band {
  background: linear-gradient(135deg, var(--pdf-coffee-dark), var(--pdf-coffee) 54%, var(--pdf-taupe));
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  min-height: 620px;
}

.band-image {
  overflow: hidden;
}

.band-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  width: 100%;
}

.band:hover .band-image img {
  transform: scale(1.045);
}

.band-copy {
  align-self: center;
  padding: clamp(44px, 6vw, 88px);
}

.band-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.7;
  margin: 24px 0 0;
}

.alliances {
  background: #efe8d8;
  color: var(--ink);
}

.alliances .eyebrow {
  color: #3faec0;
}

.alliance-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
}

.alliance-card {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  display: grid;
  gap: 18px;
  justify-items: center;
  min-height: 190px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease;
}

.alliance-card:hover {
  transform: translateY(-6px);
}

.alliance-card img {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, .92);
  border: 7px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
  object-fit: cover;
  transition: box-shadow .2s ease, transform .2s ease;
  width: 146px;
}

.alliance-card:hover img {
  box-shadow: 0 28px 60px rgba(63, 174, 192, .28);
  transform: scale(1.04);
}

.alliance-card:nth-child(2) img {
  object-fit: contain;
  padding: 8px;
}

.alliance-card span {
  color: var(--moss);
  font-weight: 900;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(236, 233, 220, .08), rgba(0, 0, 0, 0) 28%),
    linear-gradient(180deg, #786f66, #5e574f 52%, #433c36);
  color: var(--white);
}

.gallery-section .eyebrow,
.gallery-section .gallery-top h2 {
  color: var(--pdf-beige);
}

.gallery-section .eyebrow {
  color: var(--aqua);
}

.gallery-top {
  align-items: end;
  display: flex;
  gap: 34px;
  justify-content: space-between;
  margin-bottom: 42px;
}

.gallery-top > div:first-child {
  max-width: 860px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter-btn {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .84);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  min-height: 40px;
  padding: 0 16px;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--aqua);
  border-color: var(--aqua);
  color: #102026;
}

.editorial-gallery {
  display: grid;
  gap: 14px;
  grid-auto-flow: dense;
  grid-auto-rows: 148px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gallery-item {
  background: #223226;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  grid-column: span 2;
  grid-row: span 2;
  overflow: hidden;
  padding: 0;
  position: relative;
}

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

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

.gallery-item.hero-item {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
  width: 100%;
}

.gallery-item::after {
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, .62));
  content: "";
  inset: 0;
  opacity: .9;
  position: absolute;
}

.gallery-item span {
  bottom: 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  left: 16px;
  letter-spacing: .12em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.gallery-item:hover img {
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.055);
}

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

.testimonials {
  background: var(--linen);
}

.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.testimonial-card {
  align-items: center;
  background: rgba(255, 255, 255, .72);
  border-top: 4px solid rgba(138, 216, 232, .9);
  border-left: 0;
  border-radius: 8px;
  display: grid;
  gap: 30px;
  grid-template-columns: 148px 1fr;
  padding: 32px;
}

.testimonial-card img {
  aspect-ratio: 1;
  border: 5px solid rgba(255, 255, 255, .8);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(38, 61, 47, .16);
  object-fit: cover;
  width: 148px;
}

.testimonial-card p {
  color: #59635d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.42;
  margin: 14px 0 0;
}

.testimonial-card span {
  color: #3faec0;
  display: block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer {
  background:
    linear-gradient(135deg, rgba(175, 167, 156, .98), rgba(120, 111, 102, .97)),
    var(--pdf-taupe);
  color: var(--white);
  padding: 72px clamp(22px, 6vw, 92px) 28px;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.1fr .9fr;
}

.contact-links {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.contact-links a {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 26px);
  text-decoration: none;
}

.contact-links a:hover {
  color: var(--aqua);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 62px;
  padding-top: 24px;
}

.footer-copy {
  font-weight: 300;
  justify-self: center;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
  justify-self: end;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
}

.footer-credit {
  justify-self: start;
}

.footer-bottom a:hover {
  color: var(--aqua);
  opacity: .8;
}

.social-link {
  color: rgba(255, 255, 255, .78);
  display: block;
  transition: color .25s ease;
}

.social-link:hover {
  color: var(--aqua);
}

.social-icon {
  display: block;
}

.contact-whatsapp {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.contact-whatsapp svg {
  flex-shrink: 0;
}

.lightbox {
  align-items: center;
  background: rgba(8, 13, 10, .92);
  display: grid;
  inset: 0;
  justify-items: center;
  opacity: 0;
  padding: 30px;
  pointer-events: none;
  position: fixed;
  transition: opacity .2s ease;
  z-index: 40;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  margin: 0;
  max-height: min(82vh, 900px);
  max-width: min(88vw, 1200px);
}

.lightbox img {
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
  max-height: 78vh;
  object-fit: contain;
  width: 100%;
}

.lightbox figcaption {
  color: rgba(255, 255, 255, .82);
  font-weight: 900;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  cursor: pointer;
  position: absolute;
}

.lightbox-close {
  height: 46px;
  right: 24px;
  top: 24px;
  width: 46px;
}

.lightbox-close::before,
.lightbox-close::after {
  background: var(--white);
  content: "";
  height: 2px;
  left: 12px;
  position: absolute;
  top: 22px;
  width: 20px;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-nav {
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.lightbox-nav::before {
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  display: block;
  height: 13px;
  left: 20px;
  position: absolute;
  top: 18px;
  width: 13px;
}

.lightbox-nav.prev::before {
  transform: rotate(45deg);
}

.lightbox-nav.next::before {
  left: 16px;
  transform: rotate(225deg);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

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

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

  .band-image {
    min-height: 430px;
  }

  .gallery-top {
    align-items: start;
    flex-direction: column;
  }

  .gallery-filters {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    height: 58px;
    width: 58px;
  }

  .nav-toggle {
    display: block;
    z-index: 22;
  }

  .site-nav {
    align-content: center;
    background: linear-gradient(150deg, var(--moss), #101613);
    flex-direction: column;
    gap: 28px;
    inset: 0;
    justify-content: center;
    opacity: 0;
    position: fixed;
    transform: translateY(-16px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    visibility: hidden;
    z-index: 21;
  }

  .nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    font-size: 22px;
  }

  .hero {
    min-height: 860px;
    padding-top: 116px;
  }

  .hero-panel {
    bottom: 28px;
    left: 22px;
    max-width: none;
    right: 22px;
  }

  .service-grid,
  .alliance-grid,
  .testimonial-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    align-items: start;
    gap: 20px;
    grid-template-columns: 92px 1fr;
    padding: 24px;
  }

  .testimonial-card img {
    width: 92px;
  }

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

  .service-number {
    margin-bottom: 38px;
  }

  .editorial-gallery {
    display: block;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall,
  .gallery-item.hero-item {
    display: block;
    height: auto;
    margin-bottom: 14px;
    width: 100%;
  }

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

  .gallery-item img {
    aspect-ratio: 1.15;
  }

  .gallery-item.tall img {
    aspect-ratio: .75;
  }

  .contact-links {
    justify-items: start;
  }

  .footer-bottom {
    align-items: start;
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .footer-copy,
  .footer-bottom nav,
  .footer-credit {
    justify-self: start;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .lightbox-nav {
    bottom: 24px;
    top: auto;
    transform: none;
  }
}
