/* ==========================================================================
   LAKO — Corporate Gifts & Branded Merchandise
   Implementation of "LAKO Landing.dc.html" (Claude Design project
   d2040c42-7a09-4cde-b13a-068b3008cbfb). Design-canvas inline styles and
   style-hover/style-focus/style-active attributes are resolved here into
   real cascade rules.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --accent: #7257ff;
  --accent-600: #6045ea;
  --accent-800: #4b33bd;
  --accent-light: #9b83ff;
  --accent-pale: #bfafff;
  --accent-tint: #ddd5ff;

  /* Dark grounds */
  --ink: #09090b;
  --ink-2: #0b0b0e;
  --field: #0e0e12;
  --panel: #141419;
  --ink-soft: #17171b;

  /* Light grounds */
  --paper: #fcfcfa;
  --cream: #f3f0e9;

  /* Layout */
  --wrap: 1400px;
  --gutter: clamp(16px, 4.5vw, 56px);
  --section-y: clamp(72px, 9vw, 132px);
  --header-h: 68px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-zoom: cubic-bezier(0.22, 0.61, 0.21, 1);
}

/* Per-section palettes. Every component below reads these, so a section only
   has to declare which ground it sits on. */
.theme-dark {
  --fg: #fcfcfa;
  --muted: #a6a5ac;
  --dim: #6e6d76;
  --soft: #c9c8ce;
  --accent-on: var(--accent-light);
  --rule: rgba(252, 252, 250, 0.13);
  --hair: rgba(252, 252, 250, 0.08);
  --edge: rgba(252, 252, 250, 0.28);
  --media-bg: linear-gradient(160deg, #212127 0%, #0e0e11 100%);
  --media-border: rgba(252, 252, 250, 0.09);
}

.theme-light {
  --fg: #09090b;
  --muted: #5d5c64;
  --dim: #8a8991;
  --soft: #5d5c64;
  --accent-on: var(--accent-600);
  --rule: rgba(9, 9, 11, 0.16);
  --hair: rgba(9, 9, 11, 0.09);
  --edge: rgba(9, 9, 11, 0.3);
  --media-bg: linear-gradient(160deg, #f1eee6 0%, #e5e1d5 100%);
  --media-border: rgba(9, 9, 11, 0.07);
}

.bg-ink { background: var(--ink); }
.bg-ink-soft { background: var(--ink-soft); }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

/* Fallback for anchor jumps when lako.js is unavailable; when it is loaded it
   runs its own eased scroll and passes `behavior: 'instant'` to opt out. */
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: "Golos Text", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6, p, figure { margin: 0; font-family: inherit; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

::placeholder { color: var(--dim, #6e6d76); opacity: 1; }
::selection { background: var(--accent-tint); color: #211755; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  position: relative; /* lifts content above the drifting blobs behind it */
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  overflow: hidden; /* keeps the oversized blobs from widening the page */
  color: var(--fg);
  scroll-margin-top: 88px;
}

.section > .wrap { padding-block: var(--section-y); }

/* --------------------------------------------------------------------------
   Ambient blobs
   --------------------------------------------------------------------------
   Two soft accent circles per section, drifting on long offset loops. Purely
   decorative — `aria-hidden`, `pointer-events: none`, and paused by lako.js
   whenever their section is off screen. Geometry is per-section below; only
   the tint strength changes with the ground it sits on.
   -------------------------------------------------------------------------- */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(114, 87, 255, var(--blob, 0.08)), transparent 70%);
}

.blob--a { animation: lako-drift-a 18s ease-in-out infinite; }
.blob--b { animation: lako-drift-b 22s ease-in-out infinite; }

#about .blob--a { --blob: 0.09; top: -200px; right: -160px; width: 680px; height: 680px; }
#about .blob--b { --blob: 0.06; bottom: -260px; left: -180px; width: 760px; height: 760px; }

#products .blob--a { --blob: 0.05; bottom: -260px; right: -200px; width: 780px; height: 780px; }
#products .blob--b { --blob: 0.07; top: -240px; left: -180px; width: 740px; height: 740px; }

#gift-sets .blob--a { --blob: 0.13; top: -220px; right: -160px; width: 720px; height: 720px; }
#gift-sets .blob--b { --blob: 0.08; bottom: -260px; left: -200px; width: 760px; height: 760px; }

#services .blob--a { --blob: 0.08; top: -240px; left: 30%; width: 720px; height: 720px; }
#services .blob--b { --blob: 0.05; bottom: -260px; right: -180px; width: 760px; height: 760px; }

#how-it-works .blob--a { --blob: 0.12; top: -200px; right: 10%; width: 700px; height: 700px; }
#how-it-works .blob--b { --blob: 0.07; bottom: -280px; left: -200px; width: 780px; height: 780px; }

#projects .blob--a { --blob: 0.07; top: -240px; right: -180px; width: 740px; height: 740px; }
#projects .blob--b { --blob: 0.05; bottom: -280px; left: -200px; width: 780px; height: 780px; }

#why-lako .blob--a { --blob: 0.07; bottom: -260px; right: -180px; width: 760px; height: 760px; }
#why-lako .blob--b { --blob: 0.11; top: -220px; left: 20%; width: 720px; height: 720px; }

#showroom .blob--a { --blob: 0.14; bottom: -200px; left: -140px; width: 660px; height: 660px; }

/* The enquiry section's blob-a is the full-bleed wash the design already had,
   now drifting rather than static. */
#start-a-project .blob--a {
  inset: 0;
  border-radius: 0;
  background: radial-gradient(720px 440px at 10% 12%, rgba(114, 87, 255, 0.15), transparent 62%);
}
#start-a-project .blob--b { --blob: 0.1; bottom: -260px; right: -180px; width: 740px; height: 740px; }

.site-footer .blob--a { --blob: 0.09; bottom: -280px; right: -200px; width: 780px; height: 780px; }

/* Freestanding rule that fades out at both ends. */
.hairline {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(
    to right,
    transparent,
    var(--rule) 48px,
    var(--rule) calc(100% - 48px),
    transparent
  );
}

/* --------------------------------------------------------------------------
   4. Type
   -------------------------------------------------------------------------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-on);
}

.kicker::before {
  content: "";
  flex: 0 0 auto;
  width: 34px;
  height: 1px;
  background: var(--accent);
}

/* Hero kicker: wider rule, wider tracking, and the rule grows in on load. */
.kicker--hero { letter-spacing: 0.24em; }
.kicker--hero::before {
  width: 44px;
  transform-origin: left;
  animation: lako-linex 0.9s var(--ease) 0.35s both;
}

.display {
  margin-top: 20px;
  font-size: clamp(32px, 4.4vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.display--lg {
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.98;
  text-wrap: initial;
}

.display--xl {
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  text-wrap: initial;
}

.lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-on);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  color: var(--fg);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn--lg { min-height: 54px; padding-inline: 32px; }
.btn--sm { min-height: 44px; padding-inline: 22px; font-size: 11.5px; }
.btn--submit { min-height: 56px; padding-inline: 32px; }
.btn--hero { min-height: 56px; padding-inline: 34px; gap: 12px; }
/* Outline button sitting on video needs its own ground to stay legible. */
.btn--scrimmed { background: rgba(9, 9, 11, 0.45); }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fcfcfa;
}
.btn--primary:hover { background: var(--accent-600); border-color: var(--accent-600); color: #fcfcfa; }
.btn--primary:active { background: var(--accent-800); border-color: var(--accent-800); color: #fcfcfa; }

.btn--outline { border-color: var(--edge); color: var(--fg); }
.theme-dark .btn--outline:hover { border-color: var(--accent-light); color: var(--accent-tint); }
.theme-light .btn--outline:hover { border-color: var(--accent); color: var(--accent-600); }

/* Inline text link with a trailing arrow. */
.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-on);
  transition: color 0.2s;
}
.theme-light .link:hover { color: var(--accent-800); }
.theme-dark .link { color: var(--accent-pale); }
.theme-dark .link:hover { color: var(--accent-tint); }
.link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* --------------------------------------------------------------------------
   6. Media frames
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--media-border);
  border-radius: 3px;
  background: var(--media-bg);
}

