@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
  --charcoal: #1A1A1A;
  --alabaster: #F9F9F9;
  --neon: #FF003C;
  --muted: #888;
  --muted-light: #aaa;
  --font-display: 'Oswald', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --nav-h: 64px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--neon); color: var(--charcoal); }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-serif); background: var(--charcoal); color: var(--alabaster); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

nav {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h);
  z-index: 100; display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(26,26,26,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.04); transition: transform 0.4s ease;
}
nav.hide { transform: translateY(-100%); }
.nav-wm { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(16px,3vw,36px); }
.nav-links a { font-family: var(--font-serif); font-size: 13px; color: var(--muted-light); transition: color 0.2s; }
.nav-links a:hover { color: var(--alabaster); }
.nav-cta { font-family: var(--font-display) !important; background: var(--neon); color: var(--alabaster) !important; padding: 9px 22px; border-radius: 3px; font-size: 12px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.85; }
.nav-toggle { display: none; cursor: pointer; z-index: 101; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--alabaster); transition: 0.3s; }

#home { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 clamp(20px,4vw,48px) clamp(40px,6vh,72px); position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--charcoal) 5%, transparent 50%); }
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(3.2rem,8.5vw,7rem); line-height: 0.92; letter-spacing: 0.01em; text-transform: uppercase; }
.hero-sub { font-family: var(--font-serif); font-size: 16px; font-style: italic; color: rgba(249,249,249,0.45); margin-top: 14px; }
.hero-loc { font-family: var(--font-display); font-size: 14px; color: var(--neon); margin-top: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-loc .dot { opacity: 0.35; margin: 0 8px; }

.ticker-wrap { overflow: hidden; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.ticker { display: flex; width: max-content; animation: ticker-scroll 22s linear infinite; }
.ticker span { font-family: var(--font-display); font-size: clamp(1.2rem,2.2vw,1.7rem); font-weight: 700; white-space: nowrap; padding: 0 clamp(10px,1.5vw,18px); text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.08); }
.ticker .sep { color: var(--neon); font-size: 0.6em; vertical-align: middle; padding: 0 8px; opacity: 0.4; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.doors-section { padding: clamp(48px,6vh,72px) clamp(20px,4vw,48px) 0; }
.doors-headline { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: clamp(20px,3vh,36px); }
.doors { display: grid; grid-template-columns: 1fr 1fr; }
.door { position: relative; overflow: hidden; min-height: clamp(220px,35vh,340px); display: flex; flex-direction: column; justify-content: flex-end; border: 0.5px solid rgba(255,255,255,0.03); cursor: pointer; }
.door-bg { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.door-bg img { width: 100%; height: 100%; object-fit: cover; }
.door:hover .door-bg { opacity: 0.35; }
.door-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,0.92) 15%, rgba(26,26,26,0.3) 55%, transparent); }
.door-content { position: relative; z-index: 1; padding: clamp(20px,3vw,40px); }
.door-content h3 { font-family: var(--font-display); font-size: clamp(1.5rem,2.8vw,2.2rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.door-content p { font-family: var(--font-serif); font-size: 14px; font-style: italic; color: var(--muted-light); margin-top: 6px; max-width: 260px; line-height: 1.5; }
.door-cta { font-family: var(--font-display); font-size: 12px; color: var(--neon); margin-top: 14px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: opacity 0.35s, transform 0.35s; }
.door:hover .door-cta { opacity: 1; transform: translateY(0); }

#expertise { background: var(--alabaster); color: var(--charcoal); padding: clamp(56px,10vh,112px) clamp(20px,4vw,48px); }
.expertise-head { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: clamp(28px,4vh,52px); }
.expertise-head .nc { color: var(--neon); }
.acc-wrap { max-width: 760px; }
.acc-item { border-bottom: 1px solid rgba(26,26,26,0.08); }
.acc-head { display: flex; justify-content: space-between; align-items: center; padding: clamp(18px,3vh,28px) 0; cursor: pointer; transition: color 0.2s; }
.acc-head:hover { color: var(--neon); }
.acc-head h3 { font-family: var(--font-display); font-size: clamp(1.1rem,2vw,1.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.acc-icon { font-size: 22px; color: var(--neon); transition: transform 0.3s; font-weight: 300; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.acc-body.open { max-height: 300px; }
.acc-inner { padding: 0 0 clamp(18px,3vh,28px); font-family: var(--font-serif); font-size: 15px; color: #555; line-height: 1.7; max-width: 540px; }
.acc-tag { font-family: var(--font-display); font-size: 11px; color: var(--neon); margin-top: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

#about { background: var(--alabaster); color: var(--charcoal); padding: clamp(56px,10vh,112px) clamp(20px,4vw,48px) 0; border-top: 1px solid rgba(26,26,26,0.06); }
.about-headline { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.05; max-width: 540px; }
.about-headline .nc { color: var(--neon); }
.about-sub { font-family: var(--font-serif); font-size: 15px; color: var(--muted); margin-top: 10px; font-style: italic; }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(26,26,26,0.06); margin-top: clamp(36px,5vh,64px); }
.stat { background: var(--alabaster); padding: clamp(22px,3vh,40px) 16px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: var(--neon); letter-spacing: 0.01em; line-height: 1; }
.stat-label { font-family: var(--font-serif); font-size: 12px; color: var(--muted); margin-top: 6px; }

.quote-bar { background: var(--neon); color: var(--charcoal); padding: clamp(28px,4vh,52px) clamp(20px,4vw,48px); text-align: center; margin-top: clamp(36px,5vh,64px); }
.quote-bar p { font-family: var(--font-serif); font-size: clamp(1.1rem,2vw,1.6rem); font-weight: 700; font-style: italic; line-height: 1.3; }
.quote-bar .attr { font-family: var(--font-display); font-size: 11px; font-style: normal; opacity: 0.6; margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1fr 1.15fr; min-height: 320px; }
.split-img { position: relative; overflow: hidden; max-height: 400px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.split-text { background: var(--charcoal); color: var(--alabaster); padding: clamp(36px,5vw,72px) clamp(24px,4vw,52px); display: flex; flex-direction: column; justify-content: center; }
.split-text h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.6rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05; }
.split-text p { font-family: var(--font-serif); font-size: 15px; color: var(--muted-light); margin-top: 16px; line-height: 1.7; max-width: 420px; }

#contact { min-height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; overflow: hidden; padding: clamp(48px,8vh,96px) clamp(20px,4vw,48px); }
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.contact-bg::after { content: ''; position: absolute; inset: 0; background: rgba(26,26,26,0.35); }
.contact-inner { position: relative; z-index: 1; max-width: 520px; }
.contact-inner h2 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.02; }
.contact-note { font-family: var(--font-serif); font-size: 14px; color: var(--muted-light); margin-top: 16px; line-height: 1.6; font-style: italic; text-align: center; }
.contact-email { font-family: var(--font-display); font-size: clamp(1.2rem,3vw,2rem); font-weight: 700; color: var(--neon); margin-top: 28px; letter-spacing: 0.02em; text-decoration: underline; text-underline-offset: 6px; text-decoration-color: rgba(255,0,60,0.35); transition: text-decoration-color 0.3s; display: inline-block; }
.contact-email:hover { text-decoration-color: var(--neon); }

footer { padding: 20px clamp(20px,4vw,48px); font-size: 11px; color: rgba(255,255,255,0.18); display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.04); font-family: var(--font-display); letter-spacing: 0.06em; text-transform: uppercase; }
footer a { transition: color 0.2s; }
footer a:hover { color: var(--neon); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; background: var(--charcoal); flex-direction: column; justify-content: center; align-items: center; gap: 28px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; }
  .nav-toggle { display: flex; }
  .doors { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 350px; }
  .stats { grid-template-columns: repeat(2,1fr); }
}
