
:root{
  --ink:#13233f;
  --ink-soft:#40536f;
  --muted:#66758b;
  --line:#d7d2c8;
  --bg:#e7e3da;
  --card:#f7f5f0;
  --soft:#efe9df;
  --radius:24px;
  --shadow:0 12px 28px rgba(19,35,63,.06);
  --shadow-soft:0 8px 20px rgba(19,35,63,.05);
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink-soft);
  font:16px/1.65 'Manrope',system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial,sans-serif;
}
img{max-width:100%;display:block}
a{color:var(--ink);text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 28px}
.section{padding:80px 0}
.card{
  background:rgba(251,250,247,.82);
  border:1px solid rgba(19,35,63,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}
[data-reveal]{opacity:0;transform:translateY(16px);transition:opacity .32s ease,transform .32s ease}
[data-reveal].is-visible{opacity:1;transform:none}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(231,227,218,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .24s ease, box-shadow .24s ease;
}
.site-header.scrolled{
  border-bottom-color:rgba(19,35,63,.08);
  box-shadow:0 10px 24px rgba(19,35,63,.05);
}
.nav-inner{
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{display:inline-flex;align-items:center;flex:0 0 auto}
.brand img{height:128px;width:auto}

.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-links a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--ink);
  font-size:15px;
  font-weight:600;
  opacity:.9;
  transition:background .22s ease,opacity .22s ease,transform .22s ease;
}
.nav-links a:hover{
  background:rgba(255,255,255,.52);
  opacity:1;
  transform:translateY(-1px);
}
.lang-switch{
  display:flex;
  gap:8px;
  margin-left:10px;
  padding-left:14px;
  border-left:1px solid rgba(19,35,63,.12);
}
.lang-btn{
  width:38px;
  height:26px;
  border:1px solid rgba(19,35,63,.12);
  border-radius:9px;
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:2px;
  cursor:pointer;
}
.lang-btn.active{outline:2px solid rgba(19,35,63,.18)}
.lang-btn svg{width:24px;height:16px;display:block}

