*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── INTRO LANDING ───────────────────────────────── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 3000;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.9s ease;
  /* Solid backdrop so the intro is opaque from the very first paint —
     prevents the homepage flashing through before the slide images load. */
  background: #140e0c;
}
/* prevent scrolling of the page behind while the intro is up */
body.intro-open {
  overflow: hidden;
}
.intro.intro--hiding {
  opacity: 0;
  pointer-events: none;
}
.intro__slides {
  position: absolute;
  inset: 0;
  /* own stacking context so per-slide z-index stays below the scrim */
  z-index: 0;
}
.intro__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.intro__slide.is-active {
  opacity: 1;
}
/* subtle darkening so the cream text stays legible over any image */
.intro__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 12, 0.28) 0%, rgba(20, 14, 12, 0.12) 40%, rgba(20, 14, 12, 0.42) 100%);
  pointer-events: none;
}
.intro__logo {
  position: absolute;
  top: 50%;
  right: var(--pad);
  transform: translateY(-38%);
  height: clamp(46px, 6vw, 92px);
  width: auto;
  pointer-events: none;
}
.intro__caption {
  position: absolute;
  left: var(--pad);
  bottom: 3.5rem;
  color: rgba(246, 244, 239, 0.94);
  pointer-events: none;
}
.intro__tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.9;
}
.intro__locations {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(246, 244, 239, 0.8);
}
/* Desktop: skip label follows the cursor, no bubble */
.intro__skip {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3001;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(246, 244, 239, 0.95);
  pointer-events: none;
  transform: translate(18px, 18px);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.intro__skip.is-visible {
  opacity: 1;
}
@media (hover: none), (max-width: 768px) {
  .intro { cursor: default; }
  /* Mobile: pin skip bottom-right, tap anywhere to enter */
  .intro__skip {
    position: absolute;
    top: auto;
    left: auto;
    right: var(--pad);
    bottom: 2.25rem;
    transform: none;
    opacity: 1;
  }
  .intro__logo { right: 9%; }
  /* Mobile: caption moves to the top-left */
  .intro__caption {
    top: 5.5rem;
    bottom: auto;
    left: var(--pad);
    right: var(--pad);
  }
}

:root {
  --bg: #f6f4ef;
  --bg-alt: #ede9e2;
  --surface: #292929;
  --text: #292929;
  --text-muted: #555555;
  --accent: #8c5c57;
  --border: rgba(41, 41, 41, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 5rem;
  --space-2xl: 12rem;

  --max-w: 1280px;
  --pad: clamp(1.5rem, 5vw, 4rem);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 1.5rem var(--pad);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, transform 0.4s ease;
}

/* Mobile: slide the nav out of view when scrolling down */
.nav.nav--hidden {
  transform: translateY(-100%);
}

.nav.scrolled {
  background: rgba(246, 244, 239, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
}

.nav__logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav__logo.visible {
  opacity: 1;
  pointer-events: auto;
}


.nav__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.nav__links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 2rem;
  position: relative;
}

.nav__lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0;
  transition: color 0.3s, font-weight 0.3s;
  position: relative;
  z-index: 1;
}

/* Selected language reads bolder and darker */
.nav__lang-btn.active {
  color: var(--text);
  font-weight: 400;
}

.nav__lang-btn:hover {
  color: var(--text);
}

.nav__lang-sep {
  font-size: 0.7rem;
  color: var(--border);
}

.nav__cta {
  margin-left: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav__cta:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 1.5rem;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 0;
  overflow: clip;
  overflow-clip-margin: 0;
}

/* Hero content sits in a centered max-width column (matches subpages) */
.hero__top,
.hero__middle,
.hero__bottom {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Sections scroll over the pinned hero */
.manifesto, .approach, .sectors, .work, .contact, .footer {
  position: relative;
  z-index: 2;
}

.manifesto, .approach, .work, .contact {
  background: var(--bg);
}

/* On subpages there is no pinned hero to cover, so let the ambient
   page glow show through behind the contact card instead of being
   cut off by an opaque section background. */
body:not(.page-home) .contact {
  background: transparent;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  pointer-events: none;
  z-index: 0;
}

.hero__gradient-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* Terracotta — bottom-right corner, large */
.hero__gradient-blob--1 {
  width: 92vw;
  height: 92vw;
  background: radial-gradient(circle, rgba(140, 92, 87, 0.42) 0%, transparent 65%);
  bottom: -30vw;
  right: -16vw;
  animation: blob1 5s ease-in-out infinite;
}

/* Sky blue-grey — top-right corner */
.hero__gradient-blob--2 {
  width: 68vw;
  height: 68vw;
  background: radial-gradient(circle, rgba(173, 181, 189, 0.38) 0%, transparent 65%);
  top: -22vw;
  right: -10vw;
  animation: blob2 3.8s ease-in-out infinite;
  animation-delay: -2.5s;
}

/* Terracotta — left edge */
.hero__gradient-blob--3 {
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(140, 92, 87, 0.25) 0%, transparent 65%);
  top: 26%;
  left: -14%;
  animation: blob3 3.2s ease-in-out infinite;
  animation-delay: -1.5s;
}

/* Sky blue — small accent, top-right extreme */
.hero__gradient-blob--4 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(150, 194, 228, 0.32) 0%, transparent 62%);
  top: 6%;
  right: 4%;
  animation: blob4 4.2s ease-in-out infinite;
  animation-delay: -3s;
}

