:root {
  --black: #000;
  --white: #fff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Albert Sans", sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.grid { width: min(100% - 60px, 1400px); margin: 0 auto; }

#menu-bar { transition: all 0.3s ease-in-out; }
.menu-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 30px;
  color: var(--white);
  mix-blend-mode: difference;
}

body.admin-bar .menu-bar { top: 32px; }
@media (max-width: 782px) { body.admin-bar .menu-bar { top: 46px; } }

#menu-bar.scrolled {
  background-color: #ffffffe6;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #000;
  mix-blend-mode: normal;
}
#menu-bar.scrolled.down { transform: translateY(-100%); }

.logo { font-size: 20px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.menu-toggle, .menu-close {
  border: 0; background: transparent; color: inherit; font-size: 28px;
  cursor: pointer; font-weight: 500; padding: 0;
}

.main-menu {
  position: fixed; inset: 0; background: var(--white); z-index: 50;
  transform: translateY(-100%); opacity: 0; pointer-events: none; transition: 0.45s ease;
}
.main-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.main-menu .menu-close { position: absolute; top: 28px; right: 30px; }
.main-menu-inner { padding: 120px 8vw 60px; display: grid; grid-template-columns: 1fr 1fr; align-items: end; height: 100%; }
.main-menu ul { list-style: none; padding: 0; margin: 0; }
.main-menu li { margin-bottom: 16px; }
.main-menu li a { font-size: clamp(36px, 4.6vw, 72px); font-weight: 500; }
.menu-tagline { font-size: clamp(34px, 4vw, 70px); line-height: 0.95; font-style: italic; }

.layout { position: relative; }
.hero-layout { height: 200vh; color: var(--white); }
.hero-bg-wrap { position: sticky; inset: 0; height: 100vh; overflow: hidden; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
.hero-overlay { position: absolute; inset: 0; background: rgba(35, 36, 18, 0.46); mix-blend-mode: multiply; }
.hero-content { position: absolute; inset: 0; padding-top: 30vh; }
.hero-headline { font-size: clamp(52px, 6vw, 110px); line-height: 0.95; font-weight: 500; margin: 0; }
.hero-line { width: 50vw; height: 1px; background: rgba(255, 255, 255, 0.38); margin: 36px 0; }
.hero-small { max-width: 460px; font-size: 22px; font-weight: 500; margin: 0; }
.hero-lead { margin: 42vh 0 0 auto; width: fit-content; font-size: clamp(54px, 5.2vw, 88px); line-height: 0.95; font-weight: 500; }

.marquee-layout { overflow: hidden; padding: 30px 0; }
.marquee { display: inline-flex; gap: 80px; white-space: nowrap; font-size: clamp(80px, 14vw, 280px); font-weight: 500; animation: marquee 28s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.intro-layout { padding: 90px 0 120px; }
h2 { font-size: clamp(50px, 4.2vw, 86px); line-height: 0.95; margin: 0; font-weight: 500; }
.lead-copy { max-width: 760px; margin-left: auto; font-size: clamp(24px, 2vw, 34px); font-weight: 600; line-height: 1.15; }
.claim { margin: 120px 0; overflow: hidden; }
.claim-row { display: flex; align-items: baseline; gap: 28px; font-size: clamp(70px, 8.4vw, 166px); line-height: 0.83; font-weight: 500; margin: 10px 0; }
.claim-row span { font-style: italic; font-weight: 700; }
.claim-row small { font-size: clamp(16px, 1.15vw, 21px); max-width: 340px; line-height: 1.3; }

.service-layout .big-image-wrap { height: 95vh; min-height: 560px; overflow: hidden; }
.big-image { width: 100%; height: 100%; object-fit: cover; }
.content-wrap { width: min(100% - 60px, 1400px); margin: 0 auto; }
.service-layout h2 { margin: 140px 0 120px; }
.services a { display: flex; justify-content: space-between; align-items: center; gap: 30px; border-bottom: 1px solid var(--black); padding: 36px 0; }
.services h3 { margin: 0; font-size: clamp(58px, 8vw, 150px); line-height: 0.9; font-weight: 500; }
.services p { margin: 0; max-width: 340px; font-size: clamp(17px, 1.2vw, 22px); font-weight: 600; }

.awards-layout { min-height: 160vh; }
.awards-bg { position: absolute; top: 0; left: 0; right: 0; height: 95vh; overflow: hidden; }
.awards-cover { position: relative; margin-top: 95vh; background: var(--black); color: var(--white); padding: 90px 30px 140px; }
.tilted { margin: 80px 0; transform: rotate(-12deg); border-top: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); padding: 14px 0; font-size: clamp(38px,4.6vw,76px); text-transform: uppercase; }
.awards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 80px; }
.awards-grid div { text-align: center; }
.awards-grid strong { display: block; font-size: clamp(70px,6.5vw,120px); font-weight: 500; }

.news-layout { padding: 120px 0 20px; }
.news-list { margin-top: 80px; display: grid; gap: 36px; max-width: 900px; margin-left: auto; }
.news-list article time { font-size: 14px; font-weight: 300; }
.news-list article h3 { margin: 10px 0 0; font-size: clamp(28px,2vw,38px); line-height: 1; }

footer { padding: 80px 30px 30px; border-top: 1px solid var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr auto; gap: 20px; width: min(100%,1400px); margin: 0 auto; }
.footer-grid .col { display: flex; flex-direction: column; gap: 10px; }
.copy { width: min(100%,1400px); margin: 40px auto 0; opacity: .85; }

@media (max-width: 1000px) {
  .hero-layout { height: 150vh; }
  .hero-content { padding-top: 24vh; }
  .hero-lead { margin-top: 24vh; }
  .main-menu-inner { grid-template-columns: 1fr; gap: 32px; }
  .services a { flex-direction: column; align-items: flex-start; }
  .awards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .grid, .content-wrap { width: min(100% - 34px, 1400px); }
  .menu-bar { padding: 18px 16px; }
  .menu-toggle, .menu-close { font-size: 22px; }
  .logo { font-size: 14px; }
  .hero-small { font-size: 18px; }
  .hero-lead { margin-top: 16vh; font-size: 52px; }
  .footer-grid { grid-template-columns: 1fr; }
}
