:root {
  --black: #0a0a09;
  --ink: #171714;
  --gold: #d9aa4e;
  --cream: #f3efe6;
  --muted: #98948b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, "Noto Sans SC", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.nav {
  height: 84px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: white;
  background: linear-gradient(#000b, transparent);
  transition: 0.3s;
}
.nav.scrolled {
  height: 70px;
  background: #090909ee;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  font-family: Georgia, serif;
  letter-spacing: 2px;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.brand small {
  display: block;
  font: 9px Arial;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 3px;
}
.nav nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.langs {
  display: flex;
  margin-left: 30px;
  border: 1px solid #ffffff44;
}
.langs button,
.filters button {
  border: 0;
  background: none;
  color: inherit;
  padding: 7px 9px;
  cursor: pointer;
}
.langs .active {
  background: var(--gold);
  color: #111;
}
.menu {
  display: none;
  background: 0;
  border: 0;
  color: white;
  font-size: 24px;
}
.hero {
  height: min(860px, 100vh);
  min-height: 680px;
  background: #090909;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10vw 7vw;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.58) 0%, rgba(8, 8, 8, 0.30) 44%, rgba(8, 8, 8, 0.04) 82%),
    url("assets/images/hero-kitchen-02.png") center/cover no-repeat;
  opacity: 1;
}
.hero-copy {
  position: relative;
  max-width: 740px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: bold;
}
.hero h1 {
  font:
    clamp(54px, 8vw, 112px) / 0.95 Georgia,
    serif;
  margin: 25px 0;
}
.hero h1 em {
  color: var(--gold);
  font-weight: normal;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  line-height: 1.8;
  color: #ddd;
  font-size: 18px;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 35px;
}
.actions a {
  padding: 15px 24px;
  border: 1px solid var(--gold);
}
.gold {
  background: var(--gold);
  color: #111;
}
.ghost {
  color: white;
}
.hero-card {
  position: absolute;
  right: 7vw;
  bottom: 7vw;
  border-left: 1px solid var(--gold);
  padding-left: 24px;
}
.hero-card b {
  font: 52px Georgia;
  color: var(--gold);
  display: block;
}
.hero-card span {
  color: #ccc;
}
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 45px 7vw;
  background: var(--gold);
}
.trust div {
  display: flex;
  gap: 20px;
  align-items: center;
  border-right: 1px solid #0003;
  padding: 0 35px;
}
.trust div:last-child {
  border: 0;
}
.trust strong {
  font: 40px Georgia;
}
.trust span {
  font-size: 13px;
}
.split {
  padding: 120px 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}
.split h2,
.section-head h2,
.process h2,
.contact h2,
.dark h2 {
  font:
    clamp(40px, 5vw, 72px) / 1.08 Georgia,
    serif;
  margin: 16px 0;
}
.split > div:last-child {
  font-size: 18px;
  line-height: 1.9;
  padding-top: 38px;
}
.reg {
  color: #777;
  font-size: 13px;
  letter-spacing: 2px;
}
.dark {
  background: #10100f;
  color: white;
  padding: 110px 7vw;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
  border-top: 1px solid #ffffff33;
}
.service-grid article {
  padding: 35px 25px 20px 0;
  border-right: 1px solid #ffffff22;
}
.service-grid b {
  color: var(--gold);
}
.service-grid h3 {
  font: 26px Georgia;
}
.service-grid p {
  color: #aaa;
  line-height: 1.7;
}
.projects {
  padding: 110px 5vw;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filters button {
  border-bottom: 1px solid #aaa;
}
.filters .active {
  color: var(--gold);
  border-color: var(--gold);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.project-card {
  grid-column: span 4;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: #111;
  color: white;
  cursor: pointer;
}
.project-card:nth-child(1),
.project-card:nth-child(6) {
  grid-column: span 8;
}
.project-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: 0.6s;
}
.project-card:hover img {
  transform: scale(1.04);
}
.project-card:after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, #000e);
}
.card-copy {
  position: absolute;
  z-index: 2;
  inset: auto 28px 28px;
}
.card-copy span {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
}
.card-copy h3 {
  font: 30px Georgia;
  margin: 10px 0;
}
.card-copy p {
  color: #ddd;
  font-size: 13px;
}
.process {
  padding: 110px 7vw;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #aaa;
  margin-top: 50px;
}
.steps div {
  padding: 30px 20px;
  border-right: 1px solid #bbb;
}
.steps b {
  color: var(--gold);
}
.steps p {
  margin: 18px 0 0;
  max-width: 34ch;
  color: #555;
  font-size: 14px;
  line-height: 1.75;
}
.vireya-collab {
  padding: 95px 7vw;
  color: #f5efe5;
  background: #171714;
}
.vireya-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8vw;
  align-items: start;
}
.vireya-grid h2 { margin: 0; }
.vireya-grid p {
  margin: 0;
  color: #d7d1c7;
  line-height: 1.9;
}
.contact {
  padding: 110px 7vw;
  background: var(--gold);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8vw;
}
.contact-list a,
.contact-list p {
  display: flex;
  flex-direction: column;
  padding: 22px 0;
  border-bottom: 1px solid #0004;
  margin: 0;
}
.contact-list span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-list strong {
  font: 24px Georgia;
  margin-top: 7px;
  overflow-wrap: anywhere;
}
footer {
  background: #090909;
  color: #aaa;
  padding: 25px 5vw;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #062b14;
  display: grid;
  place-items: center;
  font-weight: bold;
  z-index: 22;
  box-shadow: 0 8px 24px #0004;
}
.modal {
  position: fixed;
  inset: 0;
  background: #090909;
  color: white;
  z-index: 30;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.close {
  position: fixed;
  right: 30px;
  top: 20px;
  z-index: 2;
  background: none;
  border: 0;
  color: white;
  font-size: 48px;
  cursor: pointer;
}
.modal-inner {
  padding: 90px 5vw;
}
.modal-copy {
  max-width: 800px;
}
.modal-copy h2 {
  font: clamp(42px, 7vw, 80px) Georgia;
  margin: 15px 0;
}
.modal-copy > p:last-child {
  color: #bbb;
  line-height: 1.7;
}
.gallery { margin-top: 52px; }
.gallery-stage { margin-bottom: 66px; }
.stage-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  padding-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #ffffff3d;
}
.stage-heading span {
  color: var(--gold);
  font: 25px Georgia, serif;
}
.stage-heading p { margin: 0; color: #aaa; line-height: 1.6; text-align: right; }
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.media-item {
  margin: 0;
  min-width: 0;
  background: #141414;
  display: flex;
  flex-direction: column;
}
.image-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: #090909;
  cursor: zoom-in;
}
.media-item img,
.media-item video {
  display: block;
  width: 100%;
  height: clamp(270px, 32vw, 520px);
  margin: 0;
  object-fit: contain;
  background: #090909;
}
.media-item figcaption {
  padding: 13px 15px 16px;
  color: #bbb;
  font-size: 13px;
  line-height: 1.55;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.94);
}
.lightbox.open { display: grid; }
.lightbox figure {
  width: min(92vw, 1500px);
  height: 92vh;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.lightbox img { width: 100%; height: 100%; object-fit: contain; min-height: 0; }
.lightbox figcaption { padding: 12px; color: #ddd; text-align: center; line-height: 1.5; }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 2;
  border: 0;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  font-size: 46px;
  line-height: 1;
}
.lightbox-close { top: 14px; right: 20px; padding: 6px 12px; }
.lightbox-prev,
.lightbox-next { top: 50%; transform: translateY(-50%); padding: 12px; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s;
}
.fade.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .stage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #090909;
    padding: 25px;
    flex-direction: column;
  }
  .nav nav.open {
    display: flex;
  }
  .menu {
    display: block;
    order: 2;
  }
  .langs {
    margin: 0 15px 0 0;
  }
  .trust {
    grid-template-columns: 1fr;
  }
  .trust div {
    border-right: 0;
    border-bottom: 1px solid #0003;
    padding: 15px;
  }
  .split,
  .contact {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(6) {
    grid-column: span 6;
    min-height: 430px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .hero-card {
    display: none;
  }
}
@media (max-width: 600px) {
  .brand span {
    font-size: 13px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .hero {
    padding: 120px 6vw 60px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(6) {
    grid-column: span 12;
    min-height: 420px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .filters {
    margin-top: 20px;
  }
  .split,
  .dark,
  .projects,
  .process,
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  footer {
    gap: 12px;
    flex-direction: column;
  }
  .stage-grid { grid-template-columns: 1fr; }
  .stage-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .stage-heading p { text-align: left; }
  .media-item img,
  .media-item video { height: auto; max-height: 76vh; }
}
