:root {
  --black: #070707;
  --ink: #14171a;
  --white: #ffffff;
  --cream: #f6f4ef;
  --grey: #687078;
  --line: rgba(20, 23, 26, 0.12);
  --gold: #c6a769;
  --gold-dark: #776442;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { 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;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
a { color: inherit; }
img, video { max-width: 100%; }
button { font: inherit; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity .65s var(--ease), visibility .65s var(--ease);
}
.page-loader::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 1px;
  margin-top: 145px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 1.4s ease-in-out infinite;
}
.page-loader img {
  width: min(260px, 64vw);
  padding: 18px 22px;
  border-radius: 20px;
  background: white;
  animation: loaderLogo .9s var(--ease) both;
}
.page-loader.hide { opacity: 0; visibility: hidden; }
@keyframes loaderLogo { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes loaderLine { 0%,100% { opacity: .25; transform: scaleX(.55); } 50% { opacity: 1; transform: scaleX(1); } }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: rgba(8,8,8,.22);
  backdrop-filter: blur(18px);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(0,0,0,.05);
}
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand img {
  display: block;
  width: 188px;
  padding: 8px 11px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
}
nav { display: flex; align-items: center; gap: 30px; }
nav a {
  color: white;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
  transition: opacity .2s ease;
}
nav a:hover { opacity: .7; }
.site-header.scrolled nav a { color: var(--ink); }
.nav-cta { padding: 10px 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; }
.site-header.scrolled .nav-cta { border-color: var(--line); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: white; transition: transform .25s ease; }
.site-header.scrolled .menu-toggle span { background: var(--ink); }

.cinematic {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 154px 0 68px;
  color: white;
}
.hero-video, .video-tile video, .video-fallback { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video, .video-tile video { z-index: 1; object-fit: cover; }
.video-fallback { z-index: 0; }
.fallback-kitchen {
  background: radial-gradient(circle at 73% 23%, rgba(198,167,105,.25), transparent 25%), linear-gradient(135deg, #090909, #29211b 48%, #11181d);
}
.fallback-dining {
  background: radial-gradient(circle at 34% 42%, rgba(198,167,105,.32), transparent 28%), linear-gradient(135deg, #120d09, #30241b 52%, #090909);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.58) 48%, rgba(0,0,0,.24)), linear-gradient(0deg, rgba(0,0,0,.72), transparent 42%);
}
.hero-content { position: relative; z-index: 3; }
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .73rem;
  font-weight: 800;
}
.eyebrow.light { color: var(--gold); }
.eyebrow.dark { color: var(--gold-dark); }
.hero h1, h2, .quote-inner p { font-family: "Manrope", "Inter", Arial, sans-serif; letter-spacing: -.06em; }
.hero h1 {
  max-width: 970px;
  margin: 0;
  font-size: clamp(3.3rem, 7.5vw, 7.25rem);
  line-height: .91;
  text-wrap: balance;
}
.hero-text { max-width: 735px; margin: 27px 0 0; color: rgba(255,255,255,.83); font-size: clamp(1.04rem, 1.55vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: transform .22s var(--ease), background .22s ease, color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--black); background: white; }
.button.primary:hover { background: var(--gold); }
.button.glass { color: white; border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.button.glass:hover { background: rgba(255,255,255,.13); }
.button.full { width: 100%; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  max-width: 760px;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.24);
}
.hero-proof div { padding: 20px 20px 0 0; }
.hero-proof strong { display: block; font-size: 1.5rem; letter-spacing: -.05em; }
.hero-proof span { display: block; color: rgba(255,255,255,.65); font-size: .86rem; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 56px;
  color: rgba(255,255,255,.58);
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
}
.scroll-cue::after { content: ""; display: inline-block; width: 1px; height: 48px; margin-top: 12px; background: linear-gradient(var(--gold), transparent); }

.section { padding: 100px 0; }
h2 { margin: 0; font-size: clamp(2.35rem, 4.6vw, 4.45rem); line-height: .98; text-wrap: balance; }
.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: start; }
.intro-copy { padding-top: 38px; }
.intro-copy p { margin: 0 0 20px; color: var(--grey); font-size: 1.06rem; }
.section-heading { margin-bottom: 42px; }
.section-heading.wide { max-width: 850px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  min-height: 326px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(198,167,105,.5); box-shadow: 0 25px 70px rgba(0,0,0,.08); }
.service-card.feature-card { color: white; background: var(--black); border-color: var(--black); }
.service-card span { color: var(--gold-dark); font-size: .82rem; font-weight: 800; }
.service-card.feature-card span { color: var(--gold); }
.service-card h3 { margin: auto 0 14px; font-size: 1.28rem; line-height: 1.18; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--grey); }
.service-card.feature-card p { color: rgba(255,255,255,.68); }

