/* ======================================================
   MuraFlush — main.css
   Single stylesheet. MuraFlush navy + warm mineral neutrals.
   ====================================================== */

/* ── 1. Design tokens ─────────────────────────────── */
:root {
  --navy:      #000A52;
  --navy-dark: #000638;
  --navy-mid:  #0D1C8A;
  --navy-wash: #D9D8D3;
  --navy-tint: #F1F0EC;

  --ink:    #070B20;
  --muted:  #5E5D59;
  --white:  #FFFFFF;
  --paper:  #F4F3EF;
  --surface:#FFFFFF;
  --soft:   #E8E6E0;

  --line:   rgba(0, 10, 82, .11);
  --danger: #A52B2B;

  --shadow:    0 16px 48px rgba(0, 10, 82, .09);
  --shadow-lg: 0 28px 72px rgba(0, 10, 82, .13);

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  --content: 1280px;
  --gutter:  max(20px, calc((100vw - var(--content)) / 2));

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --motion-fast: 180ms;
  --motion-base: 320ms;
  --motion-slow: 620ms;
  --font-display: 'Oxanium', 'Arial Wide', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
}

/* ── 2. Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  accent-color: var(--navy);
}
::selection { background: var(--navy); color: white; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  /* no overflow-x here: it would break position: sticky on the header;
     html { overflow-x: clip } already guards against sideways scroll */
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  transition: opacity 210ms ease, transform 210ms var(--ease);
}
body.is-leaving { opacity: 0; transform: translateY(-6px); pointer-events: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
main { min-height: 70vh; }

/* ── 3. Typography ────────────────────────────────── */
h1, h2, h3 { margin-top: 0; color: var(--ink); }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.02;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.3;
}
h1 { font-size: clamp(3rem, 7vw, 7.5rem); margin-bottom: 28px; max-width: 12ch; }
h2 { font-size: clamp(2.4rem, 5vw, 5.5rem); margin-bottom: 24px; }
h3 { font-size: clamp(1.05rem, 1.5vw, 1.3rem); margin-bottom: 14px; }
h1, h2, h3 { text-wrap: balance; }
p  { margin-top: 0; line-height: 1.75; }

.lead {
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 400;
  line-height: 1.8;
}
.eyebrow, .studio-kicker, .sku {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before, .studio-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  flex-shrink: 0;
  background: currentColor;
}
.muted { color: var(--muted); }
.price { color: var(--ink); font-size: 1.15rem; font-weight: 700; }

/* ── 4. Layout helpers ────────────────────────────── */
.section, .studio-section {
  padding: clamp(72px, 9vw, 140px) var(--gutter);
}
.section + .section,
.studio-section + .studio-section {
  border-top: 1px solid var(--line);
}
.section.narrow {
  width: min(calc(100% - 44px), 740px);
  margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.section-head h1, .section-head h2 { margin-bottom: 0; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
}
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid rgba(0,10,82,.3); outline-offset: 3px; }

/* ── 5. Page loader & scroll progress ────────────── */
body.is-loading { overflow: hidden; }
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: grid;
  place-items: center;
  background: var(--navy);
  opacity: 1;
  visibility: visible;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
/* Safety net: auto-dismiss even if JS never runs */
@keyframes loaderAutoHide { to { opacity: 0; visibility: hidden; } }
.page-loader { animation: loaderAutoHide .3s ease 1.1s forwards; }
.loader-mark {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(170px, 44vw);
}
.loader-mark img { width: 100%; filter: brightness(0) invert(1); }
.loader-mark span {
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
}
.loader-mark span::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: white;
  animation: loaderLine 1s var(--ease) infinite;
}
@keyframes loaderLine {
  from { transform: translateX(-110%); }
  to   { transform: translateX(340%); }
}
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 9080;
  width: 0;
  height: 3px;
  background: var(--navy);
}

/* ── 6. Skip link ─────────────────────────────────── */
.skip-link {
  position: fixed;
  z-index: 9995;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--navy);
  color: white;
  font: 600 .74rem var(--font-body);
  letter-spacing: .06em;
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: none; }

/* ── 7. Header & Navigation ───────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9050;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  padding: 0 var(--gutter);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: min-height var(--motion-base) var(--ease-out),
              background var(--motion-base) var(--ease),
              box-shadow var(--motion-base) var(--ease),
              border-color var(--motion-base) var(--ease);
}
.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(255,255,255,.88);
  border-color: rgba(0,10,82,.08);
  box-shadow: 0 10px 36px rgba(0,10,82,.07);
}
.brand-logo {
  display: inline-flex;
  width: 148px;
  flex: 0 0 auto;
}
.brand-logo img { width: 100%; height: auto; }
.brand-logo img { transition: transform var(--motion-base) var(--ease-out); }
.brand-logo:hover img { transform: scale(1.025); }

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 80px;
  padding: 0 14px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .22s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--navy); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; white-space: nowrap; }

.lang-switch select {
  width: 64px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  padding: 6px 10px;
  font: 600 .7rem var(--font-body);
  letter-spacing: .06em;
  cursor: pointer;
  transition: border-color .2s var(--ease);
}
.lang-switch select:hover { border-color: var(--navy); }

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font: 600 .7rem var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .22s var(--ease);
}
.cart-link:hover { background: var(--navy-dark); }
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
}
@keyframes cartCountPop {
  0% { transform: scale(.72); }
  55% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.cart-count.is-updating { animation: cartCountPop .4s var(--ease-out); }

/* Mobile nav toggle */
.nav-toggle { display: none; }

/* Mobile extras */
.mobile-cart-nav { display: none; }
.mobile-languages { display: none; }

