/* =====================================================================
   DESIGN LATTICE — STYLES
   Full-screen carousel landing in a warm-minimal editorial style.
   Text & images live in js/content.js. Brand colours below.
   ===================================================================== */

:root {
  /* --- Chalk Studio exact palette --- */
  --cream:    #F6F5F1;   /* page background */
  --beige:    #E9E7DE;   /* the rounded "get in touch" pill */
  --ink:      #121111;   /* darkGrey — primary text */
  --ink-soft: #2A2A2A;
  --head:     rgba(41,41,41,0.70);  /* #292929/70 — section headings */
  --hover-beige: #D5D1C1;           /* footer link hover */
  --watermark:   #E5E0D2;           /* the big faint footer wordmark */
  --white:    #FCFCFC;
  --line:     rgba(18,17,17,0.10);
  --brown:    #463E30;   /* sticky header once it passes the hero */

  /* --- Fonts ---
     Chalk Studio uses Helvetica Neue (their "havletica") for all UI/headings
     and FK Grotesk for body text. Those are commercial / system fonts, so we
     use license-clean equivalents that match closely:
       Helvetica role  -> system Helvetica/Arial, with Arimo (metric-identical) web fallback
       FK Grotesk role -> Hanken Grotesk (also carries the thin weights for titles) */
  --font-helv:    'Helvetica Neue', Helvetica, 'Arimo', Arial, sans-serif;
  --font-body:    'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-text:    var(--font-helv);
  --font-display: var(--font-helv);
  --font-thin:    'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;

  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* =====================================================================
   INTRO PRELOADER
   ===================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-word {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(28px, 6vw, 76px); letter-spacing: -0.02em; color: var(--ink);
  opacity: 0; transform: translateY(12px);
  animation: plIn 1s var(--ease) .15s forwards;
}
@keyframes plIn { to { opacity: 1; transform: none; } }
body {
  font-family: var(--font-text);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================================================================
   HEADER  (transparent, overlaid on the hero)
   ===================================================================== */
/* Matches Chalk Studio: header is ABSOLUTE — overlaid on the hero and
   scrolls away with it (it is not shown over the lower light sections). */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  border-bottom: 0.25px solid rgba(255,255,255,0.55);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.brand {
  font-family: var(--font-display);
  font-weight: 400; font-size: 26px; letter-spacing: -0.01em;
  color: var(--white);
}
.nav { display: flex; align-items: center; gap: 48px; margin-left: auto; height: 100%; }
.menu-item { position: relative; height: 100%; display: flex; align-items: center; }
.menu-item > a, .menu-item > span {
  font-size: 16px; font-weight: 300; color: var(--white);
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.menu-item .caret { width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .3s var(--ease); opacity: .8; }
.menu-item:hover .caret { transform: rotate(225deg) translateY(-2px); }

/* dropdown */
.submenu {
  position: absolute; top: calc(100% - 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 230px; background: rgba(252,252,252,0.72); backdrop-filter: blur(8px);
  padding: 8px; display: flex; flex-direction: column; align-items: stretch;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.35); border-radius: 6px;
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.menu-item:hover .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a {
  display: flex; flex-direction: column; gap: 2px; width: 100%; text-align: left;
  padding: 11px 14px; border-radius: 4px; color: var(--ink);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.submenu a:hover { background: rgba(145,131,106,0.10); }
.submenu .sm-name { font-size: 15px; line-height: 1.2; }
.submenu .sm-desc { font-size: 11.5px; letter-spacing: .03em; color: #91836A; }

.pill {
  margin-left: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 155px; height: 55px; border-radius: 100px;
  background: var(--beige); color: var(--ink);
  font-family: var(--font-display); font-weight: 300; font-size: 16px; text-transform: capitalize;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.pill:hover { background: var(--white); }

.hamburger { display: none; flex-direction: column; justify-content: space-between;
  width: 24px; height: 18px; background: none; border: 0; cursor: pointer; }
.hamburger span { height: 1.5px; background: #fff; border-radius: 4px; transition: .3s var(--ease); }
.hamburger span:nth-child(2) { width: 66%; margin-left: auto; }
.hamburger span:nth-child(3) { width: 50%; margin-left: auto; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { width: 100%; transform: translateY(-8px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 19;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
  display: none; flex-direction: column; padding: 24px 32px 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 20px; font-weight: 300; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-menu a.sub { font-size: 16px; opacity: .85; padding-left: 14px; }
.mobile-menu .sub-desc { font-size: 13px; color: rgba(255,255,255,0.55); }

/* =====================================================================
   HOME BANNER  (full-screen carousel)
   ===================================================================== */
.home-banner { position: relative; width: 100%; height: 100vh; height: 100svh; background: #000; }
.heroSwiper, .swiper-wrapper, .swiper-slide { width: 100%; height: 100%; }

/* Intro film overlay — sits above the carousel, fades out when it finishes */
.hero-intro { position: absolute; inset: 0; z-index: 15; background: #000;
  opacity: 1; transition: opacity 1s var(--ease), visibility 1s var(--ease); }
.hero-intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.hero-intro-video { width: 100%; height: 100%; object-fit: cover; }
/* Same readability scrim the image slides use, so the caption reads cleanly */
.hero-intro::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 48%, rgba(0,0,0,0.30) 78%, rgba(0,0,0,0.62) 100%);
}
.swiper-slide { position: relative; }
.slide-link { display: block; width: 100%; height: 100%; }
.swiper-slide::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 48%, rgba(0,0,0,0.30) 78%, rgba(0,0,0,0.62) 100%);
}
.slide-media { position: absolute; inset: 0; }
.slide-media img, .slide-media video { width: 100%; height: 100%; object-fit: cover; }

/* slow zoom on the active slide */
.swiper-slide .slide-media img { transform: scale(1.04); transition: transform 7s linear; }
.swiper-slide-active .slide-media img { transform: scale(1.12); }

/* overlaid text */
.overlay-title { position: absolute; left: 0; right: 0; bottom: 92px; z-index: 6; text-align: center; pointer-events: none; }
.overlay-title h2 {
  font-family: var(--font-thin); font-weight: 200; color: #fff;
  text-transform: uppercase; letter-spacing: 0.04em;
  font-size: clamp(26px, 4vw, 56px); line-height: 1;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.overlay-location, .overlay-category {
  position: absolute; bottom: 80px; z-index: 6; color: var(--cream);
  font-size: 16px; font-weight: 300; text-transform: uppercase; letter-spacing: 0.04em;
}
.overlay-location { left: 80px; }
.overlay-category { right: 80px; }
.fade-swap { animation: fadeSwap .6s var(--ease); }
@keyframes fadeSwap { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* arrows */
.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: none; border: 0; color: #fff; cursor: pointer; opacity: .85;
  transition: opacity .5s var(--ease); }
.nav-arrow:hover { opacity: 1; }
.nav-arrow.prev { left: 32px; }
.nav-arrow.next { right: 32px; }

/* progress pagination — slim horizontal lines that change the media.
   z-index sits ABOVE the intro film (z-index 15) so they stay usable while
   the intro plays; clicking one switches the slide and ends the intro. */
.pagination { position: absolute; bottom: 30px; left: 0; right: 0; z-index: 16;
  transition: opacity .5s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 16px; }
.dot { position: relative; width: 46px; height: 2px; background: rgba(255,255,255,0.35); cursor: pointer; overflow: hidden;
  transition: transform .25s var(--ease), background .25s var(--ease); }
.dot:hover { background: rgba(255,255,255,0.6); transform: scaleY(2); }
.dot .fill { position: absolute; inset: 0; width: 0; background: #fff; }
.dot.active .fill { width: 100%; transition: width linear; }

/* =====================================================================
   FOOTER  (cream)
   ===================================================================== */
.site-footer { background: var(--cream); color: var(--ink); padding: 64px 32px 40px; border-top: 1px solid var(--line); }
.footer-logo {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(54px, 13vw, 200px); line-height: 0.95; letter-spacing: -0.02em;
  color: var(--watermark); text-align: center; margin-bottom: 48px;
  white-space: nowrap;
}
.footer-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.footer-left { display: flex; flex-direction: column; gap: 22px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a, .footer-phone { font-family: var(--font-display); font-weight: 300; font-size: 14px; color: var(--ink);
  transition: color .3s var(--ease); }
.footer-links a:hover, .footer-phone:hover { color: var(--hover-beige); }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; }
.footer-social { display: flex; gap: 18px; }
.footer-social a { color: #C9C4B4; transition: color .3s var(--ease); }
.footer-social a:hover { color: var(--ink); }
.footer-social svg { width: 20px; height: 20px; display: block; }
.footer-copy { font-size: 13px; font-weight: 300; color: var(--ink-soft); }

/* =====================================================================
   SHARED SECTION HELPERS
   ===================================================================== */
.section-pad { padding: clamp(56px, 7vw, 96px) 32px; max-width: 1600px; margin: 0 auto; }
.band-head { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 36px; }
.band-head.center { flex-direction: column; gap: 18px; border-bottom: 0; text-align: center; }
.band-title { font-family: var(--font-display); font-weight: 400; font-size: 18px; letter-spacing: 0.01em; color: var(--head); }
.center-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: 0; color: var(--head); text-align: center; }
.band-nav { display: flex; align-items: center; gap: 14px; }
.band-note { font-size: 12px; color: var(--ink-soft); opacity: .7; margin-right: 6px; }
.circle-arrow { background: none; border: 0; color: var(--ink); cursor: pointer; opacity: .8; transition: opacity .3s var(--ease); }
.circle-arrow:hover { opacity: 1; }
.band-foot { display: flex; justify-content: center; margin-top: 40px; }
.view-more { font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px;
  transition: color .3s var(--ease), border-color .3s var(--ease); }
.view-more:hover { color: var(--ink-soft); border-color: var(--ink-soft); }

/* horizontal drag-scroll row */
.drag-track { display: flex; gap: 22px; overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px; cursor: grab; }
.drag-track::-webkit-scrollbar { display: none; }
.drag-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.drag-track > * { flex: 0 0 auto; }

/* =====================================================================
   2. INTRO BAND
   ===================================================================== */
.intro-band { background: #ECE9DF; padding: clamp(56px, 8vw, 110px) 32px; }
.intro-inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.intro-rule { width: 340px; max-width: 70%; height: 1px; background: rgba(40,40,40,0.18); margin-bottom: clamp(30px, 5vw, 56px); }
/* prev (revert if needed): .intro-text font-size: clamp(15px, 1.4vw, 18px); .intro-link font-size: 14px; */
.intro-text { font-family: var(--font-body); font-size: clamp(18.75px, 1.75vw, 22.5px); color: var(--ink-soft); line-height: 1.7; }
.intro-link { margin-top: 28px; font-size: 17.5px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px;
  transition: opacity .3s var(--ease); }
.intro-link:hover { opacity: .6; }

/* =====================================================================
   3. PRESS & MEDIA
   ===================================================================== */
/* ---------- OUR STUDIOS (home) — 3 image cards linking to each studio ---------- */
.studios { background: var(--cream); }
/* prev (revert if needed): gap: clamp(20px, 3vw, 32px); max-width: 760px; */
.studio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4.5vw, 48px);
  max-width: 840px; margin: 0 auto; }
/* prev (revert if needed): aspect-ratio: 3/4; no border/shadow; no lift on hover. */
.studio-card { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden;
  border-radius: 3px; background: #ddd; border: 1px solid var(--line);
  box-shadow: 0 8px 22px -16px rgba(0,0,0,0.18);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.studio-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -14px rgba(0,0,0,0.28); }
.studio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.studio-card:hover img { transform: scale(1.06); }
.studio-card .plate { position: absolute; left: 50%; bottom: clamp(9px, 1.3vw, 15px);
  transform: translateX(-50%); min-width: 70%; padding: 7px 12px; text-align: center;
  background: rgba(255,255,255,0.78); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 4px; box-shadow: 0 10px 30px -16px rgba(0,0,0,0.4);
  transition: background .3s var(--ease); }
.studio-card:hover .plate { background: rgba(255,255,255,0.92); }
.studio-card .plate .sn { display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(11px, 1.1vw, 14px); letter-spacing: 0.01em; color: var(--ink); }
.studio-card .plate .st { display: block; font-family: var(--font-body); font-size: 8.5px;
  letter-spacing: 0.04em; color: var(--ink-soft); margin-top: 3px; text-transform: uppercase; }

.press { background: var(--cream); }
.press-card { width: 300px; }
.press-card .media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #ddd; }
.press-card .media img { transition: transform 1s var(--ease); }
.press-card:hover .media img { transform: scale(1.05); }
.press-card .pub { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  text-align: center; color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: 19px; letter-spacing: 0.02em; text-shadow: 0 1px 10px rgba(0,0,0,0.4); pointer-events: none; }
.press-card .meta { font-family: var(--font-body); font-size: 12.5px; color: var(--ink-soft); opacity: .7; margin-top: 16px; }
.press-card .headline { font-family: var(--font-body); font-weight: 400; font-size: 15.5px; line-height: 1.4;
  color: var(--ink); margin-top: 8px; }

/* =====================================================================
   4. OUR INTERIOR DESIGN PROCESS
   ===================================================================== */
.process { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process .center-title { margin-bottom: 16px; }
.process-sub { max-width: 640px; margin: 0 auto 56px; text-align: center;
  font-family: var(--font-display); font-weight: 300; font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6; color: #8B8578; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px;
  max-width: 1080px; margin: 0 auto; }
.process-cell { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
  min-width: 0; }
/* prev (revert if needed): width/height: 116px */
.process-icon { width: 87px; height: 87px; border-radius: 50%; background: var(--beige);
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft);
  transition: transform .35s var(--ease), background .35s var(--ease); }
.process-cell:hover .process-icon { transform: translateY(-6px); background: #E2DFD4; }
.process-label { font-family: var(--font-display); font-weight: 400; font-size: clamp(15px, 1.2vw, 19px);
  letter-spacing: 0.01em; color: var(--ink); max-width: 100%; overflow-wrap: break-word; }

/* =====================================================================
   5. SOCIAL / DESIGN LATTICE TV
   ===================================================================== */
.social { background: #ECE9DF; }
/* Instagram embed cards ("Design Lattice TV") — all framed to equal size */
.tv-card { width: 340px; display: flex; flex-direction: column; }
.tv-card .tv-studio { display: inline-block; align-self: flex-start; margin-bottom: 12px;
  font-family: var(--font-body); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); background: rgba(255,255,255,0.72); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 100px; }
/* Fixed-size window so every post card is identical regardless of caption
   length or single-image vs. carousel. Overflow is clipped at the bottom. */
.tv-embed { position: relative; width: 340px; height: 560px; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.tv-embed::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff); pointer-events: none; }
.tv-card .instagram-media { margin: 0 !important; min-width: 100% !important; width: 100% !important;
  border: 0 !important; border-radius: 0 !important; box-shadow: none !important; }
.social-card { width: 340px; background: #fff; border: 1px solid var(--line); border-radius: 2px; overflow: hidden;
  display: flex; flex-direction: column; }
.social-card .top { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.social-card .avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(45deg,#C9B79A,#91836A);
  flex: 0 0 34px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 600; }
.social-card .who { display: flex; flex-direction: column; line-height: 1.25; }
.social-card .who b { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.social-card .who small { font-size: 11.5px; color: var(--ink-soft); opacity: .7; }
.social-card .view-profile { margin-left: auto; font-size: 12.5px; font-weight: 500; color: #2f6fed;
  border: 1px solid rgba(47,111,237,0.4); border-radius: 4px; padding: 5px 12px; }
.social-card .view-profile:hover { background: rgba(47,111,237,0.08); }
.social-card .media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #111; }
.social-card .media img { width: 100%; height: 100%; object-fit: cover; }
.social-card .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.social-card .play span { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center; }
.social-card .play span::after { content: ""; border-left: 16px solid var(--ink); border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; margin-left: 4px; }
.social-card .watch { position: absolute; left: 12px; bottom: 12px; color: #fff; font-size: 12px; }
.social-card .viewmore-ig { font-size: 12.5px; color: #2f6fed; padding: 12px 14px 6px; }
.social-card .actions { display: flex; align-items: center; gap: 16px; padding: 6px 14px; color: var(--ink); }
.social-card .actions svg { width: 22px; height: 22px; }
.social-card .actions .spacer { margin-left: auto; }
.social-card .likes { padding: 2px 14px; font-size: 13px; font-weight: 600; color: var(--ink); }
.social-card .caption { padding: 4px 14px 8px; font-size: 13px; color: var(--ink-soft); }
.social-card .comment { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-soft); opacity: .7; }
.social-card .comment svg { width: 18px; height: 18px; margin-left: auto; }

/* =====================================================================
   6. OUR BLOGS (Lattice Edit) — ported 1:1 from the reference theme's
   css/lattice-edit.css; fonts mapped onto the site's type system.
   ===================================================================== */
.ab-edit {
  --ab-bg: #f5f5f0;
  --ab-bg-2: #ebebe6;
  --ab-text: #000000;
  --ab-muted: #666666;
  --ab-font-fk: var(--font-body);
  --ab-font-helv: var(--font-helv);
  background: var(--ab-bg);
  padding: 90px 50px 100px;
}
.ab-edit-top {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto 32px;
}
.ab-edit-top h2 {
  font-family: var(--ab-font-fk); font-size: 1.75rem; font-weight: 500;
  color: #222; letter-spacing: 0.02em; margin: 0;
}
.ab-edit-nav { display: flex; align-items: center; gap: 10px; }
.ab-edit-hint { font-family: var(--ab-font-fk); font-size: 0.8rem; color: var(--ab-muted); margin-right: 6px; }
.ab-edit-arrows { display: flex; gap: 8px; }
.ab-edit-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ccc; background: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #555; font-size: 0.7rem; transition: border-color 0.2s, color 0.2s;
}
.ab-edit-btn:hover { border-color: #999; color: #111; }
.ab-edit-track-wrap { max-width: 1280px; margin: 0 auto; overflow: hidden; }
.ab-edit-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-behavior: smooth;
  padding-bottom: 8px; cursor: grab; -ms-overflow-style: none; scrollbar-width: none;
}
.ab-edit-track::-webkit-scrollbar { display: none; }
.ab-edit-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.ab-card { flex: 0 0 min(28%, 320px); min-width: min(28%, 320px); max-width: 320px; }
.ab-card-link { display: block; color: inherit; text-decoration: none; }
.ab-card-link:hover .ab-card-image { transform: translateY(-2px); }
.ab-card-image {
  height: 200px; background-size: cover; background-position: center;
  border-radius: 4px; margin-bottom: 14px; transition: transform 0.2s ease;
}
.ab-card-cat {
  font-family: var(--ab-font-helv); font-size: 0.75rem; color: var(--ab-muted);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em;
}
.ab-card h3 {
  font-family: var(--ab-font-fk); font-size: 0.95rem; font-weight: 600;
  line-height: 1.45; color: var(--ab-text); margin: 0;
}
.ab-subscribe-pill { text-align: center; margin-top: 40px; }
.ab-subscribe-pill button {
  font-family: var(--ab-font-helv); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: #333; background: var(--ab-bg-2);
  border: 1px solid #d8d8d0; padding: 16px 40px; border-radius: 40px; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.ab-subscribe-pill button:hover { background: #e5e5df; border-color: #c8c8c0; }
@media (max-width: 768px) {
  .ab-edit { padding: 60px 24px 70px; }
  .ab-card { flex: 0 0 80%; min-width: 80%; }
}

/* =====================================================================
   FLOATING CHAT BUBBLE
   ===================================================================== */
.chat-bubble { position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: flex; align-items: center; gap: 0; background: var(--ink); color: var(--cream);
  border-radius: 100px; padding: 8px 8px 8px 18px; box-shadow: 0 16px 40px -14px rgba(0,0,0,0.45);
  transition: transform .3s var(--ease); }
.chat-bubble:hover { transform: translateY(-2px); }
.chat-label { font-size: 14px; font-weight: 400; white-space: nowrap; }
.chat-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--beige); color: var(--ink);
  display: flex; align-items: center; justify-content: center; margin-left: 14px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .nav, .pill { display: none; }
  .hamburger { display: flex; }
  .nav-arrow { display: none; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 24px; max-width: 560px; }
  .studio-grid { gap: 26px; } /* prev (revert if needed): 18px */
}
@media (max-width: 760px) {
  .site-header { padding: 0 20px; }
  .section-pad { padding: 56px 20px; }
  .overlay-location { left: 20px; }
  .overlay-category { right: 20px; }
  .overlay-title { bottom: 100px; }
  .footer-row { align-items: flex-start; }
  .footer-right { align-items: flex-start; }
  .process-icon { width: 72px; height: 72px; } /* prev (revert if needed): 96px */
  .studio-grid { grid-template-columns: 1fr; max-width: 420px; }
  .studio-card { aspect-ratio: 16/11; }
  .press-card { width: 240px; }
  .social-card { width: 290px; }
  .band-head { flex-wrap: wrap; }
  .chat-label { display: none; }
  .chat-bubble { padding: 8px; }
  .chat-icon { margin-left: 0; }
}
