:root {
  --black: #050505;
  --ink: #111416;
  --charcoal: #171b1f;
  --soft-black: #20262b;
  --grey: #6c737a;
  --pale: #f4f3ef;
  --stone: #e8e5de;
  --white: #ffffff;
  --line: rgba(17, 20, 22, 0.12);
  --gold: #c8a96a;
  --warm: #f7f4ed;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

body.locked { overflow: hidden; }

a { color: inherit; }

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--black);
  display: grid;
  place-items: center;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader img {
  width: min(260px, 62vw);
  background: white;
  border-radius: 22px;
  padding: 22px;
  animation: floatIn 1.2s ease both;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(5,5,5,0.28);
  z-index: 50;
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  border-color: var(--line);
}

.nav {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand img {
  width: 190px;
  height: auto;
  display: block;
  background: rgba(255,255,255,0.96);
  border-radius: 16px;
  padding: 9px 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
}

.site-header.scrolled nav a { color: var(--ink); }

.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
}

.site-header.scrolled .nav-cta { border-color: var(--line); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  margin: 5px auto;
}

.cinematic {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: white;
  padding: 150px 0 70px;
}

.hero-video,
.video-tile video,
.video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.video-tile video {
  object-fit: cover;
  z-index: 1;
}

.video-fallback {
  z-index: 0;
}

.fallback-kitchen {
  background:
    radial-gradient(circle at 22% 36%, rgba(200,169,106,0.32), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(255,255,255,0.12), transparent 26%),
    linear-gradient(135deg, #0b0b0b, #2a2520 48%, #0f151a);
}

.fallback-dining {
  background:
    radial-gradient(circle at 30% 40%, rgba(200,169,106,0.34), transparent 26%),
    radial-gradient(circle at 78% 60%, rgba(255,255,255,0.12), transparent 22%),
    linear-gradient(135deg, #0f0d0b, #2b211b 50%, #090909);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 30%, rgba(200,169,106,0.18), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.52) 45%, rgba(0,0,0,0.26)),
    linear-gradient(0deg, rgba(0,0,0,0.72), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 900;
}

.eyebrow.light { color: var(--gold); }

.eyebrow.dark { color: #7b6840; }

.hero h1 {
  max-width: 960px;
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(3rem, 7.4vw, 7.1rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--white);
  color: var(--black);
}

.button.glass {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.06);
}

.button.full { width: 100%; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  max-width: 780px;
  margin-top: 58px;
  border-top: 1px solid rgba(255,255,255,0.24);
}

.hero-proof div { padding: 22px 20px 0 0; }

.hero-proof strong {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.hero-proof span {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 70px;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,0.64);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section { padding: 110px 0; }

.intro { background: var(--warm); }

.intro-grid,
.credentials-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

h2 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.intro-copy p {
  color: var(--grey);
  font-size: 1.1rem;
  margin-top: 0;
}

.section-heading { margin-bottom: 48px; }

.section-heading.wide { max-width: 840px; }

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  min-height: 330px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.09);
}

.service-card.feature-card {
  background: var(--black);
  color: var(--white);
}

.service-card span {
  color: var(--gold);
  font-weight: 900;
}

.service-card h3 {
  margin: 56px 0 16px;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: var(--grey);
}

.service-card.feature-card p { color: rgba(255,255,255,0.72); }

.video-story {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--black);
  color: white;
}

.video-tile {
  position: relative;
  overflow: hidden;
  min-height: 760px;
}

.video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.26));
}

.story-panel {
  padding: 110px min(6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-panel p {
  color: rgba(255,255,255,0.74);
  font-size: 1.07rem;
}

.sector-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.sector-tags span {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.82);
}

.method { background: var(--white); }

.method-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.timeline { border-left: 1px solid var(--line); }

.timeline-item {
  padding: 0 0 42px 36px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-item span {
  color: var(--gold);
  font-weight: 900;
}

.timeline-item h3 {
  margin: 8px 0;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.timeline-item p {
  margin: 0;
  color: var(--grey);
}

.quote-band {
  background: var(--black);
  color: var(--white);
  padding: 100px 0;
}

.quote-inner p {
  max-width: 920px;
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.credentials { background: var(--warm); }

.credential-cards {
  display: grid;
  gap: 14px;
}

.credential-cards div {
  padding: 22px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
}

.credential-cards strong {
  display: block;
  letter-spacing: -0.03em;
}

.credential-cards span { color: var(--grey); }

.contact-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(200,169,106,0.16), transparent 28%),
    linear-gradient(135deg, #050505, #20262b);
  color: white;
  padding: 112px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  gap: 74px;
  align-items: center;
}

.contact-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
}

.premium-card {
  background: white;
  color: var(--black);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.3);
}

.premium-card img {
  width: 230px;
  display: block;
  margin-bottom: 34px;
}

.premium-card a:not(.button) { font-weight: 900; }

.site-footer {
  background: var(--black);
  color: white;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255,255,255,0.66);
}

@media (max-width: 960px) {
  .menu-toggle { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    padding: 22px 4%;
    background: rgba(5,5,5,0.96);
  }

  .site-header.scrolled nav { background: white; }

  nav.show {
    display: grid;
    gap: 18px;
  }

  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }

  .hero-proof,
  .intro-grid,
  .service-grid,
  .video-story,
  .method-grid,
  .credentials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .video-story,
  .video-tile { min-height: auto; }

  .video-tile { height: 420px; }

  .story-panel,
  .section,
  .contact-section {
    padding: 72px 0;
  }

  .story-panel {
    width: min(1180px, 92%);
    margin: 0 auto;
  }

  .footer-grid { flex-direction: column; }
}

@media (max-width: 620px) {
  .brand img { width: 158px; }

  .hero { padding-bottom: 44px; }

  .hero-proof { margin-top: 38px; }

  .scroll-cue { display: none; }

  .service-card { min-height: auto; }

  .service-card h3 { margin-top: 34px; }
}