/* ── 8. Buttons ───────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 24px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: 600 .72rem var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
}
.button::after {
  content: "";
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: .65;
  transition: width var(--motion-base) var(--ease-out);
}
.button:hover::after { width: 16px; }
.button[aria-busy="true"] { cursor: wait; opacity: .72; }
.button[aria-busy="true"]::after {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  background: transparent;
  animation: buttonSpin .7s linear infinite;
}
@keyframes buttonSpin { to { transform: rotate(360deg); } }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,10,82,.12); }
.button:active { transform: translateY(0); box-shadow: none; transition-duration: .06s; }
.button.primary {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}
.button.primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.button.ghost { border-color: rgba(0,10,82,.22); }
.button.ghost:hover { background: rgba(0,10,82,.05); }
.button.light { border-color: white; background: white; color: var(--navy); }
.button.light:hover { background: rgba(255,255,255,.9); }
.button.ghost.light { border-color: rgba(255,255,255,.3); background: transparent; color: white; }
.button.ghost.light:hover { background: rgba(255,255,255,.1); }
.button.small { min-height: 38px; padding: 8px 16px; font-size: .68rem; }
.button.small:hover { transform: none; box-shadow: none; }
.actions, .studio-actions, .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── 9. Forms & Inputs ────────────────────────────── */
input, textarea, select {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(0,10,82,.1);
  outline-offset: 0;
}
.form.is-submitting { opacity: .82; }
.form { transition: opacity var(--motion-fast) ease; }
textarea { min-height: 140px; resize: vertical; }
label {
  display: grid;
  gap: 6px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
}
.form, .admin-form { display: grid; gap: 18px; }
.form {
  padding: 32px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.form-status { min-height: 22px; color: var(--navy); font-weight: 600; font-size: .86rem; }
.error { color: var(--danger); font-weight: 600; }
fieldset {
  display: grid;
  gap: 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
legend { font-weight: 700; padding: 0 8px; }
.check { display: flex; align-items: center; gap: 8px; }

/* ── 10. Hero (home) ──────────────────────────────── */
.studio-hero {
  display: grid;
  grid-template-columns: minmax(400px, .86fr) 1.14fr;
  width: 100%;
  min-height: calc(100svh - 80px);
  overflow: hidden;
}
.studio-hero-media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #c8cad4;
}
.studio-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transition: transform 1.6s cubic-bezier(.16,1,.3,1);
}
.studio-hero:hover .studio-hero-media img { transform: scale(1.018); }

.studio-hero-copy {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(48px, 7vw, 100px);
  background: var(--navy);
  color: white;
}
.studio-hero-content { align-self: center; }
.studio-hero-copy .studio-kicker { color: rgba(255,255,255,.74); }
.studio-hero-copy h1 {
  max-width: 9ch;
  color: white;
  font-size: clamp(4rem, 6.5vw, 8rem);
  line-height: .88;
  letter-spacing: -.04em;
  margin-bottom: 28px;
}
.studio-hero-text {
  max-width: 460px;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 36px;
}
.studio-hero-copy .button.primary {
  border-color: white;
  background: white;
  color: var(--navy);
}
.studio-hero-copy .button.primary:hover { background: var(--navy-wash); border-color: var(--navy-wash); color: var(--navy); }
.studio-hero-copy .button.ghost { border-color: rgba(255,255,255,.28); color: white; }
.studio-hero-copy .button.ghost:hover { background: rgba(255,255,255,.1); }

.studio-trust-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.76);
  font: 600 .62rem var(--font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.studio-trust-line p {
  margin: 0;
  flex: 1;
  color: rgba(255,255,255,.76);
  font-size: .72rem;
}

.hero-media-note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: min(320px, 50%);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  background: rgba(0,6,56,.88);
  backdrop-filter: blur(16px);
  color: white;
}
.hero-media-note span {
  font: 600 .62rem var(--font-body);
  letter-spacing: .18em;
  opacity: .6;
  padding-top: 2px;
}
.hero-media-note p { margin: 0; font-size: .84rem; line-height: 1.55; color: rgba(255,255,255,.82); }

.hero-vertical-mark {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 16px;
  color: rgba(255,255,255,.55);
  font: 600 .54rem var(--font-body);
  letter-spacing: .22em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

/* ── 11. Sections & headings ──────────────────────── */
.studio-heading { margin-bottom: 44px; }
.studio-heading h2 { margin-bottom: 0; }
.studio-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.studio-heading.split > p {
  max-width: 44ch;
  margin-bottom: 4px;
  color: var(--muted);
}

/* ── 12. Intro (philosophy) ───────────────────────── */
.studio-intro {
  background: var(--navy);
  color: white;
}
.studio-intro .studio-kicker { color: rgba(255,255,255,.55); }
.studio-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 64px;
  align-items: end;
}
.studio-intro-grid h2 {
  max-width: 11ch;
  margin-bottom: 0;
  color: white;
}
.studio-intro-grid p {
  margin-bottom: 0;
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.82;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.intro-measure {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 64px;
  color: rgba(255,255,255,.35);
  font: 600 .6rem var(--font-body);
  letter-spacing: .2em;
}
.intro-measure i { height: 1px; background: rgba(255,255,255,.2); }

/* ── 13. Services ─────────────────────────────────── */
.studio-services { background: var(--white); }
.studio-service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.studio-service {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 28px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease),
              box-shadow .25s var(--ease);
}
.studio-service span { color: var(--navy); font: 600 .72rem var(--font-body); letter-spacing: .1em; }
.studio-service h3 { font-size: clamp(1.1rem, 1.8vw, 1.65rem); }
.studio-service p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }
.studio-service:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,10,82,.2);
}
.studio-service:hover span { color: rgba(255,255,255,.55); }
.studio-service:hover h3 { color: white; }
.studio-service:hover p { color: rgba(255,255,255,.65); }

/* ── 14. Manifesto band ───────────────────────────── */
.design-manifesto {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  padding: 36px var(--gutter) 0;
  background: var(--navy);
  color: white;
}
.manifesto-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font: 600 .62rem var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.manifesto-line strong { color: white; }
.manifesto-line span:last-child { text-align: right; }
.manifesto-word {
  margin-bottom: -3vw;
  color: rgba(255,255,255,.1);
  font: 600 clamp(5rem, 15vw, 15rem)/.76 var(--font-display);
  letter-spacing: -.05em;
  white-space: nowrap;
  user-select: none;
}