.media--warm { --media-bg: linear-gradient(160deg, #eae6db 0%, #dfdacd 100%); border-color: rgba(9, 9, 11, 0.08); }
.media--flush { border: 0; border-radius: 2px; }

.media__zoom {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-zoom);
}

.media__zoom > img,
.media__zoom > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media:hover .media__zoom { transform: scale(1.03); }

/* Cards lift as a whole while the photo inside pushes in. Full-bleed frames
   (accessories strip, showroom banner) sit flush and do not lift. */
.media:not(.media--flush) { transition: transform 0.5s var(--ease-zoom); }
.media:not(.media--flush):hover { transform: translateY(-6px); }

/* Caption shown when the photograph is absent, so the layout still reads.
   `is-empty` is set by lako.js when an <img> fails to load. */
.media__note {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.75;
}

.media.is-empty .media__note { display: flex; }
.media.is-empty .media__zoom > img,
.media.is-empty .media__zoom > video { display: none; }

.media__tag {
  position: absolute;
  left: 20px;
  bottom: 16px;
  pointer-events: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252, 252, 250, 0.55);
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(9, 9, 11, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(252, 252, 250, 0.08);
}

.site-header__bar {
  max-width: var(--wrap);
  min-height: var(--header-h);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo { display: flex; align-items: center; flex: 0 0 auto; }
.site-header__logo img { height: 52px; width: auto; }

.site-header__end {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
}

.site-nav a {
  padding: 10px 2px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(252, 252, 250, 0.72);
  transition: color 0.2s;
}
.site-nav a:hover { color: #fcfcfa; }

.site-header__actions { display: flex; align-items: center; gap: 18px; }

/* Language selector — visual placeholder, no localisation wired up yet. */
.lang { display: flex; align-items: center; gap: 2px; }

.lang button {
  padding: 8px 7px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(252, 252, 250, 0.45);
  cursor: pointer;
  transition: color 0.2s;
}
.lang button:hover { color: rgba(252, 252, 250, 0.85); }
.lang button[aria-pressed="true"] { color: #fcfcfa; border-bottom-color: var(--accent); }

.site-header__mobile { display: none; align-items: center; gap: 10px; }

.burger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(252, 252, 250, 0.22);
  border-radius: 2px;
  cursor: pointer;
}
.burger span { display: block; width: 18px; height: 2px; background: #fcfcfa; }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 59;
  display: none;
  flex-direction: column;
  overflow: auto;
  padding: 20px clamp(20px, 5vw, 48px) 40px;
  background: var(--ink);
  animation: lako-fade 0.25s ease both;
}
.mobile-menu[data-open="true"] { display: flex; }

.mobile-menu nav { display: flex; flex-direction: column; }

.mobile-menu nav a {
  padding: 16px 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fcfcfa;
  border-bottom: 1px solid rgba(252, 252, 250, 0.08);
}

.mobile-menu .btn { margin-top: 26px; }

.mobile-menu__lang { margin-top: 24px; display: flex; gap: 10px; }

.mobile-menu__lang button {
  padding: 8px 12px;
  background: none;
  /* Literal, not a theme token: the menu sits outside any .theme-* scope. */
  border: 1px solid rgba(252, 252, 250, 0.22);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(252, 252, 250, 0.55);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.mobile-menu__lang button:hover { color: #fcfcfa; }

.mobile-menu__lang button[aria-pressed="true"] {
  color: #fcfcfa;
  border-color: var(--accent);
}

@media (max-width: 1000px) {
  .site-header__end { display: none; }
  .site-header__mobile { display: flex; }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - var(--header-h));
  background: var(--ink);
}

/* — background stack: video, two scrims, one pulsing glow — */
.hero__bg { position: absolute; inset: 0; }
.hero__video { position: absolute; inset: 0; }

.hero__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim { position: absolute; inset: 0; pointer-events: none; }

/* Darkens the left so the headline always has ground under it. */
.hero__scrim--x {
  background: linear-gradient(90deg,
    rgba(9, 9, 11, 0.97) 0%, rgba(9, 9, 11, 0.86) 24%, rgba(9, 9, 11, 0.52) 48%,
    rgba(9, 9, 11, 0.14) 70%, rgba(9, 9, 11, 0) 86%);
}

/* Blends the top into the header and the bottom into the next section. */
.hero__scrim--y {
  background: linear-gradient(180deg,
    rgba(9, 9, 11, 0.62) 0%, rgba(9, 9, 11, 0) 22%, rgba(9, 9, 11, 0) 56%,
    rgba(9, 9, 11, 0.9) 92%, #09090b 100%);
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 560px at 74% 30%, rgba(114, 87, 255, 0.18), transparent 64%);
}

.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-block: clamp(48px, 7vw, 96px) clamp(28px, 4vw, 56px);
}

.hero__title {
  margin-top: clamp(20px, 2.4vw, 32px);
  font-size: clamp(34px, 7.2vw, 108px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 4px 44px rgba(9, 9, 11, 0.5);
}

.hero__title .dot { color: var(--accent-light); }

.hero__lede {
  margin-top: clamp(22px, 2.6vw, 34px);
  max-width: 560px;
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--soft);
}

.hero__cta { margin-top: clamp(32px, 3.4vw, 46px); display: flex; flex-wrap: wrap; gap: 14px; }

.hero__meta { padding-bottom: clamp(24px, 3vw, 40px); }
.hero__meta .hairline { --rule: rgba(252, 252, 250, 0.16); }

.hero__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  padding-top: 18px;
}

/* — scroll cue — */
.hero__scroll { display: flex; align-items: center; gap: 12px; }

.hero__scroll > span:last-child {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(252, 252, 250, 0.55);
}

.hero__scroll-track {
  position: relative;
  display: block;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(252, 252, 250, 0.16);
}

.hero__scroll-track > span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 14px;
  background: var(--accent-light);
}

.hero__step { display: flex; gap: 10px; align-items: baseline; }
.hero__step span:first-child { font-size: 11px; font-weight: 700; color: var(--accent-light); }
.hero__step span:last-child {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

.hero__role {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 200, 206, 0.6);
}

/* --------------------------------------------------------------------------
   9. Shared section furniture
   -------------------------------------------------------------------------- */
.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 28px clamp(36px, 5vw, 96px);
}

