/* ═══════════════════════════════════════════════════════════════
   ALKA CREATIVE AGENCY — Website Styles
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ── THEME TOKENS ─────────────────────────────────────────── */
:root[data-theme="light"] {
  --bg:          #F5F1E8;
  --bg-alt:      #FFFFFF;
  --bg-section:  #EBE5D6;
  --bg-invert:   #141414;
  --fg:          #141414;
  --fg-muted:    rgba(20,20,20,0.55);
  --fg-faint:    rgba(20,20,20,0.35);
  --fg-invert:   #F5F1E8;
  --accent:      #E0AC0A;
  --accent-text: #141414;
  --line:        rgba(20,20,20,0.12);
  --line-soft:   rgba(20,20,20,0.07);
  --card:        #FFFFFF;
  --shadow-card: 0 24px 60px rgba(40,30,10,0.10);
  --grain-opacity: 0.04;
}
:root[data-theme="dark"] {
  --bg:          #0F0E0C;
  --bg-alt:      #181613;
  --bg-section:  #1C1A16;
  --bg-invert:   #F5F1E8;
  --fg:          #F5F1E8;
  --fg-muted:    rgba(245,241,232,0.6);
  --fg-faint:    rgba(245,241,232,0.35);
  --fg-invert:   #141414;
  --accent:      #E0AC0A;
  --accent-text: #141414;
  --line:        rgba(245,241,232,0.12);
  --line-soft:   rgba(245,241,232,0.06);
  --card:        #1C1A16;
  --shadow-card: 0 28px 72px rgba(0,0,0,0.55);
  --grain-opacity: 0.08;
}

:root {
  --font-d:  'Syne', sans-serif;
  --font-s:  'Syne', sans-serif;
  --font-b:  'Plus Jakarta Sans', sans-serif;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --maxw:    1440px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--fg);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  transition: background 0.6s var(--ease), color 0.6s var(--ease); cursor: none; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: none; font-family: var(--font-b); color: inherit; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px;
  transform: translateZ(0);
}

/* ── LOADER ───────────────────────────────────────────────── */
#loader { position: fixed; inset: 0; background: #141414;
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity 0.8s var(--expo), transform 0.8s var(--expo); }
#loader.out { opacity: 0; transform: scale(1.04); pointer-events: none; }
.loader-logo { height: 52px; width: auto;
  animation: ldrFloat 0.9s var(--expo) both; }
.loader-progress { width: 0; height: 2px; background: var(--accent);
  animation: ldrLine 1.4s var(--ease) 0.3s forwards; }
.loader-text { font-family: var(--font-b); color: rgba(245,241,232,0.4);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  animation: ldrFade 0.6s var(--ease) 0.6s both; }
@keyframes ldrFloat { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
@keyframes ldrLine  { to { width: 200px; } }
@keyframes ldrFade  { from { opacity:0; } to { opacity:1; } }

/* ── CURSOR ───────────────────────────────────────────────── */
.cur-dot { position: fixed; width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s; }
.cur-ring { position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--accent); border-radius: 50%; opacity: 0.45;
  pointer-events: none; z-index: 9998; transform: translate(-50%,-50%);
  transition: width 0.35s var(--ease), height 0.35s, opacity 0.35s, background 0.35s; }
body.on-link .cur-ring  { width: 56px; height: 56px; opacity: 1; }
body.on-link .cur-dot   { transform: translate(-50%,-50%) scale(1.5); }
body.on-image .cur-ring { width: 80px; height: 80px; background: var(--accent);
  opacity: 0.9; mix-blend-mode: multiply; border-color: transparent; }
body.on-image .cur-dot  { opacity: 0; }
@media (max-width: 900px) { body { cursor: auto; } .cur-dot, .cur-ring { display: none; } }

