/* Crown Faith Development — styles v0.3
   Elegant, restrained, high-end. Warm charcoal ink + cream/stone neutrals +
   ONE quiet terracotta accent (used sparingly). No multicolor. */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

:root {
  --ink: #23201C;
  --ink-soft: #6E655B;
  --canvas: #FAF6EF;      /* uniform light beige */
  --paper: #FEFCF8;
  --stone: #F3EDE3;       /* lightened to sit close to canvas */
  --line: rgba(35,32,28,.11);
  --accent: #CE7F92;      /* soft dusty pink */
  --accent-ink: #B56679;
  --accent-soft: rgba(206,127,146,.12);

  --shadow-card: 0 8px 24px -16px rgba(35,32,28,.26);
  --shadow-soft: 0 18px 48px -26px rgba(35,32,28,.42);

  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-script: "Sacramento", "Segoe Script", cursive;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --grad-cool: linear-gradient(120deg, #2DB5A3 0%, #9BD1C8 100%);
  --grad-tech: linear-gradient(120deg, #6C5CE7 0%, #F58BB0 100%);

  --radius: 14px;
  --radius-sm: 10px;
  --wrap: 1160px;
  --gutter: clamp(18px, 4vw, 48px);
  --sec: clamp(52px, 7vw, 96px);
  --diag: 3vw;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.6;
  font-size: clamp(15.5px, 1vw, 17px);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { color: var(--ink); text-wrap: balance; }
h1 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; font-size: clamp(2.35rem, 4.9vw, 3.7rem); }
h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.eyebrow { font-family: var(--font-body); font-weight: 600; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); display: inline-block; margin-bottom: .8rem; }
.lead { font-size: clamp(1rem, 1.35vw, 1.18rem); color: var(--ink-soft); max-width: 62ch; }
.section { padding: var(--sec) 0; position: relative; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5em; padding: .8em 1.6em; border-radius: 100px; font-weight: 600; font-family: var(--font-body); font-size: .9rem; letter-spacing: .01em; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-ink); transform: translateY(-1px); }
.btn--grad { background: var(--accent); color: #fff; }
.btn--grad:hover { background: var(--accent-ink); transform: translateY(-1px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn--light:hover { background: rgba(255,255,255,.12); }
/* broken-ring around CTA buttons: equal small gaps at top-right (45°) + bottom-left (225°), offset for space */
.btn--grad, .btn--primary, .btn--light { position: relative; }
.btn--grad, .btn--primary { --ring: #CE7F92; }
.btn--light { --ring: #fff; border-color: transparent; }
/* Broken pink ring: solid outline with two small gaps punched at the oval's top-right and
   bottom-left corners. The gaps are 7px in from each corner (on the rounded end-cap arc) and
   are position-anchored, so they stay on the corners no matter how wide the button is. */
.btn--grad::after, .btn--primary::after, .btn--light::after { content: ""; position: absolute; inset: -5px; border-radius: 100px; pointer-events: none; border: 1.5px solid var(--ring); -webkit-mask: radial-gradient(circle 5px at calc(100% - 7px) 7px, transparent 0 3.5px, #000 4.5px), radial-gradient(circle 5px at 7px calc(100% - 7px), transparent 0 3.5px, #000 4.5px); -webkit-mask-composite: source-in; mask-composite: intersect; }

/* Header + brand (mark + wordmark) */
.header { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: clamp(12px,1.8vw,20px) var(--gutter); transition: background .3s, box-shadow .3s, padding .3s; }
.header.is-scrolled { background: rgba(250,246,239,.96); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.header.is-scrolled .brand__name { color: var(--ink); }
.brand { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: .5rem; z-index: 59; color: var(--ink); }
.brand__mark { width: 24px; flex: 0 0 auto; }
.brand__mark svg { width: 100%; height: auto; }
.brand__name { font-family: "Helvetica Neue", "Arimo", Helvetica, Arial, sans-serif; font-weight: 600; font-size: clamp(.9rem,1.55vw,1.22rem); letter-spacing: .11em; text-transform: uppercase; white-space: nowrap; line-height: 1; }
.lang { position: relative; z-index: 60; }
.lang__btn { display: flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .8rem; color: inherit; border: 1px solid currentColor; border-radius: 7px; padding: .4em .6em; opacity: .92; }
.lang__btn .chev { transition: transform .2s; } .lang.open .lang__btn .chev { transform: rotate(180deg); }
.header.on-hero:not(.is-scrolled) .lang__btn { color: #fff; }
.lang__menu { position: absolute; top: 150%; right: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-soft); padding: .4rem; display: none; min-width: 152px; }
.lang.open .lang__menu { display: block; }
.lang__menu button { display: block; width: 100%; text-align: left; padding: .55em .8em; border-radius: 9px; font-size: .92rem; color: var(--ink); }
.lang__menu button:hover { background: var(--stone); }
.words .wd { white-space: nowrap; }
.words .ch { opacity: .16; transition: opacity .18s ease; }
.words .ch.on { opacity: 1; }
.header.on-hero:not(.is-scrolled) .brand { color: #fff; }
.header.on-hero:not(.is-scrolled) .brand__sub { color: rgba(255,255,255,.82); }
.header.on-hero:not(.is-scrolled) .menu-btn__label { color: #fff; }
.header.on-hero:not(.is-scrolled) .menu-btn__line { background: #fff; }

.menu-btn { display: flex; align-items: center; gap: .5rem; z-index: 60; }
.menu-btn__label { font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.menu-btn__icon { width: 22px; display: inline-flex; flex-direction: column; gap: 5px; align-items: flex-end; }
.menu-btn__line { height: 2px; width: 22px; background: var(--ink); border-radius: 3px; transition: transform .35s, opacity .3s, width .35s, background .3s; }
.menu-btn__line:nth-child(3) { width: 14px; }
body.menu-open .menu-btn__line { background: var(--ink) !important; }
body.menu-open .menu-btn__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-btn__line:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn__line:nth-child(3) { width: 22px; transform: translateY(-7px) rotate(-45deg); }

/* Off-canvas menu */
.nav-overlay { position: fixed; inset: 0; background: rgba(35,32,28,.42); opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; z-index: 55; }
body.menu-open .nav-overlay { opacity: 1; visibility: visible; }
.offcanvas { position: fixed; top: 0; left: 0; height: 100%; width: min(400px, 88vw); background: var(--canvas); z-index: 58; padding: clamp(84px,11vh,120px) clamp(26px,4vw,48px) 36px; transform: translateX(-100%); transition: transform .45s cubic-bezier(.7,0,.2,1); display: flex; flex-direction: column; overflow-y: auto; }
body.menu-open .offcanvas { box-shadow: 30px 0 60px -30px rgba(35,32,28,.4); }
body.menu-open .offcanvas { transform: translateX(0); }
.offcanvas__link { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem,3.4vw,2rem); letter-spacing: -.01em; padding: .28em 0; color: var(--ink); transition: color .2s, padding-left .25s; }
.offcanvas__link:hover { color: var(--accent); padding-left: .4em; }
.offcanvas__foot { margin-top: auto; padding-top: 1.6rem; color: var(--ink-soft); font-size: .92rem; }
.offcanvas__foot a { color: var(--ink); font-weight: 600; }

/* Hero */
.hero { position: relative; min-height: 92svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,21,18,.52) 0%, rgba(24,21,18,.4) 45%, rgba(24,21,18,.68) 100%); }
.hero__inner { padding-block: clamp(110px,16vh,170px); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero__sub { color: rgba(255,255,255,.9); font-size: clamp(1rem,1.45vw,1.22rem); max-width: 52ch; margin: 1.2rem 0 1.8rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
/* centered section headers (Whispr / Locke cue) */
.hero__inner { text-align: center; }
.hero h1, .hero__sub { margin-inline: auto; }
.hero__cta { justify-content: center; align-items: center; }
.band > .wrap > .eyebrow, .band > .wrap > h2, .band > .wrap > .lead { text-align: center; display: block; margin-inline: auto; }
.quote { margin-inline: auto; text-align: center; }
.quote cite { color: var(--accent); }

/* Bands */
.band { position: relative; }
.band--paper { background: var(--paper); }
.band--sand { background: var(--stone); }
.band--ink { background: var(--ink); color: #fff; }
.band--ink h2, .band--ink h3 { color: #fff; }
.band--ink p { color: rgba(255,255,255,.68); }
.band--ink .eyebrow { color: #E0A183; }
.band--diag-top { border-top-left-radius: clamp(28px,4.5vw,56px); border-top-right-radius: clamp(28px,4.5vw,56px); margin-top: calc(clamp(28px,4.5vw,56px) * -1); padding-top: calc(clamp(28px,4.5vw,56px) + var(--sec)); position: relative; z-index: 1; }
.band--paper, .band--sand { border-top-left-radius: clamp(28px,4.5vw,56px); border-top-right-radius: clamp(28px,4.5vw,56px); }
/* Modern-House cue: on select sections the two rounded top corners sit at slightly different heights,
   so the top edge itself is a gentle diagonal. Done with a rotated background panel (content stays level). */
.band--slant { isolation: isolate; background: transparent !important; }
.band--slant > .wrap { position: relative; z-index: 1; }
.band--slant::before { content: ""; position: absolute; z-index: 0; left: -8vw; right: -8vw; top: 0; bottom: -16vw; border-radius: clamp(28px,4.5vw,56px) clamp(28px,4.5vw,56px) 0 0; transform: rotate(0.7deg); transform-origin: 50% 0; }
.band--slant.band--paper::before { background: var(--paper); }
.band--slant.band--sand::before { background: var(--stone); }
.band--slant.band--ink::before { background: var(--ink); }

/* Intro */
.about__head { text-align: center; max-width: 820px; margin: 0 auto 2.4rem; }
.intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,4vw,64px); align-items: start; }
.intro__vendors { margin-top: 1.2rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.tagpill { font-size: .82rem; font-weight: 500; padding: .4em .9em; border-radius: 100px; background: var(--canvas); border: 1px solid var(--line); color: var(--ink); }
.stats { display: grid; gap: .8rem; }
.stat { position: relative; overflow: hidden; display: flex; align-items: center; background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.stat__txt { position: relative; z-index: 2; min-width: 0; }
.stat b { font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; color: var(--accent); display: block; line-height: 1.06; }
.stat span { font-size: .88rem; color: var(--ink-soft); }
/* tone-on-tone silhouette on the right — a shade darker than the card, faded in from nothing as the card scrolls up (Salboy-style), always behind the text */
.stat__bg { position: absolute; top: 0; right: 0; bottom: 0; width: 60%; z-index: 1; opacity: 0; pointer-events: none; overflow: hidden; }
.stat__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); display: block; }
.stat__bg--wire { overflow: hidden; }
.stat__bg--wire svg { position: absolute; top: 50%; left: 50%; color: var(--ink); overflow: visible; will-change: transform; }
/* scroll-driven ink-in: --edge draws the outline, --fill floods the colour/inversion */
.wire .ink { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; stroke-opacity: var(--edge, 0); }
.wire .towel { fill: #fff; fill-opacity: calc(var(--fill, 0) * .72); stroke: currentColor; stroke-width: 1.7; stroke-linejoin: round; stroke-linecap: round; stroke-opacity: var(--edge, 0); }
.wire .land { fill: #efe6d3; fill-opacity: calc(var(--fill, 0) * .82); }
.wire .borders { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linejoin: round; stroke-linecap: round; stroke-opacity: calc(var(--edge, 0) * .82); }
.wire .cal-bg { fill: #efe6d3; fill-opacity: calc(var(--fill, 0) * .9); }
.wire .cal-cell { fill: #fffdf8; fill-opacity: var(--fill, 0); }
.wire .cal-ink { color: #201d18; opacity: var(--edge, 0); }
.wire .cal-hi { color: var(--accent); opacity: var(--edge, 0); }
.stat__bg--cal svg { width: 78%; height: 150%; transform: translate(-31%, -42%) perspective(880px) rotateX(44deg) rotateZ(13deg) scale(0.9); }
.stat__bg--towels svg { width: 132%; height: 232%; transform: translate(-50%, -50%) scale(0.66); }
.stat__bg--globe svg { width: 172%; height: 208%; transform: translate(-30%, -60%) perspective(1600px) rotateX(9deg) rotateZ(3deg) scale(0.48); }
/* reception: beige floods only WITHIN the drawing (fill silhouette) + ink on top — no full-panel background */
/* reception: beige fills the whole card on scroll, with a small fade only on the left edge */
.stat__bg--photo { background: rgba(233,223,201, calc(var(--fill, 0) * .62)); -webkit-mask: linear-gradient(90deg, transparent 5%, #000 15%); mask: linear-gradient(90deg, transparent 5%, #000 15%); }
.stat__bg--photo img { position: absolute; inset: 0; top: -2%; width: 100%; height: 104%; object-fit: contain; object-position: 100% 50%; mix-blend-mode: normal; filter: none; }
.stat__bg img[src*="calendar"] { object-position: 50% 56%; }
.stat__bg img[src*="bed"] { object-position: 50% 52%; }
.stat__bg img[src*="globe"] { object-position: 48% 50%; }
@media (max-width: 620px) { .stat__bg { width: 86%; } }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.6vw,20px); margin-top: 2.2rem; }
.svc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(18px,2vw,26px); transition: transform .25s, box-shadow .25s; }
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.svc__n { font-family: var(--font-display); font-size: .9rem; font-weight: 500; color: var(--accent); }
.svc__ic { position: relative; width: 46px; height: 46px; display: inline-grid; place-items: center; margin-bottom: .9rem; }
.svc__ic .ring { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--accent); }
.svc__ic .ic { width: 21px; height: 21px; color: var(--ink); position: relative; }
/* broken-circle border (45° gap) for bordered call-out buttons */
.btn--ghost, .btn--light { position: relative; }
.btn--ghost { border: 0; background:
  linear-gradient(var(--canvas), var(--canvas)) padding-box,
  conic-gradient(from 48deg, var(--ink) 0 336deg, transparent 336deg 360deg) border-box;
  border: 1.5px solid transparent; }
.svc h3 { margin: .3rem 0 .5rem; font-size: 1.12rem; }
.svc p { font-size: .92rem; }

/* Software / products (dark, elegant) */
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px,1.8vw,22px); margin-top: 2.2rem; }
.product { border-radius: 22px; padding: clamp(24px,3vw,38px); background: var(--paper); border: 1px solid var(--line); color: var(--ink); overflow: hidden; }
.product--yomied { background: #F1EADC; border-color: var(--line); }
.product--fabled { background: #F8E5EA; border-color: var(--line); }
.product h3 { color: var(--ink); font-size: clamp(1.35rem,2.3vw,1.8rem); }
.product p { color: var(--ink-soft); margin: .6rem 0 1.1rem; font-size: .95rem; }
.product__tag { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--accent-ink); }
/* centre only the product CTA buttons; card text above stays left-aligned */
.product > .btn { display: flex; width: fit-content; max-width: 100%; margin-inline: auto; }
.prod-feats { list-style: none; margin: .1rem 0 1.1rem; display: grid; gap: .45rem; }
.prod-feats li { font-size: .89rem; color: var(--ink-soft); padding-left: 1.3em; position: relative; }
.prod-feats li::before { content: "\2014"; position: absolute; left: 0; color: var(--accent-ink); }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin: .1rem 0 1.2rem; }
.chip-sm { font-size: .72rem; font-weight: 500; padding: .34em .75em; border-radius: 100px; background: rgba(35,32,28,.05); border: 1px solid rgba(35,32,28,.12); color: var(--ink); }
.applied { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; }
.applied div { background: rgba(35,32,28,.03); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.2rem; color: var(--ink-soft); }
.applied b { color: var(--ink); font-weight: 600; }

/* --- Fabled Flow dictation demo (waveform -> text) --- */
.flowdemo { margin: 0 0 1.3rem; text-align: center; }
.flowstage { display: inline-flex; align-items: center; justify-content: center; gap: 8px; max-width: 100%; }
.flowstage__say { font-size: .82rem; font-weight: 500; line-height: 1; color: var(--ink-soft); }
/* little function key — extra top padding offsets the thick bottom border so the "fn" glyph sits truly centered */
.fnkey { font-family: var(--font-body); font-size: .72rem; font-weight: 600; color: var(--ink); background: linear-gradient(#fff, #efeae1); border: 1px solid rgba(35,32,28,.2); border-bottom-width: 2.5px; border-radius: 6px; padding: .365em .5em .235em; line-height: 1; box-shadow: 0 1px 0 rgba(255,255,255,.85) inset; flex: 0 0 auto; transition: transform .12s ease, background .15s ease, color .15s ease, border-bottom-width .12s ease; }
.flowstage.is-pressed .fnkey { transform: translateY(2px); border-bottom-width: 1px; background: var(--accent); color: #fff; border-color: var(--accent-ink); }
/* audio file being fed from the key into the pill */
.flowfeed { width: 44px; height: 18px; flex: 0 0 auto; opacity: 0; transition: opacity .35s ease; -webkit-mask: linear-gradient(90deg, transparent, #000 60%); mask: linear-gradient(90deg, transparent, #000 60%); }
.flowfeed svg { display: block; width: 44px; height: 18px; }
.flowfeed path { fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 5 7; }
.flowstage.is-live .flowfeed { opacity: 1; }
.flowstage.is-live .flowfeed path { animation: streamflow .55s linear infinite; }
/* the waveform pill */
.flowbar { display: inline-flex; align-items: center; justify-content: center; background: #201D1A; border-radius: 100px; padding: 11px 20px; box-shadow: 0 9px 22px -11px rgba(35,32,28,.4); flex: 0 0 auto; }
.flowbar__wave { display: flex; align-items: center; justify-content: center; gap: 2.5px; height: 20px; }
.flowbar__wave i { width: 2.5px; height: 3px; background: #fff; border-radius: 3px; flex: 0 0 auto; transition: height .5s ease; }
.flowstage.is-live .flowbar__wave i { animation: wv .9s ease-in-out infinite; }
@keyframes streamflow { to { stroke-dashoffset: -24; } }
@keyframes wv { 0%,100%{height:3px} 50%{height:16px} }
.flowdemo__text { margin-top: .95rem; font-size: .95rem; color: var(--ink); min-height: 3.1em; font-weight: 500; text-align: center; opacity: 0; transition: opacity .55s ease; }
.flowdemo__text.show { opacity: 1; }

/* --- Yomied WhatsApp-style chat demo --- */
.chatdemo { background: #ECE5DD; border-radius: 16px; overflow: hidden; margin: 0 0 1.3rem; box-shadow: var(--shadow-card); }
.chatdemo__head { display: flex; align-items: center; gap: 9px; padding: 8px 11px; background: #075E54; color: #fff; }
.chatdemo__avatar { width: 33px; height: 33px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.02rem; flex: 0 0 auto; }
.chatdemo__id { flex: 1 1 auto; min-width: 0; }
.chatdemo__id b { font-size: .92rem; color: #fff; display: block; line-height: 1.04; }
.chatdemo__id span { font-size: .66rem; color: rgba(255,255,255,.72); display: block; line-height: 1; margin-top: 1px; }
.chatdemo__acts { display: flex; align-items: center; gap: 14px; color: #fff; opacity: .92; flex: 0 0 auto; }
.chatdemo__acts svg { width: 17px; height: 17px; display: block; }
.chatdemo__body { display: flex; flex-direction: column; gap: 7px; padding: 12px 10px 13px; background-color: #ECE5DD; background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27168%27%20height%3D%27168%27%20viewBox%3D%270%200%20168%20168%27%3E%0A%3Cg%20fill%3D%27none%27%20stroke%3D%27%23c8bba7%27%20stroke-width%3D%272.2%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20opacity%3D%270.42%27%3E%0A%3Cpath%20d%3D%27M26%2034c-5-7-17-4-17%204%200%207%2011%2013%2017%2018%206-5%2017-11%2017-18%200-8-12-11-17-4z%27%2F%3E%0A%3Cpath%20d%3D%27M120%2022l4%209%2010%201-7%207%202%2010-9-5-9%205%202-10-7-7%2010-1z%27%2F%3E%0A%3Cpath%20d%3D%27M58%2084h20v10a10%2010%200%200%201-20%200z%20M78%2086h5a4%204%200%200%201%200%208h-4%27%2F%3E%0A%3Ccircle%20cx%3D%27134%27%20cy%3D%2796%27%20r%3D%2711%27%2F%3E%3Cpath%20d%3D%27M130%2093h.1M138%2093h.1M129%20100a7%207%200%200%200%2010%200%27%2F%3E%0A%3Cpath%20d%3D%27M26%20118v22a6%206%200%201%201-5-6V118l18-4v20a6%206%200%201%201-5-6V114z%27%2F%3E%0A%3Cpath%20d%3D%27M96%20128h26a5%205%200%200%201%205%205v12a5%205%200%200%201-5%205h-16l-8%206v-6a5%205%200%200%201-2-5v-12a5%205%200%200%201%203-5z%27%2F%3E%0A%3Ccircle%20cx%3D%27138%27%20cy%3D%27140%27%20r%3D%278%27%2F%3E%3Cpath%20d%3D%27M138%20126v-5M138%20155v5M124%20140h-5M152%20140h5M128%20130l-4-4M148%20150l4%204M148%20130l4-4M128%20150l-4%204%27%2F%3E%0A%3Cpath%20d%3D%27M40%20150c6-8%2014-8%2020%200%27%2F%3E%0A%3C%2Fg%3E%3C%2Fsvg%3E"); background-size: 168px auto; }
.bubble { max-width: 86%; padding: .5em .7em; border-radius: 13px; font-size: .82rem; line-height: 1.38; color: #16261f; opacity: 0; transform: translateY(9px); transition: opacity .45s ease, transform .45s ease; }
.bubble.show { opacity: 1; transform: none; }
.bubble--me { align-self: flex-end; background: #DCF8C6; border-bottom-right-radius: 4px; }
.bubble--y { align-self: flex-start; background: #fff; border-bottom-left-radius: 4px; }
.bmeta { display: block; text-align: right; font-size: .6rem; color: #9aa39c; margin-top: 3px; line-height: 1; }
.bubble--me .bmeta { color: #7a9b82; }
.bmeta .tk { color: #53BDEB; font-weight: 700; font-size: .95em; letter-spacing: -3.6px; margin-left: 2px; }
.receipt { align-self: flex-start; width: 86%; background: #fff; border-radius: 12px; padding: .6em .75em; box-shadow: var(--shadow-card); opacity: 0; transform: translateY(9px); transition: opacity .45s ease, transform .45s ease; }
.receipt.show { opacity: 1; transform: none; }
.receipt__top { display: flex; justify-content: space-between; align-items: center; }
.receipt__top b { font-size: .78rem; color: var(--ink); }
.receipt__paid { font-size: .6rem; font-weight: 700; letter-spacing: .05em; background: #2DB5A3; color: #fff; padding: .12em .5em; border-radius: 5px; }
.receipt__row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin: .5em 0; padding: .45em 0; border-top: 1px solid #efe9df; border-bottom: 1px solid #efe9df; font-size: .78rem; }
.receipt__row b { font-size: .92rem; color: var(--ink); }
.receipt__meta { color: #9a9184; font-size: .68rem; }
.app-shots { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2vw,26px); margin-top: 2.2rem; }
.app-shot figcaption { margin-top: .7rem; font-size: .85rem; color: rgba(255,255,255,.6); }
.app-shot figcaption b { color: #fff; font-weight: 600; }
.macwin { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid rgba(255,255,255,.1); background: #fff; }
.macwin__bar { display: flex; gap: 6px; padding: 9px 12px; background: #E7E1D7; }
.macwin__bar span { width: 10px; height: 10px; border-radius: 50%; background: #cbc4b8; }
.macwin__bar span:nth-child(1){ background:#E8705B; } .macwin__bar span:nth-child(2){ background:#E7B24C; } .macwin__bar span:nth-child(3){ background:#5FB07A; }
.macwin img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; object-position: top left; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.8vw,26px); margin-top: 2rem; counter-reset: s; }
.step { position: relative; padding-top: 2.6rem; }
.step::before { counter-increment: s; content: "0" counter(s); position: absolute; top: 0; font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); font-weight: 500; }
.step h3 { font-size: 1rem; }

/* Projects */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,1.4vw,18px); margin-top: 1.4rem; }
.proj { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-card); isolation: isolate; }
.proj img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; z-index: -2; }
.proj::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(20,17,14,.78) 100%); }
.proj:hover img { transform: scale(1.05); }
.proj__body { position: absolute; inset: auto 0 0 0; padding: clamp(14px,1.6vw,20px); color: #fff; }
.proj__loc { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.proj__name { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; margin: .15rem 0; }
.proj__status { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .02em; padding: .22em .7em; border-radius: 100px; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); }
.proj__status--soon { background: var(--accent); color: #fff; }
.proj--coming { background: #EFE7DA; }
.proj--coming::after { display: none; }
.proj--coming .proj__name, .proj--coming .proj__loc { color: var(--ink); }
/* hospitality review footer: translucent bar, card → property site, each half → its review page */
.proj--hosp .proj__body { bottom: 46px; }
.proj__link { position: absolute; inset: 0; z-index: 1; }
.proj__reviews { position: absolute; inset: auto 0 0 0; z-index: 2; display: flex; }
.proj__rev { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; padding: 7px 6px 8px; color: #fff; text-align: center; background: rgba(255,255,255,.07); backdrop-filter: blur(1.5px) saturate(1.05); -webkit-backdrop-filter: blur(1.5px) saturate(1.05); border-top: 1px solid rgba(255,255,255,.25); text-shadow: 0 1px 3px rgba(0,0,0,.6); transition: background .3s, backdrop-filter .3s, color .3s, text-shadow .3s; }
.proj__rev + .proj__rev { border-left: 1px solid rgba(255,255,255,.22); }
.proj__rev:hover { background: rgba(255,255,255,.82); backdrop-filter: blur(16px) brightness(1.28) saturate(1.05); -webkit-backdrop-filter: blur(16px) brightness(1.28) saturate(1.05); color: #1e1b17; text-shadow: none; }
.proj__rev-src { font-size: .6rem; letter-spacing: .05em; text-transform: uppercase; opacity: .82; line-height: 1; }
.proj__rev-score { font-size: .98rem; font-weight: 700; line-height: 1.1; }
.proj__rev-score i { font-style: normal; color: #C8890A; margin-left: 1px; }
.proj__rev--cta .proj__rev-score::after { content: " \2192"; font-weight: 600; }
.subhead { font-family: var(--font-body); font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin: 2rem 0 0; }
.band--ink .subhead { color: rgba(255,255,255,.55); }

/* Testimonial */
.quote { max-width: 42ch; }
.quote p { font-family: var(--font-display); font-size: clamp(1.3rem,2.4vw,2rem); line-height: 1.32; color: var(--ink); font-style: italic; font-weight: 400; }
.quote cite { display: block; margin-top: 1rem; font-style: normal; font-weight: 600; color: var(--accent); font-size: .92rem; letter-spacing: .02em; }

/* Contact */
.contact { text-align: center; }
.contact .btn { margin-top: 1.4rem; }
.contact__meta { margin-top: 2rem; color: rgba(255,255,255,.68); font-size: .95rem; line-height: 1.9; }
.contact__meta a { color: #fff; font-weight: 600; }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,.55); padding: 30px var(--gutter); display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center; font-size: .86rem; }
.footer a:hover { color: #fff; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; }
.parallax { will-change: transform; }

/* Responsive */
@media (max-width: 900px) {
  .intro, .prod-grid, .applied { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-btn__label { display: none; }
  :root { --diag: 5vw; }
}
@media (max-width: 620px) {
  /* wordmark on ONE horizontal line — shrink it (and the picker) so it fits between the menu and picker without wrapping */
  .brand { max-width: none; gap: .32rem; }
  .brand__name { white-space: nowrap; font-size: clamp(.5rem, 2.9vw, .74rem); letter-spacing: .04em; line-height: 1; text-align: center; }
  .brand__mark { width: 18px; }
  .lang__btn { font-size: .68rem; padding: .3em .42em; gap: .26rem; }
}
@media (max-width: 560px) {
  .svc-grid, .projects-grid, .steps { grid-template-columns: 1fr; }
  /* CTAs stay side-by-side and centered; wrap (still centered) only if truly no room */
  .hero__cta { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } }
