:root {
  --dark: #142027;
  --darker: #0f171d;
  --paper: #f1f2f4;
  --ink: #3f3f42;
  --muted: #6e7782;
  --line: #c8ced5;
  --white: #fff;
  --gold: #d8aa35;
  --facebook: #0f81e8;
  --instagram: #ff4c4f;
  --max: 1152px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.content-wrapper {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 90px;
  background: var(--dark);
}

.site-header:not(.solid) {
  background: rgba(20, 32, 39, 0.94);
}

.site-header.is-scrolled {
  background: rgba(20, 32, 39, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.brand {
  width: 54px;
  height: 64px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 50px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-family: Rubik, Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  place-items: center;
  background: rgba(13, 20, 24, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-links {
  display: grid;
  gap: 12px;
  text-align: center;
}

.menu-item {
  color: var(--white);
  font-family: Rubik, Arial, sans-serif;
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.95;
}

.menu-item:hover,
.menu-item.is-current {
  color: var(--gold);
}

.menu-socials {
  position: absolute;
  bottom: 46px;
  display: flex;
  gap: 28px;
  color: var(--white);
  font-family: Rubik, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: 940px;
  padding-top: 80px;
  background: var(--dark);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 80px 0 0;
}

.tile {
  position: absolute;
  object-fit: cover;
}

.t1 { left: 0.3vw; top: 0; width: 20.5vw; height: 26px; }
.t2 { left: 0.3vw; top: 52px; width: 20.5vw; height: 445px; }
.t3 { left: 0.3vw; top: 522px; width: 20.5vw; height: 224px; }
.t4 { left: 21.9vw; top: 0; width: 21.2vw; height: 120px; }
.t5 { left: 21.9vw; top: 150px; width: 21.2vw; height: 300px; }
.t6 { left: 43.4vw; top: 52px; width: 20.5vw; height: 198px; }
.t7 { left: 64.9vw; top: 0; width: 20.5vw; height: 272px; }
.t8 { right: 0; top: 52px; width: 13.5vw; height: 470px; }
.t9 { left: 21.9vw; top: 480px; width: 21.2vw; height: 200px; }
.t10 { left: 43.4vw; top: 278px; width: 20.5vw; height: 398px; }
.t11 { left: 64.9vw; top: 305px; width: 20.5vw; height: 168px; }
.t12 { left: 64.9vw; top: 498px; width: 20.5vw; height: 310px; }
.t13 { right: 0; top: 550px; width: 13.5vw; height: 330px; }
.t14 { left: 0.3vw; top: 772px; width: 20.5vw; height: 190px; }
.t15 { left: 21.9vw; top: 710px; width: 21.2vw; height: 210px; }
.t16 { left: 43.4vw; top: 710px; width: 20.5vw; height: 210px; }

.hero-logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 43%;
  width: min(920px, 69vw);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.6));
}

.scroll-down {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 156px;
  transform: translateX(-50%);
  padding: 13px 28px;
  border: 1px solid var(--white);
  border-radius: 30px;
  color: var(--white);
  font-family: Rubik, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.content-section {
  padding: 96px 0;
  background: var(--paper);
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Rubik, Arial, sans-serif;
  line-height: 1.18;
}

.intro h1,
.camera-roll h2,
.instagram h2 {
  font-size: 31px;
  font-weight: 700;
}

.intro p,
.muted {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
}

.service-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  margin-top: 66px;
}

.service-row article {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.service-row img {
  height: 54px;
}

.service-row h2 {
  font-size: 16px;
  font-weight: 700;
}

.camera-roll {
  padding-top: 40px;
}

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

.roll-grid button {
  min-width: 0;
  height: 265px;
  padding: 0;
  border: 0;
  background: #d9dde1;
  overflow: hidden;
}

.roll-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.roll-grid button:hover img {
  transform: scale(1.06);
  filter: saturate(0.8);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 70px;
  align-items: center;
}

.about-art {
  display: grid;
  place-items: center;
  min-height: 420px;
  background: #e3e6e9;
  overflow: hidden;
}

.about-art img {
  width: 720px;
  max-width: none;
}

.about h2 {
  max-width: 540px;
  font-size: 36px;
  line-height: 1.25;
}

.about p {
  margin-top: 24px;
  color: var(--muted);
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-family: Rubik, Arial, sans-serif;
  font-weight: 700;
}

.download-link img {
  width: 24px;
}

.team .title {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 700;
}

.team > .content-wrapper > h2 {
  margin-bottom: 44px;
  font-size: 38px;
}

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

.team-grid article {
  position: relative;
  min-height: 480px;
  background: #d4d9dd;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.person {
  position: absolute;
  right: 0;
  bottom: 92px;
  max-width: 88%;
  max-height: 78%;
  object-fit: contain;
}

.team-grid h3,
.team-grid p {
  position: relative;
  z-index: 1;
}

.team-grid h3 {
  font-size: 17px;
}

.team-grid p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.history {
  position: relative;
  padding: 126px 0;
  color: var(--white);
  background: linear-gradient(rgba(15, 23, 29, 0.82), rgba(15, 23, 29, 0.82)), url("/assets/images/contact-hero.jpeg") center/cover fixed;
}

.history-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 92px;
  align-items: start;
}

.history h2 {
  color: var(--white);
  font-size: 42px;
}

.history p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.section-icon {
  width: 30px;
  margin: 0 auto 12px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.instagram-grid a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #d4d7da;
}

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

.instagram-grid a:hover img {
  transform: scale(1.08);
}

.site-footer {
  padding: 70px 0;
  color: var(--white);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 0.65fr;
  gap: 80px;
}

.footer-logo {
  width: 263px;
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 15px;
}

.site-footer a,
.site-footer button {
  display: block;
  margin-top: 10px;
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  overflow: hidden;
}

.go-up {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.go-up.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.go-up::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--white);
  border-top: 2px solid var(--white);
  transform: rotate(45deg);
}

.page-hero {
  position: relative;
  height: 400px;
  margin-top: 80px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.contact-hero {
  background-image: url("/assets/images/contact-hero.jpg");
  background-size: cover;
  background-position: center 43%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 17, 0.68);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 52px;
}

.contact-section {
  padding-top: 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 96px;
}

.contact-info h2 {
  max-width: 330px;
  margin-bottom: 38px;
  font-size: 26px;
}

.detail {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  max-width: 320px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.detail img {
  width: 28px;
  margin-top: 4px;
}

.detail h3,
.detail p {
  margin: 0;
}

.detail h3 {
  font-size: 16px;
}

.contact-social {
  display: flex;
  gap: 8px;
  margin-top: 38px;
}

.contact-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.facebook {
  background: var(--facebook);
}

.instagram-link {
  background: var(--instagram);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 22px;
  align-content: start;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 45px;
  border: 1px solid #27313a;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 12px;
  outline: none;
}

.contact-form select,
.contact-form textarea,
.contact-form button,
.form-message {
  grid-column: 1 / -1;
}

.contact-form textarea {
  min-height: 116px;
  resize: vertical;
}

.contact-form button {
  width: 170px;
  min-height: 40px;
  border: 1px solid #27313a;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.form-message {
  margin: 0;
  color: #286b3a;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 48px;
  background: rgba(9, 14, 17, 0.94);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 1120px);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 24px;
  right: 30px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 8px 14px;
}

@media (max-width: 991px) {
  .site-header {
    padding: 0 34px;
  }

  .home-hero {
    min-height: 820px;
  }

  .tile {
    width: 32vw;
  }

  .t1 { left: 0; top: 50px; width: 31vw; height: 320px; }
  .t2 { left: 34vw; top: 0; width: 31vw; height: 140px; }
  .t3 { left: 0; top: 392px; width: 31vw; height: 210px; }
  .t4 { left: 34vw; top: 164px; width: 31vw; height: 260px; }
  .t5 { right: 0; left: auto; top: 56px; width: 31vw; height: 320px; }
  .t6 { left: 34vw; top: 448px; width: 31vw; height: 220px; }
  .t7 { right: 0; left: auto; top: 402px; width: 31vw; height: 250px; }
  .t8, .t9, .t10, .t11, .t12, .t13, .t14, .t15, .t16 { display: none; }
  .hero-logo { width: 88vw; }
  .scroll-down { bottom: 115px; }
  .service-row, .team-grid, .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .roll-grid { grid-template-columns: repeat(3, 1fr); }
  .split, .history-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .content-wrapper {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    height: 72px;
    padding: 0 22px;
  }

  .brand img {
    width: 44px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .home-hero {
    min-height: 720px;
    padding-top: 72px;
  }

  .hero-grid {
    top: 72px;
  }

  .t1 { left: 0; top: 74px; width: 48vw; height: 280px; }
  .t2 { left: 52vw; top: 0; width: 48vw; height: 160px; }
  .t3 { left: 0; top: 376px; width: 48vw; height: 210px; }
  .t4 { left: 52vw; top: 184px; width: 48vw; height: 280px; }
  .t5 { display: none; }
  .hero-logo { width: 116vw; }
  .content-section { padding: 72px 0; }
  .intro h1, .camera-roll h2, .instagram h2 { font-size: 27px; }
  .service-row, .roll-grid, .team-grid, .instagram-grid, .contact-form { grid-template-columns: 1fr; }
  .roll-grid button { height: 310px; }
  .about h2, .team > .content-wrapper > h2, .history h2 { font-size: 32px; }
  .page-hero { height: 320px; margin-top: 72px; }
  .page-hero h1 { font-size: 42px; }
  .contact-grid { gap: 54px; }
  .contact-form select, .contact-form textarea, .contact-form button, .form-message { grid-column: auto; }
}