/* ── THEME TOGGLE ─────────────────────────────────────────── */
.theme-tog { position: fixed; bottom: 1.75rem; left: 1.75rem; z-index: 1000;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--fg); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--spring), background 0.4s, color 0.4s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.theme-tog:hover { transform: scale(1.1) rotate(15deg); }
.theme-tog svg { width: 22px; height: 22px; transition: opacity 0.3s; }
:root[data-theme="light"] .icon-moon { display: block; }
:root[data-theme="light"] .icon-sun  { display: none; }
:root[data-theme="dark"]  .icon-sun  { display: block; }
:root[data-theme="dark"]  .icon-moon { display: none; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 1.5rem 0;
  transition: padding 0.4s var(--ease), background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(245,241,232,0.88); backdrop-filter: blur(20px);
  padding: 0.9rem 0; border-bottom-color: var(--line-soft); }
:root[data-theme="dark"] .nav.scrolled { background: rgba(15,14,12,0.88); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 2.5rem;
  display: flex; align-items: center; gap: 3rem; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 40px; width: auto;
  transition: transform 0.3s var(--spring); }
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
/* Logo contrast switching */
:root[data-theme="light"] .logo-on-dark  { display: none; }
:root[data-theme="dark"]  .logo-on-light { display: none; }
.nav-links { display: flex; gap: 2.5rem; margin-left: auto; align-items: center; }
.nav-links a { color: var(--fg); font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.01em; position: relative; padding: 0.25rem 0;
  opacity: 0.7; transition: opacity 0.25s; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width 0.4s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--fg); color: var(--bg); padding: 0.65rem 1.4rem;
  border-radius: 100px; font-weight: 600; font-size: 0.82rem;
  transition: transform 0.25s var(--spring), background 0.3s, color 0.3s; }
.nav-cta:hover { background: var(--accent); color: var(--accent-text); transform: translateY(-2px); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.8rem; font-family: var(--font-b); font-weight: 600;
  font-size: 0.92rem; border-radius: 100px; cursor: none;
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease), background 0.3s, color 0.3s; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--accent); color: var(--accent-text); }
.btn-primary:hover { box-shadow: 0 12px 32px rgba(224,172,10,0.45); }
.btn-dark { background: var(--fg); color: var(--bg); }
.btn-dark:hover { background: var(--accent); color: var(--accent-text); box-shadow: 0 12px 32px rgba(224,172,10,0.4); }
.btn-outline { background: transparent; color: var(--fg); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 1.15rem 2.2rem; font-size: 0.98rem; }
.btn-full { width: 100%; justify-content: center; padding: 1.15rem; }
.btn .arr { display: inline-flex; transition: transform 0.3s var(--spring); }
.btn:hover .arr { transform: translate(4px,-4px); }

