/* =========================================================
   MALAMEH HOUSE — عالم من عوالم MAHMOUD NOUR ELDIN
   هنا... الأفكار بتاخد ملامحها. — العنصر المميز: The Living Identity
   ========================================================= */
:root{
  --paper: #FAF3E7;
  --paper-2: #F3EADA;
  --white: #FFFDF9;
  --ink: #1C1B23;
  --ink-soft: #5B5766;
  --ink-faint: #928DA0;
  --line: rgba(28,27,35,.10);
  --line-strong: rgba(28,27,35,.17);

  --indigo: #4B3EF5;
  --indigo-deep: #372CC7;
  --coral: #FF6F4D;
  --coral-deep: #E5522F;
  --lime: #D6F24E;

  --on-indigo: #ECEBFE;
  --on-coral: #FFEDE7;
  --on-lime: #FAFEE8;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 3px 14px rgba(28,27,35,.09);
  --shadow-md: 0 14px 34px rgba(28,27,35,.15);
  --shadow-lg: 0 28px 70px rgba(28,27,35,.22);

  --font: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --ease: cubic-bezier(.16,.8,.28,1);
  --dur-s: .3s;
  --dur-m: .6s;
  --dur-l: 1s;

  --container: 1320px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1,h2,h3,h4,p{ margin: 0; }
svg{ display: block; }
::selection{ background: var(--lime); color: var(--ink); }
:focus-visible{ outline: 3px solid var(--indigo); outline-offset: 3px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.container{ width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.skip-link{
  position: absolute; right: 12px; top: -60px;
  background: var(--ink); color: var(--white);
  padding: 12px 18px; border-radius: var(--radius-sm);
  z-index: 999; transition: top var(--dur-s) var(--ease);
}
.skip-link:focus{ top: 12px; }

.eyebrow{
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: .03em; color: var(--indigo-deep);
}
.eyebrow::before{ content:""; width:16px; height:1.5px; background: var(--indigo-deep); display:inline-block; }
.eyebrow.on-dark{ color: var(--lime); }
.eyebrow.on-dark::before{ background: var(--lime); }
.eyebrow.center{ justify-content:center; }

.section-title{
  font-weight: 800; font-size: clamp(28px, 4vw, 46px);
  line-height: 1.28; color: var(--ink); letter-spacing: -.01em;
}
.section-title.on-dark{ color: var(--white); }
.section-kicker{ color: var(--ink-soft); font-size: clamp(15.5px, 1.5vw, 17.5px); max-width: 54ch; margin-top: 12px; font-weight: 500; }

/* =========================================================
   Header
   ========================================================= */
.site-header{ position: sticky; top: 0; z-index: 100; padding-block: 14px; }
.header-inner{
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  padding: 8px 12px 8px 22px; box-shadow: var(--shadow-sm);
}
.brand-lockup{ display: flex; align-items: center; gap: 12px; }
.brand-lockup .parent-logo{ height: 20px; width: auto; opacity: .45; }
.brand-lockup .sep{ width: 1px; height: 22px; background: var(--line-strong); }
.brand-lockup .world-logo{ height: 30px; width: auto; }

.main-nav{ display: flex; align-items: center; gap: 26px; }
.main-nav a{ font-size: 14.5px; font-weight: 700; color: var(--ink-soft); transition: color var(--dur-s) var(--ease); }
.main-nav a:hover, .main-nav a:focus-visible{ color: var(--ink); }

.header-actions{ display: flex; align-items: center; gap: 10px; }

.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 25px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 700;
  transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease), background var(--dur-s) var(--ease), color var(--dur-s) var(--ease);
  white-space: nowrap;
}
.btn-indigo{ background: var(--indigo); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-indigo:hover, .btn-indigo:focus-visible{ background: var(--indigo-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-coral{ background: var(--coral); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-coral:hover, .btn-coral:focus-visible{ background: var(--coral-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ink{ background: var(--ink); color: var(--white); }
.btn-ink:hover, .btn-ink:focus-visible{ background:#000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline{ border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover, .btn-outline:focus-visible{ background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-outline-light{ border: 1.5px solid rgba(255,255,255,.6); color: var(--white); }
.btn-outline-light:hover, .btn-outline-light:focus-visible{ background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-white{ background: var(--white); color: var(--ink); }
.btn-white:hover, .btn-white:focus-visible{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm{ padding: 10px 18px; font-size: 13px; }
.btn svg{ width: 16px; height: 16px; transition: transform var(--dur-s) var(--ease); }
.btn:hover svg{ transform: translateX(-4px); }

.nav-toggle{ display: none; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--white); align-items: center; justify-content: center; }
.nav-toggle svg{ width: 18px; height: 18px; }

/* =========================================================
   Hero — Before It Has a Shape
   ========================================================= */
.hero{ position: relative; padding-top: clamp(20px,3vw,36px); padding-bottom: clamp(28px,4vw,40px); overflow: hidden; }
.hero-shell{
  position: relative; border-radius: var(--radius-lg); overflow:hidden;
  background: linear-gradient(150deg, var(--on-indigo) 0%, var(--paper) 55%, var(--on-coral) 100%);
  padding: clamp(40px,6vw,72px) clamp(20px,4vw,48px);
  min-height: clamp(520px, 78vh, 720px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
}
.hero-logo{ height: clamp(50px,6.4vw,68px); width: auto; }
.hero-copy{ margin-top: 30px; max-width: 740px; }
.hero-title{ font-weight: 800; font-size: clamp(32px,4.8vw,56px); line-height: 1.28; letter-spacing: -.01em; }
.hero-desc{ margin-top: 16px; font-size: clamp(15.5px,1.6vw,18.5px); color: var(--ink-soft); max-width: 54ch; margin-inline:auto; font-weight: 500; }
.hero-ctas{ margin-top: 28px; display: flex; align-items: center; justify-content:center; gap: 14px; flex-wrap: wrap; }

/* Forming shapes floating behind hero copy — echo of the mark, used once */
.hero-forms{ position:absolute; inset:0; pointer-events:none; }
.hero-forms span{
  position:absolute; border-radius: 22px; opacity:.5;
  animation: formFloat 8s ease-in-out infinite;
}
.hero-forms .f1{ width:120px; height:120px; background: var(--indigo); opacity:.16; top:12%; inset-inline-start:8%; animation-delay:0s; }
.hero-forms .f2{ width:90px; height:90px; background: var(--coral); opacity:.18; bottom:14%; inset-inline-end:10%; animation-delay:-3s; }
.hero-forms .f3{ width:60px; height:60px; background: var(--lime); opacity:.4; top:20%; inset-inline-end:20%; animation-delay:-5s; }
@keyframes formFloat{ 0%,100%{ transform: translateY(0) rotate(0deg);} 50%{ transform: translateY(-16px) rotate(6deg);} }

/* =========================================================
   Reveal
   ========================================================= */
[data-reveal]{ opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible{ opacity:1; transform: translateY(0); }
[data-reveal-stagger] > *{ opacity:0; transform: translateY(20px) scale(.97); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal-stagger].is-visible > *{ opacity:1; transform: translateY(0) scale(1); }
[data-reveal-stagger].is-visible > *:nth-child(1){ transition-delay:.03s; }
[data-reveal-stagger].is-visible > *:nth-child(2){ transition-delay:.09s; }
[data-reveal-stagger].is-visible > *:nth-child(3){ transition-delay:.15s; }
[data-reveal-stagger].is-visible > *:nth-child(4){ transition-delay:.21s; }
[data-reveal-stagger].is-visible > *:nth-child(5){ transition-delay:.27s; }
[data-reveal-stagger].is-visible > *:nth-child(6){ transition-delay:.33s; }
[data-reveal-stagger].is-visible > *:nth-child(7){ transition-delay:.39s; }
[data-reveal-stagger].is-visible > *:nth-child(8){ transition-delay:.45s; }

.section{ padding-block: clamp(52px,7vw,96px); }
.section-head{ max-width: 720px; }
.section-head.center{ text-align:center; margin-inline:auto; }

/* =========================================================
   Every Idea Has Something Inside
   ========================================================= */
.every-idea{ text-align:center; }
.every-idea p{ font-weight: 700; font-size: clamp(19px,2.6vw,27px); color: var(--ink); max-width: 30ch; margin-inline:auto; line-height:1.5; }
.every-idea-shapes{ margin-top: 36px; display:flex; align-items:center; justify-content:center; gap: 14px; }
.every-idea-shapes .sh{ border-radius: 18px; }
.sh1{ width:56px; height:56px; background: var(--indigo); transform: rotate(-8deg); }
.sh2{ width:56px; height:56px; background: var(--coral); border-radius:50%; }
.sh3{ width:56px; height:56px; background: var(--ink); transform: rotate(10deg); clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
.sh4{ width:56px; height:56px; background: var(--lime); transform: rotate(20deg); }

/* =========================================================
   From Idea to Identity — layered canvas
   ========================================================= */
.canvas-section{
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(32px,5vw,56px); overflow:hidden;
}
.canvas{
  position:relative;
  margin-top: 44px;
  min-height: clamp(620px, 90vw, 780px);
  background-image: radial-gradient(var(--line-strong) 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: var(--radius-md);
}
.canvas-card{
  position:absolute; border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  padding: 14px;
}
.canvas-card.tag{ background: var(--ink); color: var(--white); font-weight:800; font-size:14px; padding: 12px 22px; border-radius: var(--radius-pill); box-shadow:none; }
.canvas-card.word{ background: var(--paper-2); font-weight:800; font-size: 26px; color: var(--ink-faint); width: 160px; height: 90px; }
.canvas-card.colors{ background: var(--white); width: 160px; height: 70px; flex-direction:row; gap:8px; padding:14px; }
.canvas-card.colors span{ flex:1; border-radius: 10px; height:100%; }
.canvas-card.type{ background: var(--indigo); color:var(--white); width: 190px; height: 110px; font-family: var(--font); font-weight:800; font-size: 30px; }
.canvas-card.logo-card{ background: var(--white); width: 150px; height: 150px; padding: 24px; }
.canvas-card.logo-card img{ width:100%; height:100%; object-fit:contain; }
.canvas-card.photo{ width: 220px; height: 170px; padding:0; overflow:hidden; }
.canvas-card.photo img{ width:100%; height:100%; object-fit:cover; }
.canvas-card.result{ width: 300px; height: 210px; padding:0; overflow:hidden; }
.canvas-card.result img{ width:100%; height:100%; object-fit:cover; }

.c1{ top: 2%; inset-inline-start: 4%; transform: rotate(-4deg); }
.c2{ top: 4%; inset-inline-start: 30%; transform: rotate(3deg); }
.c3{ top: 0%; inset-inline-end: 6%; transform: rotate(-3deg); }
.c4{ top: 26%; inset-inline-start: 8%; transform: rotate(4deg); }
.c5{ top: 24%; inset-inline-end: 12%; transform: rotate(-6deg); }
.c6{ top: 46%; inset-inline-start: 30%; transform: rotate(2deg); }
.c7{ top: 44%; inset-inline-end: 3%; transform: rotate(4deg); }
.c8{ top: 66%; inset-inline-start: 6%; transform: rotate(-3deg); }
.c9{ top: 64%; inset-inline-end: 20%; transform: rotate(3deg); }

@media (max-width: 860px){
  .canvas{ min-height: auto; background-image:none; display:flex; flex-direction:column; align-items:center; gap:16px; padding: 20px 12px; }
  .canvas-card{ position:static !important; transform:none !important; }
}

/* =========================================================
   What We Shape — editorial capabilities
   ========================================================= */
.shape-grid{ display:grid; grid-template-columns: repeat(6,1fr); gap: 18px; }
.shape-item{ border-radius: var(--radius-md); padding: 26px; display:flex; flex-direction:column; justify-content:flex-end; min-height: 190px; }
.shape-item h3{ font-weight:800; font-size: 19px; }
.shape-item p{ margin-top:8px; font-size:13.5px; font-weight:500; }
.sg1{ grid-column: span 3; background: var(--ink); color: var(--white); min-height: 260px; }
.sg1 p{ color: rgba(255,255,255,.7); }
.sg2{ grid-column: span 3; background: var(--on-indigo); color: var(--ink); min-height: 260px; }
.sg2 p{ color: var(--ink-soft); }
.sg3{ grid-column: span 2; background: var(--coral); color: var(--white); }
.sg3 p{ color: rgba(255,255,255,.82); }
.sg4{ grid-column: span 2; background: var(--white); border: 1.5px solid var(--line); color: var(--ink); }
.sg4 p{ color: var(--ink-soft); }
.sg5{ grid-column: span 2; background: var(--indigo); color: var(--white); }
.sg5 p{ color: rgba(255,255,255,.8); }
.sg6{ grid-column: span 3; background: var(--on-lime); color: var(--ink); }
.sg6 p{ color: var(--ink-soft); }
.sg7{ grid-column: span 3; background: var(--white); border: 1.5px solid var(--line); color: var(--ink); }
.sg7 p{ color: var(--ink-soft); }

/* =========================================================
   Selected Work — editorial masonry, data-driven
   ========================================================= */
.work-grid{ column-count: 3; column-gap: 20px; }
.work-item{ break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius-lg); overflow:hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m) var(--ease); }
.work-item:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.work-item__media{ position:relative; overflow:hidden; }
.work-item__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.work-item__body{ padding: 20px; }
.work-item__cat{ font-size:11.5px; font-weight:800; color: var(--indigo-deep); text-transform:uppercase; letter-spacing:.04em; }
.work-item__body h3{ font-weight:800; font-size:19px; margin-top:6px; }
.work-item__body p{ margin-top:8px; font-size:13.5px; color: var(--ink-soft); font-weight:500; }
.work-item__colors{ margin-top: 14px; display:flex; gap:6px; }
.work-item__colors span{ width:20px; height:20px; border-radius:50%; border: 1.5px solid var(--white); box-shadow: 0 0 0 1px var(--line); }

@media (max-width: 900px){
  .work-grid{ column-count: 2; }
}
@media (max-width: 600px){
  .work-grid{ column-count: 1; }
}

/* =========================================================
   Content in Motion
   ========================================================= */
.motion-room{ display:grid; grid-template-columns: .6fr 1.4fr; gap: 20px; align-items:stretch; }
.motion-phone{ position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); aspect-ratio: 9/16; }
.motion-phone img{ width:100%; height:100%; object-fit:cover; }
.motion-phone::after{ content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 6px rgba(255,255,255,.85); border-radius: inherit; }
.motion-phone-badge{
  position:absolute; bottom:16px; inset-inline-start:16px; z-index:2;
  background: rgba(28,27,35,.6); backdrop-filter: blur(6px); color:var(--white);
  font-size:11.5px; font-weight:800; padding:6px 13px; border-radius: var(--radius-pill);
}
.motion-side{ display:flex; flex-direction:column; gap: 20px; }
.motion-frame{ position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); flex:1; }
.motion-frame img{ width:100%; height:100%; object-fit:cover; }
.motion-type{
  border-radius: var(--radius-lg); background: var(--ink); color: var(--white);
  display:flex; align-items:center; justify-content:center; text-align:center; padding: 30px;
  font-weight:800; font-size: clamp(20px,2.6vw,28px); flex:1;
}

@media (max-width: 860px){
  .motion-room{ grid-template-columns: 1fr; }
  .motion-phone{ max-width: 280px; margin-inline:auto; }
}

/* =========================================================
   Digital With a Personality
   ========================================================= */
.digital-section{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items:center; }
.digital-copy h2{ font-weight:800; font-size: clamp(26px,3.4vw,38px); color: var(--ink); line-height:1.3; }
.digital-copy p{ margin-top:14px; color: var(--ink-soft); font-size:15.5px; font-weight:500; max-width: 48ch; }
.browser-mockup{
  border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-lg);
  background: var(--white); border: 1px solid var(--line);
}
.browser-mockup__bar{ display:flex; align-items:center; gap:6px; padding: 12px 16px; background: var(--paper-2); }
.browser-mockup__bar span{ width:10px; height:10px; border-radius:50%; background: var(--line-strong); }
.browser-mockup__screen{ aspect-ratio: 16/10; overflow:hidden; }
.browser-mockup__screen img{ width:100%; height:100%; object-fit:cover; }

@media (max-width: 900px){
  .digital-section{ grid-template-columns: 1fr; }
}

/* =========================================================
   One Idea, One World
   ========================================================= */
.oneworld-head{ text-align:center; max-width: 640px; margin-inline:auto; }
.oneworld-head h2{ font-weight:800; font-size: clamp(26px,3.6vw,38px); }
.variants-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.variant-card{ border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 3/3.6; position:relative; }
.variant-card img{ width:100%; height:100%; object-fit:cover; }
.variant-card::after{ content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(28,27,35,.75) 0%, rgba(28,27,35,.05) 55%); }
.variant-card span{ position:absolute; bottom:16px; inset-inline-start:16px; z-index:1; color:var(--white); font-weight:800; font-size:14px; }
.variant-card.v1::before{ background: var(--indigo); }
.variant-card.v2::before{ background: var(--coral); }
.variant-card.v3::before{ background: var(--ink); }
.variant-card::before{ content:""; position:absolute; inset:0; opacity:.28; z-index:0; }

/* =========================================================
   The House Keeps Growing
   ========================================================= */
.growing-section{
  border-radius: var(--radius-lg); padding: clamp(44px,6vw,72px) clamp(24px,4.5vw,56px);
  background: linear-gradient(150deg, var(--ink) 0%, #2A2836 100%); color: var(--white);
}
.growing-tags{ margin-top: 30px; display:flex; flex-wrap:wrap; gap:10px; }
.growing-tags span{
  font-size:13px; font-weight:700; color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  padding: 9px 17px; border-radius: var(--radius-pill);
}

/* =========================================================
   CTA + Footer
   ========================================================= */
.closing{
  position: relative; border-radius: var(--radius-lg); overflow:hidden;
  padding: clamp(56px,8vw,96px) clamp(24px,5vw,64px);
  background: linear-gradient(150deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: var(--white); text-align: center;
}
.closing::before{ content:""; position:absolute; width:420px; height:420px; border-radius:50%; background: var(--lime); opacity:.14; top:-200px; inset-inline-end:-140px; }
.closing::after{ content:""; position:absolute; width:300px; height:300px; border-radius:50%; background: var(--coral); opacity:.2; bottom:-140px; inset-inline-start:-100px; }
.closing-inner{ position:relative; z-index:1; max-width:620px; margin-inline:auto; }
.closing h2{ font-weight:800; font-size: clamp(28px,4vw,42px); line-height:1.3; }
.closing p{ margin-top:14px; color: rgba(255,255,255,.75); font-size:16px; font-weight:500; }
.closing .btn{ margin-top: 26px; }

.site-footer{ padding-block: clamp(36px,5vw,52px) 22px; }
.footer-top{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer-nav{ display:flex; gap:24px; flex-wrap:wrap; }
.footer-nav a{ font-size:14px; font-weight:700; color: var(--ink-soft); }
.footer-nav a:hover{ color: var(--indigo-deep); }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1.5px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center; color: var(--ink);
  transition: border-color var(--dur-s) var(--ease), transform var(--dur-s) var(--ease);
}
.footer-social a:hover{ border-color: var(--indigo); transform: translateY(-3px); }
.footer-social svg{ width:16px; height:16px; }
.footer-bottom{ margin-top: 22px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:12.5px; color: var(--ink-faint); }
.footer-bottom a{ font-weight:700; color: var(--ink-soft); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .main-nav{ display:none; }
  .header-actions .btn-indigo{ display:none; }
  .nav-toggle{ display:inline-flex; }

  .shape-grid{ grid-template-columns: repeat(2,1fr); }
  .sg1,.sg2,.sg3,.sg4,.sg5,.sg6,.sg7{ grid-column: span 1; min-height: 200px; }
  .variants-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .container{ padding-inline: 18px; }
  .header-inner{ padding: 7px 7px 7px 14px; }
  .brand-lockup .parent-logo, .brand-lockup .sep{ display:none; }
  .hero-ctas{ flex-direction: column; align-items: stretch; }
  .hero-ctas .btn{ width:100%; }
  .every-idea-shapes{ gap: 10px; }
  .every-idea-shapes .sh{ width:44px; height:44px; }
}

/* Mobile nav drawer */
.mobile-nav{
  position: fixed; top:0; left:0; right:0; bottom:0; inset: 0; background: var(--ink); z-index: 200;
  display:flex; flex-direction:column; padding:20px;
  transform: translateY(-100%); transition: transform var(--dur-m) var(--ease); visibility: hidden;
  overflow-y: auto;
}
.mobile-nav.is-open{ transform: translateY(0); visibility: visible; }
.mobile-nav__top{ display:flex; align-items:center; justify-content:space-between; }
.mobile-nav__top .world-logo{ height:26px; }
.mobile-nav__close{ width:42px; height:42px; border-radius:50%; border:1.5px solid rgba(255,255,255,.3); color:var(--white); display:flex; align-items:center; justify-content:center; }
.mobile-nav__close svg{ width:18px; height:18px; }
.mobile-nav__links{ display:flex; flex-direction:column; gap:4px; margin-top:48px; }
.mobile-nav__links a{ font-size: 27px; font-weight:800; color: var(--white); padding-block: 13px; border-bottom: 1px solid rgba(255,255,255,.14); }
.mobile-nav__cta{ margin-top: 30px; }