.hero{
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(19,35,63,.05);
  border-bottom:1px solid rgba(19,35,63,.06);
  background:
    linear-gradient(90deg, rgba(231,227,218,.94) 0%, rgba(231,227,218,.84) 33%, rgba(231,227,218,.38) 66%, rgba(231,227,218,.18) 100%),
    url('/hero-copenhagen.jpg') center/cover no-repeat;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 34%, rgba(255,255,255,.34), transparent 36%),
    radial-gradient(circle at 85% 78%, rgba(194,171,126,.09), transparent 28%);
  pointer-events:none;
}
.hero:after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-120px;
  width:min(42vw,640px);
  height:min(42vw,640px);
  background:url('/northernstar.jpeg') center/contain no-repeat;
  opacity:.12;
  mix-blend-mode:multiply;
  filter:saturate(.8);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  padding:74px 0 72px;
}
.hero-copy{max-width:620px}
h1,h2,h3{margin:0;color:var(--ink)}
h1{
  font-size:clamp(44px,6vw,76px);
  line-height:.98;
  letter-spacing:-.055em;
  max-width:10ch;
  margin:0 0 20px;
}
h2{
  font-size:clamp(32px,4vw,50px);
  line-height:1.04;
  letter-spacing:-.04em;
}
.hero-copy p{
  max-width:62ch;
  font-size:18px;
  color:#314564;
  margin:0 0 28px;
}
.cta-row{display:flex;flex-wrap:wrap;gap:12px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 18px;
  border-radius:16px;
  border:1px solid rgba(19,35,63,.1);
  background:rgba(255,255,255,.86);
  color:var(--ink);
  font-weight:700;
  box-shadow:var(--shadow);
}
.btn.primary{background:var(--ink);color:#fff}

.hero-side{display:flex;align-items:flex-end;justify-content:flex-end}
.hero-panel{
  width:min(440px,100%);
  padding:14px;
  background:rgba(249,247,242,.76);
  border:1px solid rgba(19,35,63,.08);
  border-radius:28px;
  backdrop-filter:blur(10px);
  box-shadow:0 16px 34px rgba(19,35,63,.08);
}
.hero-stack{display:grid;gap:12px}
.panel-card{
  padding:18px 18px 16px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(19,35,63,.08);
  border-radius:22px;
}
.panel-kicker{
  font-size:11px;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:#7c8898;
  margin-bottom:8px;
  font-weight:800;
}
.panel-card h3{font-size:18px;margin-bottom:6px;letter-spacing:-.02em}
.panel-card p{margin:0;font-size:14px;color:#59697f}

.section-heading{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:end;
  margin-bottom:28px;
}
.section-heading p{
  margin:0;
  color:#68778c;
  font-size:18px;
  max-width:32ch;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-card,.method-card,.about-card{padding:22px}
.service-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(239,233,223,.75);
  border:1px solid rgba(194,171,126,.22);
  display:grid;
  place-items:center;
  margin-bottom:14px;
  color:#b18449;
  font-weight:800;
}
.service-card h3,.method-card h3,.about-card h3{
  font-size:19px;
  letter-spacing:-.02em;
  margin-bottom:8px;
}
.service-card p,.method-card p,.about-card p{margin:0;color:#69798d}

.method-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.method-no{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#8995a4;
  margin-bottom:8px;
  font-weight:800;
}

.case-wrap{padding:26px}
.case-top{display:grid;grid-template-columns:.82fr 1.18fr;gap:26px;margin-bottom:18px}
.case-note{margin:8px 0 0;color:#5d6e84}
.badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
.badge{
  padding:7px 10px;
  border:1px solid rgba(19,35,63,.09);
  border-radius:999px;
  background:rgba(239,233,223,.56);
  font-size:13px;
  color:#4b5d75;
}
.case-list{margin:0;padding-left:20px;color:#42546d}
.case-list li{margin-bottom:10px}
.outcome{
  margin-top:18px;
  padding:16px 18px;
  background:rgba(239,233,223,.56);
  border-radius:18px;
  color:#2f425c;
  border:1px solid rgba(19,35,63,.06);
}

.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.contact-card{
  padding:20px 28px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  align-items:center;
}
.contact-card p{margin:0}
.contact-card p a{color:var(--ink);font-weight:700}

footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(19,35,63,.08);
  color:#65758a;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  align-items:center;
}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.footer-links a{color:#48637f}
.footer-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(19,35,63,.14);
  background:rgba(255,255,255,.78);
  color:#35506d;
}
.footer-icon svg{width:22px;height:22px;display:block}

.simple-page{padding:56px 0 80px}
.simple-page h1{font-size:clamp(30px,4vw,44px);max-width:none;margin-bottom:18px}
.simple-page .card{padding:24px}
.simple-page h2{font-size:22px;margin:24px 0 10px}
.simple-page p,.simple-page li{color:#42556f}

@media (max-width:1080px){
  .hero-grid,.case-top,.about-grid,.section-heading{grid-template-columns:1fr}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .hero-side{justify-content:flex-start}
  .hero-panel{width:100%}
}
@media (max-width:760px){
  .site-header{position:relative}
  .nav-inner{display:block;padding:16px 0 12px;min-height:auto}
  .brand{justify-content:center;margin-bottom:10px}
  .brand img{height:118px}
  .nav-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .nav-links a{text-align:center;background:rgba(255,255,255,.38)}
  .lang-switch{grid-column:1/-1;justify-content:center;margin:6px 0 0;padding-left:0;border-left:0}
  .hero{background-position:62% top}
  .hero-grid{padding:30px 0 38px;gap:18px}
  h1{font-size:38px;max-width:none}
  .hero-copy p{font-size:16px}
  .hero-panel{padding:0;background:transparent;backdrop-filter:none;border:0;box-shadow:none}
}
@media (max-width:640px){
  .wrap{padding:0 16px}
  .section{padding:58px 0}
  .service-grid,.method-grid{grid-template-columns:1fr}
  .contact-card{padding:18px 20px}
  .section-heading p{font-size:16px}
}
@media (max-width:430px){
  .brand img{height:104px}
  .nav-links a{font-size:14px}
  h1{font-size:33px}
  .footer-icon{width:44px;height:44px}
  .footer-icon svg{width:24px;height:24px}
}