/* ── SECTION CHROME ───────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 2.5rem; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-b); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.5rem; }
.eyebrow::before { content:''; width:28px; height:1.5px; background: var(--accent); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; padding: 7.5rem 0 4rem;
  display: flex; align-items: center; overflow: hidden; }
.hero-watermark { position: absolute; bottom: -3rem; left: -3rem;
  font-family: var(--font-d); font-weight: 800; font-size: 32vw;
  color: var(--fg); opacity: 0.04; line-height: 1; letter-spacing: -0.05em;
  user-select: none; pointer-events: none; z-index: 0; }
.hero-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem;
  align-items: center; width: 100%; }
.hero-l { position: relative; z-index: 2; }
.hero-h1 { font-family: var(--font-d); font-weight: 800;
  font-size: clamp(3rem, 6.5vw, 7rem); line-height: 0.95;
  letter-spacing: -0.045em; margin-bottom: 2rem; }
.hero-h1 .lc { display: block; overflow: hidden; padding-right: 0.05em; }
.hero-h1 .li { display: block; transform: translateY(108%);
  animation: lineUp 1s var(--expo) forwards; }
.hero-h1 .lc:nth-child(1) .li { animation-delay: 1.4s; }
.hero-h1 .lc:nth-child(2) .li { animation-delay: 1.55s; }
.hero-h1 .lc:nth-child(3) .li { animation-delay: 1.7s; }
.hero-h1 em { font-style: italic; color: var(--accent); font-weight: 700; }
.hero-meta { display: flex; flex-direction: column; gap: 2rem;
  margin-top: 2.5rem; max-width: 480px; }
.hero-p { font-size: 1.05rem; line-height: 1.7; color: var(--fg-muted);
  opacity: 0; animation: fadeUp 0.9s var(--expo) 2s forwards; }
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s var(--expo) 2.15s forwards; }
.eyebrow.hero-eyebrow { opacity: 0; animation: fadeUp 0.6s var(--expo) 1.2s forwards; }

.hero-r { position: relative; z-index: 1; height: 640px;
  opacity: 0; animation: fadeIn 1.2s var(--expo) 1.8s forwards; }
.hero-feature { position: absolute; top: 0; left: 6%; width: 72%;
  border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-card);
  transform: rotate(-2deg); transition: transform 0.6s var(--ease); }
.hero-feature img { width: 100%; height: auto; display: block; }
.hero-feature:hover { transform: rotate(0deg) scale(1.02); }
.hero-thumb { position: absolute; right: 0; bottom: 4%; width: 38%; height: 45%;
  border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-card);
  transform: rotate(4deg); transition: transform 0.6s var(--ease); }
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-thumb:hover { transform: rotate(0deg) scale(1.04); z-index: 5; }
.hero-tag { position: absolute; top: 8%; right: -2%; z-index: 5;
  background: var(--accent); color: var(--accent-text);
  padding: 0.6rem 1.1rem; border-radius: 100px;
  font-family: var(--font-b); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(224,172,10,0.4);
  animation: pulseTag 2s var(--ease) infinite; }
.hero-tag::before { content:''; width:8px; height:8px; background: var(--accent-text); border-radius:50%; }
@keyframes pulseTag { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.hero-strip { position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--line-soft);
  opacity: 0; animation: fadeUp 0.8s var(--expo) 2.5s forwards; }
.hero-strip-item { display: flex; align-items: center; gap: 0.8rem;
  padding-right: 2.5rem; margin-right: 2.5rem;
  border-right: 1px solid var(--line-soft); flex-shrink: 0; }
.hero-strip-item:last-child { border-right: none; }
.hero-strip-n { font-family: var(--font-d); font-weight: 700; font-size: 1.8rem;
  line-height: 1; color: var(--accent); }
.hero-strip-l { font-family: var(--font-b); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }

/* ── MARQUEE ──────────────────────────────────────────────── */
.mq-sec { overflow: hidden; background: var(--bg-invert);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.mq-track-wrap { display: flex; padding: 2rem 0; overflow: hidden;
  border-bottom: 1px solid rgba(245,241,232,0.08); }
.mq-track-wrap:last-child { border-bottom: none; }
.mq-track { display: flex; gap: 3rem; align-items: center; white-space: nowrap;
  animation: mqScroll 30s linear infinite; padding-right: 3rem; }
.mq-track-r { animation-direction: reverse; animation-duration: 34s; }
.mq-text { font-family: var(--font-d); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem); color: var(--fg-invert);
  letter-spacing: -0.02em; line-height: 1; flex-shrink: 0; }
.mq-text em { font-style: italic; color: var(--accent); font-weight: 600; }
.mq-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes mqScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── ABOUT ────────────────────────────────────────────────── */
.about { padding: 9rem 0; background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem;
  align-items: start; max-width: var(--maxw); margin: 0 auto; padding: 0 2.5rem; }
.about-l { position: sticky; top: 7rem; }
.about-logo { height: 80px; width: auto; margin-bottom: 2rem; }
.about-quote { font-family: var(--font-d); font-weight: 600;
  font-size: clamp(1.4rem, 2vw, 1.75rem); line-height: 1.3;
  margin-bottom: 2rem; color: var(--fg); max-width: 22ch; }