.section__head > :first-child { flex: 1 1 min(100%, 480px); }
.section__head p { flex: 1 1 min(100%, 280px); max-width: 400px; font-size: 15px; line-height: 1.65; color: var(--muted); }

/* Four-up "capability" list with a rule above each item. */
.ruled-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(44px, 6vw, 80px);
}

.ruled-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(28px, 3.5vw, 44px);
  margin-top: clamp(44px, 6vw, 72px);
}

.ruled-item { border-top: 1px solid var(--rule); padding-top: 20px; }
.ruled-grid--wide .ruled-item { padding-top: 22px; }

.ruled-item h3 {
  margin: 12px 0 8px;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ruled-grid--wide .ruled-item h3 { margin-bottom: 10px; font-size: 18px; letter-spacing: 0.04em; }

.ruled-item p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.ruled-grid--wide .ruled-item p { line-height: 1.65; }

/* --------------------------------------------------------------------------
   10. Products
   -------------------------------------------------------------------------- */
.cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.5vw, 28px);
  margin-top: clamp(20px, 2.5vw, 28px);
}

.cat-row--first { margin-top: clamp(40px, 5vw, 64px); }

.cat { display: flex; flex-direction: column; flex: 1 1 min(100%, 280px); }
.cat--feature { flex: 1.6 1 min(100%, 400px); }
.cat--tall { flex: 1 1 min(100%, 300px); }

