:root {
  --blue: #004083;
  --blue-deep: #002c5c;
  --blue-night: #001f44;
  /* gold accent system (from the gold logo) */
  --gold: #c2a24e;
  --gold-deep: #9a7b2e;
  --gold-bright: #d8be63;
  --gold-soft: #f3ecd8;
  --accent: var(--gold-deep);
  --ink: #14171d;
  --muted: #5c6573;
  --line: #e4e7ec;
  --paper: #ffffff;
  --tint: #f6f4ee;
  --tint-edge: #ece6d6;
  --font-display: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --heading: var(--font-display);
  --maxw: 1240px;
  --gutter: clamp(22px, 5vw, 84px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--heading); font-weight: 700; margin: 0; letter-spacing: -0.02em; line-height: 1.03; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
.eyebrow.on-dark { color: var(--gold-bright); }
.eyebrow.on-dark::before { background: var(--gold-bright); }

/* ===== NAV ===== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 60; transition: background .35s ease, box-shadow .35s ease, padding .35s ease; padding: 22px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav .logo { height: 30px; transition: height .35s ease; }
.nav-logo-dark { display: none; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.82); transition: color .25s ease; position: relative; white-space: nowrap; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0; background: var(--accent); transition: width .28s ease; }
.nav-links a:hover { color: #fff; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:not(.nav-cta)::after { background: var(--gold-bright); }
.nav.scrolled .nav-links a:not(.nav-cta)::after { background: var(--gold-deep); }
.nav-cta { font-size: 14px; font-weight: 600; padding: 11px 22px; border-radius: 999px; border: 1.5px solid rgba(216,190,99,.6); color: #fff !important; transition: all .25s ease; }
.nav-cta:hover { background: var(--gold-bright); color: var(--blue-night) !important; border-color: var(--gold-bright); }

.nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 var(--line), 0 14px 40px -28px rgba(0,30,70,.5); padding: 14px 0; }
.nav.scrolled .nav-logo-light { display: none; }
.nav.scrolled .nav-logo-dark { display: block; }
.nav.scrolled .logo { height: 26px; }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav.scrolled .nav-links a:hover { color: var(--ink); }
.nav.scrolled .nav-cta { border-color: var(--gold-deep); color: var(--gold-deep) !important; }
.nav.scrolled .nav-cta:hover { background: var(--gold-deep); color: #fff !important; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: background .3s; }
.nav.scrolled .menu-toggle span { background: var(--ink); }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 100% at 78% 8%, var(--blue) 0%, var(--blue-deep) 48%, var(--blue-night) 100%); color: #fff; padding-top: clamp(150px, 22vh, 240px); padding-bottom: clamp(80px, 14vh, 150px); }
.hero-mark { position: absolute; right: -8%; top: 50%; transform: translateY(-50%); width: min(62vw, 760px); opacity: .12; pointer-events: none; z-index: 1; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .14; mix-blend-mode: luminosity; pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 20% 120%, rgba(0,0,0,.28), transparent 70%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 920px; }
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 5.4rem); line-height: .98; margin: 26px 0 0; letter-spacing: -0.03em; }
.hero h1 .accentword { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.hero p.lede { font-size: clamp(1.05rem, 1.7vw, 1.4rem); color: rgba(255,255,255,.82); max-width: 600px; margin: 30px 0 0; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }
.btn { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-body); font-weight: 600; font-size: 15.5px; padding: 15px 30px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent; transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #fff; color: var(--blue); }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }
.hero-strip { position: relative; z-index: 2; margin-top: clamp(56px, 9vh, 96px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; border-top: 1px solid rgba(255,255,255,.16); padding-top: 34px; }
.hero-strip .item .k { font-family: var(--heading); font-size: clamp(1.1rem,1.5vw,1.35rem); font-weight: 700; }
.hero-strip .item .v { color: rgba(255,255,255,.66); font-size: 14.5px; margin-top: 4px; }

/* ===== SECTION SHARED ===== */
section { position: relative; }
.pad { padding-block: clamp(78px, 12vh, 150px); }
.section-head { max-width: 760px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin-top: 20px; }
.section-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--blue); }
.section-head p { color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.22rem); margin: 22px 0 0; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about-statement { font-family: var(--heading); font-weight: 700; font-size: clamp(1.7rem, 2.9vw, 2.7rem); line-height: 1.08; letter-spacing: -0.02em; }
.about-statement em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--blue); }
.about-body p { color: var(--muted); margin: 0 0 20px; }
.about-body p:last-child { margin-bottom: 0; }
.about-media { position: relative; }
.about-media image-slot { width: 100%; height: clamp(340px, 46vw, 520px); }
.about-media .badge { position: absolute; left: -22px; bottom: -22px; background: var(--blue); color: #fff; padding: 22px 26px; border-radius: 14px; max-width: 230px; box-shadow: 0 24px 50px -24px rgba(0,40,90,.6); }
.about-media .badge .n { font-family: var(--heading); font-weight: 800; font-size: 1.5rem; }
.about-media .badge .l { font-size: 13px; color: rgba(255,255,255,.78); margin-top: 4px; line-height: 1.4; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: clamp(54px, 8vw, 90px); }
.pillar { background: var(--paper); padding: 34px 32px; }
.pillar .mk { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.18rem; margin: 18px 0 8px; letter-spacing: -0.01em; }
.pillar p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.55; }