/* ── 15. Products ─────────────────────────────────── */
.studio-products { background: var(--soft); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.product-card.is-filtered-out {
  opacity: 0;
  transform: translateY(10px) scale(.975);
  pointer-events: none;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(0,10,82,.22); }
.product-card-media {
  display: block;
  overflow: hidden;
  background: var(--navy-tint);
}
.product-card-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-card-media img { transform: scale(1.03); }
.product-card-body {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 20px;
  padding: 22px;
}
.product-card-copy { display: grid; align-content: start; gap: 8px; }
.product-card h3, .product-card p { margin: 0; }
.product-card h3 { font-size: 1.15rem; }
.product-card .sku { color: var(--navy); margin-bottom: 0; }
.product-card-description {
  display: -webkit-box;
  overflow: hidden;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product-card .card-actions { gap: 8px; flex-wrap: nowrap; }
.product-card strong { font-size: 1.1rem; }
.button.is-added { background: #167e50; border-color: #167e50; }

/* ── 16. Category grid ────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.category-tile {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: background .22s var(--ease), color .22s var(--ease);
}
.category-tile:hover { background: var(--navy); color: white; }
.category-tile span { color: var(--navy); font-weight: 700; font-size: .8rem; }
.category-tile:hover span { color: rgba(255,255,255,.65); }
.category-tile h3 { color: var(--ink); }
.category-tile:hover h3 { color: white; }
.category-tile p { color: var(--muted); font-size: .88rem; margin-bottom: 0; }
.category-tile:hover p { color: rgba(255,255,255,.65); }

/* ── 17. Why section ──────────────────────────────── */
.studio-why {
  background: var(--navy);
  color: white;
}
.studio-why h2, .studio-why h3 { color: white; }
.studio-why .studio-kicker { color: rgba(255,255,255,.55); }
.studio-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.studio-why-grid article {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.studio-why-grid article:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
}
.studio-why-grid span { color: rgba(255,255,255,.5); font: 600 .7rem var(--font-body); letter-spacing: .1em; }
.studio-why-grid p { color: rgba(255,255,255,.8); margin-bottom: 0; font-size: .94rem; }

/* ── 18. Work split ───────────────────────────────── */
.studio-work {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) 1.28fr;
  width: 100%;
  min-height: 640px;
}
.studio-work-copy {
  display: grid;
  align-content: center;
  padding: clamp(48px, 7vw, 110px) var(--gutter);
  background: var(--white);
}
.studio-work-copy h2 { max-width: 9ch; }
.studio-work-copy p { color: var(--muted); max-width: 42ch; }
.studio-work-copy .button { margin-top: 12px; }
.studio-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

/* ── 19. Process ──────────────────────────────────── */
.studio-process { background: var(--navy-tint); }
.studio-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.studio-process-grid article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.studio-process-grid article > span { color: var(--navy); font: 600 .72rem var(--font-body); letter-spacing: .1em; }
.studio-process-grid h3 { color: var(--ink); }
.studio-process-grid p { color: var(--muted); margin-bottom: 0; font-size: .9rem; }

/* ── 20. Gallery preview ──────────────────────────── */
.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  grid-auto-rows: 90px;
  gap: 12px;
}
.studio-gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}
.studio-gallery-grid a:nth-child(1) { grid-column: span 6; grid-row: span 7; }
.studio-gallery-grid a:nth-child(2) { grid-column: span 3; grid-row: span 4; }
.studio-gallery-grid a:nth-child(3) { grid-column: span 3; grid-row: span 7; }
.studio-gallery-grid a:nth-child(4) { grid-column: 7 / span 3; grid-row: 5 / span 3; }
.studio-gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), opacity .3s var(--ease);
}
.studio-gallery-grid a:hover img { transform: scale(1.04); opacity: .85; }
.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 3px;
  padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(0,6,56,.85));
  color: white;
}
.gallery-caption small {
  color: rgba(255,255,255,.6);
  font: 600 .62rem var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gallery-caption strong { font-size: 1rem; }

/* ── 21. Contact strip ────────────────────────────── */
.studio-contact-strip {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) 1.3fr;
  gap: 64px;
  align-items: end;
  background: var(--white);
}
.studio-country-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.studio-country-list a {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font: 700 .9rem var(--font-body);
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.studio-country-list a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  box-shadow: 0 12px 36px rgba(0,10,82,.2);
}

/* ── 22. CTA final ────────────────────────────────── */
.studio-final {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto clamp(64px, 8vw, 120px);
  padding: clamp(48px, 7vw, 88px);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: white;
}
.studio-final h2 { max-width: 12ch; color: white; margin-bottom: 20px; }
.studio-final .studio-kicker { color: rgba(255,255,255,.55); }
.studio-final p { max-width: 52ch; color: rgba(255,255,255,.84); font-weight: 400; }
.studio-final .button.primary { border-color: white; background: white; color: var(--navy); }
.studio-final .button.primary:hover { background: var(--navy-wash); border-color: var(--navy-wash); }
.studio-final .button.ghost { border-color: rgba(255,255,255,.28); color: white; }

/* ── 23. Band (page CTA) ──────────────────────────── */
.band {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto clamp(64px, 8vw, 120px);
  padding: clamp(44px, 6vw, 80px);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: white;
}
.band h2 { color: white; }
.band .eyebrow { color: rgba(255,255,255,.72); }
.band p { color: rgba(255,255,255,.84); }

/* ── 24. Footer ───────────────────────────────────── */
.site-footer {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(130px, .55fr));
  gap: 48px;
  padding: 72px var(--gutter);
  background: #030614;
  color: white;
}
.site-footer strong { color: white; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer p, .site-footer small { color: rgba(255,255,255,.66); font-size: .88rem; }
.site-footer a { color: rgba(255,255,255,.66); font-size: .88rem; transition: color .2s var(--ease); }
.site-footer a:hover { color: white; }
.footer-links, .footer-whatsapp, .footer-contacts, .footer-newsletter { display: grid; align-content: start; gap: 10px; }
.footer-brand { max-width: 300px; }
.footer-logo { width: 128px; margin-bottom: 22px; }

/* ── 25. Inner page heroes ────────────────────────── */
.contact-hero, .about-hero, .service-hero, .work-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) 1.18fr;
  width: 100%;
  min-height: clamp(640px, 72vh, 780px);
  height: auto;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