.about-quote em { font-style: italic; color: var(--accent); font-weight: 500; }
.about-illus { width: 100%; border-radius: 12px; overflow: hidden; margin-top: 2rem; }
.about-illus img { width: 100%; object-fit: cover; }
.about-r { padding-top: 1rem; }
.about-h2 { font-family: var(--font-d); font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 2.5rem; }
.about-h2 em { font-style: italic; color: var(--accent); font-weight: 600; }
.about-body p { font-size: 1.05rem; line-height: 1.78; color: var(--fg-muted);
  margin-bottom: 1.5rem; max-width: 56ch; }
.about-body p strong { color: var(--fg); font-weight: 600; }
.about-pts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.about-pt-n { font-family: var(--font-d); font-weight: 800; font-size: 2.5rem;
  color: var(--accent); line-height: 1; margin-bottom: 0.4rem; }
.about-pt-l { font-family: var(--font-b); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }

/* ── SERVICES ─────────────────────────────────────────────── */
.svc { padding: 9rem 0; background: var(--bg-section); }
.svc-head { display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.svc-title { font-family: var(--font-d); font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1; letter-spacing: -0.03em; }
.svc-title em { font-style: italic; color: var(--accent); font-weight: 700; }
.svc-list { display: flex; flex-direction: column; }
.svc-item { display: grid; grid-template-columns: 90px 1fr 90px 70px;
  align-items: center; gap: 2.5rem; padding: 2.5rem 0;
  border-top: 1px solid var(--line); position: relative; transition: all 0.4s var(--ease); text-decoration: none; }
.svc-item:last-child { border-bottom: 1px solid var(--line); }
.svc-item::before { content:''; position:absolute; inset:0;
  background: #141414; transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--expo); z-index: 0; }
.svc-item:hover::before { transform: scaleX(1); }
.svc-item > * { position: relative; z-index: 1; transition: color 0.3s; }
.svc-item:hover .svc-num  { color: var(--accent); }
.svc-item:hover .svc-h3   { color: #F5F1E8; }
.svc-item:hover .svc-desc { color: rgba(245,241,232,0.7); }
.svc-num { font-family: var(--font-d); font-weight: 500; font-size: 1rem;
  letter-spacing: 0.05em; color: var(--fg-faint); }
.svc-info { display: flex; flex-direction: column; gap: 0.5rem; }
.svc-h3 { font-family: var(--font-d); font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.1; letter-spacing: -0.02em; }
.svc-desc { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.6; max-width: 60ch; }
.svc-icon { width: 90px; height: 90px; padding: 6px;
  background: var(--accent); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--spring); }
.svc-item:hover .svc-icon { transform: rotate(-8deg) scale(1.08); }
.svc-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0); }
.svc-arrow { width: 44px; height: 44px; border-radius: 50%;
  background: var(--fg); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--spring); justify-self: end; font-size: 1.1rem; }
.svc-item:hover .svc-arrow { background: var(--accent); color: #141414; transform: rotate(45deg); }
/* Hero logo thumb */
.hero-logo-thumb { background: #141414; }
.hero-logo-thumb img { object-fit: contain !important; padding: 20px; }

/* ── WORK BENTO ───────────────────────────────────────────── */
.work { padding: 9rem 0; background: var(--bg); }
.work-head { display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.work-h2 { font-family: var(--font-d); font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1; letter-spacing: -0.03em; }
.work-h2 em { font-style: italic; color: var(--accent); font-weight: 700; }
.work-r { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end; }
.work-r p { color: var(--fg-muted); font-size: 0.95rem; max-width: 34ch; text-align: right; }

.bento { display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px; gap: 1rem; }
.b-card { position: relative; overflow: hidden; border-radius: 8px;
  cursor: none; background: #1a1a1a; }
.b-card img { width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.8s var(--ease); }
.b-card.logo-card img { object-fit: contain; padding: 1.5rem; background: #fff; }
.b-card:hover img { transform: scale(1.06); }
.b-tag { position: absolute; top: 1rem; left: 1rem;
  background: var(--bg); color: var(--fg);
  padding: 0.35rem 0.75rem; border-radius: 100px;
  font-family: var(--font-b); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  z-index: 2; opacity: 0; transform: translateY(-4px);
  transition: opacity 0.3s var(--ease) 0.05s, transform 0.3s var(--ease) 0.05s; }
.b-card:hover .b-tag { opacity: 1; transform: translateY(0); }
.b-meta { position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem; z-index: 2;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.b-card:hover .b-meta { opacity: 1; transform: translateY(0); }
.b-meta h4 { font-family: var(--font-d); font-weight: 700; font-size: 1.3rem;
  color: white; line-height: 1.1; margin-bottom: 0.25rem; }
.b-meta p  { font-family: var(--font-b); font-size: 0.78rem;
  color: rgba(255,255,255,0.7); letter-spacing: 0.04em; }

.b1  { grid-column: span 5; grid-row: span 4; }
.b2  { grid-column: span 4; grid-row: span 2; }
.b3  { grid-column: span 3; grid-row: span 2; }
.b4  { grid-column: span 4; grid-row: span 2; }
.b5  { grid-column: span 3; grid-row: span 2; }
.b6  { grid-column: span 4; grid-row: span 3; }
.b7  { grid-column: span 4; grid-row: span 3; }
.b8  { grid-column: span 4; grid-row: span 3; }
.b9  { grid-column: span 6; grid-row: span 2; }
.b10 { grid-column: span 6; grid-row: span 2; }

/* ── LOGO WALL ────────────────────────────────────────────── */
.logo-wall { padding: 9rem 0; background: var(--bg-section); }
.lw-head { margin-bottom: 4rem; max-width: 700px; }
.lw-h2 { font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 1rem; }
.lw-h2 em { font-style: italic; color: var(--accent); font-weight: 700; }
.lw-head p { color: var(--fg-muted); font-size: 1.05rem; line-height: 1.7; max-width: 50ch; }
.lw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lw-card { aspect-ratio: 4/3; background: #F8F5EE; border-radius: 12px;
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--spring), box-shadow 0.5s; }
.lw-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.lw-card img { max-width: 88%; max-height: 88%; width: auto; height: auto;
  object-fit: contain; transition: transform 0.5s var(--ease); cursor: zoom-in; }
.lw-card:hover img { transform: scale(1.08); }
.lw-name { position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1.25rem; background: #141414; color: #F5F1E8;
  font-family: var(--font-b); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-align: center;
  transform: translateY(100%); transition: transform 0.18s var(--ease); }
.lw-card:hover .lw-name { transform: translateY(0); }
/* Off-white card bg works on both light + dark section backgrounds */
:root[data-theme="dark"] .lw-card { background: #F8F5EE; border-color: rgba(248,245,238,0.15); }

/* ── CTA ──────────────────────────────────────────────────── */
.cta { padding: 9rem 0; background: var(--accent); position: relative; overflow: hidden; }
.cta::before { content:'alka'; position:absolute; right:-3rem; top:50%;
  transform: translateY(-50%); font-family: var(--font-d); font-weight: 800;
  font-size: 24vw; color: rgba(20,20,20,0.05); line-height: 1;
  user-select: none; pointer-events: none; letter-spacing: -0.05em; }
.cta-inner { position: relative; z-index: 1; }
.cta-pre { font-family: var(--font-d); font-weight: 400; font-style: italic;
  font-size: 1.4rem; color: rgba(20,20,20,0.55); margin-bottom: 1rem; }
.cta-h2 { font-family: var(--font-d); font-weight: 800;
  font-size: clamp(3rem, 7vw, 6.5rem); line-height: 1.02; color: #141414;
  letter-spacing: -0.035em; margin-bottom: 2.5rem; max-width: 14ch; }
.cta-h2 em { font-style: italic; font-weight: 700; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-btns .btn-dark { background: #141414; color: #F5F1E8; }
.cta-btns .btn-dark:hover { background: #000; box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.cta-btns .btn-outline { background: transparent; color: #141414;
  border: 1.5px solid rgba(20,20,20,0.3); }
.cta-btns .btn-outline:hover { background: #141414; color: var(--accent); }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact { padding: 9rem 0; background: var(--bg-invert); color: var(--fg-invert); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem;
  align-items: start; max-width: var(--maxw); margin: 0 auto; padding: 0 2.5rem; }
.contact .eyebrow { color: var(--accent); }
.contact-h2 { font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 2rem; }
.contact-h2 em { font-style: italic; color: var(--accent); font-weight: 700; }
/* Body text, contact detail labels — use fg-invert-muted for auto dark/light swap */
.contact-l > p { color: var(--contact-muted); line-height: 1.7; margin-bottom: 3rem; max-width: 38ch; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.cd-item { display: flex; align-items: flex-start; gap: 1rem; }
.cd-ico { width: 44px; height: 44px; border-radius: 50%;
  background: var(--contact-ico-bg); display: flex; align-items: center;
  justify-content: center; color: var(--accent); flex-shrink: 0;
  border: 1px solid var(--contact-ico-border); }
.cd-ico svg { width: 18px; height: 18px; }
.cd-text { padding-top: 0.6rem; line-height: 1.55;
  color: var(--contact-muted); font-size: 0.95rem; }
.cd-text strong { display: block; font-family: var(--font-b); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  font-weight: 700; margin-bottom: 0.25rem; }
.c-form { display: flex; flex-direction: column; gap: 1rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fi { width: 100%; padding: 1.1rem 1.4rem;
  background: var(--contact-input-bg); color: var(--fg-invert);
  border: 1.5px solid var(--contact-ico-border); border-radius: 8px;
  font-family: var(--font-b); font-size: 0.95rem; font-weight: 500;
  outline: none; -webkit-appearance: none; appearance: none;
  transition: all 0.3s var(--ease); }
.fi::placeholder { color: var(--contact-placeholder); }
.fi:focus { border-color: var(--accent); background: rgba(224,172,10,0.05);
  box-shadow: 0 0 0 3px rgba(224,172,10,0.12); }
textarea.fi { min-height: 130px; resize: vertical; }
select.fi { cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E0AC0A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.25rem center; padding-right: 2.75rem; }
select.fi option { background: var(--bg-invert); color: var(--fg-invert); }
/* Contact section tokens — auto-invert between light/dark */
:root[data-theme="light"] {
  --contact-muted:        rgba(245,241,232,0.6);
  --contact-ico-bg:       rgba(245,241,232,0.08);
  --contact-ico-border:   rgba(245,241,232,0.12);
  --contact-input-bg:     rgba(245,241,232,0.04);
  --contact-placeholder:  rgba(245,241,232,0.35);
}
:root[data-theme="dark"] {
  --contact-muted:        rgba(20,20,20,0.65);
  --contact-ico-bg:       rgba(20,20,20,0.07);
  --contact-ico-border:   rgba(20,20,20,0.14);
  --contact-input-bg:     rgba(20,20,20,0.04);
  --contact-placeholder:  rgba(20,20,20,0.4);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--bg-invert); color: var(--fg-invert);
  padding: 6rem 0 2rem; border-top: 1px solid var(--footer-divider); }
.f-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem;
  padding-bottom: 4rem; border-bottom: 1px solid var(--footer-divider); }
.f-brand-logo { height: 52px; width: auto; margin-bottom: 1.5rem; }
.f-brand p { color: var(--footer-muted); font-size: 0.95rem; line-height: 1.65;
  max-width: 38ch; margin-bottom: 1.5rem; }
.f-tag { color: var(--accent); font-style: italic; font-family: var(--font-d); font-weight: 500; font-size: 1.1rem; }
.f-col h4 { font-family: var(--font-b); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.f-col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.f-col a { color: var(--footer-muted); font-size: 0.95rem; transition: color 0.25s; }
.f-col a:hover { color: var(--accent); }
.f-bot { display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.f-bot p { color: var(--footer-faint); font-size: 0.82rem; }
/* Footer adaptive tokens */
:root[data-theme="light"] {
  --footer-muted:   rgba(245,241,232,0.6);
  --footer-faint:   rgba(245,241,232,0.4);
  --footer-divider: rgba(245,241,232,0.08);
}
:root[data-theme="dark"] {
  --footer-muted:   rgba(20,20,20,0.65);
  --footer-faint:   rgba(20,20,20,0.45);
  --footer-divider: rgba(20,20,20,0.1);
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.wa { position: fixed; bottom: 1.75rem; right: 1.75rem; width: 52px; height: 52px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; z-index: 800; box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--spring), box-shadow 0.25s; }
.wa:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }

/* ── SCROLL REVEALS ───────────────────────────────────────── */
/* Promote elements to GPU layer before animating */
.rv { opacity: 0; will-change: transform, opacity;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv-u { transform: translateY(40px); }
.rv-l { transform: translateX(-40px); }
.rv-r { transform: translateX(40px); }
.rv-s { transform: scale(0.94); }
.rv.in { opacity: 1 !important; transform: none !important; will-change: auto; }

/* ── DROP-INTO-PLACE (thrown from a height) ───────────────── */
.drop { opacity: 0; will-change: transform, opacity; }
.drop.in { animation: dropIn 0.72s cubic-bezier(0.34, 1.38, 0.64, 1) both; }
.drop.in { will-change: auto; }
@keyframes dropIn {
  0%   { opacity: 0; transform: translateY(-100px) scale(1.07) rotate(var(--dr, -4deg)); }
  50%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 99990;
  display: none; align-items: center; justify-content: center;
  padding: 6vh 6vw; background: rgba(12,11,9,0.78);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  cursor: zoom-out; opacity: 0; transition: opacity 0.32s var(--ease); }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; height: auto;
  object-fit: contain; border-radius: 6px; cursor: default;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  animation: lbPop 0.42s var(--spring) both; }
.lightbox.logo img { background: #FFFFFF; padding: clamp(1.5rem, 5vw, 4rem); }
.lb-close { position: fixed; top: 1.6rem; right: 1.8rem; z-index: 99991;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(245,241,232,0.1); border: 1px solid rgba(245,241,232,0.2);
  color: #F5F1E8; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.25s, transform 0.25s var(--spring); }
.lb-close:hover { background: var(--accent); color: #141414; transform: rotate(90deg); }
.lb-close svg { width: 22px; height: 22px; }
@keyframes lbPop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.b-card img, .lw-card img { cursor: zoom-in; }

/* ── KEYFRAMES ────────────────────────────────────────────── */
@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
@keyframes fadeIn { to { opacity: 1; } }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-r { height: 480px; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-l { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .b1 { grid-column: span 6; grid-row: span 4; }
  .b2, .b3, .b4, .b5 { grid-column: span 3; grid-row: span 2; }
  .b6, .b7, .b8 { grid-column: span 6; grid-row: span 3; }
  .b9, .b10 { grid-column: span 6; }
  .lw-grid { grid-template-columns: repeat(2, 1fr); }
  .f-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { cursor: auto; }
  .cur-dot, .cur-ring { display: none; }
  .nav-links { display: none; }
  .hero { padding: 6rem 0 3rem; }
  .hero-r { height: 380px; }
  .hero-strip { display: none; }
  .about-pts { grid-template-columns: 1fr; gap: 1rem; }
  .svc-item { grid-template-columns: 50px 1fr 50px; }
  .svc-icon { display: none; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .b1 { grid-column: span 2; grid-row: span 3; }
  .b2,.b3,.b4,.b5,.b6,.b7,.b8 { grid-column: span 2; grid-row: span 2; }
  .b9,.b10 { grid-column: span 2; }
  .lw-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; gap: 2rem; }
  .f-row { grid-template-columns: 1fr; }
  .wa, .theme-tog { bottom: 1.25rem; }
  .wa { right: 1.25rem; }
  .theme-tog { left: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