.video-story { min-height: 720px; display: grid; grid-template-columns: 1.08fr .92fr; color: white; background: var(--black); }
.video-tile { position: relative; min-height: 720px; overflow: hidden; }
.video-tile::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, transparent 58%, rgba(0,0,0,.32)); }
.story-panel { display: flex; flex-direction: column; justify-content: center; padding: 90px min(6vw, 76px); }
.story-panel h2 { font-size: clamp(2.45rem, 4.2vw, 4.25rem); }
.story-panel > p:not(.eyebrow) { color: rgba(255,255,255,.7); font-size: 1.04rem; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.sector-tags span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: rgba(255,255,255,.78); font-size: .82rem; }

.method { background: white; }
.method-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: start; }
.method-heading { position: sticky; top: 122px; }
.timeline { border-left: 1px solid var(--line); }
.timeline-item { position: relative; padding: 0 0 38px 34px; }
.timeline-item::before { content: ""; position: absolute; left: -5px; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(198,167,105,.12); }
.timeline-item span { color: var(--gold-dark); font-size: .8rem; font-weight: 800; }
.timeline-item h3 { margin: 6px 0 8px; font-size: 1.5rem; letter-spacing: -.04em; }
.timeline-item p { margin: 0; color: var(--grey); }
.quote-band { padding: 94px 0; color: white; background: var(--black); }
.quote-inner p { max-width: 980px; margin: 0; font-size: clamp(2.2rem, 4.5vw, 4.35rem); line-height: .98; }
.credentials { background: var(--cream); }
.credentials-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: start; }
.credential-cards { display: grid; gap: 12px; }
.credential-cards div { padding: 19px 21px; border: 1px solid var(--line); border-radius: 17px; background: white; }
.credential-cards strong { display: block; letter-spacing: -.025em; }
.credential-cards span { color: var(--grey); font-size: .92rem; }

.contact-section { padding: 104px 0; color: white; background: radial-gradient(circle at 12% 0%, rgba(198,167,105,.17), transparent 30%), linear-gradient(135deg, #070707, #242a2f); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .72fr; gap: 74px; align-items: center; }
.contact-copy > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.7); font-size: 1.06rem; }
.premium-card { padding: 32px; border-radius: 28px; color: var(--ink); background: white; box-shadow: 0 30px 95px rgba(0,0,0,.28); }
.premium-card img { width: 225px; margin-bottom: 28px; }
.premium-card p { margin: 0 0 18px; }
.premium-card a:not(.button) { font-weight: 800; }
.dark-button { background: var(--black) !important; color: white !important; }