.cat .media { height: clamp(230px, 24vw, 350px); }
.cat--feature .media,
.cat--tall .media { height: clamp(260px, 30vw, 440px); }

.cat__head { display: flex; align-items: baseline; gap: 12px; margin-top: 16px; }

.cat__head h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cat--feature .cat__head h3,
.cat--tall .cat__head h3 { font-size: 19px; }

.cat p { margin-top: 8px; max-width: 52ch; font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.cat .link { margin-top: 12px; align-self: flex-start; }

/* Accessories — image beside copy rather than above it. */
.cat-wide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(20px, 2.5vw, 28px);
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid var(--hair);
  border-radius: 3px;
}

.cat-wide .media { flex: 1.2 1 min(100%, 340px); height: clamp(200px, 20vw, 280px); }
.cat-wide__copy { flex: 1 1 min(100%, 300px); padding: 8px clamp(0px, 1vw, 16px) 8px 0; }
.cat-wide__copy h3 { font-size: 19px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }
.cat-wide__copy p { margin-top: 10px; max-width: 48ch; font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.cat-wide__copy .link { margin-top: 14px; }

/* --------------------------------------------------------------------------
   11. Featured gift set
   -------------------------------------------------------------------------- */
.featured {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
}

.featured__figure { flex: 1.1 1 min(100%, 400px); }
.featured__figure .media { aspect-ratio: 1 / 1; max-height: 640px; border-color: rgba(252, 252, 250, 0.08); }
.featured__copy { flex: 1 1 min(100%, 400px); }
.featured__copy .lede { margin-top: 22px; max-width: 460px; }

.contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 14px 28px;
  margin-top: 32px;
}

