*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0c0c0c;
  color: #e8e4dc;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

:root {
  --black:  #0c0c0c;
  --deep:   #111111;
  --char:   #181818;
  --stone:  #222222;
  --mid:    #5a5a5a;
  --muted:  #888888;
  --warm:   #e8e4dc;
  --red:    #d42b1e;
  --cond:   'Barlow Condensed', sans-serif;
  --body:   'Barlow', sans-serif;
}

/* TYPE */
.d1 { font-family: var(--cond); font-size: clamp(72px, 11vw, 160px); font-weight: 700; line-height: 0.88; letter-spacing: -0.01em; text-transform: uppercase; color: var(--warm); }
.d2 { font-family: var(--cond); font-size: clamp(52px, 8vw, 110px);  font-weight: 700; line-height: 0.9;  letter-spacing: -0.01em; text-transform: uppercase; color: var(--warm); }
.d3 { font-family: var(--cond); font-size: clamp(36px, 5vw, 72px);   font-weight: 600; line-height: 0.92; text-transform: uppercase; color: var(--warm); }
.d4 { font-family: var(--cond); font-size: clamp(26px, 3.5vw, 48px); font-weight: 600; line-height: 0.95; letter-spacing: 0.01em; text-transform: uppercase; color: var(--warm); }
.kicker       { font-family: var(--cond); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); }
.kicker-muted { font-family: var(--cond); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.lead  { font-size: 17px; font-weight: 300; color: var(--muted); line-height: 1.6; }
.copy  { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; }
.micro { font-family: var(--cond); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); }

/* NAV */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 60px; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s;
}
#nav.scrolled {
  background: rgba(12,12,12,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--cond); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--warm); }
.nav-cta {
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 9px 22px; border: 1px solid var(--red); color: var(--red);
  background: none; transition: all 0.2s; display: inline-block;
}
.nav-cta:hover { background: var(--red); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--warm); }
.mobile-menu {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0; z-index: 999;
  background: rgba(12,12,12,0.97);
  padding: 24px 24px 32px;
  flex-direction: column; gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--cond); font-size: 14px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--warm); }

/* BUTTONS */
.btn { display: inline-block; font-family: var(--cond); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 13px 28px; transition: all 0.18s; border: none; background: none; color: inherit; }
.btn-solid   { background: var(--warm); color: var(--black); }
.btn-solid:hover { background: #fff; }
.btn-outline { border: 1px solid rgba(232,228,220,0.35); color: var(--warm); }
.btn-outline:hover { border-color: var(--warm); background: rgba(232,228,220,0.07); }
.btn-red     { background: var(--red); color: #fff; }
.btn-red:hover { background: #be2619; }

/* SPACING */
.sp    { padding: 100px 40px; }
.sp-sm { padding: 70px 40px; }
.sp-lg { padding: 140px 40px; }
.bg-deep  { background: var(--deep); }
.bg-char  { background: var(--char); }
.bg-stone { background: var(--stone); }
.bg-black { background: var(--black); }
.wrap        { max-width: 1280px; margin: 0 auto; }
.wrap-mid    { max-width: 1040px; margin: 0 auto; }
.wrap-narrow { max-width: 760px;  margin: 0 auto; }
.red-bar { display: inline-block; width: 40px; height: 3px; background: var(--red); margin-bottom: 24px; }
.red-bar-center { display: block; width: 40px; height: 3px; background: var(--red); margin: 0 auto 24px; }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transform: scale(1.04); transition: transform 7s ease; }
.hero-bg img.loaded { transform: scale(1.0); }
.hero-fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,12,0.2) 0%, rgba(12,12,12,0.45) 55%, rgba(12,12,12,0.96) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 40px 72px; }
.hero-content .kicker { margin-bottom: 18px; }
.hero-content .d1    { margin-bottom: 24px; max-width: 900px; }
.hero-content .lead  { max-width: 460px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* STATEMENT */
.statement { padding: 120px 40px; background: var(--black); text-align: center; }
.statement .d3   { margin-bottom: 20px; }
.statement .lead { max-width: 560px; margin: 0 auto; }

/* COLLECTION TILES */
.tiles { display: grid; grid-template-columns: 1fr 1fr; }
.tile { position: relative; height: 580px; overflow: hidden; cursor: pointer; }
.tile img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: opacity 0.5s, transform 0.7s; }
.tile:hover img { opacity: 0.72; transform: scale(1.04); }
.tile-inner { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,12,12,0.9) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 44px 36px; }
.tile-inner .kicker { margin-bottom: 10px; }
.tile-inner .d3   { margin-bottom: 8px; }
.tile-inner .copy { margin-bottom: 20px; max-width: 300px; }
.tile-link { font-family: var(--cond); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm); display: inline-flex; align-items: center; gap: 10px; transition: gap 0.2s; }
.tile:hover .tile-link { gap: 18px; }
.tile-link::after { content: '->'; }