/* Full-bleed hero — remove all section padding so image reaches the edge */
.contact-hero.section, .about-hero.section, .service-hero.section, .work-hero.section {
  padding: 0;
}
/* Gradient overlay: navy bleeds from the text column into the photo */
.contact-hero::after, .about-hero::after, .service-hero::after, .work-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 36%;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(0,10,82,.55) 30%, rgba(0,10,82,.18) 60%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}
.contact-hero > div, .about-hero > div, .service-hero > div, .work-hero > div {
  position: relative;
  z-index: 2;
  grid-column: 1;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(72px, 8vw, 112px) clamp(24px, 5vw, var(--gutter));
}
.contact-hero h1, .about-hero h1, .service-hero h1, .work-hero h1 {
  color: white;
  max-width: none;
  font-size: clamp(2.5rem, 4vw, 4.75rem);
  overflow-wrap: anywhere;
}
.contact-hero .eyebrow, .about-hero .eyebrow,
.service-hero .eyebrow, .work-hero .eyebrow { color: rgba(255,255,255,.72); }
.contact-hero .lead, .about-hero .lead, .service-hero .lead, .work-hero .lead {
  color: rgba(255,255,255,.88);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  max-width: 50ch;
}
.contact-hero > div > p:not(.lead):not(.eyebrow),
.about-hero > div > p:not(.lead):not(.eyebrow),
.service-hero > div > p:not(.lead):not(.eyebrow),
.work-hero > div > p:not(.lead):not(.eyebrow) {
  color: rgba(255,255,255,.78);
}
.contact-hero img, .about-hero img, .service-hero img, .work-hero img {
  position: absolute;
  inset: 0 0 0 36%;
  z-index: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.75) brightness(.92);
  transition: transform 6s ease;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
}
.contact-hero:hover img, .about-hero:hover img, .service-hero:hover img, .work-hero:hover img {
  transform: scale(1.03);
}

/* ── 26. About page ───────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) 1.3fr;
  gap: 64px;
  align-items: start;
}
.about-story .lead {
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.85;
  color: var(--ink);
}
.about-copy { max-width: 760px; }
.about-copy p {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.82;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-portfolio {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) 1.3fr;
  gap: 64px;
  background: var(--navy-tint);
}
.about-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  counter-reset: portfolio;
  background: var(--line);
}
.about-product-list li {
  counter-increment: portfolio;
  min-height: 150px;
  padding: 28px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
}
.about-product-list li::before {
  content: "0" counter(portfolio);
  display: block;
  margin-bottom: 28px;
  color: var(--navy);
  font: 600 .7rem var(--font-display);
  letter-spacing: .08em;
}
.about-growth {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.about-growth > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}
.about-signature {
  padding: clamp(36px, 6vw, 72px);
  background: var(--navy);
  color: white;
}
.about-signature span {
  display: block;
  margin-bottom: 36px;
  color: rgba(255,255,255,.58);
  font: 600 .65rem var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-signature h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 4.6rem);
}
.about-signature p {
  max-width: 52ch;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
}
.about-workflow {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) 1.3fr;
  gap: 64px;
  align-items: start;
}
.workflow-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  align-self: start;
  counter-reset: workflow;
}
.workflow-line article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px 24px 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.workflow-line article:hover {
  border-color: var(--navy-wash);
  box-shadow: 0 12px 36px rgba(0,10,82,.09);
  transform: translateY(-3px);
}
.workflow-line article strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  border-radius: 50%;
  font: 700 1rem var(--font-body);
  letter-spacing: 0;
  flex-shrink: 0;
}
.workflow-line article span { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ── 27. Info / Why / Audience grids ─────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.info-grid article {
  padding: 32px 28px;
  border: 1.5px solid var(--line);
  border-left: 3px solid var(--navy-wash);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.info-grid article:hover {
  border-left-color: var(--navy);
  box-shadow: 0 12px 36px rgba(0,10,82,.09);
  transform: translateY(-3px);
}
.info-grid article h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 10px;
}
.info-grid article p { color: var(--muted); margin-bottom: 0; }
.why-grid, .audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.why-grid article, .audience-grid article {
  min-height: 200px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: background .22s var(--ease), border-color .22s var(--ease),
              box-shadow .25s var(--ease), transform .25s var(--ease);
}
.why-grid article:hover, .audience-grid article:hover {
  background: var(--surface);
  border-color: var(--navy-wash);
  box-shadow: 0 16px 44px rgba(0,10,82,.11);
  transform: translateY(-4px);
}
/* Numbered circle badge inside why/audience cards */
.why-grid article > span, .audience-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  border-radius: 50%;
  font: 700 .78rem var(--font-body);
  letter-spacing: .02em;
  flex-shrink: 0;
}
.why-grid article p, .audience-grid article p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

/* ── 28. Process / Installation ───────────────────── */
.process-section {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) 1.3fr;
  gap: 64px;
  align-items: start;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  align-self: start;
}
.process-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px 22px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.process-grid article:hover {
  border-color: var(--navy-wash);
  box-shadow: 0 12px 36px rgba(0,10,82,.09);
  transform: translateY(-3px);
}
.process-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  border-radius: 50%;
  font: 700 1rem var(--font-body);
  letter-spacing: 0;
  flex-shrink: 0;
}
.process-grid article p { color: var(--muted); font-size: .88rem; margin-bottom: 0; line-height: 1.65; }

