@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500;600&display=swap");

:root{
  --bg:#233E3C;
  --gold:#B08D57;
  --paper:#f6f1ea;
  --light:#f4f1ee;
  --ink:#0b0b0b;

  --font-head:"Playfair Display", serif;
  --font-ui:"Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono:"IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1180px;

  --line: rgba(246,241,234,.18);
  --line2: rgba(176,141,87,.42);
  --panel: rgba(0,0,0,.10);
  --panel2: rgba(176,141,87,.10);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{ font-family: var(--font-ui); background: var(--bg); color: var(--paper); }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration: underline; text-underline-offset: 6px; }

.wrap{ width:min(var(--wrap), calc(100% - 56px)); margin:0 auto; }

.top{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(35,62,60,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.top-brand{
  display:flex;
  align-items:center;
  padding: 4px 0;
}

.top-brand img{
  height: 28px;
  width: auto;
  display: block;
}

.top-nav{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items:center;
}
.top-nav a{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
  opacity:.9;
}
.top-cta{
  border: 1px solid rgba(246,241,234,.35);
  padding: 8px 10px;
  text-decoration:none !important;
}
.top-cta:hover{ border-color: rgba(246,241,234,.65); }

.hero-band{
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,0));
  padding: 110px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}
.brand{ margin-top: 6px; }
.brand-logo{ width: 300px; max-width: 100%; }

.kicker{
  margin: 18px 0 12px;
  font-family: var(--font-mono);
  letter-spacing: .14em;
  font-size: 12px;
  text-transform: uppercase;
  opacity: .92;
}

.h1{
  margin: 0 0 14px;
  font-family: var(--font-head);
  color: var(--gold);
  letter-spacing: .03em;
  font-size: 54px;
  line-height: 1.05;
}

.lead{
  margin: 0 0 18px;
  max-width: 56ch;
  line-height: 1.75;
  font-size: 16px;
  color: rgba(246,241,234,.92);
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.btn{
  font-family: var(--font-mono);
  letter-spacing:.08em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(246,241,234,.35);
  text-decoration:none !important;
}
.btn:hover{ border-color: rgba(246,241,234,.65); }
.btn-gold{
  border-color: rgba(176,141,87,.7);
  color: var(--paper);
  background: rgba(176,141,87,.14);
}
.btn-gold:hover{ border-color: rgba(176,141,87,.95); }
.btn-ghost{ background: rgba(0,0,0,.06); }

.hero-kv{
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.kv-row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(246,241,234,.14);
}
.kv-row dt{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
  opacity:.9;
}
.kv-row dd{
  margin:0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246,241,234,.92);
}

.hero-frame{
  border-top-left-radius: 140px;
  border-top-right-radius: 140px;
  overflow:hidden;
  border: 1px solid rgba(176,141,87,.35);
  background: rgba(0,0,0,.08);
}
.hero-frame img{
  width:100%;
  height: 520px;
  object-fit: cover;
  object-position: center 35%;
}

.hero-caption{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display:grid;
  gap: 6px;
}
.cap-label{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing:.10em;
  text-transform: uppercase;
  color: rgba(246,241,234,.85);
}
.cap-text{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246,241,234,.9);
}

.section{ padding: 76px 0; }
.section-dark{ border-top: 1px solid var(--line); }

.section-head .h2{
  margin: 0 0 10px;
  font-family: var(--font-head);
  color: var(--gold);
  letter-spacing: .05em;
  font-size: 40px;
}
.h2{ font-family: var(--font-head); }

.rule{ width: 220px; height: 1px; background: var(--line2); }
.section-lead{
  margin: 16px 0 0;
  max-width: 860px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(246,241,234,.92);
}