.contents__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.contents__row b {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contents__row span:first-child { font-size: 11px; font-weight: 700; color: var(--accent-light); }
.contents__row span:last-child { margin-left: auto; font-size: 11.5px; color: var(--muted); }

.featured__cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}
.featured__cta .link { min-height: 44px; }

/* --------------------------------------------------------------------------
   12. Branding services
   -------------------------------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: clamp(24px, 3vw, 32px);
  margin-top: clamp(44px, 6vw, 72px);
}

.services .media { height: clamp(240px, 24vw, 340px); }
.services__head { display: flex; align-items: baseline; gap: 12px; margin-top: 18px; }
.services__head h3 { font-size: 17px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.services p { margin-top: 8px; max-width: 40ch; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* --------------------------------------------------------------------------
   13. How it works
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: clamp(24px, 3vw, 32px);
  margin-top: clamp(44px, 6vw, 72px);
}

.steps__mark {
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0 28px, rgba(252, 252, 250, 0.14) 28px);
}

.steps .num { display: block; margin-top: 16px; }

.steps h3 {
  margin-top: 8px;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.steps p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* --------------------------------------------------------------------------
   14. Projects
   -------------------------------------------------------------------------- */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  margin-top: clamp(40px, 5vw, 64px);
}

.projects + .projects { margin-top: clamp(20px, 2.5vw, 28px); }

.projects .media { height: clamp(280px, 28vw, 400px); }
.project__head { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; }
.project__head h3 { font-size: 15px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }

.project__method {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.project p { margin-top: 6px; font-size: 13.5px; color: var(--muted); }

/* --------------------------------------------------------------------------
   15. Showroom
   -------------------------------------------------------------------------- */
.showroom { background: var(--ink-2); }

.showroom__frame {
  position: relative;
  min-height: clamp(440px, 52vw, 660px);
  overflow: hidden;
  background: linear-gradient(155deg, #17171b 0%, #0b0b0e 100%);
}

.showroom__scrim {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  background: linear-gradient(78deg, rgba(9, 9, 11, 0.93) 8%, rgba(9, 9, 11, 0.6) 38%, rgba(9, 9, 11, 0) 62%);
}

.showroom__copy { pointer-events: auto; max-width: 640px; padding: clamp(28px, 6vw, 80px); }
.showroom__copy .display { font-size: clamp(30px, 4vw, 54px); margin-top: 18px; }
.showroom__copy p { margin-top: 18px; max-width: 480px; font-size: 15.5px; line-height: 1.65; color: var(--soft); }

.showroom__address {
  margin-top: 16px !important;
  font-size: 11.5px !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(252, 252, 250, 0.5) !important;
}

.showroom__copy .btn { margin-top: 26px; border-color: rgba(252, 252, 250, 0.35); }

/* --------------------------------------------------------------------------
   16. Start a project
   -------------------------------------------------------------------------- */
.enquiry .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 96px);
  padding-block: clamp(80px, 10vw, 140px);
}

.enquiry__copy { flex: 1 1 min(100%, 440px); }
.enquiry__copy .display { font-size: clamp(34px, 4.6vw, 68px); line-height: 0.98; }
.enquiry__copy .lede { margin-top: 22px; max-width: 460px; }
.enquiry__copy .btn { margin-top: 30px; }
.enquiry__copy .hairline { margin-top: 44px; }