/* Sky blue — larger, bottom-left extreme */
.hero__gradient-blob--5 {
  width: 44vw;
  height: 44vw;
  background: radial-gradient(circle, rgba(150, 194, 228, 0.26) 0%, transparent 64%);
  bottom: -12vw;
  left: -12%;
  animation: blob5 4.6s ease-in-out infinite;
  animation-delay: -1s;
}

/* Terracotta — lower-centre, kept away from the top-left logo */
.hero__gradient-blob--6 {
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, rgba(140, 92, 87, 0.3) 0%, transparent 64%);
  bottom: -18vw;
  left: 32%;
  animation: blob6 4s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes blob1 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-8vw, -10vw) scale(1.1); }
  70%  { transform: translate(5vw, -6vw) scale(0.93); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes blob2 {
  0%   { transform: translate(0, 0) scale(1); }
  35%  { transform: translate(-5vw, 8vw) scale(1.12); }
  65%  { transform: translate(7vw, 4vw) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes blob3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(6vw, -5vw) scale(1.15); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes blob4 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-9vw, 7vw) scale(1.18); }
  70%  { transform: translate(4vw, 10vw) scale(0.88); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes blob5 {
  0%   { transform: translate(0, 0) scale(1); }
  45%  { transform: translate(10vw, -8vw) scale(1.12); }
  75%  { transform: translate(-3vw, -4vw) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes blob6 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(8vw, 9vw) scale(1.14); }
  70%  { transform: translate(3vw, 4vw) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

.hero__top,
.hero__middle,
.hero__bottom {
  position: relative;
  z-index: 1;
}

.hero__top {
  padding-top: 1.5rem; /* aligns logo with nav links */
}

.hero__logo {
  height: clamp(36px, 6vw, 72px);
  width: auto;
  display: block;
  will-change: height, top;
  transition: transform 0.4s ease;
}

.hero__middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}

.hero__cp {
  height: clamp(60px, 10vw, 120px);
  width: auto;
  display: block;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
  padding-bottom: clamp(3rem, 12vh, 9rem);
}

.hero__desc {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.9vw, 1.75rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 520px;
}

.hero__desc em {
  font-style: normal;
  color: var(--accent);
}

.hero__locations {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero__explore {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s;
}

.hero__explore:hover {
  color: var(--text);
}


/* ─── MANIFESTO ───────────────────────────────────── */
.manifesto {
  padding: var(--space-xl) var(--pad);

  width: 100%;
}

.manifesto__label,
.sectors__label,
.approach__label,
.work__label,
.contact__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.manifesto__label::before,
.sectors__label::before,
.approach__label::before,
.work__label::before,
.contact__label::before {
  display: none;
}

.manifesto__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.manifesto__headline em {
  font-style: normal;
  color: var(--accent);
}

.manifesto__text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
}

.manifesto__text p + p {
  margin-top: var(--space-sm);
}

.manifesto__pills {
  display: flex;
  gap: 0.6rem;
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.manifesto__pills span {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.manifesto__pills span:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ─── SECTORS ─────────────────────────────────────── */
.sectors {
  padding: 7rem var(--pad);

  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}


.sectors__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.sectors__list li {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  padding: var(--space-sm) var(--space-md) var(--space-sm) 0;
  color: var(--text-muted);
  cursor: default;
  transition: color 0.3s;
  position: relative;
}

.sectors__list li::after {
  content: ' ·';
  color: var(--border);
  margin-left: 0.3em;
}

.sectors__list li:last-child::after {
  display: none;
}

.sectors__break {
  flex-basis: 100%;
  height: 0;
  padding: 0 !important;
  pointer-events: none;
}

.sectors__break::after {
  display: none !important;
}

.sectors__list li:hover {
  color: var(--text);
}

/* ─── APPROACH ────────────────────────────────────── */
.approach {
  padding: var(--space-xl) var(--pad);

  width: 100%;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.approach__item {
  padding: 2.25rem 2rem;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease, border-color 0.4s ease;
}

.approach__item:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.55);
}

.approach__item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  border: 1px solid;
  border-image: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.32), transparent) 1;
  pointer-events: none;
  padding: 1px;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.approach__num {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.75rem;
}

.approach__item h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.approach__item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── WORK ────────────────────────────────────────── */
.work {
  padding: var(--space-xl) var(--pad) 0;

  width: 100%;
}

.work__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.work__header .work__label {
  margin-bottom: 0;
}

.work__link {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text-muted);
  transition: color 0.2s;
}

.work__link:hover {
  color: var(--text);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.work__item {
  background: var(--bg-alt);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.work__img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: rgba(140, 92, 87, 0.08);
}

.work__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work__item:hover .work__img {
  transform: scale(1.03);
}

.work__meta {
  padding: var(--space-sm) var(--space-sm) var(--space-md);
}

.work__category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

.work__meta h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
}

.work__item:hover .work__meta h3 {
  color: var(--text);
}

/* ─── CONTACT ─────────────────────────────────────── */
.contact {
  padding: var(--space-xl) var(--pad);

  width: 100%;
}

.contact__card {
  background: #cdd8e3;
  color: #1a2226;
  position: relative;
  z-index: 2;
  border-radius: 4px;
  border: none;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: var(--space-md);
  align-items: start;
  min-height: 480px;
}

.contact__card .contact__label {
  color: rgba(26, 34, 38, 0.5);
  background: none;
  grid-column: 1;
  grid-row: 1;
}

.contact__card .contact__label::before {
  background: rgba(26, 34, 38, 0.35);
}

.contact__info {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact__info a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(26, 34, 38, 0.6);
  transition: color 0.2s;
}

.contact__info a:hover {
  color: #1a2226;
}

.contact__info span {
  font-size: 0.75rem;
  color: rgba(26, 34, 38, 0.4);
}

.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.contact__headline em {
  font-style: normal;
  font-weight: 300;
  color: rgba(26, 34, 38, 0.22);
  transition: color 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact__card.inked .contact__headline em {
  color: rgba(26, 34, 38, 0.55);
}

.contact__sub {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: -0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(26, 34, 38, 0.65);
  max-width: 34ch;
}

.contact__btn {
  grid-column: 1;
  grid-row: 3;
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(26, 34, 38, 0.3);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  color: #1a2226;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
  align-self: end;
}

.contact__btn:hover {
  background: #1a2226;
  color: #adb5bd;
}

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  background-color: #2e0209;
  background-image: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(139, 20, 40, 0.35) 0%, transparent 70%);
  color: rgba(255, 255, 240, 0.9);
  width: 100%;
}

.footer__inner {
  max-width: calc(var(--max-w) + var(--pad) * 2);
  margin: 0 auto;
  padding: var(--space-xl) var(--pad) var(--space-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  align-items: start;
}

.footer__logo {
  display: flex;
  align-items: flex-start;
}

.footer__logo img {
  height: 22px;
  width: auto;
  display: block;
}

.footer__nav {
  display: flex;
}

.footer__nav-col {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav-col a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 240, 0.55);
  transition: color 0.2s;
}

.footer__nav-col a:hover {
  color: rgba(255, 255, 240, 1);
}


.footer__col-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 240, 0.35);
  margin-bottom: 0.75rem;
}
.footer__col-label--link {
  transition: color 0.2s;
}
.footer__col-label--link:hover {
  color: rgba(255, 255, 240, 0.8);
}

.footer__col p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 240, 0.65);
}

.footer__col a {
  color: rgba(255, 255, 240, 0.65);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: rgba(255, 255, 240, 1);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 240, 0.35);
  letter-spacing: 0.04em;
}

.footer__locations {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 240, 0.35);
}

/* ─── CURSOR GLOW ─────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 14, 11, 0.03) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 90;
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* ─── FADE-IN ANIMATION ───────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Hover lift must win over .fade-in.visible's `transform: none` above.
   Same lift as the gallery images: gentle 6px rise, no scaling. */
.approach__item:hover,
.approach__item.fade-in.visible:hover {
  transform: translateY(-6px);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .manifesto__body {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .approach__grid {
    grid-template-columns: 1fr;
  }

  .work__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  /* Email is already in the footer — keep the mobile card uncluttered */
  .contact__info {
    display: none;
  }

  .contact__headline {
    grid-row: 1;
  }

  .contact__sub {
    grid-row: 2;
    margin-top: 0;
    max-width: none;
  }

  .contact__btn {
    grid-row: 3;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-sm);
  }

  .footer {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: left;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* ─── LIGHTBOX ─────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(246, 244, 239, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__figure {
  margin: 0;
  text-align: center;
  max-width: 80vw;
}

.lightbox__img {
  max-height: 78vh;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(41, 41, 41, 0.18);
}

.lightbox__caption {
  margin-top: 1.5rem;
}

.lightbox__category {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.lightbox__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 1.5rem;
  font-weight: 300;
  font-family: var(--font-body);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  transition: opacity 0.2s;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.2rem;
  font-weight: 100;
  font-family: var(--font-body);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 1rem;
  line-height: 1;
  transition: opacity 0.2s;
}

.lightbox__arrow--prev { left: 2rem; }
.lightbox__arrow--next { right: 2rem; }

.lightbox__close:hover,
.lightbox__arrow:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .lightbox__arrow--prev { left: 0.5rem; }
  .lightbox__arrow--next { right: 0.5rem; }
  .lightbox__figure { max-width: 88vw; }
}




/* ─── FOOTER NEWSLETTER ────────────────────────────── */
.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__newsletter-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 240, 0.3);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 240, 0.9);
  outline: none;
  transition: border-color 0.2s;
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 240, 0.4);
}

.footer__newsletter-input:focus {
  border-color: rgba(255, 255, 240, 0.7);
}

.footer__newsletter-btn {
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(255, 255, 240, 0.5);
  color: rgba(255, 255, 240, 0.9);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: none;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.footer__newsletter-btn:hover {
  background: rgba(255, 255, 240, 0.95);
  color: #3d0e0b;
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

/* ─── HERO STATEMENT (DADA-style) ──────────────────── */
.hero__statement {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}

.hero__statement em {
  font-style: normal;
  color: var(--accent);
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  line-height: 1.9;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 360px;
  text-align: right;
  margin: 0;
  /* Wrap naturally, but never strand a single word on its own line */
  text-wrap: pretty;
}

/* ─── SECTORS PREVIEW ──────────────────────────────── */
.sectors__inner {
  padding-right: clamp(280px, 30vw, 460px);
}

.sectors__preview {
  position: absolute;
  top: 50%;
  right: var(--pad);
  transform: translateY(-50%);
  width: clamp(260px, 28vw, 420px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(140, 92, 87, 0.08);
  border-radius: 4px;
}

.sectors__preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.sectors__list li[data-img] {
  cursor: pointer;
  transition: color 0.3s;
}

.sectors__list li[data-img]:hover,
.sectors__list li[data-img].active {
  color: var(--accent);
}

@media (max-width: 768px) {
  .sectors__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .sectors__preview {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
  }
  .sectors__inner {
    padding-right: 0;
  }
  .sectors__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1rem;
    margin-bottom: 2.5rem;
  }
  .sectors__list li {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
    white-space: nowrap;
    padding: 0.6rem 0;
  }
  .sectors__list li::after {
    display: none;
  }
  .sectors__break {
    display: none;
  }
}

/* ─── MAGNETIC CONTACT BUTTON ──────────────────────── */
.contact__btn {
  transition: transform 0.25s ease, background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}

.contact__btn:hover {
  background: #1a2226;
  color: var(--bg);
  border-color: #1a2226;
}

/* ─── ACTIVE NAV PAGE INDICATOR ────────────────────── */
.nav__links a.is-active {
  color: var(--text);
  font-weight: 400;
}


/* ─── FOOTER INSTAGRAM ICON ────────────────────────── */
.footer__ig {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer__ig a {
  display: inline-flex;
  color: rgba(255, 255, 240, 0.65);
  transition: color 0.2s;
}
.footer__ig a:hover {
  color: rgba(255, 255, 240, 1);
}

/* ─── ABOUT PAGE BACKGROUND GLOW ───────────────────── */
.page-glow {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.page-glow .hero__gradient-blob--1 {
  animation-duration: 18s;
}
.page-glow .hero__gradient-blob--2 {
  animation-duration: 14s;
}
.page-glow .hero__gradient-blob--3 {
  animation-duration: 11s;
}

.about {
  position: relative;
  z-index: 1;
}


/* About page: let the glow show through the Our Difference section */
.about .approach {
  background: transparent;
}

/* ─── COLLABORATIONS ───────────────────────────────── */
.collab {
  padding: 5rem var(--pad) 8rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* On the homepage the collab section scrolls over the pinned hero,
   so it needs a solid background to cover it. The section is a centered
   max-width box, so a full-bleed pseudo paints the beige edge-to-edge. */
.page-home .collab::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: var(--bg);
  z-index: -1;
}

/* Match the top and bottom breathing room. The contact section below
   already adds 5rem of its own top padding, so 3rem here + that = 8rem,
   mirroring the 8rem above. */
.page-home .collab {
  padding-top: 8rem;
  padding-bottom: 3rem;
}

.collab__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.collab__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.collab__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15em 0;
  line-height: 1.5;
}

.collab__list li {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  cursor: default;
  transition: color 0.3s;
  white-space: nowrap;
}

.collab__list li:not(:last-child)::after {
  content: '·';
  color: var(--border);
  margin: 0 0.5em;
}

.collab__list li[data-img]:hover,
.collab__list li.active {
  color: var(--accent);
}

.collab__preview {
  position: sticky;
  top: 120px;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(140, 92, 87, 0.08);
  border-radius: 4px;
}

.collab__preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.6s ease;
}

@media (max-width: 768px) {
  .collab__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .collab__preview {
    position: relative;
    top: auto;
    order: -1;
  }
}


/* Footer brand block (logo + description) */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 320px;
}
.footer__brand-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 240, 0.65);
}


/* ─── CONTACT CARD MOVING BLOBS ────────────────────── */
.contact__blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.contact__card > .contact__info,
.contact__card > .contact__headline,
.contact__card > .contact__btn {
  position: relative;
  z-index: 2;
}