/* ── 29. Product detail ───────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(320px, .75fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 48px var(--gutter) clamp(80px, 9vw, 130px);
  align-items: start;
}
.gallery { display: grid; gap: 12px; }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.product-info {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.product-info h1 { font-size: clamp(2.4rem, 4vw, 4.5rem); margin-bottom: 0; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 500;
}
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span[aria-current="page"] {
  max-width: 30ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.order-help {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
  margin: 0;
}
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.back-link {
  color: var(--muted);
  font: 600 .68rem var(--font-body);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
}
.back-link:hover { color: var(--navy); }
.mobile-product-bar { display: none; }
.notice {
  padding: 16px 18px;
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--navy-tint);
  font-size: .9rem;
}

/* ── 30. Gallery page ─────────────────────────────── */
.gallery-page { padding-top: clamp(56px, 7vw, 96px); }
.gallery-page-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, .5fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.gallery-page-head h1 { max-width: none; margin-bottom: 0; }
.gallery-page-head .lead { margin-bottom: 4px; }

.gallery-grid.editorial-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 72px;
  gap: 14px;
}
.gallery-piece {
  position: relative;
  grid-column: span 4;
  grid-row: span 6;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}
.gallery-piece:nth-child(6n+1) { grid-column: span 7; grid-row: span 8; }
.gallery-piece:nth-child(6n+2) { grid-column: span 5; grid-row: span 5; }
.gallery-piece:nth-child(6n+3) { grid-column: span 5; grid-row: span 7; }
.gallery-piece:nth-child(6n+4) { grid-column: span 7; grid-row: span 6; }
.gallery-piece:nth-child(6n+5) { grid-column: span 4; grid-row: span 6; }
.gallery-piece:nth-child(6n)   { grid-column: span 8; grid-row: span 6; }
.gallery-piece img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), opacity .3s var(--ease);
}
.gallery-piece:hover img { transform: scale(1.025); opacity: .82; }
.gallery-piece-meta {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 14px;
  align-items: end;
  padding: 60px 22px 18px;
  background: linear-gradient(transparent, rgba(0,6,56,.88));
  color: white;
}
.gallery-piece-meta small {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.6);
  font: 600 .62rem var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gallery-piece-meta strong { font-size: 1.05rem; line-height: 1.25; }
.gallery-piece-meta em { color: rgba(255,255,255,.75); font-size: .76rem; font-style: normal; font-weight: 600; }

/* ── 31. Completed / Projects ─────────────────────── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.project-card {
  display: grid;
  grid-template-columns: minmax(200px, .85fr) 1fr;
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--navy-wash);
}
.project-card .img-wrap {
  overflow: hidden;
}
.project-card img {
  width: 100%;
  min-height: 300px;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.project-card:hover img { transform: scale(1.05); }
.project-card div { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.project-card .sku { color: var(--navy); margin-bottom: 6px; }
.project-card h3 { margin-bottom: 10px; }
.project-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }
.reference-notes {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) 1.3fr;
  gap: 64px;
  align-items: start;
}

/* ── 32. Filters ──────────────────────────────────── */
.filters {
  position: sticky;
  top: 96px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr minmax(180px, 240px);
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.catalog-toolbar { margin-bottom: 28px; }
.result-count {
  margin: 0;
  color: var(--muted);
  font: 600 .68rem var(--font-body);
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}
.catalog-empty {
  max-width: 540px;
  margin: 32px auto 0;
  text-align: center;
}

/* ── 33. Cart & Checkout ──────────────────────────── */
.cart-list {
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
.cart-row:last-child { border-bottom: 0; }
.cart-row img { width: 80px; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); }
.cart-row input { width: 80px; }
.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 24px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
}
.cart-quantity { font-size: .72rem; }
.cart-quantity span { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.cart-actions { display: flex; justify-content: space-between; gap: 12px; }

.empty-state {
  max-width: 560px;
  margin-bottom: 24px;
  padding: 32px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.empty-state strong { font-size: 1.2rem; display: block; margin-bottom: 8px; }
.empty-state p { color: var(--muted); }

.checkout-empty {
  display: grid;
  gap: 20px;
  padding: 32px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.checkout-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.checkout-summary [data-checkout-items] { display: grid; gap: 8px; }
.checkout-summary [data-checkout-items] > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .88rem;
}
.checkout-summary .checkout-total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.checkout-help { margin: 0; color: var(--muted); font-size: .86rem; }
.checkout-intro {
  max-width: 62ch;
  margin: -10px 0 18px;
  color: var(--muted);
}
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}
.checkout-steps span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--navy);
  font-weight: 700;
  font-size: .82rem;
}
[type="submit"]:disabled { cursor: wait; opacity: .55; }

.cart-nudge {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 75;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 12px 12px 12px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-lg);
}
.cart-nudge[hidden] { display: none; }
.cart-nudge div { min-width: 0; }
.cart-nudge small {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-nudge strong {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-nudge .button {
  flex: 0 0 auto;
  background: white;
  color: var(--navy);
}

/* ── 34. WhatsApp page ────────────────────────────── */
.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.whatsapp-card {
  display: grid;
  align-content: space-between;
  min-height: 180px;
  padding: 28px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.whatsapp-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,10,82,.22);
}
.whatsapp-card span { font: 600 1.05rem var(--font-display); color: var(--ink); }
.whatsapp-card b {
  align-self: center;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}
.whatsapp-card:hover span { color: white; }
.whatsapp-card:hover b { color: rgba(255,255,255,.82); }
.whatsapp-card strong { color: var(--navy); font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.whatsapp-card:hover strong { color: rgba(255,255,255,.7); }

/* ── 35. Toast & Modal ────────────────────────────── */
.toast {
  position: fixed;
  z-index: 9600;
  right: 22px;
  bottom: 22px;
  max-width: min(370px, calc(100vw - 44px));
  padding: 16px 20px;
  border-left: 4px solid rgba(255,255,255,.5);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-lg);
  font: 600 .82rem var(--font-body);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.toast.visible { opacity: 1; transform: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,6,56,.65);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms var(--ease), visibility 260ms var(--ease);
}
.modal-card {
  position: relative;
  width: min(860px, 94vw);
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(18px) scale(.975);
  transition: opacity 260ms var(--ease), transform 360ms var(--ease-out);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal.is-open .modal-card { opacity: 1; transform: none; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s var(--ease);
}
.modal-close:hover { color: var(--ink); }
.quick-view { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.quick-view img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-sm); width: 100%; }

/* ── 36. Admin ────────────────────────────────────── */
.admin-body { background: var(--paper); }
.admin-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px var(--gutter);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.admin-header .brand-logo { width: 120px; }
.admin-header nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.admin-header nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font: 500 .76rem var(--font-body);
  letter-spacing: .04em;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.admin-header nav a:hover { background: var(--soft); color: var(--navy); }
.admin-main, .admin-login { padding: 48px var(--gutter); }
.admin-login { min-height: 100vh; display: grid; place-items: center; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.admin-stats article, .admin-card {
  padding: 22px 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.admin-stats strong { display: block; color: var(--navy); font-size: 2rem; font-weight: 700; }
.admin-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.admin-head-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.admin-page-head h1 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: .9; }
.admin-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.admin-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.admin-panel-head h2 { margin: 0 0 4px; font-size: 1.12rem; }
.admin-panel-head p { margin: 0; color: var(--muted); font-size: .9rem; }
.admin-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: start;
}
.admin-split {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-check-row { display: flex; flex-wrap: wrap; gap: 14px; }
.admin-media-panel { position: sticky; top: 96px; }
.admin-preview.large {
  width: 100%;
  max-width: none;
  border: 1px solid var(--line);
  background: var(--soft);
}
.admin-hint { margin: 0; color: var(--muted); font-size: .9rem; }
.admin-language { background: rgba(248,248,245,.72); }
.admin-language details, .admin-details {
  display: grid;
  gap: 14px;
}
.admin-language summary, .admin-details > summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
}
.admin-save-bar {
  position: sticky;
  bottom: 0;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 0 0;
  background: linear-gradient(180deg, rgba(250,249,246,0), var(--paper) 45%);
}
.admin-table-wrap {
  overflow: auto;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.admin-table { width: 100%; border-collapse: collapse; background: var(--surface); }
.admin-table th, .admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: .88rem;
  vertical-align: middle;
}
.admin-table th { color: var(--navy); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.admin-preview { max-width: 160px; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-sm); }
.admin-product-cell {
  display: grid;
  grid-template-columns: 58px minmax(180px, 1fr);
  gap: 12px;
  align-items: center;
}
.admin-product-cell img {
  width: 58px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}
.admin-product-cell strong { display: block; color: var(--ink); }
.admin-product-cell span { display: block; margin-top: 2px; color: var(--muted); font-size: .78rem; }
.admin-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 2px 4px 2px 0;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}
.admin-pill.is-live { border-color: rgba(22, 126, 80, .22); background: rgba(22, 126, 80, .09); color: #167e50; }
.admin-pill.is-muted { color: var(--muted); }
.admin-actions { white-space: nowrap; }
.admin-action { font-weight: 700; color: var(--navy); text-decoration: none; }
.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.admin-list {
  display: grid;
  gap: 10px;
}
.admin-list-item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}
.admin-list-item:last-child { border-bottom: 0; }
.admin-list-item strong { display: block; color: var(--ink); }
.admin-list-item span, .admin-list-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}
.admin-empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: var(--soft);
}
.admin-quick-actions {
  display: grid;
  gap: 10px;
}

/* ── 37. Animations ───────────────────────────────── */
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.studio-hero-copy > * { animation: heroEntrance .85s cubic-bezier(.16,1,.3,1) both; }
.studio-hero-media { animation: heroEntrance .85s .08s cubic-bezier(.16,1,.3,1) both; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--motion-slow) var(--ease),
              transform var(--motion-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── 38. Responsive — 1200px ──────────────────────── */
@media (max-width: 1200px) {
  html { scroll-padding-top: 80px; }

  .studio-hero { grid-template-columns: minmax(360px, .88fr) 1.12fr; }
  .studio-intro-grid { grid-template-columns: 1fr .7fr; gap: 48px; }
  .studio-service-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .studio-contact-strip { grid-template-columns: minmax(240px, .75fr) 1.25fr; gap: 48px; }
  .studio-gallery-grid { grid-auto-rows: 72px; }
}

/* ── 39a. Responsive — 1100px (burger nav) ────────
   The full desktop nav needs ~1080px of width; switch
   to the burger before the header can overflow.      */
@media (max-width: 1100px) {
  /* Header: switch to burger — remove backdrop-filter so fixed nav is not trapped */
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 18px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: white;
  }
  .site-header.is-scrolled { min-height: 72px; }
  .brand-logo { width: 130px; }

  /* ── Mobile nav: full-screen flex column overlay ── */
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 9000;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    padding: 80px 0 32px;
    background: var(--navy);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .4s var(--ease-out);
  }
  .site-nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  /* All direct <a> links fill equal share of the column */
  .site-nav > a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 0 !important;
    padding: 0 24px !important;
    color: rgba(255,255,255,.85) !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    font-family: var(--font-body) !important;
    font-size: clamp(1rem, 4vw, 1.25rem) !important;
    font-weight: 500 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    text-decoration: none;
    white-space: nowrap !important;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .4s var(--ease-out),
                background .15s ease, color .15s ease;
  }
  .site-nav.open > a { opacity: 1; transform: none; }
  .site-nav.open > a:nth-child(1) { transition-delay: 40ms; }
  .site-nav.open > a:nth-child(2) { transition-delay: 70ms; }
  .site-nav.open > a:nth-child(3) { transition-delay: 100ms; }
  .site-nav.open > a:nth-child(4) { transition-delay: 130ms; }
  .site-nav.open > a:nth-child(5) { transition-delay: 160ms; }
  .site-nav.open > a:nth-child(6) { transition-delay: 190ms; }
  .site-nav.open > a:nth-child(7) { transition-delay: 220ms; }
  .site-nav > a:first-child {
    border-top: 1px solid rgba(255,255,255,.08) !important;
  }
  .site-nav > a::after { display: none !important; }
  .site-nav > a:hover,
  .site-nav > a[aria-current="page"] {
    background: rgba(255,255,255,.07) !important;
    color: white !important;
  }

  /* Language row pinned at the bottom */
  .mobile-cart-nav { display: flex !important; }
  .mobile-languages {
    display: flex !important;
    flex: 0 0 auto;
    gap: 8px;
    padding: 16px 16px 0;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .mobile-languages a {
    flex: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 44px;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    background: transparent !important;
    color: rgba(255,255,255,.65) !important;
    font-family: var(--font-body) !important;
    font-size: .8rem !important;
    font-weight: 600 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    transition: background .15s;
  }
  .mobile-languages a[aria-current="true"] {
    background: rgba(255,255,255,.18) !important;
    color: white !important;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    position: relative;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--navy);
    cursor: pointer;
    z-index: 9100;
    flex: 0 0 auto;
  }
  .nav-toggle span {
    display: block;
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transform: translateX(-50%);
    transition: top .22s var(--ease), opacity .16s, transform .22s var(--ease);
  }
  .nav-toggle span:nth-child(1) { top: 15px; }
  .nav-toggle span:nth-child(2) { top: 21px; }
  .nav-toggle span:nth-child(3) { top: 27px; }
  .nav-toggle.open span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

  .header-actions { display: none; }

  /* Burger header is 72px tall — keep sticky elements aligned */
  html { scroll-padding-top: 72px; }
  .filters { top: 84px; }
}