.contact-list { margin-top: 26px; display: flex; flex-direction: column; gap: 4px; }

/* Every row is tappable — most visitors arrive on a phone. Rows keep a 44px
   minimum height so they stay a comfortable target. */
.contact-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
  min-height: 44px;
  /* Padding is constant and the row is pulled back by the same amount, so the
     hover tint appears around the text without shifting it. */
  padding: 10px 12px;
  margin-inline: -12px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.contact-row:hover,
.contact-row:focus-visible {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: inherit;
}

.contact-row__label {
  flex: 0 0 96px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.contact-row__value {
  font-size: 14.5px;
  color: rgba(252, 252, 250, 0.72);
  overflow-wrap: anywhere;
  transition: color 0.2s;
}

.contact-row:hover .contact-row__value { color: #fcfcfa; }

/* — the three primary actions — */
.contact-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--edge);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-btn svg { flex: none; }
.contact-btn:hover { border-color: var(--accent-light); color: var(--accent-tint); }

.contact-btn--call {
  background: var(--accent);
  border-color: var(--accent);
  color: #fcfcfa;
}
.contact-btn--call:hover { background: var(--accent-600); border-color: var(--accent-600); color: #fcfcfa; }

/* On a narrow screen the call button takes the full width — it is the one
   action most visitors want. */
@media (max-width: 560px) {
  .contact-actions { gap: 8px; }
  .contact-btn--call { flex: 1 1 100%; justify-content: center; }
  .contact-btn:not(.contact-btn--call) { flex: 1 1 0; justify-content: center; padding-inline: 12px; }
}

.enquiry__form { flex: 1 1 min(100%, 460px); max-width: 680px; }

/* --- form ---------------------------------------------------------------- */
.form,
.form-done {
  background: var(--panel);
  border: 1px solid rgba(252, 252, 250, 0.09);
  border-radius: 4px;
}

.form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
  padding: clamp(22px, 3.4vw, 40px);
}

.form__full { grid-column: 1 / -1; }

.form label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form label .req { color: var(--accent-light); }

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  background: var(--field);
  border: 1px solid rgba(252, 252, 250, 0.16);
  border-radius: 2px;
  color: #fcfcfa;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form input:hover,
.form select:hover,
.form textarea:hover { border-color: rgba(252, 252, 250, 0.32); }

.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--accent-light); outline: none; }

.form input[type="date"] { color-scheme: dark; }
.form textarea { min-height: 120px; padding: 14px 16px; resize: vertical; }

.select { position: relative; }
.select select { padding-right: 44px; appearance: none; cursor: pointer; }

.select::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.form__note { grid-column: 1 / -1; font-size: 12px; line-height: 1.5; color: var(--dim); }

.form-done {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(32px, 4.5vw, 56px);
}

.form-done__mark {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: var(--accent-light);
  font-size: 20px;
}