.contact__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  will-change: transform;
  opacity: 0.9;
}

/* Sky blue — top left */
.contact__blob--1 {
  width: 68%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(90, 165, 210, 0.9) 0%, transparent 68%);
  top: -18%;
  left: -14%;
  animation: cblob1 4.5s ease-in-out infinite;
}

/* Sky blue light — right */
.contact__blob--2 {
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(150, 200, 230, 0.85) 0%, transparent 68%);
  top: 10%;
  right: -16%;
  animation: cblob2 3.6s ease-in-out infinite;
  animation-delay: -1.2s;
}

/* Light green — bottom center */
.contact__blob--3 {
  width: 66%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200, 206, 197, 0.78) 0%, transparent 66%);
  bottom: -24%;
  left: 18%;
  animation: cblob3 3s ease-in-out infinite;
  animation-delay: -0.6s;
}

/* Light beige — top right */
.contact__blob--4 {
  width: 52%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(228, 220, 200, 0.9) 0%, transparent 66%);
  top: -12%;
  right: 14%;
  animation: cblob4 3.9s ease-in-out infinite;
  animation-delay: -2s;
}

/* Soft green — left mid */
.contact__blob--5 {
  width: 46%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(204, 208, 202, 0.76) 0%, transparent 66%);
  bottom: 6%;
  left: -10%;
  animation: cblob5 3.3s ease-in-out infinite;
  animation-delay: -1.5s;
}

/* Grain overlay — sits above blobs, below text */
.contact__card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes cblob1 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(35%, 30%) scale(1.2); }
  70%  { transform: translate(18%, 48%) scale(0.85); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes cblob2 {
  0%   { transform: translate(0, 0) scale(1); }
  35%  { transform: translate(-30%, 25%) scale(1.25); }
  65%  { transform: translate(-48%, -12%) scale(0.85); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes cblob3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-24%, -38%) scale(1.2); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes cblob4 {
  0%   { transform: translate(0, 0) scale(1); }
  45%  { transform: translate(-30%, 40%) scale(1.15); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes cblob5 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40%, -25%) scale(1.2); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ─── LIQUID GLASS CTAs ─────────────────────────────── */
.nav__cta,
.contact__btn,
.footer__newsletter-btn {
  position: relative;
  overflow: hidden;
  border: none;
  -webkit-backdrop-filter: blur(6px) saturate(160%);
  backdrop-filter: blur(6px) saturate(160%);
  isolation: isolate;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

/* Liquid rim — bright specular edge all around, no drop shadow */
.nav__cta::before,
.contact__btn::before,
.footer__newsletter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0) 48%,
    rgba(255, 255, 255, 0.1) 68%,
    rgba(255, 255, 255, 0.75) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* Nav Contact — glass on the light beige page */
.nav__cta {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6),
    inset 0 -6px 12px rgba(255, 255, 255, 0.12);
}
.nav__cta:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--text);
}

/* Contact card button — glass on the blue card */
.contact__btn {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.65),
    inset 0 -6px 12px rgba(255, 255, 255, 0.14);
}
.contact__btn:hover {
  background: rgba(255, 255, 255, 0.26);
  color: #1a2226;
}

/* Newsletter Subscribe — glass on the deep-red footer */
.footer__newsletter-btn {
  background: rgba(255, 255, 240, 0.04);
  box-shadow: inset 0 1px 2px rgba(255, 255, 240, 0.3),
    inset 0 -6px 12px rgba(255, 255, 240, 0.06);
}
.footer__newsletter-btn:hover {
  background: rgba(255, 255, 240, 0.14);
  color: rgba(255, 255, 240, 0.95);
}

/* ─── MOBILE MENU ───────────────────────────────────── */
body.menu-lock {
  overflow: hidden;
}

/* Menu-only links (Homepage, Contact) hidden except in the open menu */
.nav__menu-only {
  display: none;
}