/* SPEC STRIP */
.spec-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.08); }
.spec-cell { padding: 44px 36px; border-right: 1px solid rgba(255,255,255,0.08); }
.spec-cell:last-child { border-right: none; }
.spec-cell .d3 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 6px; }

/* FEATURE GRID */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,0.07); }
.feature-cell { padding: 48px 36px; border-right: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); }
.feature-cell:nth-child(3n) { border-right: none; }
.feature-cell .kicker-muted { margin-bottom: 16px; }
.feature-cell .d4 { font-size: clamp(22px, 2.5vw, 36px); margin-bottom: 12px; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.split:hover .split-img img { transform: scale(1.03); }
.split-body { display: flex; flex-direction: column; justify-content: center; padding: 72px 60px; }
.split-body .red-bar { margin-bottom: 20px; }
.split-body .kicker  { margin-bottom: 14px; }
.split-body .d3      { margin-bottom: 20px; }
.split-body .copy    { margin-bottom: 28px; }

/* MODELS */
.models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.model { background: var(--char); padding: 40px 32px; display: flex; flex-direction: column; border-top: 3px solid transparent; transition: border-color 0.2s; }
.model:hover { border-top-color: var(--red); }
.model-img { aspect-ratio: 1; overflow: hidden; background: var(--deep); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.model-img img { width: 78%; height: 78%; object-fit: contain; transition: transform 0.5s; }
.model:hover .model-img img { transform: scale(1.07); }
.model .kicker   { margin-bottom: 8px; }
.model .d4       { margin-bottom: 8px; }
.model .copy     { margin-bottom: 16px; flex: 1; }
.model-price { font-family: var(--cond); font-size: 32px; font-weight: 600; color: var(--warm); margin-bottom: 20px; }

/* LUME */
.lume { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 240px; }
.lume > div { overflow: hidden; }
.lume img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.lume > div:hover img { transform: scale(1.06); }

/* QUOTE */
.q-block { padding: 110px 40px; background: var(--stone); text-align: center; }
.q-block blockquote { font-family: var(--cond); font-size: clamp(32px, 5vw, 68px); font-weight: 600; text-transform: uppercase; color: var(--warm); line-height: 0.92; max-width: 800px; margin: 0 auto 20px; letter-spacing: -0.01em; }
.q-block cite { font-family: var(--cond); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); font-style: normal; }

/* MOMENTUM */
.momentum-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.06); }
.stat-box { background: var(--char); padding: 36px 28px; }
.stat-box .d3 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 6px; }

/* COMMUNITY */
.comm-photos { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.comm-ph { aspect-ratio: 4/5; overflow: hidden; }
.comm-ph img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity 0.3s, transform 0.6s; }
.comm-ph:hover img { opacity: 0.95; transform: scale(1.04); }

/* PROJECTS STRIP */
.proj-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.proj-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: opacity 0.4s, transform 0.6s; object-position: top; }
.proj-card:hover img { opacity: 0.8; transform: scale(1.04); }
.proj-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,12,12,0.88) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.proj-overlay .kicker { margin-bottom: 8px; }
.proj-overlay .d4 { font-size: clamp(18px, 2vw, 30px); }

