:root {
  --navy: #050d1f;
  --navy2: #081426;
  --navy3: #0d1e38;
  --gold: #c9a227;
  --gold2: #f0c84a;
  --green: #3ab54a;
  --blue: #1a6fb5;
  --muted: rgba(255, 255, 255, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--navy);
  color: #fff;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--navy2);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 162, 39, 0.5);
  border-radius: 3px;
}

/* NAVBAR */
.navbar {
  background: rgba(5, 13, 31, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(26, 111, 181, 0.4);
}

.brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  color: white;
}

.brand-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  color: var(--green);
  letter-spacing: 3px;
  font-weight: 600;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem !important;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold2) !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: var(--navy) !important;
  border-radius: 6px;
  font-weight: 800 !important;
  padding: 0.5rem 1.3rem !important;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* HERO */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(
      ellipse 70% 60% at 65% 40%,
      rgba(26, 111, 181, 0.2) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 50% at 5% 90%,
      rgba(58, 181, 74, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(155deg, var(--navy2) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  padding: 110px 0 70px;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.3rem;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--green);
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.gold-word {
  color: var(--gold2);
}

.hero-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 1.5rem 0 2.2rem;
  max-width: 480px;
}

.btn-pg {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.38);
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-pg:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.5);
  color: var(--navy);
}

.btn-ghost {
  border: 1.5px solid rgba(201, 162, 39, 0.5);
  color: var(--gold2);
  background: transparent;
  border-radius: 8px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
  height: 490px;
}

.mosaic-cell {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.mosaic-cell.tall {
  grid-row: 1/3;
  border-radius: 22px;
}

.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.mosaic-cell:hover img {
  transform: scale(1.04);
}

.mosaic-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 13, 31, 0.5));
  pointer-events: none;
}

.mosaic-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(201, 162, 39, 0.92);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.hero-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hstat {
  border-left: 2px solid rgba(201, 162, 39, 0.3);
  padding-left: 1rem;
}

.hstat-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
}

.hstat-l {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.gold-div {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 162, 39, 0.35),
    transparent
  );
}

section {
  padding: 96px 0;
}

.sec-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.9rem;
}

.sec-tag::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--green);
}

.sec-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.3px;
}

.sec-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.1rem 0 1.4rem;
}

.sec-lead {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

.gold {
  color: var(--gold2);
}

/* ABOUT */
.about-sec {
  background:
    radial-gradient(
      ellipse 70% 60% at 100% 50%,
      rgba(26, 111, 181, 0.1) 0%,
      transparent 65%
    ),
    var(--navy2);
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 480px;
}

.about-img-cell {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.about-img-cell.tall {
  grid-row: 1/3;
}

.about-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.about-img-cell:hover img {
  transform: scale(1.05);
}

.img-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(5, 13, 31, 0.55);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.pillar-icon {
  min-width: 46px;
  height: 46px;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.25),
    rgba(26, 111, 181, 0.2)
  );
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold2);
}

.pillar-body h6 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.3rem;
}

.pillar-body p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* SERVICES */
.services-sec {
  background: var(--navy);
}

.svc-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.35s;
  height: 100%;
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.svc-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.svc-card:hover .svc-img img {
  transform: scale(1.07);
}

.svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 13, 31, 0.8));
}

.svc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  background: rgba(201, 162, 39, 0.9);
  color: var(--navy);
}

.svc-tag.green {
  background: rgba(58, 181, 74, 0.9);
  color: #fff;
}

.svc-body {
  padding: 1.4rem 1.6rem 1.6rem;
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(26, 111, 181, 0.3),
    rgba(201, 162, 39, 0.15)
  );
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold2);
  margin-bottom: 1rem;
}

.svc-body h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.5rem;
}

.svc-body p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold2);
  text-decoration: none;
  margin-top: 0.9rem;
  transition: 0.3s;
}

.svc-link:hover {
  gap: 10px;
  color: var(--gold);
}

.badge-spec {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: rgba(58, 181, 74, 0.15);
  color: var(--green);
  border: 1px solid rgba(58, 181, 74, 0.4);
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

/* GALLERY */
.gallery-sec {
  background: var(--navy2);
}

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

.gcell {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(201, 162, 39, 0.12);
}

.gcell.big {
  grid-column: 2/3;
}

.gcell.tall {
  grid-row: 1/3;
}

.gcell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.gcell:hover img {
  transform: scale(1.06);
}

.gcell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 13, 31, 0.65));
}

