:root {
  --ink: #120f11;
  --ink-soft: #1c1519;
  --paper: #f3eee7;
  --paper-warm: #e8ddd3;
  --rose: #eaa4b4;
  --rose-dark: #a85e73;
  --plum: #593346;
  --moss: #c7d47a;
  --muted: #b8aaa5;
  --line: rgba(243, 238, 231, .18);
  --line-dark: rgba(18, 15, 17, .16);
  --arabic: "Cairo", sans-serif;
  --latin-sans: "Manrope", sans-serif;
  --display: "Bodoni Moda", serif;
  --mono: "DM Mono", monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --gutter: clamp(22px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--ink); color: var(--paper); font-family: var(--arabic); }
body::selection { background: var(--rose); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
h1, h2, h3, p, figure { margin-top: 0; }
em { color: var(--rose); font-family: var(--display); font-style: italic; font-weight: 400; letter-spacing: -.08em; }
.latin { direction: ltr; font-family: var(--mono); }
.skip-link { position: fixed; top: 12px; right: 50%; z-index: 120; padding: 10px 16px; border-radius: 999px; background: var(--moss); color: var(--ink); font-size: 13px; font-weight: 700; transform: translate(50%, -160%); transition: transform .18s ease; }.skip-link:focus { transform: translate(50%, 0); }

.noise { position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .047; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.81' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.page-thread { position: fixed; inset: 0; z-index: 7; width: 100%; height: 100%; pointer-events: none; opacity: .34; mix-blend-mode: screen; }.page-thread path { fill: none; stroke: var(--rose); stroke-width: 1.2; stroke-dasharray: 2500; stroke-dashoffset: 2500; }
.cursor-dot, .cursor-ring { position: fixed; z-index: 100; pointer-events: none; opacity: 0; transform: translate(-50%, -50%); }.cursor-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); }.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(243,238,231,.7); border-radius: 50%; transition: width .3s var(--ease), height .3s var(--ease), border-color .3s ease; }body.cursor-ready { cursor: none; }body.cursor-ready .cursor-dot, body.cursor-ready .cursor-ring { opacity: 1; }body.cursor-hover .cursor-ring { width: 68px; height: 68px; border-color: var(--moss); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 70; display: flex; align-items: center; justify-content: space-between; padding: 23px var(--gutter); color: #fff; font: 10px var(--mono); letter-spacing: .08em; mix-blend-mode: difference; }.brand { direction: ltr; display: inline-flex; align-items: center; gap: 10px; color: inherit; font-family: var(--latin-sans); font-weight: 800; letter-spacing: .18em; }.brand-mark { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid currentColor; border-radius: 50%; font: 500 16px var(--display); letter-spacing: 0; }.main-nav { position: absolute; right: 50%; display: flex; gap: clamp(18px, 3vw, 42px); transform: translateX(50%); font-family: var(--arabic); font-size: 11px; }.nav-link { position: relative; opacity: .48; transition: opacity .2s ease; }.nav-link:hover, .nav-link.active { opacity: 1; }.nav-link.active::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--rose); }.header-actions { display: flex; align-items: center; gap: 18px; }.language-switcher { direction: ltr; min-height: 36px; display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid rgba(255,255,255,.48); border-radius: 999px; font: 700 9px var(--latin-sans); letter-spacing: .06em; }.language-switcher a, .language-switcher span { min-width: 29px; min-height: 28px; display: grid; place-items: center; border-radius: 999px; }.language-switcher a { opacity: .62; transition: opacity .18s ease, background .18s ease, color .18s ease; }.language-switcher a:hover { opacity: 1; background: rgba(255,255,255,.16); }.language-switcher [aria-current="page"] { background: var(--paper); color: var(--ink); }.header-contact { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid currentColor; padding-bottom: 4px; font-family: var(--arabic); font-size: 11px; }.header-contact b { font-size: 17px; font-weight: 400; }

.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0; color: var(--muted); font-size: 11px; letter-spacing: .04em; }.eyebrow > span { width: 34px; height: 1px; background: var(--rose); }.eyebrow.dark { color: #746967; }.eyebrow.dark > span { background: var(--rose-dark); }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }.reveal.is-visible { opacity: 1; transform: translateY(0); }.delay-1 { transition-delay: .14s; }
.paper-section { background: var(--paper); color: var(--ink); }
.media-shell { position: relative; overflow: hidden; background: var(--plum); }.media-shell::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(100deg, #2a1c22 0%, #5f3848 42%, #2a1c22 78%); background-size: 220% 100%; animation: shimmer 1.5s linear infinite; transition: opacity .4s ease; }.media-shell.is-loaded::before { opacity: 0; }.media-shell picture, .journey-frame picture { display: block; width: 100%; height: 100%; }.media-shell img { opacity: 0; transition: opacity .5s ease, transform 1s var(--ease); }.media-shell.is-loaded img { opacity: 1; }@keyframes shimmer { to { background-position: -220% 0; } }
:focus-visible { outline: 2px solid var(--moss); outline-offset: 5px; }

html[lang="ar"] body { font-family: var(--arabic); font-kerning: normal; text-rendering: optimizeLegibility; }
html[lang="ar"] .hero { direction: rtl; }
html[lang="ar"] :where(.hero-copy, .manifesto, .services, .journey-copy, .about, .about-copy, .craft, .faq) { direction: rtl; text-align: right; }
html[lang="ar"] :is(h1, h2, h3, em, .eyebrow, .service-number, .frame-caption, .about-lede, .about-signature, .craft-heading > span, .journey-side, .contact-foot) { letter-spacing: 0; }
html[lang="ar"] :where(h1, h2, h3) { text-wrap: balance; word-spacing: .025em; }
html[lang="ar"] :where(p, summary, .nav-link, .header-contact, .text-link) { text-wrap: pretty; word-spacing: .045em; }
html[lang="ar"] em { font-family: var(--arabic); font-style: normal; }
html[lang="ar"] .hero-copy h1 { line-height: 1.04; }
html[lang="ar"] :where(.manifesto h2, .services-heading h2, .about-heading h2, .craft-heading h2, .faq-heading h2) { line-height: .96; }
html[lang="ar"] .journey-panel h2 { line-height: .97; }
html[lang="ar"] .contact h2 { line-height: .94; }
html[lang="ar"] .service-card h3 { line-height: 1.42; }
html[lang="ar"] .manifesto-bottom { margin-right: 0; margin-left: auto; }

html[lang="en"] body { font-family: var(--latin-sans); }
html[lang="en"] :where(.main-nav, .header-contact, .hero-final figcaption, .hero-sketch-card figcaption, .hero-stamp, .measure-motion b, .measure-motion i, .step-kicker span, .craft-list article > span) { font-family: var(--latin-sans); }
html[lang="en"] :where(.hero-copy, .manifesto, .services, .journey-copy, .about, .about-copy, .craft, .faq) { direction: ltr; text-align: left; }
html[lang="en"] .about-layout { direction: rtl; }
html[lang="en"] .about-copy { direction: ltr; }
html[lang="en"] .journey-visual { right: clamp(32px, 5vw, 82px); left: auto; }
html[lang="en"] .journey-copy { right: auto; left: var(--gutter); }
html[lang="en"] .journey-index { right: auto; left: var(--gutter); }
html[lang="en"] .journey-dots { right: auto; left: 24px; }
html[lang="en"] .hero-copy h1 { font-size: clamp(48px, 5.7vw, 92px); letter-spacing: -.06em; line-height: .92; }
html[lang="en"] .manifesto h2 { font-size: clamp(64px, 8.7vw, 138px); line-height: .86; }
html[lang="en"] .services-heading h2 { font-size: clamp(58px, 7.5vw, 116px); line-height: .88; }
html[lang="en"] .journey-panel h2 { font-size: clamp(44px, 5.2vw, 82px); line-height: .88; }
html[lang="en"] .about-heading h2 { font-size: clamp(56px, 6.8vw, 105px); line-height: .88; }
html[lang="en"] .craft-heading h2 { font-size: clamp(52px, 6vw, 92px); line-height: .88; }
html[lang="en"] .faq-heading h2 { font-size: clamp(52px, 6.2vw, 96px); line-height: .88; }
html[lang="en"] .contact h2 { font-size: clamp(68px, 9vw, 138px); line-height: .84; }

.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr); align-items: center; direction: ltr; gap: clamp(35px, 6vw, 110px); overflow: hidden; padding: 120px var(--gutter) 70px; background: radial-gradient(circle at 73% 42%, rgba(146,67,96,.34), transparent 31%), linear-gradient(115deg, #120f11 0 56%, #1a1317 56%); }.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(119deg, transparent 0 55.7%, rgba(255,255,255,.045) 55.8%, transparent 55.95%); pointer-events: none; }.hero-glow { position: absolute; top: 30%; left: 45%; width: 310px; height: 310px; border-radius: 50%; background: rgba(234,164,180,.15); filter: blur(80px); }.hero-copy { position: relative; z-index: 4; direction: rtl; }.hero-copy h1 { margin: 35px 0 32px; font-size: clamp(56px, 6.7vw, 112px); font-weight: 600; letter-spacing: -.075em; line-height: .9; }.hero-copy h1 em { display: inline-block; margin-top: 5px; }.hero-lede { max-width: 440px; margin: 0 0 34px; color: var(--muted); font-size: 14px; line-height: 1.9; }.hero-cta { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; line-height: 1.55; }.hero-cta-circle { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid var(--rose); border-radius: 50%; color: var(--rose); font: 20px var(--latin-sans); transition: background .3s ease, color .3s ease, transform .4s var(--ease); }.hero-cta:hover .hero-cta-circle { background: var(--rose); color: var(--ink); transform: rotate(45deg); }
.hero-visual { position: relative; z-index: 3; width: min(100%, 700px); height: min(74vh, 720px); justify-self: end; perspective: 1400px; transform-style: preserve-3d; }.hero-final { position: absolute; inset: 3% 4% 0 15%; border: 1px solid rgba(243,238,231,.4); border-radius: 46% 11% 30% 8% / 16% 24% 10% 21%; box-shadow: 25px 30px 0 rgba(89,51,70,.33), 0 40px 80px rgba(0,0,0,.45); transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, -7deg)) rotateZ(3deg); transform-style: preserve-3d; transition: transform .35s ease-out; }.hero-final img { height: 100%; object-fit: cover; object-position: 50% center; }.hero-image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(18,15,17,.48)); }.hero-final figcaption { position: absolute; right: 18px; bottom: 17px; left: 18px; display: flex; justify-content: space-between; color: rgba(243,238,231,.82); font: 500 10px var(--arabic); }
.hero-sketch-card { position: absolute; z-index: 3; top: 7%; left: -2%; width: 36%; aspect-ratio: 1.24; border: 1px solid rgba(243,238,231,.52); box-shadow: 0 22px 50px rgba(0,0,0,.32); transform: translateZ(90px) rotate(-8deg); transition: transform .5s var(--ease); }.hero-sketch-card img { height: 100%; object-fit: cover; }.hero-sketch-card figcaption { position: absolute; bottom: 8px; left: 10px; color: #3a292f; font: 600 8px var(--arabic); }.hero-visual:hover .hero-sketch-card { transform: translateZ(120px) translate(-9px, -10px) rotate(-4deg); }
.hero-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(234,164,180,.5); border-radius: 50%; pointer-events: none; }.orbit-one { width: 112%; height: 35%; transform: translate(-50%, -50%) rotate(-22deg); }.orbit-two { width: 63%; height: 104%; border-color: rgba(199,212,122,.38); transform: translate(-50%, -50%) rotate(32deg); }.hero-orbit::after { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 17px var(--rose); }.orbit-one::after { top: 50%; left: -4px; }.orbit-two::after { top: -4px; left: 50%; background: var(--moss); box-shadow: 0 0 17px var(--moss); }.hero-stamp { position: absolute; right: -1%; bottom: 15%; min-width: 80px; padding: 9px 11px; border: 1px solid rgba(243,238,231,.45); background: rgba(18,15,17,.5); color: var(--moss); font: 600 9px/1.45 var(--arabic); text-align: center; transform: rotate(8deg); backdrop-filter: blur(10px); }.hero-star { position: absolute; top: 7%; right: 8%; color: var(--rose); font-size: 30px; animation: starPulse 3.3s ease-in-out infinite; }@keyframes starPulse { 50% { opacity: .45; transform: rotate(24deg) scale(.8); } }.hero-foot { position: absolute; right: var(--gutter); bottom: 22px; left: var(--gutter); display: flex; justify-content: space-between; color: #8e8280; font-size: 9px; }.hero-foot span:first-child { color: var(--rose); }

.manifesto { min-height: 100svh; display: grid; align-content: center; padding: 125px var(--gutter) 100px; }.manifesto-top { display: flex; justify-content: space-between; color: #796d69; font-size: 10px; }.manifesto h2 { max-width: 930px; margin: 70px 0 85px; font-size: clamp(70px, 10.5vw, 166px); font-weight: 600; letter-spacing: -.085em; line-height: .82; }.manifesto h2 em { color: var(--rose-dark); }.manifesto-bottom { display: flex; align-items: end; justify-content: space-between; width: min(760px, 75%); margin-right: auto; }.manifesto-bottom p { max-width: 420px; margin: 0; color: #756b67; font-size: 14px; line-height: 1.9; }.manifesto-bottom > span { color: var(--rose-dark); font-size: 39px; animation: slowSpin 12s linear infinite; }@keyframes slowSpin { to { transform: rotate(360deg); } }

.services { position: relative; overflow: hidden; padding: 145px var(--gutter) 155px; background: var(--paper-warm); }.services::before { content: "02"; position: absolute; top: -7vw; left: -1vw; color: rgba(168,94,115,.07); font: 35vw/.8 var(--display); pointer-events: none; }.services-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 40px 7vw; margin-bottom: 85px; }.services-heading .eyebrow { grid-column: 1 / -1; }.services-heading h2 { max-width: 920px; margin: 0; font-size: clamp(66px, 8.7vw, 136px); font-weight: 600; letter-spacing: -.085em; line-height: .84; }.services-heading h2 em { display: inline-block; color: var(--rose-dark); }.services-heading > p:last-child { max-width: 390px; margin: 0 0 8px; color: #716764; font-size: 14px; line-height: 1.95; }.services-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark); }.service-card { min-height: 310px; display: flex; flex-direction: column; padding: clamp(28px, 4vw, 54px); border-bottom: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); transition: background .24s ease, color .24s ease, transform .24s var(--ease); }.service-card:hover { z-index: 1; background: var(--ink); color: var(--paper); transform: translateY(-4px); }.service-number { color: var(--rose-dark); font-size: 10px; letter-spacing: .1em; }.service-card h3 { margin: 45px 0 20px; font-size: clamp(25px, 2.4vw, 38px); font-weight: 600; letter-spacing: -.055em; }.service-card p { max-width: 500px; margin: 0 0 36px; color: #716764; font-size: 13px; line-height: 1.85; transition: color .24s ease; }.service-card:hover p { color: var(--muted); }.service-tag { margin-top: auto; color: #817470; font-size: 10px; }.service-card:hover .service-tag { color: var(--rose); }.text-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 12px; margin-top: 52px; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 600; }.text-link span { color: var(--rose-dark); font-size: 17px; transition: transform .25s var(--ease); }.text-link:hover span { transform: translate(-5px, 5px); }

.journey { position: relative; height: 620vh; background: var(--ink); }.journey-sticky { position: sticky; top: 0; height: 100svh; min-height: 680px; overflow: hidden; direction: ltr; background: var(--ink); }.journey-backdrop { position: absolute; inset: 0; background: radial-gradient(circle at 37% 48%, rgba(234,164,180,.13), transparent 36%), #171114; transition: background 1s var(--ease); }.journey-grid { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(90deg, rgba(243,238,231,.6) 1px, transparent 1px), linear-gradient(rgba(243,238,231,.5) 1px, transparent 1px); background-size: 25% 100%, 100% 25%; }.journey-visual { position: absolute; top: 50%; left: clamp(32px, 5vw, 82px); width: min(59vw, 900px); height: min(72vh, 710px); perspective: 1600px; transform: translateY(-50%) rotateY(var(--scene-ry, -2deg)) rotateX(var(--scene-rx, 0deg)); transform-style: preserve-3d; transition: transform .85s var(--ease); }.journey-frame { position: absolute; inset: 0; overflow: hidden; margin: 0; border: 1px solid rgba(243,238,231,.4); border-radius: 8px 34% 8px 22%; background: #291c22; box-shadow: 0 40px 80px rgba(0,0,0,.38); opacity: 0; transform: translate3d(0, 8%, -100px) rotateY(10deg) scale(.88); transform-origin: center; will-change: opacity, transform, clip-path; }.journey-frame:first-child { opacity: 1; transform: none; }.journey-frame img { height: 100%; object-fit: cover; }.journey-final-frame img { object-position: center 40%; }.frame-caption { position: absolute; right: 18px; bottom: 17px; padding: 7px 9px; background: rgba(18,15,17,.5); color: rgba(243,238,231,.85); font-size: 8px; letter-spacing: .09em; backdrop-filter: blur(9px); }
.sketch-motion, .measure-motion, .palette-motion, .sew-motion, .reveal-motion { position: absolute; z-index: 10; pointer-events: none; transition: opacity .45s ease, transform .7s var(--ease); }.sketch-motion { inset: 4%; width: 92%; height: 92%; opacity: .65; }.sketch-path { fill: none; stroke: var(--rose-dark); stroke-width: 1.8; stroke-dasharray: 2100; stroke-dashoffset: var(--sketch-offset, 2100); }.sketch-path-secondary { stroke-width: 1; opacity: .6; }.measure-motion { inset: 0; opacity: 0; }.measure-motion span { position: absolute; background: rgba(199,212,122,.8); }.measure-x { top: 37%; right: 5%; left: 5%; height: 1px; transform: scaleX(var(--measure-scale, 0)); }.measure-y { top: 5%; bottom: 5%; left: 51%; width: 1px; transform: scaleY(var(--measure-scale, 0)); }.measure-motion b, .measure-motion i { position: absolute; padding: 4px 6px; background: var(--moss); color: var(--ink); font: 8px var(--arabic); font-style: normal; }.measure-motion b { top: 35%; left: 8%; }.measure-motion i { right: 44%; bottom: 7%; }.palette-motion { right: 20px; bottom: 20px; display: flex; gap: 8px; opacity: 0; transform: translateY(20px); }.palette-motion span { width: 33px; height: 33px; border: 1px solid rgba(243,238,231,.65); border-radius: 50%; background: var(--swatch); box-shadow: 0 8px 18px rgba(0,0,0,.2); }.sew-motion { inset: 0; opacity: 0; }.sew-motion span { position: absolute; top: 17%; right: 16%; width: 58%; height: 58%; border: 1px dashed var(--rose); border-radius: 50%; transform: rotate(-22deg) scale(var(--sew-scale, .6)); }.sew-motion i { position: absolute; top: 14%; right: 16%; color: var(--moss); font-style: normal; font-size: 21px; }.reveal-motion { top: 20px; left: 20px; padding: 8px 10px; border: 1px solid rgba(243,238,231,.45); background: rgba(18,15,17,.42); color: var(--rose); font-size: 9px; opacity: 0; transform: translateY(-12px); }
.journey[data-step="1"] .journey-backdrop { background: radial-gradient(circle at 37% 48%, rgba(199,212,122,.11), transparent 36%), #151314; }.journey[data-step="2"] .journey-backdrop { background: radial-gradient(circle at 37% 48%, rgba(154,74,101,.25), transparent 36%), #1a1015; }.journey[data-step="3"] .journey-backdrop { background: radial-gradient(circle at 37% 48%, rgba(234,164,180,.22), transparent 36%), #190f14; }.journey[data-step="4"] .journey-backdrop { background: radial-gradient(circle at 37% 48%, rgba(115,56,78,.35), transparent 39%), #0e0c0d; }.journey[data-step="1"] .measure-motion { opacity: 1; }.journey[data-step="2"] .palette-motion { opacity: 1; transform: translateY(0); }.journey[data-step="3"] .sew-motion { opacity: 1; }.journey[data-step="4"] .reveal-motion { opacity: 1; transform: translateY(0); }.journey:not([data-step="0"]) .sketch-motion { opacity: 0; }
.journey-copy { position: absolute; top: 50%; right: var(--gutter); width: min(31vw, 470px); min-height: 410px; direction: rtl; transform: translateY(-50%); }.journey-panel { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateY(30px); pointer-events: none; transition: opacity .65s ease, transform .75s var(--ease); }.journey-panel.is-current { opacity: 1; transform: translateY(0); pointer-events: auto; }.step-kicker { display: flex; align-items: center; gap: 11px; margin: 0; color: var(--muted); font-size: 11px; }.step-kicker span { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid var(--rose); border-radius: 50%; color: var(--rose); font: 500 10px var(--arabic); }.journey-panel h2 { margin: 33px 0 29px; font-size: clamp(54px, 6.4vw, 102px); font-weight: 600; letter-spacing: -.08em; line-height: .83; }.journey-panel > p:last-child { max-width: 330px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.85; }.journey-index { position: absolute; right: var(--gutter); bottom: 65px; display: flex; align-items: center; gap: 11px; color: var(--rose); font-size: 10px; }.journey-rail { width: 94px; height: 1px; background: rgba(243,238,231,.25); }.journey-rail i { display: block; width: 20%; height: 2px; background: var(--rose); transition: width .35s ease; }.journey-index > span:last-child { color: var(--muted); }.journey-dots { position: absolute; top: 50%; right: 24px; display: flex; flex-direction: column; gap: 10px; transform: translateY(-50%); }.journey-dots i { width: 5px; height: 5px; border: 1px solid var(--rose); border-radius: 50%; transition: background .25s ease, transform .25s ease; }.journey-dots i.active { background: var(--rose); transform: scale(1.7); }.journey-side { position: absolute; right: var(--gutter); bottom: 23px; left: var(--gutter); display: flex; justify-content: space-between; color: #827675; font-size: 9px; }

.about { padding: 150px var(--gutter) 160px; }.about-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 90px; }.about-heading h2 { max-width: 940px; margin: 0; font-size: clamp(61px, 7.8vw, 122px); font-weight: 600; letter-spacing: -.085em; line-height: .84; }.about-heading h2 em { display: block; color: var(--rose-dark); }.about-layout { display: grid; grid-template-columns: 1.1fr .9fr; direction: ltr; gap: clamp(45px, 8vw, 130px); align-items: center; }.about-image { height: min(76vh, 720px); margin: 0; border-radius: 3px 40% 3px 20%; box-shadow: 23px 27px 0 rgba(168,94,115,.2); }.about-image img { height: 100%; object-fit: cover; }.about-image figcaption { position: absolute; right: 17px; bottom: 16px; padding: 7px 9px; background: rgba(18,15,17,.55); color: var(--paper); font-size: 9px; }.about-copy { direction: rtl; }.about-lede { color: var(--rose-dark); font-size: clamp(21px, 2.4vw, 34px); font-weight: 500; line-height: 1.55; letter-spacing: -.035em; }.about-copy > p:not(.about-lede) { max-width: 440px; color: #716764; font-size: 14px; line-height: 1.95; }.about-signature { margin-top: 47px; padding-top: 17px; border-top: 1px solid var(--line-dark); color: #796e6a; font-size: 11px; }.about-signature span { margin: 0 10px; color: var(--rose-dark); }
.craft { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding: 140px var(--gutter); background: var(--ink-soft); }.craft-heading > span { color: var(--muted); font-size: 11px; }.craft-heading h2 { margin: 40px 0 0; font-size: clamp(57px, 7vw, 110px); font-weight: 600; letter-spacing: -.08em; line-height: .84; }.craft-list { border-top: 1px solid var(--line); }.craft-list article { display: grid; grid-template-columns: 42px 1fr 1.1fr; align-items: center; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); transition: padding .35s var(--ease), color .25s ease; }.craft-list article:hover { padding-right: 15px; padding-left: 15px; color: var(--rose); }.craft-list article > span { color: var(--rose); font: 500 10px var(--arabic); }.craft-list h3 { margin: 0; font-size: 21px; font-weight: 500; }.craft-list p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding: 145px var(--gutter) 155px; }.faq-heading h2 { margin: 42px 0 0; font-size: clamp(57px, 7.2vw, 112px); font-weight: 600; letter-spacing: -.08em; line-height: .84; }.faq-heading h2 em { display: block; color: var(--rose-dark); }.faq-list { border-top: 1px solid var(--line-dark); }.faq-list details { border-bottom: 1px solid var(--line-dark); }.faq-list summary { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 0; cursor: pointer; list-style: none; font-size: clamp(17px, 1.65vw, 24px); font-weight: 600; line-height: 1.55; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary i { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--rose-dark); font-family: var(--latin-sans); font-size: 20px; font-style: normal; font-weight: 400; transition: transform .3s var(--ease), background .25s ease, color .25s ease; }.faq-list details[open] summary i { background: var(--ink); color: var(--paper); transform: rotate(45deg); }.faq-list details p { max-width: 670px; margin: -5px 0 30px; color: #716764; font-size: 14px; line-height: 1.95; }
.contact { position: relative; min-height: 90svh; display: grid; place-items: center; overflow: hidden; background: var(--rose); color: var(--ink); }.contact-content { position: relative; z-index: 2; max-width: 1050px; padding: 90px var(--gutter); text-align: center; }.contact-content .eyebrow { justify-content: center; }.contact h2 { margin: 38px 0 30px; font-size: clamp(74px, 10.2vw, 158px); font-weight: 600; letter-spacing: -.09em; line-height: .8; }.contact h2 em { color: var(--paper); }.contact-content > p { max-width: 560px; margin: 0 auto 38px; color: rgba(18,15,17,.68); font-size: 14px; line-height: 1.85; }.contact-link { display: inline-flex; align-items: center; gap: 15px; padding-bottom: 8px; border-bottom: 1px solid var(--ink); font-size: clamp(17px, 2vw, 28px); }.contact-link[dir="ltr"] { font-family: var(--mono); }.contact-link span { font-size: 23px; transition: transform .3s var(--ease); }.contact-link:hover span { transform: translate(6px, -6px); }.contact-rings span { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(18,15,17,.16); border-radius: 50%; transform: translate(-50%, -50%); }.contact-rings span:nth-child(1) { width: min(64vw, 820px); aspect-ratio: 1; }.contact-rings span:nth-child(2) { width: min(76vw, 970px); aspect-ratio: 1; }.contact-rings span:nth-child(3) { width: min(90vw, 1130px); aspect-ratio: 1; }.contact-foot { position: absolute; right: var(--gutter); bottom: 25px; left: var(--gutter); display: flex; justify-content: space-between; color: rgba(18,15,17,.62); font-size: 9px; }.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 25px var(--gutter); color: var(--muted); font-size: 10px; }.site-footer .brand { color: var(--paper); font-size: 10px; }.site-footer .brand-mark { width: 23px; height: 23px; font-size: 13px; }.site-footer > div { display: flex; gap: 18px; font-size: 10px; }.site-footer > div a:hover { color: var(--rose); }
.faq-guide-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding: 22px 0; border-bottom: 1px solid var(--ink); color: var(--rose-dark); font-size: 14px; font-weight: 700; line-height: 1.7; }.faq-guide-link span { flex: 0 0 auto; font-size: 22px; transition: transform .25s var(--ease); }.faq-guide-link:hover span { transform: translate(-6px, 6px); }

.guide-page .site-header { mix-blend-mode: difference; }.guide-hero { min-height: 92svh; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: clamp(48px, 7vw, 120px); padding: 145px var(--gutter) 90px; background: radial-gradient(circle at 72% 40%, rgba(168,94,115,.26), transparent 33%), var(--ink); }.guide-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 35px; color: #8e8280; font-size: 10px; }.guide-breadcrumb a { color: var(--rose); }.guide-hero h1 { margin: 34px 0 32px; font-size: clamp(55px, 6.7vw, 108px); font-weight: 600; line-height: .98; }.guide-lede { max-width: 680px; margin-bottom: 25px; color: var(--muted); font-size: clamp(14px, 1.25vw, 18px); line-height: 2; }.guide-meta { margin: 0; color: #817674; font-size: 10px; }.guide-meta span { margin: 0 8px; color: var(--rose); }.guide-hero-image { height: min(68vh, 670px); border: 1px solid rgba(243,238,231,.36); border-radius: 42% 6px 28% 6px; box-shadow: 22px 28px 0 rgba(89,51,70,.32); }.guide-hero-image img { height: 100%; object-fit: cover; }.guide-hero-image figcaption, .guide-process-image figcaption { position: absolute; right: 18px; bottom: 17px; left: 18px; padding: 8px 10px; background: rgba(18,15,17,.56); color: var(--paper); font-size: 9px; backdrop-filter: blur(9px); }
.guide-section-label { display: flex; align-items: center; gap: 16px; color: #746967; }.guide-section-label span { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--rose-dark); border-radius: 50%; color: var(--rose-dark); font-size: 10px; }.guide-section-label p { margin: 0; font-size: 11px; }.guide-intro { display: grid; grid-template-columns: .6fr 1.4fr; gap: 8vw; padding: 135px var(--gutter); }.guide-prose h2, .guide-section-heading h2 { margin: 35px 0 40px; font-size: clamp(54px, 6.7vw, 104px); font-weight: 600; line-height: .96; }.guide-prose h2 em, .guide-section-heading h2 em { display: inline-block; color: var(--rose-dark); }.guide-prose > p:not(.eyebrow) { max-width: 760px; color: #716764; font-size: 15px; line-height: 2.05; }.guide-prose .guide-prose-lede { color: var(--plum); font-size: clamp(20px, 2vw, 30px); font-weight: 500; line-height: 1.7; }
.guide-criteria { padding: 120px var(--gutter) 145px; background: var(--paper-warm); }.guide-criteria .eyebrow.dark, .guide-faq .eyebrow.dark { color: #5b504d; }.guide-section-heading { max-width: 900px; margin-bottom: 75px; }.guide-criteria-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark); }.guide-criterion { min-height: 300px; padding: clamp(30px, 4vw, 55px); border-bottom: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); transition: color .22s ease, background .22s ease, transform .22s var(--ease); }.guide-criterion:hover { z-index: 1; background: var(--ink); color: var(--paper); transform: translateY(-4px); }.guide-criterion > span { color: #884256; font-size: 10px; }.guide-criterion h3 { margin: 46px 0 20px; font-size: clamp(24px, 2.25vw, 36px); line-height: 1.45; }.guide-criterion p { max-width: 600px; margin: 0; color: #5b504d; font-size: 13px; line-height: 1.95; transition: color .22s ease; }.guide-criterion:hover p { color: var(--paper); }
.guide-checklist { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; padding: 135px var(--gutter); background: var(--ink-soft); }.guide-question-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }.guide-question-list li { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 20px; min-height: 92px; border-bottom: 1px solid var(--line); }.guide-question-list span { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid var(--rose); border-radius: 50%; color: var(--rose); font-size: 10px; }.guide-question-list p { margin: 0; color: var(--paper); font-size: clamp(15px, 1.35vw, 19px); line-height: 1.75; }
.guide-process { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(55px, 8vw, 130px); padding: 145px var(--gutter); }.guide-process-image { height: min(74vh, 700px); border-radius: 4px 38% 4px 20%; box-shadow: 22px 27px 0 rgba(168,94,115,.2); }.guide-process-image img { height: 100%; object-fit: cover; }.guide-process .text-link { margin-top: 30px; }.guide-faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding: 130px var(--gutter) 145px; background: var(--paper-warm); }.guide-faq .guide-section-heading { margin-bottom: 0; }.guide-faq .faq-list details p { color: #5b504d; }.guide-cta { position: relative; min-height: 78svh; display: grid; place-items: center; overflow: hidden; background: var(--rose); color: var(--ink); }.guide-cta-content { position: relative; z-index: 2; max-width: 1040px; padding: 100px var(--gutter); text-align: center; }.guide-cta-content .eyebrow { justify-content: center; }.guide-cta h2 { margin: 38px 0 30px; font-size: clamp(72px, 9.7vw, 148px); font-weight: 600; line-height: .9; }.guide-cta h2 em { color: var(--paper); }.guide-cta-content > p { max-width: 610px; margin: 0 auto 38px; color: rgba(18,15,17,.68); font-size: 14px; line-height: 1.9; }

@media (max-width: 1080px) { .hero { grid-template-columns: minmax(350px, .85fr) 1.15fr; }.journey-visual { width: 57vw; }.journey-copy { width: 33vw; }.journey-panel h2 { font-size: clamp(49px, 6vw, 78px); } }
@media (max-width: 760px) {
  :root { --gutter: 20px; }
  .site-header { padding: 14px var(--gutter); }.main-nav { display: none; }.header-actions { gap: 9px; }.language-switcher { min-height: 40px; }.language-switcher a, .language-switcher span { min-width: 30px; min-height: 32px; }.header-contact { font-size: 9px; }.page-thread { opacity: .18; }
  .hero { display: block; min-height: auto; padding: 115px var(--gutter) 32px; background: radial-gradient(circle at 50% 65%, rgba(146,67,96,.3), transparent 35%), var(--ink); }.hero-copy h1 { margin-top: 30px; font-size: clamp(60px, 17vw, 94px); }.hero-lede { font-size: 13px; }.hero-visual { width: 100%; height: 520px; margin-top: 51px; }.hero-final { inset: 2% 3% 1% 11%; }.hero-sketch-card { top: 2%; left: -2%; width: 41%; }.hero-stamp { right: 0; bottom: 12%; }.hero-foot { position: static; margin-top: 28px; font-size: 7px; }.hero-foot span:nth-child(2) { display: none; }
  .manifesto { min-height: 760px; padding-top: 100px; }.manifesto-top { font-size: 8px; }.manifesto h2 { margin: 65px 0 60px; font-size: clamp(58px, 16.5vw, 88px); }.manifesto-bottom { display: block; width: 100%; }.manifesto-bottom p { max-width: 340px; font-size: 13px; }.manifesto-bottom > span { display: block; margin-top: 24px; }
  .services { padding-top: 100px; padding-bottom: 105px; }.services-heading { display: block; margin-bottom: 54px; }.services-heading h2 { margin: 34px 0 30px; font-size: clamp(58px, 16.5vw, 88px); }.services-heading > p:last-child { font-size: 13px; }.services-grid { display: block; }.service-card { min-height: 290px; }.service-card h3 { margin-top: 38px; font-size: 26px; }.text-link { max-width: 310px; line-height: 1.7; }
  .journey { height: 570vh; }.journey-sticky { min-height: 650px; }.journey-visual { top: 40%; right: 20px; left: 20px; width: auto; height: 49vh; min-height: 350px; transform: translateY(-50%); }.journey-frame { border-radius: 5px 26% 5px 18%; }.journey-final-frame img { object-position: center 37%; }.journey-copy { top: auto; right: 20px; bottom: 86px; left: 20px; width: auto; min-height: 210px; transform: none; }.journey-panel { justify-content: flex-end; }.step-kicker { font-size: 9px; }.step-kicker span { width: 25px; height: 25px; font-size: 8px; }.journey-panel h2 { margin: 21px 0 14px; font-size: clamp(49px, 14.5vw, 70px); }.journey-panel > p:last-child { max-width: 330px; font-size: 11px; line-height: 1.65; }.journey-index { right: 20px; bottom: 56px; }.journey-dots { top: 39%; right: 8px; }.journey-side { right: 20px; bottom: 18px; left: 20px; font-size: 7px; }.sketch-motion { inset: 0; width: 100%; height: 100%; }.palette-motion span { width: 25px; height: 25px; }
  .about { padding-top: 100px; padding-bottom: 110px; }.about-heading { display: block; margin-bottom: 55px; }.about-heading h2 { margin-top: 34px; font-size: clamp(54px, 15.5vw, 82px); }.about-layout { display: block; }.about-image { height: 480px; margin-bottom: 58px; }.about-lede { font-size: 22px; }.about-copy > p:not(.about-lede) { font-size: 13px; }.about-signature { font-size: 10px; }.craft { display: block; padding-top: 100px; padding-bottom: 100px; }.craft-heading { margin-bottom: 58px; }.craft-heading h2 { font-size: clamp(58px, 16vw, 87px); }.craft-list article { grid-template-columns: 35px 1fr; gap: 10px; }.craft-list p { grid-column: 2; }.faq { display: block; padding-top: 100px; padding-bottom: 110px; }.faq-heading { margin-bottom: 55px; }.faq-heading h2 { font-size: clamp(56px, 16vw, 84px); }.faq-list summary { min-height: 82px; font-size: 16px; }.faq-list details p { font-size: 13px; }.contact { min-height: 680px; }.contact-content { padding-top: 100px; padding-bottom: 100px; }.contact h2 { font-size: clamp(60px, 16.5vw, 91px); }.contact-content > p { font-size: 13px; }.contact-rings span:nth-child(1) { width: 120vw; }.contact-rings span:nth-child(2) { width: 145vw; }.contact-rings span:nth-child(3) { width: 170vw; }.contact-foot { font-size: 8px; }.site-footer { flex-wrap: wrap; }.site-footer > span { order: 3; width: 100%; }.site-footer > div { margin-right: auto; }
  .guide-hero { display: block; min-height: auto; padding: 120px var(--gutter) 80px; }.guide-hero h1 { font-size: clamp(49px, 14vw, 72px); }.guide-lede { font-size: 13px; }.guide-meta { line-height: 1.9; }.guide-hero-image { height: 430px; margin-top: 55px; }.guide-intro, .guide-checklist, .guide-process, .guide-faq { display: block; padding: 100px var(--gutter); }.guide-section-label { margin-bottom: 55px; }.guide-prose h2, .guide-section-heading h2 { font-size: clamp(49px, 14vw, 74px); }.guide-prose > p:not(.eyebrow) { font-size: 13px; }.guide-prose .guide-prose-lede { font-size: 21px; }.guide-criteria { padding: 100px var(--gutter); }.guide-section-heading { margin-bottom: 52px; }.guide-criteria-grid { display: block; }.guide-criterion { min-height: 285px; }.guide-criterion h3 { font-size: 26px; }.guide-checklist .guide-section-heading { margin-bottom: 55px; }.guide-question-list li { min-height: 100px; }.guide-question-list p { font-size: 14px; }.guide-process-image { height: 460px; margin-bottom: 65px; }.guide-faq .guide-section-heading { margin-bottom: 55px; }.guide-cta { min-height: 680px; }.guide-cta h2 { font-size: clamp(58px, 16vw, 88px); }.guide-cta-content > p { font-size: 13px; }
  html[lang="en"] .hero-copy h1 { font-size: clamp(47px, 13.8vw, 72px); }
  html[lang="en"] .manifesto h2, html[lang="en"] .services-heading h2 { font-size: clamp(49px, 13.5vw, 72px); }
  html[lang="en"] .journey-visual { right: 20px; left: 20px; }
  html[lang="en"] .journey-copy { right: 20px; left: 20px; }
  html[lang="en"] .journey-index { right: auto; left: 20px; }
  html[lang="en"] .journey-dots { right: auto; left: 8px; }
  html[lang="en"] .journey-panel h2 { font-size: clamp(42px, 11.8vw, 60px); }
  html[lang="en"] .about-heading h2, html[lang="en"] .craft-heading h2, html[lang="en"] .faq-heading h2 { font-size: clamp(48px, 13vw, 70px); }
  html[lang="en"] .contact h2 { font-size: clamp(54px, 14.5vw, 80px); }
}
@media (max-width: 360px) { .header-contact span { display: none; }.header-contact { border-bottom: 0; padding: 0; }.site-header { --gutter: 16px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }.reveal { opacity: 1; transform: none; }.page-thread { display: none; } }