/* ===== WHAT WE DO ===== */
.dowedo { background: var(--tint); border-block: 1px solid var(--tint-edge); }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: clamp(44px, 6vw, 72px); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 38px 36px; position: relative; overflow: hidden; transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(0,40,90,.4); border-color: transparent; }
.card .idx { font-family: var(--heading); font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--accent); }
.card h3 { font-size: clamp(1.4rem, 2.1vw, 1.85rem); margin: 14px 0; }
.card p { color: var(--muted); margin: 0; max-width: 42ch; }
.card .mk-bg { position: absolute; right: -34px; bottom: -34px; width: 150px; opacity: .05; transition: opacity .35s ease, transform .35s ease; }
.card:hover .mk-bg { opacity: .09; transform: scale(1.06) rotate(-3deg); }

/* ===== PORTFOLIO ===== */
.pf-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; margin-top: clamp(44px, 6vw, 70px); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--paper); }
.pf-feature .copy { padding: clamp(38px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.pf-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.pf-feature .copy h3 { font-size: clamp(2rem, 3.4vw, 3rem); margin: 16px 0 0; }
.pf-feature .copy p { color: var(--muted); margin: 20px 0 0; max-width: 44ch; }
.pf-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; font-weight: 600; color: var(--blue); width: fit-content; }
.pf-link .arr { transition: transform .25s ease; }
.pf-link:hover .arr { transform: translateX(5px); }
.pf-link:hover { color: var(--accent); }
.pf-feature image-slot { width: 100%; height: 100%; min-height: 360px; }
.pf-sub { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 22px; }
.pf-mini { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--paper); }
.pf-mini image-slot { width: 100%; height: 200px; }
.pf-mini .m { padding: 24px 26px; }
.pf-mini .m .t { font-family: var(--heading); font-weight: 700; font-size: 1.2rem; }
.pf-mini .m .d { color: var(--muted); font-size: 14.5px; margin-top: 5px; }

/* ===== QUOTE ===== */
.quote { background: var(--blue); color: #fff; position: relative; overflow: hidden; }
.quote .mk { position: absolute; left: -6%; bottom: -30%; width: min(46vw, 520px); opacity: .07; pointer-events: none; }
.quote-inner { position: relative; z-index: 2; max-width: 980px; }
.quote blockquote { margin: 0; font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(1.6rem, 3.4vw, 2.9rem); line-height: 1.22; letter-spacing: -0.01em; }
.quote .by { margin-top: 30px; font-family: var(--font-body); font-style: normal; font-size: 14.5px; letter-spacing: .04em; color: rgba(255,255,255,.7); }

/* ===== CONTACT ===== */
.contact { background: var(--tint); border-top: 1px solid var(--tint-edge); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: end; }
.contact h2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
.contact h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--blue); }
.contact-detail { display: grid; gap: 26px; }
.cd-row .lab { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.cd-row .val { font-family: var(--heading); font-weight: 600; font-size: clamp(1.15rem, 1.8vw, 1.45rem); margin-top: 7px; letter-spacing: -0.01em; }
.cd-row .val a:hover { color: var(--blue); }

/* ===== FOOTER ===== */
footer { background: var(--blue-night); color: rgba(255,255,255,.7); padding-block: clamp(48px, 7vw, 72px); }
.foot-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.13); }
.foot-top .flogo { height: 30px; }
.foot-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.foot-nav a { font-size: 14.5px; color: rgba(255,255,255,.7); }
.foot-nav a:hover { color: #fff; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .about-grid, .pf-feature, .contact-grid { grid-template-columns: 1fr; }
  .pf-feature image-slot { min-height: 300px; }
  .pillars, .cards, .pf-sub, .hero-strip { grid-template-columns: 1fr; }
  .hero-strip .item { display: flex; align-items: baseline; gap: 14px; }
  .about-media .badge { left: 14px; bottom: 14px; }
}
@media (max-width: 560px) { body { font-size: 16px; } .cards { gap: 16px; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ===== IMAGERY ===== */
.photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-media .frame { width: 100%; height: clamp(360px, 46vw, 540px); border-radius: 18px; overflow: hidden; position: relative; }
.about-media .frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,31,68,0) 55%, rgba(0,31,68,.34)); }
.hero-photo-wrap { position: absolute; inset: 0; overflow: hidden; }

/* portfolio feature image side */
.pf-feature .media { position: relative; min-height: 360px; overflow: hidden; }
.pf-feature .media .photo { position: absolute; inset: 0; }
.pf-feature .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(0,40,90,.18), rgba(0,31,68,.55)); }

/* ChezaHouse logo panel */
.cheza-panel { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; padding: 48px; overflow: hidden;
  background: radial-gradient(120% 120% at 25% 18%, #ffffff 0%, #fbf7ef 60%, #f4eddc 100%); }
.cheza-panel::before { content: ""; position: absolute; width: 140%; height: 140%; left: -20%; top: -30%;
  background: radial-gradient(closest-side, rgba(194,162,78,.16), transparent 70%); }
.cheza-panel img { position: relative; width: min(78%, 360px); height: auto; filter: drop-shadow(0 18px 30px rgba(0,0,0,.12)); }

/* portfolio mini image */
.pf-mini .shot { width: 100%; height: 200px; position: relative; overflow: hidden; }
.pf-mini .shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,31,68,0) 50%, rgba(0,31,68,.28)); }
.pf-mini.brand-tile { background: radial-gradient(120% 120% at 80% 0%, var(--blue) 0%, var(--blue-deep) 55%, var(--blue-night) 100%); border-color: transparent; }
.pf-mini.brand-tile .shot { display: flex; align-items: center; justify-content: center; }
.pf-mini.brand-tile .shot::after { display: none; }
.pf-mini.brand-tile .shot img { width: 84px; opacity: .9; }
.pf-mini.brand-tile .m .t { color: #fff; }
.pf-mini.brand-tile .m .d { color: rgba(255,255,255,.72); }

/* quote watermark stronger in gold */
.quote .mk { opacity: .12; }