.gcell-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* WHY */
.why-sec {
  background:
    radial-gradient(
      ellipse 60% 70% at 10% 50%,
      rgba(201, 162, 39, 0.07) 0%,
      transparent 65%
    ),
    var(--navy);
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: 18px;
  padding: 2rem;
  transition: 0.35s;
  text-align: center;
  height: 100%;
}

.why-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.2),
    rgba(26, 111, 181, 0.15)
  );
  border: 1.5px solid rgba(201, 162, 39, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold2);
  margin: 0 auto 1.2rem;
}

.why-card h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.stat-band {
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.12),
    rgba(26, 111, 181, 0.1)
  );
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 56px 0;
}

.bstat-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
  text-shadow: 0 0 60px rgba(201, 162, 39, 0.4);
}

.bstat-l {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* PROCESS */
.process-sec {
  background: var(--navy2);
}

.proc-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.proc-wrap::before {
  content: "";
  position: absolute;
  top: 28%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 39, 0.2),
    rgba(201, 162, 39, 0.5),
    rgba(201, 162, 39, 0.2)
  );
  z-index: 0;
}

.proc-step {
  text-align: center;
  padding: 2rem 1.2rem;
  position: relative;
  z-index: 1;
}

.proc-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--navy2);
  border: 2px solid rgba(201, 162, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold2);
  margin: 0 auto 1.2rem;
  transition: 0.3s;
  box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.06);
}

.proc-step:hover .proc-circle {
  border-color: var(--gold2);
  box-shadow:
    0 0 0 12px rgba(201, 162, 39, 0.1),
    0 0 30px rgba(201, 162, 39, 0.3);
}

.proc-num {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.proc-step h6 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.4rem;
}

.proc-step p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.proc-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 3rem;
  height: 300px;
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

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

.proc-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 13, 31, 0.75) 0%, transparent 60%);
}

.proc-caption {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  z-index: 2;
}

.proc-caption h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proc-caption p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

/* TESTIMONIALS */
.test-sec {
  background: var(--navy);
}

.test-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  transition: 0.3s;
}

.test-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
}

.test-stars {
  color: var(--gold2);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.test-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
}

.test-name {
  font-weight: 700;
  font-size: 0.88rem;
}

.test-role {
  color: var(--muted);
  font-size: 0.75rem;
}

/* CTA */
.cta-sec {
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.13), rgba(26, 111, 181, 0.13)),
    url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?w=1400&q=80")
      center/cover no-repeat;
  position: relative;
  padding: 100px 0;
}

.cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 31, 0.83);
}

.cta-sec .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-sec h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.cta-sec p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* CONTACT */
.contact-sec {
  background: var(--navy2);
}

.ci-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 22px;
  padding: 2.5rem;
  height: 100%;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ci-item:last-child {
  border-bottom: none;
}

.ci-ico {
  min-width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), rgba(201, 162, 39, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
}

.ci-lbl {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.ci-val {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}

.ci-img {
  border-radius: 18px;
  overflow: hidden;
  height: 190px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  margin-top: 1.2rem;
}

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

.form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 22px;
  padding: 2.5rem;
}

.form-card label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s;
  font-family: "Barlow", sans-serif;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  border-color: rgba(201, 162, 39, 0.65);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}

.form-card select option {
  background: #0d1e38;
}

.form-card textarea {
  resize: vertical;
}

/* FOOTER */
footer {
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  padding: 2.5rem 0;
}

.footer-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.footer-sub {
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 2px;
}

footer p {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.78rem;
}

.flink {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  text-decoration: none;
  transition: 0.3s;
}

.flink:hover {
  color: var(--gold2);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.d1 {
  animation-delay: 0.1s;
}

.d2 {
  animation-delay: 0.25s;
}

.d3 {
  animation-delay: 0.4s;
}

.d4 {
  animation-delay: 0.55s;
}

.d5 {
  animation-delay: 0.7s;
}

.float {
  animation: float 6s ease-in-out infinite;
}

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

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

@media (max-width: 991px) {
  .hero-mosaic {
    height: 300px;
  }

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

  .gcell.big,
  .gcell.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .proc-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .proc-wrap::before {
    display: none;
  }

  .about-img-grid {
    height: auto;
  }
}

@media (max-width: 576px) {
  .hero-mosaic {
    display: none;
  }

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

  .proc-wrap {
    grid-template-columns: 1fr;
  }

  .about-img-grid {
    grid-template-columns: 1fr;
  }

  .about-img-cell.tall {
    grid-row: auto;
  }
}