/* Blob backdrop + Instagram exist only inside the open mobile menu */
.menu-blobs,
.menu-social {
  display: none;
}

@media (max-width: 900px) {
  .nav.menu-open {
    background: #2e0209;
  }
  .nav.menu-open .nav__links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    z-index: 90;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    overflow: hidden;
    background-color: #2e0209;
    background-image: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(139, 20, 40, 0.35) 0%, transparent 70%);
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  /* Moving blobs behind the menu links (homepage-style, dark reds) */
  .nav.menu-open .menu-blobs {
    display: block;
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  .menu-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
    filter: blur(8px);
  }
  .menu-blob--1 {
    width: 125vw;
    height: 125vw;
    background: radial-gradient(circle, rgba(139, 20, 40, 0.55) 0%, transparent 65%);
    bottom: -40vw;
    right: -20vw;
    animation: blob1 3.4s ease-in-out infinite;
  }
  .menu-blob--2 {
    width: 95vw;
    height: 95vw;
    background: radial-gradient(circle, rgba(90, 8, 22, 0.75) 0%, transparent 65%);
    top: -28vw;
    left: -18vw;
    animation: blob2 2.7s ease-in-out infinite;
    animation-delay: -1.3s;
  }
  .menu-blob--3 {
    width: 78vw;
    height: 78vw;
    background: radial-gradient(circle, rgba(168, 40, 60, 0.4) 0%, transparent 65%);
    top: 30%;
    left: 14%;
    animation: blob3 2.1s ease-in-out infinite;
    animation-delay: -0.8s;
  }
  /* Faint beige blob for contrast */
  .menu-blob--4 {
    width: 64vw;
    height: 64vw;
    background: radial-gradient(circle, rgba(246, 244, 239, 0.10) 0%, transparent 65%);
    bottom: 4%;
    left: -12vw;
    animation: blob2 3.8s ease-in-out infinite;
    animation-delay: -2s;
  }
  .nav.menu-open .nav__links > li {
    position: relative;
    z-index: 1;
  }
  /* Instagram sits just under the Contact link */
  .nav.menu-open .menu-social {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
    z-index: 1;
  }
  .menu-social a {
    color: rgba(255, 255, 240, 0.75);
    display: inline-flex;
    transition: color 0.2s;
  }
  .menu-social a:hover {
    color: rgba(255, 255, 240, 1);
  }
  .nav.menu-open .nav__links a {
    color: rgba(255, 255, 240, 0.9);
  }
  .nav.menu-open .nav__links a:hover {
    color: #fff;
  }
  .nav.menu-open .nav__menu-only {
    display: block;
  }
  /* Burger morphs to an X */
  .nav__burger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .nav.menu-open .nav__burger {
    position: fixed;
    right: var(--pad);
    top: 1.75rem;
    z-index: 91;
  }
  .nav.menu-open .nav__burger span {
    background: rgba(255, 255, 240, 0.9);
  }
  .nav.menu-open .nav__burger span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .nav.menu-open .nav__burger span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
}