.form-done h3 {
  margin-top: 8px;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.form-done p { font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.form-done p + p { font-size: 12px; color: var(--dim); }
.form-done .btn { margin-top: 10px; min-height: 48px; padding-inline: 24px; font-size: 12px; }

[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid rgba(252, 252, 250, 0.08);
  scroll-margin-top: 88px;
}

.site-footer .wrap { padding-top: clamp(56px, 7vw, 88px); }

/* A grid rather than wrapping flex: the contact and showroom columns need a
   guaranteed minimum before they wrap, or long values break mid-word. */
.site-footer__grid {
  display: grid;
  /* The brand block is only as tall as a logo and two lines, so it gets the
     narrowest share — a wider one just opened a hole beside it. */
  grid-template-columns: 0.95fr 0.9fr 1.1fr 1.05fr;
  gap: clamp(28px, 3vw, 56px);
  align-items: start;
}

@media (max-width: 1000px) {
  .site-footer__grid { grid-template-columns: repeat(2, minmax(200px, 1fr)); gap: 40px clamp(28px, 5vw, 56px); }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
}

.site-footer__brand img { height: 72px; width: auto; margin-left: -6px; }
.site-footer__brand p { margin-top: 10px; max-width: 28ch; font-size: 14px; line-height: 1.6; color: var(--muted); }

.site-footer__col { display: flex; flex-direction: column; gap: 10px; min-width: 0; }

.site-footer h2 {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.site-footer__menu { margin: 0; padding: 0; list-style: none; }

.site-footer__menu a {
  display: inline-block;
  padding: 7px 12px;
  margin-inline: -12px;
  border-radius: 2px;
  font-size: 14px;
  color: rgba(252, 252, 250, 0.75);
  transition: background 0.2s, color 0.2s;
}

.site-footer__menu a:hover {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: #fcfcfa;
}

/* Footer columns are narrow, so the label sits above the value rather than
   beside it — a fixed-width label left too little room for the email address
   and forced it to wrap mid-word. */
.contact-list--stacked { margin-top: 0; gap: 2px; }

.contact-list--stacked .contact-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-height: 0;
  padding: 8px 12px;
}

.contact-list--stacked .contact-row__label { flex: none; font-size: 10px; letter-spacing: 0.14em; }
.contact-list--stacked .contact-row__value { font-size: 14px; }

.site-footer__address {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 12px;
  margin-inline: -12px;
  border-radius: 2px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(252, 252, 250, 0.72);
  transition: background 0.2s, color 0.2s;
}

.site-footer__address svg { flex: none; margin-top: 2px; color: var(--accent-light); }

.site-footer__address:hover {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: #fcfcfa;
}

/* — compact icon actions under the wordmark — */
.site-footer__social { margin-top: 20px; display: flex; gap: 8px; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hair);
  border-radius: 2px;
  color: rgba(252, 252, 250, 0.7);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.icon-btn:hover {
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border-color: var(--accent);
  color: #fcfcfa;
}

.site-footer .link { align-self: flex-start; margin-top: 2px; }

.site-footer__wordmark {
  margin-top: clamp(48px, 6vw, 80px);
  font-size: clamp(36px, 7.4vw, 118px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: rgba(243, 240, 233, 0.05);
  -webkit-text-stroke: 1px rgba(243, 240, 233, 0.2);
  user-select: none;
}

.site-footer__legal {
  margin-top: clamp(28px, 4vw, 44px);
  padding: 20px 0 28px;
  border-top: 1px solid rgba(252, 252, 250, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  font-size: 12.5px;
  color: rgba(166, 165, 172, 0.7);
}

.site-footer__legal nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 24px; }
.site-footer__legal a { color: inherit; transition: color 0.2s; }
.site-footer__legal a:hover { color: #fcfcfa; }

/* --------------------------------------------------------------------------
   18. Motion
   --------------------------------------------------------------------------
   The design drives its reveals with scroll-driven animations
   (`animation-timeline: view()`), which only Chromium ships. Elsewhere the
   property is ignored and every reveal runs as an ordinary timed animation
   at page load — so by the time you scroll down, the whole choreography has
   already been spent and the sections just sit there.

   Same choreography, driven by an IntersectionObserver in lako.js instead:
   identical timings and easing, and it behaves the same in Chromium, Safari
   and Firefox. Transitions rather than animations, so the :hover scale on
   .media__zoom still composes after the reveal has played.

   Everything is gated on `html.js`, which the head script sets and clears
   again if lako.js never reports in — no script, no hidden content.
   -------------------------------------------------------------------------- */
@keyframes lako-fade { from { opacity: 0; } }
@keyframes lako-rise { from { opacity: 0; transform: translateY(38px); } }
@keyframes lako-word-t { from { opacity: 0; transform: translateY(0.35em); filter: blur(8px); } }
@keyframes lako-hero-img { from { opacity: 0; transform: scale(1.08); } }
@keyframes lako-linex { from { transform: scaleX(0); } }
@keyframes lako-glow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes lako-scrolldot {
  0% { transform: translateY(-14px); opacity: 0; }
  18%, 82% { opacity: 1; }
  100% { transform: translateY(44px); opacity: 0; }
}
@keyframes lako-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, -50px) scale(1.15); }
}
@keyframes lako-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(-80px, 60px) scale(0.95); }
}

/* Hero animates on load — it is above the fold by definition. */
[data-rise] { animation: lako-rise 1s var(--ease) both; }
.hero__title [data-word-load] { display: inline-block; animation: lako-word-t 0.9s var(--ease) both; }