.site-footer { padding: 54px 0 30px; color: white; background: var(--black); border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: grid; grid-template-columns: minmax(240px, 1fr) 1.65fr; gap: 64px; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: .86rem; }
.footer-grid a { font-size: .86rem; }
.footer-identity { display: grid; align-content: start; justify-items: start; gap: 6px; }
.footer-identity a { margin-top: 10px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(190px, 1fr)); gap: 42px; }
.footer-links h2 { margin: 0 0 14px; color: var(--gold); font-family: "Inter", Arial, sans-serif; font-size: .72rem; line-height: 1.4; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { display: block; margin: 8px 0; color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links a:hover { color: white; }

.inner-page .site-header { position: relative; background: var(--black); }
.inner-page .site-header nav a { color: white; }
.inner-main { min-height: 62vh; background: var(--cream); }
.page-intro { padding: 112px 0 100px; }
.page-intro-inner { max-width: 860px; }
.page-intro h1 { margin: 0; font-family: "Manrope", "Inter", Arial, sans-serif; font-size: clamp(2.8rem, 6.5vw, 6rem); line-height: .95; letter-spacing: -.06em; text-wrap: balance; }
.page-intro .pending-copy { max-width: 690px; margin: 30px 0 0; padding: 22px 24px; border: 1px solid rgba(119,100,66,.28); border-radius: 18px; color: var(--grey); background: rgba(255,255,255,.68); }
.page-intro .pending-copy strong { display: block; margin-bottom: 5px; color: var(--ink); }
.page-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.page-links a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: white; text-decoration: none; font-size: .86rem; font-weight: 700; }
.page-links a:hover { border-color: rgba(198,167,105,.65); }
.content-hero { padding: 104px 0 88px; color: white; background: radial-gradient(circle at 82% 12%, rgba(198,167,105,.2), transparent 28%), linear-gradient(135deg, #070707, #242a2f); }
.content-hero-inner { max-width: 990px; }
.content-hero h1 { max-width: 940px; margin: 0; font-family: "Manrope", "Inter", Arial, sans-serif; font-size: clamp(3rem, 6.6vw, 6.4rem); line-height: .94; letter-spacing: -.06em; text-wrap: balance; }
.content-hero .lead { max-width: 820px; margin: 28px 0 0; color: rgba(255,255,255,.75); font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.content-body { padding: 92px 0 104px; background: var(--white); }
.article-wrap { max-width: 940px; }
.content-section { padding: 44px 0; border-top: 1px solid var(--line); }
.content-section:first-child { padding-top: 0; border-top: 0; }
.content-section h2 { max-width: 820px; margin-bottom: 24px; font-size: clamp(2rem, 4vw, 3.65rem); }
.content-section h3 { margin: 27px 0 8px; font-size: 1.17rem; line-height: 1.25; letter-spacing: -.025em; }
.content-section p { max-width: 850px; margin: 0 0 18px; color: var(--grey); font-size: 1.02rem; }
.content-section ul { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; }
.content-section li { padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; color: var(--grey); background: var(--cream); }
.content-section li strong { color: var(--ink); }
.content-cta { margin-top: 42px; padding: 34px; border-radius: 26px; color: white; background: var(--black); }
.content-cta h2 { margin-bottom: 18px; font-size: clamp(2rem, 3.7vw, 3.35rem); }
.content-cta p { color: rgba(255,255,255,.7); }
.contact-options { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.contact-options a { color: var(--black); background: white; }
.contact-options a:hover { background: var(--gold); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; top: 86px; left: 0; right: 0; padding: 22px 4%; background: rgba(7,7,7,.98); }
  .site-header.scrolled nav { background: white; }
  nav.show { display: grid; gap: 17px; }
  .intro-grid, .method-grid, .credentials-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .video-story { grid-template-columns: 1fr; min-height: auto; }
  .video-tile { min-height: 470px; }
  .story-panel { width: min(1180px, 92%); margin: 0 auto; padding: 72px 0; }
  .method-heading { position: static; }
  .contact-grid { gap: 42px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 640px) {
  .brand img { width: 156px; }
  .section { padding: 76px 0; }
  .cinematic { padding-bottom: 48px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  .hero-proof { grid-template-columns: 1fr; margin-top: 36px; }
  .hero-proof div { padding-top: 14px; }
  .scroll-cue { display: none; }
  .intro-grid { gap: 30px; }
  .intro-copy { padding-top: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .video-tile { min-height: 390px; }
  .quote-band { padding: 76px 0; }
  .premium-card { padding: 25px; }
  .footer-links { grid-template-columns: 1fr; gap: 26px; }
  .page-intro { padding: 78px 0 72px; }
  .content-hero { padding: 78px 0 70px; }
  .content-body { padding: 70px 0 78px; }
  .content-section { padding: 35px 0; }
  .content-cta { padding: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