/* CTA BAND */
.cta-band { padding: 140px 40px; background: var(--char); text-align: center; }
.cta-band .d2   { margin-bottom: 20px; }
.cta-band .lead { margin-bottom: 40px; }

/* DETAIL STRIP */
.detail-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.detail-img { aspect-ratio: 1; overflow: hidden; }
.detail-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: opacity 0.3s, transform 0.5s; }
.detail-img:hover img { opacity: 1; transform: scale(1.06); }

/* SPEC TABLE */
.spec-table { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.06); }
.spec-row { background: var(--char); padding: 22px 28px; display: flex; justify-content: space-between; align-items: baseline; gap: 20px; }
.spec-label { font-family: var(--cond); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); }
.spec-val   { font-family: var(--cond); font-size: 20px; font-weight: 600; color: var(--warm); text-align: right; }

/* PROJECT FULL */
.proj-full { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.proj-full-img { overflow: hidden; }
.proj-full-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0.82; }
.proj-full-body { background: var(--char); display: flex; flex-direction: column; justify-content: center; padding: 80px 64px; }
.proj-full-body .red-bar  { margin-bottom: 18px; }
.proj-full-body .kicker   { margin-bottom: 14px; }
.proj-full-body .d3       { margin-bottom: 18px; }
.proj-full-body .lead     { margin-bottom: 16px; }
.proj-full-body .copy     { margin-bottom: 36px; }

/* VALUES */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.val-item { background: var(--char); padding: 48px 36px; }
.val-item .kicker-muted { margin-bottom: 16px; }
.val-item .d4 { font-size: clamp(22px, 2.8vw, 40px); margin-bottom: 14px; }

/* ENQUIRE HERO */
.enquire-hero { height: 55vh; min-height: 380px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.enquire-bg { position: absolute; inset: 0; }
.enquire-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; object-position: center 30%; }
.enquire-fade { position: absolute; inset: 0; background: linear-gradient(to top, var(--black) 0%, transparent 60%); }
.enquire-content { position: relative; z-index: 2; padding: 0 40px 60px; }

/* FORM */
.form-wrap { max-width: 700px; }
.f-row { margin-bottom: 30px; }
.f-row label { display: block; font-family: var(--cond); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.f-row input, .f-row textarea, .f-row select { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(232,228,220,0.15); padding: 12px 0; font-family: var(--body); font-size: 16px; font-weight: 300; color: var(--warm); outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.f-row input:focus, .f-row textarea:focus, .f-row select:focus { border-bottom-color: var(--red); }
.f-row select option { background: var(--char); }
.f-row textarea { resize: none; height: 110px; }

/* FOOTER */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 40px 36px; }
.footer-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-logo img { height: 36px; width: auto; opacity: 0.7; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: var(--mid); max-width: 220px; line-height: 1.5; }
.ft-head { font-family: var(--cond); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.ft-links { list-style: none; }
.ft-links li { margin-bottom: 9px; }
.ft-links a { font-size: 13px; color: var(--mid); transition: color 0.18s; }
.ft-links a:hover { color: var(--warm); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; display: flex; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--mid); }

/* REVEAL */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.on { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }

/* MOBILE */
@media (max-width: 860px) {
  #nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .sp, .sp-sm, .sp-lg, .statement, .cta-band, .q-block { padding-left: 20px; padding-right: 20px; }
  .hero-content, .enquire-content { padding-left: 20px; padding-right: 20px; }
  .tiles, .models, .spec-strip, .momentum-wrap, .proj-full, .split, .comm-photos, .detail-strip, .proj-strip, .values, .feature-grid { grid-template-columns: 1fr; }
  .tile { height: 420px; }
  .spec-strip { border: none; }
  .spec-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .lume { grid-template-columns: 1fr; height: auto; }
  .lume > div { height: 190px; }
  .footer-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 44px 20px 28px; }
  .split-body { padding: 44px 20px; }
  .proj-full-body { padding: 44px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
