@font-face {
  font-family: "Aktiv Grotesk";
  src: url("assets/Aktiv Grotesk/TTF/AktivGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk";
  src: url("assets/Aktiv Grotesk/TTF/AktivGrotesk-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk";
  src: url("assets/Aktiv Grotesk/TTF/AktivGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk";
  src: url("assets/Aktiv Grotesk/TTF/AktivGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk";
  src: url("assets/Aktiv Grotesk/TTF/AktivGrotesk-XBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #1c3f31;
  --brand-strong: #163328;
  --brand-soft: #eaf3ef;
  --ochre: #cc522c;
  --text: #15201b;
  --muted: #5a6b63;
  --bg: #ffffff;
  --bg-light: #f6f8f7;
  --shadow: 0 14px 36px rgba(28, 63, 49, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aktiv Grotesk", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body,
input,
textarea,
button {
  -webkit-text-size-adjust: 100%;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.light-bg {
  background: var(--bg-light);
}

.soft-bg {
  background: linear-gradient(180deg, #f4f8f6, #f9fbfa);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(28, 63, 49, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-horizontal {
  height: 55px;
  width: auto;
}

.logo-vertical {
  width: clamp(140px, 20vw, 190px);
  margin-bottom: 24px;
}

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

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 15% 15%, #edf7f2, #ffffff 50%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(28, 63, 49, 0.08), transparent 40%);
  animation: gradientShift 10s ease-in-out infinite alternate;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.35;
}

.shape-1 {
  width: 240px;
  height: 240px;
  background: #d2e8dd;
  left: 8%;
  top: 22%;
  animation: floatUp 8s ease-in-out infinite;
}

.shape-2 {
  width: 170px;
  height: 170px;
  background: #bddbcf;
  right: 10%;
  top: 26%;
  animation: floatUp 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 280px;
  height: 280px;
  background: #e1f0e9;
  right: 22%;
  bottom: -60px;
  animation: floatUp 9s ease-in-out infinite;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 760px;
  z-index: 1;
}

.hero-kicker {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  color: var(--brand-strong);
  margin: 0 0 14px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.btn-primary {
  background: var(--ochre);
  color: #fff;
  box-shadow: 0 10px 22px rgba(28, 63, 49, 0.24);
}

.btn-primary:hover {
  background: #b34726;
}

.btn-outline {
  border-color: rgba(204, 82, 44, 0.35);
  color: var(--ochre);
  background: #fff;
}

.hero-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-strong);
  border: 1px solid rgba(28, 63, 49, 0.14);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(2px);
}

.scroll-cue {
  width: 28px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(28, 63, 49, 0.34);
  margin: 26px auto 0;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.about-layout .section-heading {
  margin-bottom: 0;
}

.about-collage {
  position: relative;
  min-height: clamp(320px, 42vw, 400px);
}

.about-collage::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  border-radius: calc(var(--radius) + 8px);
  background: radial-gradient(circle at 50% 40%, rgba(28, 63, 49, 0.1), rgba(28, 63, 49, 0.02));
  z-index: 0;
}

.collage-card {
  position: absolute;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(28, 63, 49, 0.1);
  box-shadow: 0 12px 30px rgba(12, 41, 31, 0.14);
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collage-card-main {
  width: clamp(240px, 34vw, 330px);
  aspect-ratio: 1280 / 854;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: collageFloatMain 7s ease-in-out infinite;
}

.collage-card-top {
  width: clamp(165px, 21vw, 220px);
  aspect-ratio: 1600 / 1066;
  top: 5%;
  right: -2%;
  transform: rotate(3deg);
  z-index: 3;
  animation: collageFloatTop 8s ease-in-out infinite;
}

.collage-card-bottom {
  width: clamp(165px, 21vw, 220px);
  aspect-ratio: 1600 / 1066;
  left: -2%;
  bottom: 5%;
  transform: rotate(-3deg);
  z-index: 1;
  animation: collageFloatBottom 8.5s ease-in-out infinite;
}

.about-collage:hover .collage-card-main {
  transform: translate(-50%, -51%) scale(1.01);
}

.about-collage:hover .collage-card-top {
  transform: rotate(2.5deg) translateY(-2px);
}

.about-collage:hover .collage-card-bottom {
  transform: rotate(-2.5deg) translateY(2px);
}

.about-statement {
  background: #fff;
  border: 1px solid rgba(28, 63, 49, 0.1);
  box-shadow: 0 10px 24px rgba(12, 41, 31, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  margin: 0 0 20px;
  position: relative;
  overflow: hidden;
}

.about-statement::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), #3c7862);
}

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

.highlight-card,
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(12, 41, 31, 0.08);
  border: 1px solid rgba(28, 63, 49, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.highlight-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.icon-wrap,
.service-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.icon-wrap {
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 700;
}

.service-icon {
  background: #eef5f1;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.service-grid::before {
  content: "";
  position: absolute;
  inset: -24px;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(28, 63, 49, 0.07) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.3;
  z-index: 0;
}

.service-grid > * {
  position: relative;
  z-index: 1;
}

.launch-content {
  text-align: center;
  max-width: 820px;
}

.countdown {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.time-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 12px;
  border: 1px solid rgba(28, 63, 49, 0.1);
  box-shadow: 0 8px 22px rgba(12, 41, 31, 0.08);
  transition: transform 0.22s ease;
}

.time-card:hover {
  transform: translateY(-4px);
}

.time-card span {
  display: block;
  font-size: 1.75rem;
  color: var(--brand-strong);
  font-weight: 800;
  line-height: 1.2;
}

.time-card small {
  color: var(--muted);
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-info,
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(12, 41, 31, 0.08);
  border: 1px solid rgba(28, 63, 49, 0.08);
}

.contact-info ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  color: var(--muted);
  word-break: break-word;
}

.contact-info a {
  color: var(--brand);
}

.contact-form {
  display: grid;
  gap: 10px;
}

label {
  color: var(--brand-strong);
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea {
  border: 1px solid rgba(28, 63, 49, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(28, 63, 49, 0.1);
}

.form-status {
  margin: 4px 0 0;
  font-weight: 500;
  min-height: 1.25em;
}

.footer {
  background: var(--brand-strong);
  color: #d8e6df;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer p {
  color: #d8e6df;
  margin: 0;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: #e8f1ed;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

/* ── Gallery Bento ─────────────────────────────────── */
.gallery-section {
  padding: 0 0 100px;
}

.gallery-bento {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.6fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}

.gb-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 32px rgba(12, 41, 31, 0.13);
}

.gb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s ease;
  filter: brightness(0.97);
}

.gb-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

.gb-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28, 63, 49, 0.08) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gb-item:hover::after {
  opacity: 0;
}

/* Bento placement */
.gb-1 { grid-column: 1; grid-row: 1; }
.gb-2 { grid-column: 2; grid-row: 1 / span 2; }
.gb-3 { grid-column: 3; grid-row: 1; }
.gb-4 { grid-column: 1; grid-row: 2; }
.gb-5 { grid-column: 3; grid-row: 2; }
.gb-6 {
  display: none; /* 5-cell bento on desktop; shown on tablet where grid reflows */
}

@media (max-width: 860px) {
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gb-1 { grid-column: 1; grid-row: 1; }
  .gb-2 { grid-column: 2; grid-row: 1 / span 2; }
  .gb-3 { grid-column: 1; grid-row: 2; }
  .gb-4 { grid-column: 1; grid-row: 3; }
  .gb-5 { grid-column: 2; grid-row: 3; }
  .gb-6 { display: block; grid-column: 1 / span 2; grid-row: 4; }
}

@media (max-width: 520px) {
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
  }
  .gb-1 { grid-column: 1 / span 2; grid-row: 1; }
  .gb-2 { grid-column: 1; grid-row: 2; }
  .gb-3 { grid-column: 2; grid-row: 2; }
  .gb-4 { grid-column: 1; grid-row: 3; }
  .gb-5 { grid-column: 2; grid-row: 3; }
  .gb-6 { display: block; grid-column: 1 / span 2; grid-row: 4; height: 160px; }
}

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

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes gradientShift {
  from {
    transform: translateX(-2%);
  }
  to {
    transform: translateX(2%);
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

@keyframes collageFloatMain {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -53%);
  }
}

@keyframes collageFloatTop {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-6px);
  }
}

@keyframes collageFloatBottom {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(6px);
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 84px 0;
  }

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

  .about-collage {
    width: min(460px, 100%);
    margin: 0 auto;
    min-height: 410px;
  }

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

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

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

@media (max-width: 680px) {
  .topbar-inner {
    gap: 12px;
    flex-wrap: wrap;
  }

  .logo-horizontal {
    height: 34px;
  }

  .topbar-inner .btn {
    width: auto;
    padding: 10px 16px;
  }

  .section {
    padding: 72px 0;
  }

  .highlights-grid,
  .service-grid,
  .countdown {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }

  .about-collage {
    min-height: 300px;
  }

  .collage-card-main {
    width: clamp(200px, 54vw, 280px);
  }

  .collage-card-top,
  .collage-card-bottom {
    width: clamp(130px, 42vw, 180px);
  }

  .collage-card-top {
    top: 4%;
    right: -1%;
  }

  .collage-card-bottom {
    left: -1%;
    bottom: 4%;
  }

  .hero-content {
    text-align: left;
    max-width: 100%;
  }

  .hero-pills {
    justify-content: flex-start;
  }

  .scroll-cue {
    margin: 26px auto 0;
  }

  .btn {
    width: 100%;
  }

  .hero-content .btn,
  .contact-form .btn {
    width: 100%;
  }

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

@media (max-width: 520px) {
  .container {
    width: min(1120px, 94vw);
  }

  .hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  h2 {
    font-size: clamp(1.35rem, 6.3vw, 1.7rem);
  }

  .highlight-card,
  .service-card,
  .contact-info,
  .contact-form,
  .about-statement {
    padding: 18px;
  }

  .countdown {
    gap: 10px;
  }

  .time-card {
    padding: 12px 10px;
  }

  .time-card span {
    font-size: 1.45rem;
  }
}

@media (max-width: 420px) {
  .section {
    padding: 64px 0;
  }

  .topbar-inner {
    justify-content: center;
  }

  .hero-pills span {
    font-size: 0.75rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 11px 12px;
  }
}

/* ── Topbar actions (socials + CTA) ───────────────────────── */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(28, 63, 49, 0.07);
  transition: background 0.22s ease, transform 0.22s ease;
}

.topbar-socials a:hover {
  background: rgba(28, 63, 49, 0.16);
  transform: translateY(-2px);
}

.topbar-socials svg {
  width: 17px;
  height: 17px;
  fill: var(--brand);
}

/* ── Gallery zoom hint ────────────────────────────────────── */
.gb-item {
  cursor: pointer;
}

.gb-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--brand-strong);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.gb-item:hover .gb-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 14, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: rotate(90deg);
}