/* ── 39. Responsive — 960px (tablet) ─────────────── */
@media (max-width: 960px) {
  html { scroll-padding-top: 72px; }

  /* Hero: stack vertically */
  .studio-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .studio-hero-media { min-height: 50vw; max-height: 460px; }
  .studio-hero-copy { padding: 52px 22px 36px; min-height: auto; }
  .studio-hero-copy h1 { font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero-media-note { width: 66%; }
  .hero-vertical-mark { display: none; }
  .studio-trust-line > span:last-child { display: none; }

  /* Sections */
  .section, .studio-section { padding: clamp(56px, 7vw, 96px) 22px; }
  .section.narrow { width: calc(100% - 44px); }

  /* Intro */
  .studio-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .studio-intro-grid p { border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px; }

  /* Services */
  .studio-service-list { grid-template-columns: repeat(2, minmax(0,1fr)); }

  /* Product grid */
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  /* Why */
  .studio-why-grid { grid-template-columns: 1fr; }
  .studio-why-grid article { min-height: 180px; }

  /* Work */
  .studio-work { grid-template-columns: 1fr; }
  .studio-work img { min-height: 380px; max-height: 480px; width: 100%; object-fit: cover; }

  /* Process */
  .studio-process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  /* Gallery preview */
  .studio-gallery-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-auto-rows: 180px;
  }
  .studio-gallery-grid a:nth-child(n) { grid-column: auto; grid-row: span 2; }
  .studio-gallery-grid a:first-child { grid-column: 1 / -1; grid-row: span 3; }

  /* Contact strip */
  .studio-contact-strip { grid-template-columns: 1fr; gap: 32px; }
  .studio-country-list { grid-template-columns: repeat(3, minmax(0,1fr)); }

  /* CTA / band */
  .studio-final, .band {
    width: calc(100% - 40px);
    padding: 48px 28px;
    margin-bottom: 64px;
  }

  /* Footer */
  .site-footer { grid-template-columns: 1fr 1fr; padding: 56px 22px; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Inner heroes */
  .contact-hero, .about-hero, .service-hero, .work-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
  }
  .contact-hero::after, .about-hero::after, .service-hero::after, .work-hero::after {
    display: none;
  }
  .contact-hero img, .about-hero img, .service-hero img, .work-hero img {
    position: relative;
    inset: auto;
    grid-column: 1;
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 420px;
  }
  .contact-hero > div, .about-hero > div, .service-hero > div, .work-hero > div {
    padding: 64px 22px;
  }

  /* About / completed / installation grids */
  .about-story, .about-workflow, .about-portfolio, .about-growth, .process-section, .reference-notes {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-product-list { grid-template-columns: 1fr; }
  .workflow-line { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .info-grid, .why-grid, .audience-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  /* Product detail */
  .product-detail { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px 80px; }
  .product-info { position: static; }

  /* Gallery page */
  .gallery-page-head { grid-template-columns: 1fr; gap: 16px; }
  .editorial-gallery .gallery-piece:nth-child(n) { grid-column: span 6; grid-row: span 6; }
  .editorial-gallery .gallery-piece:nth-child(3n+1) { grid-column: 1/-1; grid-row: span 7; }

  /* Section head */
  .section-head { flex-direction: column; gap: 12px; align-items: flex-start; }
  .studio-heading.split { flex-direction: column; gap: 12px; }

  /* Filters */
  .filters { top: 84px; grid-template-columns: 1fr; }

  /* Whatsapp */
  .whatsapp-grid { grid-template-columns: 1fr; }

  /* Project grid */
  .project-grid { grid-template-columns: 1fr; }
  .project-card { grid-template-columns: 1fr; }
  .project-card img { min-height: 260px; max-height: 320px; width: 100%; object-fit: cover; }

  /* Cart */
  .cart-row { grid-template-columns: 70px 1fr; flex-wrap: wrap; }
  .cart-row input, .cart-row .button { grid-column: auto; width: 100%; }
  .checkout-steps { grid-template-columns: 1fr; }

  /* Admin */
  .admin-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .admin-editor-grid, .admin-split { grid-template-columns: 1fr; }
  .admin-dashboard-grid { grid-template-columns: 1fr; }
  .admin-media-panel { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid.two { grid-template-columns: 1fr; }
  .admin-page-head { align-items: flex-start; flex-direction: column; }
}

/* ── 40. Responsive — 600px (mobile) ─────────────── */
@media (max-width: 600px) {
  body { font-size: 15px; }
  html { scroll-padding-top: 68px; }

  .site-header { min-height: 68px; padding: 0 16px; }
  .site-header.is-scrolled { min-height: 68px; }
  .brand-logo { width: 118px; }

  h1 { font-size: clamp(2.6rem, 14vw, 4.5rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }

  /* Hero */
  .studio-hero-media { min-height: 52vw; }
  .studio-hero-copy { padding: 40px 18px 28px; }
  .studio-hero-copy h1 { font-size: clamp(3rem, 17vw, 4.8rem); }
  .studio-hero-text { font-size: .96rem; }
  .hero-media-note { width: 80%; padding: 18px; left: 0; right: 0; }
  .studio-actions { display: grid; grid-template-columns: 1fr; }
  .contact-hero > div, .about-hero > div, .service-hero > div, .work-hero > div {
    padding: 52px 18px;
  }
  .contact-hero h1, .about-hero h1, .service-hero h1, .work-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 1.05;
  }
  .contact-hero img, .about-hero img, .service-hero img, .work-hero img {
    min-height: 300px;
    max-height: 380px;
  }

  .section, .studio-section { padding: 52px 18px; }
  .section.narrow { width: calc(100% - 36px); }

  /* Services */
  .studio-service-list { grid-template-columns: 1fr; }
  .studio-service { min-height: auto; }

  /* Manifesto */
  .manifesto-word { font-size: 22vw; }
  .manifesto-line { grid-template-columns: 1fr auto; }
  .manifesto-line strong { display: none; }

  /* Products */
  .product-grid { grid-template-columns: 1fr; }
  .product-card-media img { aspect-ratio: 4/5; }
  .product-card-footer { flex-wrap: wrap; }
  .product-card .card-actions { width: 100%; justify-content: stretch; }
  .product-card .button.small { flex: 1; }

  /* Why */
  .studio-why-grid { grid-template-columns: 1fr; }

  /* Gallery preview */
  .studio-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .studio-gallery-grid a:nth-child(n),
  .studio-gallery-grid a:first-child { grid-column: auto; grid-row: span 1; }
  .studio-gallery-grid a:first-child { grid-row: span 2; }

  /* Process */
  .studio-process-grid { grid-template-columns: 1fr; }
  .studio-process-grid article { min-height: auto; }

  /* Country */
  .studio-country-list { grid-template-columns: 1fr; }
  .studio-country-list a { min-height: 80px; }

  /* CTA / band */
  .studio-final { width: calc(100% - 32px); margin-inline: 16px; border-radius: var(--radius); padding: 38px 22px; margin-bottom: 48px; }
  .band { width: calc(100% - 32px); margin-inline: 16px; border-radius: var(--radius); padding: 36px 22px; margin-bottom: 48px; }

  /* Footer */
  .site-footer { grid-template-columns: 1fr; padding: 48px 18px; }
  .footer-brand { grid-column: auto; }

  /* Grids */
  .info-grid, .why-grid, .audience-grid, .workflow-line, .process-grid { grid-template-columns: 1fr; }

  /* Gallery page */
  .gallery-grid.editorial-gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .editorial-gallery .gallery-piece:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 320px; }

  /* Product detail */
  .product-detail { padding: 16px 16px 90px; }
  .product-actions { grid-template-columns: 1fr; }

  /* Mobile sticky bar */
  .page-product { padding-bottom: 88px; }
  .mobile-product-bar {
    position: fixed;
    z-index: 80;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(16px);
  }
  .mobile-product-bar div { min-width: 0; display: grid; }
  .mobile-product-bar small { color: var(--muted); font-size: .66rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-product-bar strong { font-size: .9rem; }
  .mobile-product-bar .button { width: auto; min-height: 44px; }
  .cart-nudge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    border-radius: 14px;
  }
  .cart-nudge .button { min-height: 42px; padding-inline: 14px; width: auto; }

  /* Cart */
  .cart-row { grid-template-columns: 64px 1fr; }
  .cart-row img { width: 64px; }
  .cart-actions { flex-direction: column; }
  .actions, .studio-actions, .card-actions { grid-template-columns: 1fr; }
  .button { width: 100%; justify-content: center; }
  .newsletter-row .button { width: auto; }

  /* Whatsapp */
  .whatsapp-grid { grid-template-columns: 1fr; }

  /* Toast */
  .toast { right: 10px; bottom: 10px; max-width: calc(100vw - 20px); }

  /* Nav mobile full cover */
  .site-nav { padding: 72px 0 24px; }
  .mobile-languages { grid-template-columns: repeat(4, 1fr); }
}

/* ── 41. Page fade-in (pure CSS — works without JS) ─ */
@keyframes pageFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
main { animation: pageFade .45s ease both; }

/* ── 42. Back to top ──────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,10,82,.22);
  transition: transform .2s ease, box-shadow .2s ease, opacity .25s ease;
  opacity: 1;
}
.back-to-top[hidden] { display: none !important; }
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,10,82,.28);
}

/* ── 43. Footer newsletter ────────────────────────── */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-newsletter strong {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.footer-newsletter p {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}
.newsletter-row {
  display: flex;
  gap: 8px;
}
.newsletter-row input {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  color: white;
  font: 400 .85rem var(--font-body);
  transition: border-color .2s;
}
.newsletter-row input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-row input:focus { outline: none; border-color: rgba(255,255,255,.45); }
.newsletter-row .button.light.small { white-space: nowrap; flex: 0 0 auto; }
.footer-newsletter .form-status {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  min-height: 1.2em;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .78rem;
  line-height: 1.45;
}
.consent input { width: auto; margin-top: 3px; }
.consent a { text-decoration: underline; }
.admin-inline-form { display: inline; }
.admin-inline-form button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
  border-top: 1px solid var(--line);
}
.product-specs div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.product-specs dt { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; }
.product-specs dd { margin: 4px 0 0; font-weight: 600; }
.legal-page p { max-width: 72ch; }

/* ── 44. Reduced data / print niceties ───────────── */
@media print {
  .site-header, .site-footer, .back-to-top, .nav-toggle,
  .scroll-progress, .page-loader, .toast, .mobile-product-bar { display: none !important; }
  main { opacity: 1 !important; transform: none !important; }
}
