/* ============================================================
   SUBSIDIARY COLOR WORLDS
   Layered on top of style.css to give each subsidiary its own
   distinct visual atmosphere and layout personality.
============================================================ */

/* -------- Full-viewport atmospheric hero -------- */
.world-hero{
  position:relative; height:100vh; min-height:720px; overflow:hidden; color:#fff;
}
.world-hero-img{
  position:absolute; inset:0; background-size:cover; background-position:center;
  animation:kenburns 30s ease-in-out infinite alternate;
}
.world-hero-veil{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.05) 40%, rgba(0,0,0,.75) 100%);
}
.world-hero.orange .world-hero-veil{
  background:linear-gradient(160deg, rgba(224,57,18,.55) 0%, rgba(30,10,0,.30) 45%, rgba(0,0,0,.82) 100%);
}
.world-hero.teal .world-hero-veil{
  background:linear-gradient(160deg, rgba(13,60,68,.72) 0%, rgba(0,20,25,.50) 45%, rgba(0,0,0,.82) 100%);
}
.world-hero.purple .world-hero-veil{
  background:linear-gradient(160deg, rgba(86,19,69,.60) 0%, rgba(20,0,15,.45) 45%, rgba(0,0,0,.82) 100%);
}
.world-hero-inner{
  position:relative; z-index:2; height:100%; padding:0 var(--side);
  display:grid; grid-template-columns:1fr 1fr; align-items:end; gap:40px;
  padding-bottom:10vh;
}
.world-hero .subsidiary-logo{
  height:64px; width:auto; margin-bottom:32px; filter:brightness(0) invert(1);
}
.world-hero .subsidiary-tag{
  font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase; opacity:.9;
  display:inline-flex; align-items:center; gap:10px; margin-bottom:14px;
}
.world-hero .subsidiary-tag .dot{width:8px; height:8px; border-radius:50%;}
.world-hero.orange .subsidiary-tag .dot{background:var(--orange);}
.world-hero.teal .subsidiary-tag .dot{background:#5EE38B;}
.world-hero.purple .subsidiary-tag .dot{background:#E8B4D6;}
.world-hero h1{
  font-family:var(--font-display); font-weight:200;
  font-size:clamp(56px, 9vw, 160px); line-height:.94; letter-spacing:-.025em;
  color:#fff;
}
.world-hero h1 strong{font-weight:700;}
.world-hero h1 em{font-family:var(--font-editorial); font-style:italic; font-weight:400;}
.world-hero .kicker{
  max-width:440px; font-size:14px; line-height:1.7; opacity:.90;
  padding-bottom:20px;
}
.world-hero .cta-row{margin-top:24px; display:flex; gap:14px; flex-wrap:wrap;}
.world-hero .cta-row a{
  font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  padding:14px 26px; border:1px solid rgba(255,255,255,.6); color:#fff;
  transition:background .3s, color .3s, border-color .3s;
}
.world-hero .cta-row a:hover{background:#fff; color:var(--ink);}
.world-hero .cta-row a.primary{background:#fff; color:var(--ink); border-color:#fff;}
.world-hero.orange .cta-row a.primary:hover{background:var(--orange); color:#fff; border-color:var(--orange);}
.world-hero.teal .cta-row a.primary:hover{background:var(--teal); color:#fff; border-color:var(--teal);}
.world-hero.purple .cta-row a.primary:hover{background:var(--purple); color:#fff; border-color:var(--purple);}

@media (max-width:900px){.world-hero-inner{grid-template-columns:1fr;} .world-hero .subsidiary-logo{height:44px;}}

/* -------- Marquee scroll banner -------- */
.marquee{
  position:relative; overflow:hidden; padding:24px 0;
  color:#fff;
}
.marquee.orange{background:var(--orange);}
.marquee.teal{background:var(--teal);}
.marquee.purple{background:var(--purple);}
.marquee-track{
  display:flex; gap:60px; white-space:nowrap;
  animation:marquee 40s linear infinite;
  font-family:var(--font-display); font-weight:200;
  font-size:clamp(28px,4vw,60px); letter-spacing:-.015em;
}
.marquee-track span em{font-family:var(--font-editorial); font-style:italic;}
.marquee-track span::after{
  content:"◆"; margin-left:60px; font-size:.5em; vertical-align:middle; opacity:.5;
}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* -------- Manifesto (huge type block) -------- */
.manifesto{
  padding:clamp(80px,10vw,140px) var(--side);
  background:var(--white);
}
.manifesto.orange-tint{background:linear-gradient(180deg, #fff8f5 0%, #fff 100%);}
.manifesto.teal-tint{background:linear-gradient(180deg, #f2f8f9 0%, #fff 100%);}
.manifesto.purple-tint{background:linear-gradient(180deg, #faf3f7 0%, #fff 100%);}
.manifesto .m-eyebrow{
  font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase;
  margin-bottom:32px;
}
.manifesto.orange-tint .m-eyebrow{color:var(--orange);}
.manifesto.teal-tint .m-eyebrow{color:var(--teal);}
.manifesto.purple-tint .m-eyebrow{color:var(--purple);}
.manifesto h2{
  font-family:var(--font-display); font-weight:200;
  font-size:clamp(40px,6vw,110px); line-height:1; letter-spacing:-.028em;
  max-width:1400px;
}
.manifesto h2 em{font-family:var(--font-editorial); font-style:italic; font-weight:500;}
.manifesto h2 strong{font-weight:700;}
.manifesto.orange-tint h2 em{color:var(--orange);}
.manifesto.teal-tint h2 em{color:var(--teal);}
.manifesto.purple-tint h2 em{color:var(--purple);}
.manifesto .m-body{
  margin-top:44px; max-width:720px;
  font-size:16px; line-height:1.75; color:var(--ink-soft); font-weight:300;
}

/* -------- Big stats row (Construction & Finishing) -------- */
.stats-row{
  padding:clamp(60px,7vw,90px) var(--side);
  background:var(--teal); color:#fff;
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  border-top:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.stat{
  padding:0 26px; border-left:1px solid rgba(255,255,255,.14);
}
.stat:first-child{border-left:none;}
.stat .n{
  font-family:var(--font-display); font-weight:200;
  font-size:clamp(56px,7vw,96px); line-height:.95; letter-spacing:-.02em;
}
.stat .lbl{
  margin-top:12px; font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase; opacity:.75;
}
.stat p{margin-top:12px; font-size:13px; line-height:1.5; opacity:.75; max-width:220px;}
@media (max-width:900px){.stats-row{grid-template-columns:1fr 1fr;} .stat{border-left:none; padding:20px 0; border-top:1px solid rgba(255,255,255,.14);} .stat:first-child, .stat:nth-child(2){border-top:none;}}
@media (max-width:520px){.stats-row{grid-template-columns:1fr;}}

/* -------- Materials palette (Design Studio) -------- */
.materials{
  padding:clamp(70px,10vw,120px) var(--side); background:var(--white);
}
.materials-head{margin-bottom:44px; max-width:720px;}
.materials-head h2{font-family:var(--font-display); font-weight:200; font-size:clamp(36px,4.5vw,64px); letter-spacing:-.01em;}
.materials-head h2 em{font-family:var(--font-editorial); font-style:italic; font-weight:500; color:var(--orange);}
.materials-head p{font-size:15px; color:var(--ink-soft); font-weight:300; line-height:1.65; margin-top:14px;}
.materials-grid{display:grid; grid-template-columns:repeat(6,1fr); gap:20px;}
.material{
  aspect-ratio:3/4; position:relative; overflow:hidden;
  transition:transform .5s ease;
}
.material img{width:100%; height:100%; object-fit:cover; transition:transform 1.4s cubic-bezier(.2,.7,.2,1);}
.material:hover img{transform:scale(1.06);}
.material .m-label{
  position:absolute; left:14px; right:14px; bottom:14px; z-index:2; color:#fff;
  font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase;
}
.material::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, transparent 55%, rgba(0,0,0,.7) 100%);
}
@media (max-width:820px){.materials-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:520px){.materials-grid{grid-template-columns:repeat(2,1fr);}}

/* -------- Craft detail grid (Construction & Finishing) -------- */
.craft{
  padding:clamp(70px,10vw,120px) var(--side); background:var(--gray-03);
}
.craft-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:36px; gap:20px; flex-wrap:wrap;
}
.craft-head h2{font-family:var(--font-display); font-weight:200; font-size:clamp(36px,4.5vw,64px); letter-spacing:-.01em;}
.craft-head h2 em{font-family:var(--font-editorial); font-style:italic; font-weight:500; color:var(--teal);}
.craft-head p{max-width:340px; font-size:13px; color:var(--ink-mute);}
.craft-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:14px;}
.craft-tile{
  position:relative; aspect-ratio:1/1; overflow:hidden; background:#000;
}
.craft-tile img{width:100%; height:100%; object-fit:cover; transition:transform 1.6s cubic-bezier(.2,.7,.2,1);}
.craft-tile:hover img{transform:scale(1.06);}
.craft-tile::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75) 100%);
}
.craft-tile .cl{
  position:absolute; left:12px; right:12px; bottom:12px; z-index:2; color:#fff;
  font-family:var(--font-display); font-size:10px; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase;
}
@media (max-width:820px){.craft-grid{grid-template-columns:repeat(2,1fr);}}

/* -------- Day-in-life timeline (After Keys) -------- */
.day-timeline{
  padding:clamp(80px,11vw,140px) var(--side);
  background:linear-gradient(180deg, #2a0c1f 0%, var(--purple) 100%); color:#f0e6ec;
}
.day-head{max-width:760px; margin-bottom:56px;}
.day-head .m-eyebrow{
  font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase; color:#E8B4D6; margin-bottom:14px;
}
.day-head h2{
  font-family:var(--font-display); font-weight:200;
  font-size:clamp(40px,5.5vw,84px); line-height:1; letter-spacing:-.02em; color:#fff;
}
.day-head h2 em{font-family:var(--font-editorial); font-style:italic; font-weight:400;}
.day-head p{margin-top:18px; font-size:15px; line-height:1.7; opacity:.85; max-width:640px;}
.day-list{display:grid; gap:0;}
.day-item{
  display:grid; grid-template-columns:120px 1fr 1.6fr; gap:32px;
  padding:34px 0; border-top:1px solid rgba(255,255,255,.18);
  align-items:flex-start;
}
.day-item:last-child{border-bottom:1px solid rgba(255,255,255,.18);}
.day-item .t{
  font-family:var(--font-display); font-weight:200;
  font-size:36px; line-height:1; color:#fff; letter-spacing:-.02em;
}
.day-item h3{
  font-family:var(--font-display); font-weight:600; font-size:20px;
  letter-spacing:-.005em; color:#fff;
}
.day-item .stag{
  font-family:var(--font-editorial); font-style:italic; font-weight:400;
  font-size:14px; color:#E8B4D6; margin-top:4px;
}
.day-item p{font-size:14px; line-height:1.65; opacity:.85;}
@media (max-width:820px){.day-item{grid-template-columns:100px 1fr;} .day-item p{grid-column:1/-1;}}

/* -------- Big Callout / Signature pull quote -------- */
.big-callout{
  padding:clamp(80px,10vw,140px) var(--side); text-align:center;
  background:#fff;
}
.big-callout blockquote{
  font-family:var(--font-editorial); font-style:italic; font-weight:400;
  font-size:clamp(34px,4.8vw,68px); line-height:1.15; max-width:1200px; margin:0 auto;
  color:var(--ink);
}
.big-callout .cite{
  display:block; margin-top:28px;
  font-family:var(--font-display); font-style:normal; font-weight:600;
  font-size:11px; letter-spacing:.26em; text-transform:uppercase; color:var(--ink-mute);
}
.big-callout.orange{background:linear-gradient(180deg, #fff 0%, #fff7f3 100%);}
.big-callout.teal{background:linear-gradient(180deg, #fff 0%, #f0f6f7 100%);}
.big-callout.purple{background:linear-gradient(180deg, #fff 0%, #f8f0f4 100%);}

/* -------- Split feature panel (image + copy) -------- */
.split-panel{
  padding:0; display:grid; grid-template-columns:1fr 1fr; min-height:80vh;
}
.split-panel .panel-img{
  background-size:cover; background-position:center;
  min-height:60vh;
}
.split-panel .panel-copy{
  padding:clamp(60px,7vw,100px) clamp(30px,5vw,80px);
  display:flex; flex-direction:column; justify-content:center;
}
.split-panel .panel-copy.orange-bg{background:var(--orange); color:#fff;}
.split-panel .panel-copy.teal-bg{background:var(--teal); color:#fff;}
.split-panel .panel-copy.purple-bg{background:var(--purple); color:#f0e6ec;}
.split-panel .panel-copy h2{
  font-family:var(--font-display); font-weight:200;
  font-size:clamp(36px,4.5vw,72px); line-height:.98; letter-spacing:-.02em;
  color:#fff;
}
.split-panel .panel-copy h2 em{font-family:var(--font-editorial); font-style:italic; font-weight:400;}
.split-panel .panel-copy .p-eyebrow{
  font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase; opacity:.75; margin-bottom:18px;
}
.split-panel .panel-copy p{
  margin-top:20px; max-width:520px; font-size:15px; line-height:1.7;
  opacity:.90; font-weight:300;
}
.split-panel .panel-copy .p-cta{
  margin-top:32px; display:inline-block;
  font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  padding-bottom:6px; border-bottom:1px solid #fff;
  align-self:flex-start;
}
@media (max-width:900px){.split-panel{grid-template-columns:1fr;} .split-panel .panel-img{min-height:60vw;}}

/* -------- Big number callout (After Keys 16434) -------- */
.number-callout{
  padding:clamp(80px,10vw,140px) var(--side);
  background:var(--purple); color:#fff; text-align:center;
}
.number-callout .n-eyebrow{
  font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.34em; text-transform:uppercase; color:#E8B4D6;
}
.number-callout .n-big{
  font-family:var(--font-display); font-weight:200;
  font-size:clamp(140px,22vw,340px); line-height:.9;
  color:#fff; letter-spacing:-.04em; margin-top:22px;
}
.number-callout .n-tag{
  margin-top:16px; max-width:560px; margin-left:auto; margin-right:auto;
  font-family:var(--font-editorial); font-style:italic; font-weight:400;
  font-size:clamp(18px,1.6vw,26px); line-height:1.5; color:rgba(255,255,255,.85);
}
.number-callout .n-cta{
  margin-top:36px; display:inline-block;
  font-family:var(--font-display); font-size:12px; font-weight:600;
  letter-spacing:.24em; text-transform:uppercase; color:#fff;
  padding:14px 30px; border:1px solid #fff;
  transition:background .3s, color .3s;
}
.number-callout .n-cta:hover{background:#fff; color:var(--purple);}

/* -------- Design Studio: sketch-to-render diptych -------- */
.diptych{
  padding:clamp(60px,8vw,110px) var(--side); background:var(--gray-03);
}
.diptych-head{margin-bottom:36px; max-width:760px;}
.diptych-head h2{font-family:var(--font-display); font-weight:200; font-size:clamp(36px,4.5vw,64px); letter-spacing:-.01em;}
.diptych-head h2 em{font-family:var(--font-editorial); font-style:italic; font-weight:500; color:var(--orange);}
.diptych-head p{font-size:15px; color:var(--ink-soft); font-weight:300; line-height:1.65; margin-top:14px;}
.diptych-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
.diptych-cell{
  aspect-ratio:4/5; overflow:hidden; position:relative; background:#000;
}
.diptych-cell img{width:100%; height:100%; object-fit:cover;}
.diptych-cell .side-label{
  position:absolute; top:16px; left:16px; z-index:2; color:#fff;
  font-family:var(--font-display); font-size:10px; font-weight:600;
  letter-spacing:.24em; text-transform:uppercase;
  padding:6px 12px; background:rgba(0,0,0,.55); backdrop-filter:blur(6px);
}
@media (max-width:820px){.diptych-grid{grid-template-columns:1fr;}}

/* -------- Timeline of a build (Construction) -------- */
.build-timeline{
  padding:clamp(80px,10vw,140px) var(--side);
  background:var(--teal); color:#fff;
}
.build-head{max-width:760px; margin-bottom:56px;}
.build-head .m-eyebrow{color:#5EE38B;}
.build-head h2{font-family:var(--font-display); font-weight:200; font-size:clamp(40px,5.5vw,84px); line-height:1; letter-spacing:-.02em; color:#fff;}
.build-head h2 em{font-family:var(--font-editorial); font-style:italic; font-weight:400;}
.build-head p{margin-top:18px; font-size:15px; line-height:1.7; opacity:.85; max-width:640px;}
.build-list{display:grid; grid-template-columns:repeat(6,1fr); gap:20px;}
.build-week{
  padding:20px; border-top:2px solid rgba(255,255,255,.28);
  min-height:180px; display:flex; flex-direction:column; justify-content:space-between;
}
.build-week .wk{
  font-family:var(--font-display); font-weight:200; font-size:40px; line-height:1;
  color:#fff; letter-spacing:-.02em;
}
.build-week h3{
  font-family:var(--font-display); font-weight:600; font-size:13px;
  letter-spacing:.14em; text-transform:uppercase; color:#5EE38B; margin-top:14px;
}
.build-week p{font-size:12px; line-height:1.5; opacity:.85; margin-top:8px;}
@media (max-width:900px){.build-list{grid-template-columns:repeat(3,1fr);}}
@media (max-width:520px){.build-list{grid-template-columns:1fr 1fr;}}

/* -------- Designer's eye (Design Studio) -------- */
.designers-eye{
  padding:clamp(70px,10vw,120px) var(--side);
  background:linear-gradient(160deg, #1a0603 0%, #7a1f0a 100%); color:#fff;
}
.designers-eye-inner{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,6vw,90px); align-items:center;
}
.designers-eye .portrait{
  aspect-ratio:4/5; overflow:hidden; background:#000;
}
.designers-eye .portrait img{width:100%; height:100%; object-fit:cover;}
.designers-eye .content .m-eyebrow{
  font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase; color:#FFB29A; margin-bottom:18px;
}
.designers-eye .content h2{
  font-family:var(--font-display); font-weight:200;
  font-size:clamp(36px,4.6vw,68px); line-height:1.02; letter-spacing:-.02em; color:#fff;
}
.designers-eye .content h2 em{font-family:var(--font-editorial); font-style:italic; font-weight:400;}
.designers-eye .content blockquote{
  margin-top:24px; padding-left:20px; border-left:1px solid #FFB29A;
  font-family:var(--font-editorial); font-style:italic; font-weight:400;
  font-size:20px; line-height:1.55; color:rgba(255,255,255,.90);
}
.designers-eye .signed{
  margin-top:24px; font-family:var(--font-display); font-size:11px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase; color:#FFB29A;
}
@media (max-width:900px){.designers-eye-inner{grid-template-columns:1fr;}}

/* -------- Tier tiles enhanced (After Keys) -------- */
.tiers-enhanced .tier{
  padding:44px 32px; position:relative; overflow:hidden;
}
.tiers-enhanced .tier .tier-num{
  position:absolute; top:22px; right:22px;
  font-family:var(--font-display); font-weight:200; font-size:80px; line-height:1;
  color:rgba(0,0,0,.05); letter-spacing:-.03em;
}
.tiers-enhanced .tier.signature .tier-num{color:rgba(255,255,255,.10);}