/* ─── COOKIE CONSENT ────────────────────────────────── */
.cookie {
  position: fixed;
  left: var(--pad);
  right: var(--pad);
  bottom: 1.25rem;
  z-index: 200;
  max-width: 560px;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    0 14px 44px rgba(41, 41, 41, 0.1);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(180%);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cookie.visible {
  transform: none;
}
.cookie__text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.cookie__text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.cookie__btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cookie__btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.cookie__btn--ghost:hover {
  background: var(--bg-alt);
  border-color: rgba(41, 41, 41, 0.25);
}
.cookie__btn--solid {
  background: var(--text);
  border: 1px solid var(--text);
  color: var(--bg);
}
.cookie__btn--solid:hover {
  background: #000;
  border-color: #000;
}
@media (max-width: 600px) {
  .cookie {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.1rem 1.25rem;
  }
  .cookie__actions {
    justify-content: stretch;
  }
  .cookie__btn {
    flex: 1;
  }
}

/* ─── NEWSLETTER SUCCESS BUBBLE ─────────────────────── */
.footer__col--newsletter {
  position: relative;
}
.footer__toast {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: 0.85rem;
  max-width: 300px;
  padding: 0.85rem 1.15rem;
  border-radius: 18px 18px 18px 5px;
  background: rgba(246, 244, 239, 0.9);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(41, 41, 41, 0.1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom left;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.footer__toast.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.footer__toast--form {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__toast-msg {
  margin: 0;
}
.footer__toast-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__toast-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(41, 41, 41, 0.18);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text);
  outline: none;
}
.footer__toast-input::placeholder {
  color: var(--text-muted);
}
.footer__toast-btn {
  align-self: flex-start;
  background: var(--text);
  border: none;
  border-radius: 100px;
  padding: 0.45rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--bg);
  cursor: pointer;
  transition: background 0.2s;
}
.footer__toast-btn:hover {
  background: #000;
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
  .footer__locations {
    order: -1;
  }
}

/* ─── "MORE INFO" CTA (homepage approach) ───────────── */
.approach__more {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}
.approach__more-link {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text);
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
}

/* "More info" — same liquid glass as the nav Contact button */
.approach__more-link {
  position: relative;
  overflow: hidden;
  border: none;
  -webkit-backdrop-filter: blur(6px) saturate(160%);
  backdrop-filter: blur(6px) saturate(160%);
  isolation: isolate;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    inset 0 -6px 12px rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.approach__more-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0) 48%,
    rgba(255, 255, 255, 0.1) 68%,
    rgba(255, 255, 255, 0.75) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.approach__more-link:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--text);
}

/* ─── CONTACT MODAL (liquid glass) ──────────────────── */
body.cmodal-lock { overflow: hidden; }
.cmodal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
}
.cmodal.open { display: flex; }
.cmodal__backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
}
.cmodal__panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    0 24px 60px rgba(41, 41, 41, 0.14);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.4s ease;
}
/* Liquid-glass rim on the bubble */
.cmodal__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.06) 32%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.05) 68%,
    rgba(255, 255, 255, 0.32) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.cmodal__panel > * {
  position: relative;
  z-index: 1;
}
.cmodal.open .cmodal__panel {
  transform: none;
  opacity: 1;
}
.cmodal__close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.cmodal__close:hover { color: var(--text); }
.cmodal__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.cmodal__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cmodal__row {
  display: flex;
  gap: 0.85rem;
}
.cmodal__form input,
.cmodal__form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(41, 41, 41, 0.15);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.cmodal__form input:focus,
.cmodal__form textarea:focus {
  border-color: rgba(41, 41, 41, 0.4);
  background: rgba(255, 255, 255, 0.6);
}
.cmodal__form textarea {
  resize: vertical;
  min-height: 120px;
}
.cmodal__form ::placeholder { color: var(--text-muted); }
/* Mobile: 16px min font-size stops iOS Safari from auto-zooming on focus.
   Applies to every text field on the site. */
@media (max-width: 768px) {
  .cmodal__form input,
  .cmodal__form textarea,
  .footer__newsletter-input,
  .footer__toast-input {
    font-size: 16px;
  }
}
.cmodal__send {
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  margin-top: 0.5rem;
  border: none;
  border-radius: 100px;
  padding: 0.72rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text);
  cursor: pointer;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(6px) saturate(160%);
  backdrop-filter: blur(6px) saturate(160%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.7),
    inset 0 -6px 12px rgba(255, 255, 255, 0.14);
  transition: background 0.3s ease;
}
.cmodal__send::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0) 48%,
    rgba(255, 255, 255, 0.1) 68%,
    rgba(255, 255, 255, 0.75) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.cmodal__send:hover { background: rgba(255, 255, 255, 0.28); }
.cmodal__send:disabled { opacity: 0.5; cursor: default; }
.cmodal__done {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
}

.cmodal__error {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--accent);
}
.cmodal__error a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