[data-hero="img"] { animation: lako-hero-img 1.7s var(--ease-zoom) both; }
[data-hero="rise"] { display: inline-block; animation: lako-rise 1s var(--ease) both; }
.hero__lede[data-hero="rise"],
.hero__cta[data-hero="rise"],
.hero__steps[data-hero="rise"] { display: flex; }
.hero__lede[data-hero="rise"] { display: block; }
[data-hero="glow"] { animation: lako-glow 8s ease-in-out 2s infinite; }
[data-hero="dot"] { animation: lako-scrolldot 2.2s cubic-bezier(0.45, 0, 0.35, 1) 1.8s infinite; }

/* Everything below the hero animates on entry. */
/* Text blocks: a long, soft rise. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.05s var(--ease), transform 1.05s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* Grids cascade their children rather than moving as one slab. */
.js [data-stagger] > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.js [data-stagger].is-in > * { opacity: 1; transform: none; }

[data-stagger] > *:nth-child(1) { --i: 0; }
[data-stagger] > *:nth-child(2) { --i: 1; }
[data-stagger] > *:nth-child(3) { --i: 2; }
[data-stagger] > *:nth-child(4) { --i: 3; }
[data-stagger] > *:nth-child(5) { --i: 4; }
[data-stagger] > *:nth-child(6) { --i: 5; }

[data-word] { display: inline-block; }

.js [data-word] {
  opacity: 0;
  filter: blur(7px);
  transition: opacity 0.9s var(--ease), filter 0.9s var(--ease);
  transition-delay: calc(var(--w, 0) * 60ms);
}
.js [data-word].is-in { opacity: 1; filter: none; }

/* Images get their own language: the picture wipes open from the bottom while
   settling back from an overscale. Text rises, pictures uncover — the two
   reads stay distinct when they animate side by side.

   The clip lives on .media__zoom, never on .media itself. Chromium's
   IntersectionObserver takes clip-path into account, so a clipped .media is
   invisible to the very observer meant to un-clip it — and it hides nested
   content (the showroom copy) from the observer too. */
.js .media__zoom {
  transform: scale(1.14);
  transition: transform 1.35s var(--ease-zoom), clip-path 1.15s var(--ease-zoom);
}

/* Full-bleed frames sit flush against their section, so a wipe has no edge to
   read against — they just settle back from the overscale. */
.js .media:not(.media--flush) .media__zoom { clip-path: inset(0 0 100% 0); }

.js .media.is-in .media__zoom { transform: none; clip-path: inset(0 0 0 0); }
.js .media.is-in:hover .media__zoom { transform: scale(1.03); transition-duration: 0.7s; }

/* Accent rules under the process steps draw themselves in from the left. */
.js [data-line] { transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease); }
.js [data-line].is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-rise],
  [data-reveal],
  [data-word],
  [data-word-load],
  [data-hero],
  [data-line],
  [data-stagger] > *,
  .blob,
  .media__zoom,
  .mobile-menu {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .kicker--hero::before { animation: none !important; transform: none !important; }
  .media__zoom { clip-path: none !important; }
  .media:hover .media__zoom { transform: none !important; }
  .media:not(.media--flush):hover { transform: none !important; }

  /* An autoplaying background video is motion too — lako.js pauses both and
     the poster frame stands in. */
  .hero__scroll-track { display: none; }
}

/* --------------------------------------------------------------------------
   19. Scroll lock
   --------------------------------------------------------------------------
   The viewport scrolls the root element, so locking <body> alone leaves the
   page scrollable behind the open mobile menu. lako.js sets this class on
   <html> and clears it on close.
   -------------------------------------------------------------------------- */
html.is-menu-open,
html.is-menu-open body { overflow: hidden; }

/* --------------------------------------------------------------------------
   20. Enquiry form states
   -------------------------------------------------------------------------- */
/* Honeypot: off-screen rather than display:none, which some bots skip. */
.form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn--submit[disabled] { opacity: 0.6; cursor: progress; }

.form__error {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, #ff6b6b 55%, transparent);
  border-radius: 2px;
  background: color-mix(in srgb, #ff6b6b 10%, transparent);
  font-size: 13.5px;
  line-height: 1.55;
  color: #ffd7d7;
}