.gallery{
  margin-top: 34px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.shot{
  margin:0;
  border: 1px solid rgba(176,141,87,.30);
  background: rgba(0,0,0,.08);
}
.shot img{ width:100%; height: 320px; object-fit: cover; }
.shot figcaption{
  padding: 12px 12px;
  border-top: 1px solid var(--line);
  display:flex;
  gap: 10px;
  align-items: baseline;
}

.panels{
  margin-top: 34px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.panel{
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 18px;
}
.panel-featured{
  background: var(--panel2);
  border-color: rgba(176,141,87,.62);
}
.panel-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.panel-title{
  margin:0;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing:.08em;
  font-size: 12px;
  text-transform: uppercase;
}
.badge{
  font-family: var(--font-mono);
  font-size: 12px;
  border: 1px solid rgba(246,241,234,.28);
  padding: 6px 10px;
  opacity: .95;
}

.kv{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap: 10px 14px;
  margin:0;
}
.kv dt{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
  opacity:.9;
}
.kv dd{
  margin:0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246,241,234,.92);
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.steps{
  margin-top: 34px;
  display:grid;
  gap: 10px;
  max-width: 980px;
}
.step{
  display:grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items:start;
  border: 1px solid rgba(246,241,234,.22);
  padding: 14px;
  background: rgba(0,0,0,.06);
}
.step-n{
  font-family: var(--font-mono);
  border: 1px solid rgba(176,141,87,.62);
  color: var(--gold);
  width: 54px;
  height: 54px;
  display:grid;
  place-items:center;
}
.step-t{
  font-size: 15px;
  line-height: 1.7;
  color: rgba(246,241,234,.92);
}

.contact{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}
.contact-lead{
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(246,241,234,.92);
}
.contact-lines{
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.contact-line{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(246,241,234,.14);
}
.contact-line .k{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
  opacity:.9;
}
.contact-line .v{
  font-size: 14px;
  line-height: 1.6;
}

.logo-card{
  border: 1px solid rgba(176,141,87,.30);
  background: rgba(0,0,0,.08);
  padding: 18px;
}
.logo-card img{
  width: 320px;
  max-width: 100%;
  background: #ffffff;
  padding: 14px;
}
.logo-meta{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display:grid;
  gap: 6px;
}
.logo-meta .m1{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing:.10em;
  text-transform: uppercase;
  opacity:.9;
}
.logo-meta .m2{
  font-size: 14px;
  color: rgba(246,241,234,.92);
}

.fine{
  margin: 22px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing:.06em;
  opacity:.85;
}

@media (max-width: 980px){
  .wrap{ width: min(var(--wrap), calc(100% - 32px)); }
  .hero-grid{ grid-template-columns: 1fr; }
  .h1{ font-size: 42px; }
  .hero-frame img{
  width:100%;
  height: 520px;
  object-fit: cover;
  object-position: center 35%;
}
  .gallery{ grid-template-columns: 1fr; }
  .panels{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .kv{ grid-template-columns: 140px 1fr; }
}


/* --- Requested visual fixes (v2) --- */

/* 1) HERO: full shade visible, centered, ~2/3 width */
.hero-media{display:flex;justify-content:center;}
.hero-media .hero-img{
  width:66% !important;
  max-width:760px;
  height:auto !important;
  object-fit:contain !important;
  object-position:center center !important;
  display:block;
}

/* 2) Specs/System logo frame: frame matches logo width */
.logo-plate{
  display:inline-block;
  background:#fff;
  padding:18px;
}
.logo-plate .spec-logo{
  display:block;
  height:140px;
  width:auto;
}

/* 3) Work image 1: push subject slightly lower */
.work-img.work-img-1{
  object-position:center 70% !important;
}

/* PROCESS IMAGE SECTION */
.process-section{margin:120px 0;}
.process-image{position:relative;max-height:460px;overflow:hidden;}
.process-image img{width:100%;height:460px;object-fit:cover;display:block;}
.process-overlay{
  position:absolute;bottom:40px;left:40px;
  color:#e6e0cf;
  background:rgba(0,0,0,0.25);
  padding:20px 24px;
}
.process-overlay h3{
  margin:0 0 8px 0;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:14px;
}
.process-overlay p{
  margin:0;
  font-size:14px;
  line-height:1.4;
}

/* ensure process section is visible */
#process{display:block;}

/* PROCESS section force visibility */
.process-section{display:block;margin:120px 0;}
.process-image{position:relative;height:520px;overflow:hidden;}
.process-image img{width:100%;height:100%;object-fit:contain;background:#0f1a16;}

/* PROCESS banner image */
.process-banner{
  position: relative;
  width: min(1200px, calc(100% - 80px));
  margin: 48px auto 28px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(176,141,87,0.35);
  background: rgba(0,0,0,0.25);
}
.process-banner img{
  width: 100%;
  height: 520px;
  display: block;
  object-fit: contain;
  background: #0f1a16;
}
.process-banner__overlay{
  position:absolute;
  left: 24px;
  bottom: 22px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(2px);
}
.process-banner__overlay h3{
  margin:0 0 6px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.process-banner__overlay p{
  margin:0;
  font-size: 14px;
  line-height: 1.35;
  max-width: 42ch;
}
@media (max-width: 760px){
  .process-banner{width: calc(100% - 32px); margin: 28px auto 18px;}
  .process-banner img{height: 360px;}
  .process-banner__overlay{left: 14px; bottom: 14px;}
}


/* Shared presentation style for key product images (no cropping) */
.hero-right img,
.work-grid .work-card:first-child img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  background:rgba(0,0,0,0.18);
}

/* Ensure hero-right has a stable height so contain looks intentional */
.hero-right{
  min-height:520px;
}

/* Ensure first work card keeps the same visual language */
.work-grid .work-card:first-child .work-media{
  height:340px;
}

/* PROCESS image visibility */
.process-image{
  margin-top:48px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.18);
  padding:18px;
}
.process-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}


/* HERO image: show full shade, no cropping */
.hero img, .hero-right img, .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}



/* --- FIX: keep logo card frame tight to logo width (no full-column stretch) --- */
.contact-right{ justify-self:end; }
.logo-card{
  display:inline-block;
  width: fit-content;
  max-width: 100%;
}



/* ==============================
   Maison Lux — ver 1.1 (Typography + Spacing)
   Baseline-safe overrides only.
   ============================== */

:root{
  --type-scale-1: 44px;   /* H1 */
  --type-scale-2: 18px;   /* H2 / section labels */
  --type-body: 16px;      /* body */
  --type-small: 13px;     /* meta */
  --lh-body: 1.75;
  --lh-tight: 1.15;
}

/* Global rhythm */
body{
  font-size: var(--type-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

p{ margin: 0 0 14px; }
p:last-child{ margin-bottom: 0; }

/* Headings */
h1{
  font-size: var(--type-scale-1);
  line-height: var(--lh-tight);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin: 0 0 14px;
}

h2{
  font-size: var(--type-scale-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 14px;
}

/* Secondary titles often used as smaller caps */
h3{
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Links */
a{
  text-underline-offset: 3px;
}

/* Section spacing: make the page breathe */
section{
  scroll-margin-top: 96px;
}

.wrap{
  padding-left: 28px;
  padding-right: 28px;
}

@media (max-width: 720px){
  :root{ --type-scale-1: 34px; }
  .wrap{ padding-left: 18px; padding-right: 18px; }
}

/* Cards / panels: slightly more premium density */
.card, .panel, .tile{
  padding: 20px !important;
}

@media (max-width: 720px){
  .card, .panel, .tile{
    padding: 16px !important;
  }
}

/* Make muted text more readable on dark green */
.muted, .subtle, .meta, .hint{
  opacity: 0.82 !important;
}

/* Improve list readability if present */
ul, ol{
  padding-left: 1.2rem;
}
li{ margin: 6px 0; }

/* PROCESS overlay (if used) — clearer typography */
.process-overlay h3{
  font-size: var(--type-small);
  letter-spacing: 0.14em;
}
.process-overlay p{
  font-size: 14px;
  line-height: 1.5;
}


/* ---------- SEO/UX additions: language switch, IG lead, FAQ ---------- */
.top-nav .lang{
  margin-left: 14px;
  padding: 6px 10px;
  border: 1px solid var(--line2);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .95;
}
.top-nav .lang:hover{ opacity: 1; }

.lead-aux{
  margin: 10px 0 18px;
  color: rgba(246,241,234,.86);
  font-size: 14px;
  line-height: 1.7;
}
.lead-aux a{
  color: rgba(246,241,234,.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(176,141,87,.45);
  padding-bottom: 2px;
}
.lead-aux a:hover{ opacity:.95; }

.faq{
  margin-top: 22px;
  display: grid;
  gap: 12px;
  max-width: 860px;
}
.faq-item{
  background: rgba(0,0,0,.10);
  border: 1px solid rgba(246,241,234,.10);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}
.faq-q{
  cursor: pointer;
  list-style: none;
  padding: 16px 16px;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: .01em;
  color: rgba(246,241,234,.92);
}
.faq-q::-webkit-details-marker{ display:none; }
.faq-a{
  padding: 0 16px 16px;
  color: rgba(246,241,234,.84);
  line-height: 1.75;
  font-size: 14px;
}
.faq-item[open]{
  border-color: rgba(176,141,87,.28);
  background: rgba(176,141,87,.08);
}



/* ---------- Visual refinements (Johanna style-safe) ---------- */
img{ max-width:100%; height:auto; display:block; }

/* Hero imagery: keep continuous, avoid awkward cropping */
.hero .hero-right img,
.hero .hero-left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Work grid: unify aspect ratio */
.work-grid img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

/* Timeline section */
.timeline-wrap{ max-width: 1100px; }
.timeline-grid{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 26px;
  align-items: start;
  margin-top: 26px;
}
.timeline-media{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(246,241,234,.10);
  background: rgba(0,0,0,.10);
}
.timeline-media img{
  width:100%;
  height:100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}
.timeline{
  list-style:none;
  margin: 0;
  padding: 0 0 0 18px;
  position: relative;
}
.timeline:before{
  content:"";
  position:absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(176,141,87,.28);
}
.t-item{
  position: relative;
  padding: 0 0 14px 0;
}
.t-dot{
  position:absolute;
  left: -11px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(176,141,87,.92);
  box-shadow: 0 0 0 6px rgba(176,141,87,.12);
}
.t-card{
  border: 1px solid rgba(246,241,234,.10);
  background: rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 14px 14px 14px 14px;
}
.t-title{
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: .01em;
  color: rgba(246,241,234,.92);
  margin-bottom: 6px;
}
.t-desc{
  color: rgba(246,241,234,.84);
  line-height: 1.75;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 900px){
  .timeline-grid{ grid-template-columns: 1fr; }
  .timeline-media img{ aspect-ratio: 16 / 9; }
  .work-grid img{ aspect-ratio: 3 / 2; }
}


/* Limit process image height so it never becomes full-screen */
.timeline-media{
  max-height: 520px;
}
.timeline-media img{
  max-height: 520px;
  height: auto;
  object-fit: cover;
}



/* --- Fix: process image should not fill the whole screen --- */
.timeline-media{
  max-height: 520px;
}
.timeline-media img{
  height: 520px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}
@media (max-width: 900px){
  .timeline-media{ max-height: none; }
  .timeline-media img{ height: auto; }
}



/* === Process image height fix (EN + FI) === */
.timeline-media img,
.process-media img {
  max-height: 520px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .timeline-media img,
  .process-media img {
    max-height: 360px;
  }
}


/* === Process image: limit height === */

.timeline-media img,
.process-media img{
  max-height: 520px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: auto;
}
@media (max-width: 900px){
  .timeline-media img,
  .process-media img{
    max-height: 360px;
  }
}


  
}









@media (max-width: 900px){
  
  
  
}
