/* ------------------------------------------------------------
   eagle. — agence de communication — Provence & Méditerranée
   ------------------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Caveat:wght@500;600&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root{
  --bg: #eef1f3;
  --bg-alt: #e4e8eb;
  --ink: #1c1620;
  --primary: #35012c;
  --primary-soft: #5a2350;
  --secondary: #79758f;
  --line: rgba(53,1,44,0.14);
  --white: #ffffff;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-hand: 'Caveat', cursive;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --gap: clamp(1.5rem, 4vw, 4rem);
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.is-ready{ opacity: 1; }

/* film-grain texture — adds tactile, editorial depth to flat colour fields */
body::before{
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

img{ max-width: 100%; display: block; }

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

.wrap{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gap);
}

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--primary);
}

h1{ font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 0.98; }
h2{ font-size: clamp(1.9rem, 4.2vw, 3.1rem); line-height: 1.02; }
h3{ font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

.eyebrow{
  font-family: var(--font-hand);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--secondary);
  display: block;
  margin-bottom: 0.4rem;
}

p{ margin: 0 0 1rem; max-width: 60ch; }
p:last-child{ margin-bottom: 0; }

.lede{
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--primary-soft);
  font-weight: 300;
}

/* ---------- header ---------- */

.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-solid{
  background: rgba(238,241,243,0.92);
  backdrop-filter: blur(8px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--line);
}

.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand{
  display: flex;
  align-items: center;
}

.brand img{ height: 30px; width: auto; }

.brand .logo-dark{ display: none; }

.site-header.is-solid .logo-light,
body.page-light .logo-light{ display: none; }
.site-header.is-solid .logo-dark,
body.page-light .logo-dark{ display: block; }

nav.main-nav{
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}

nav.main-nav a{
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

nav.main-nav a .num{ display: none; }

.site-header.is-solid nav.main-nav a,
body.page-light nav.main-nav a{ color: var(--primary); }

nav.main-nav a::after{
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.4s cubic-bezier(.16,1,.3,1);
}

nav.main-nav a:hover::after,
nav.main-nav a.is-active::after{ right: 0; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  position: relative;
  z-index: 120;
}
.nav-toggle span{
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: background 0.3s ease, transform 0.35s ease, opacity 0.25s ease;
}
.site-header.is-solid .nav-toggle span,
body.page-light .nav-toggle span{ background: var(--primary); }

.nav-toggle.is-active span{ background: var(--white) !important; }
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity: 0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  color: var(--white);
}

.hero img{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

.hero::before{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,22,24,0.55) 0%, rgba(15,22,24,0.15) 42%, rgba(12,10,10,0.12) 58%, rgba(10,8,8,0.55) 100%);
}

.hero-content{
  position: relative;
  z-index: 2;
  padding: clamp(7.5rem, 17vw, 11.5rem) var(--gap) 0;
  width: 100%;
}

/* on landscape/desktop viewports, object-fit:cover shows mostly sky —
   push the text down so it sits right above the pergola roofline instead
   of floating in empty sky */
@media (min-width: 900px) and (min-aspect-ratio: 1/1){
  .hero-content{
    padding-top: clamp(12rem, calc(43vw + 12vh - 420px), 34rem);
  }
}

.hero-content h1{ color: var(--white); }

.hero-content .eyebrow{
  color: #d9cfe0;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.hero-content .hero-lede{ margin-top: 0; }

.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero-scroll{
  position: absolute;
  right: var(--gap);
  bottom: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
}

/* ---------- page hero (inner pages) ---------- */

.page-hero{
  padding: clamp(8rem, 16vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}

/* ---------- sections ---------- */

section{ padding: clamp(4rem, 9vw, 7rem) 0; }

.section-head{
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 46rem;
}

.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- univers / portfolio grid ---------- */

.univers-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.univers-item{
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  grid-column: span 6;
  aspect-ratio: 4 / 5;
}

.univers-item.wide{ grid-column: span 12; aspect-ratio: 16 / 8; }

.univers-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1), filter 0.6s ease;
  filter: saturate(1) grayscale(0);
}

.univers-item:hover img{ transform: scale(1.06); }

.univers-item .tag{
  position: absolute;
  left: 1.2rem; bottom: 1.1rem;
  z-index: 3;
  color: var(--white);
  font-family: var(--font-hand);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.univers-item .tag .view{
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #d9cfe0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.univers-item:hover .tag .view{ opacity: 1; transform: translateX(0); }

.univers-item::after{
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(28,22,32,0) 55%, rgba(28,22,32,0.55) 100%);
  transition: background 0.5s ease;
}

.univers-item::before{
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background: var(--primary);
  opacity: 0;
  mix-blend-mode: color;
  transition: opacity 0.5s ease;
}

.univers-item:hover::before{ opacity: 0.4; }

/* ---------- services list ---------- */

.services-list{
  border-top: 1px solid var(--line);
}

.service-row{
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1), padding-left 0.4s cubic-bezier(.16,1,.3,1);
}

.service-row:hover{ padding-left: 0.6rem; }

.service-row .index{
  font-family: var(--font-hand);
  color: var(--secondary);
  font-size: 1.3rem;
}

.service-row h3{ color: var(--primary); text-transform: lowercase; }

.service-row p{ color: var(--secondary); margin-top: 0.35rem; max-width: 40ch; }

.service-row .num-desc{ display: flex; flex-direction: column; }

.service-row .arrow{ display: none; }

/* ---------- quote ---------- */

.quote-section{
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.quote-section blockquote{
  margin: 0 auto;
  max-width: 92%;
  font-family: var(--font-hand);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
}

@media (min-width: 640px){
  .quote-section blockquote{
    white-space: nowrap;
    font-size: clamp(1.4rem, 3.4vw, 2.8rem);
  }
}

.quote-section cite{
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #cbb8c6;
}

/* ---------- two column ---------- */

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.split-media{
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 40px 80px -20px rgba(28,22,32,0.25);
}

.split img{
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}

.split-media:hover img{ transform: scale(1.05); }

.split.reverse .split-media{ order: -1; }

@media (max-width: 820px){
  .split{ grid-template-columns: 1fr; }
  .split.reverse .split-media{ order: 0; }
}

/* ---------- CTA band ---------- */

.cta-band{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.cta-band .eyebrow{ justify-content: center; display: flex; }

.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease, border-color 0.4s ease;
  will-change: transform;
}

.btn::before{
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 999px;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
  z-index: -1;
}

.btn:hover{ color: var(--white); }
.btn:hover::before{ transform: scale(1); }

.btn.btn-fill{ background: transparent; color: var(--white); }
.btn.btn-fill::before{ background: var(--primary); transform: scale(1); }
.btn.btn-fill:hover::before{ background: var(--primary-soft); }

.btn svg, .btn .arrow-glyph{
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.btn:hover svg, .btn:hover .arrow-glyph{ transform: translateX(4px); }

/* ---------- footer ---------- */

.site-footer{
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-top .brand img{ height: 34px; margin-bottom: 1rem; }

.footer-top p{ color: var(--secondary); font-size: 0.95rem; }

.footer-cols{ display: flex; gap: clamp(2.5rem, 6vw, 5rem); flex-wrap: wrap; }

.footer-col h4{
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 0.9rem;
}

.footer-col a, .footer-col span{
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: var(--primary);
}

.footer-col a:hover{ text-decoration: underline; }

.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--secondary);
}

.footer-watermark{
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 17vw, 11rem);
  line-height: 0.8;
  color: var(--primary);
  opacity: 0.05;
  text-align: center;
  margin: 0.5rem 0 2rem;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

/* ---------- about page ---------- */

.values-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.values-grid .num{
  font-family: var(--font-hand);
  color: var(--secondary);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.6rem;
}

.values-grid p{ color: var(--secondary); }

/* ---------- contact page ---------- */

.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gap);
}

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

.contact-detail{
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2rem;
}

.contact-detail a{ font-size: 1.05rem; }

.contact-detail .label{
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}

form.contact-form{
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.field{ display: flex; flex-direction: column; gap: 0.5rem; }

.field label{
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
}

.field input, .field textarea{
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease;
}

.field input:focus, .field textarea:focus{ border-color: var(--primary); }

.field textarea{ resize: vertical; min-height: 100px; }

form.contact-form .btn{
  align-self: flex-start;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
form.contact-form .btn:hover{ background: var(--primary-soft); }

/* ---------- utility / reveal ---------- */

[data-reveal]{
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0) scale(1); }

/* ---------- custom cursor (fine-pointer devices only) ---------- */

.cursor-dot, .cursor-ring{
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9500;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s cubic-bezier(.16,1,.3,1), height 0.3s cubic-bezier(.16,1,.3,1), background 0.3s ease, border-color 0.3s ease;
}

.cursor-dot{
  width: 6px; height: 6px;
  background: var(--primary);
  transform: translate(-50%, -50%);
}

.cursor-ring{
  width: 34px; height: 34px;
  border: 1px solid var(--primary-soft);
  transform: translate(-50%, -50%);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring{ opacity: 1; }

body.cursor-on-dark .cursor-ring{ border-color: var(--white); }
body.cursor-on-dark .cursor-dot{ background: var(--white); }

.cursor-ring.is-hover{ width: 60px; height: 60px; background: rgba(53,1,44,0.06); }
.cursor-ring.is-hover.is-image{ width: 84px; height: 84px; background: rgba(255,255,255,0.08); }

@media (hover: none), (pointer: coarse){
  .cursor-dot, .cursor-ring{ display: none; }
}

/* ---------- service hover preview (desktop) ---------- */

.service-preview{
  position: fixed;
  top: 0; left: 0;
  width: 230px;
  height: 290px;
  overflow: hidden;
  border-radius: 3px;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92) rotate(-2deg);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 30px 60px -10px rgba(28,22,32,0.35);
}

.service-preview.is-visible{ opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-2deg); }

.service-preview img{ width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px){
  .service-preview{ display: none; }
}

@media (max-width: 480px){
  .hero-content{ padding-top: clamp(5.5rem, 24vw, 8.5rem); }
  .hero-content .lede{ font-size: 1rem; }
}

@media (max-width: 720px){
  body.nav-is-open{ overflow: hidden; }

  nav.main-nav{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.1rem;
    padding: 2rem var(--gap);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  }
  nav.main-nav.is-open{ opacity: 1; visibility: visible; transition: opacity 0.4s ease; }

  nav.main-nav a{
    color: var(--white) !important;
    font-family: var(--font-display);
    font-size: 2.2rem;
    text-transform: lowercase;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0s;
  }
  nav.main-nav.is-open a{ opacity: 1; transform: translateY(0); }
  nav.main-nav.is-open a:nth-child(1){ transition-delay: 0.08s; }
  nav.main-nav.is-open a:nth-child(2){ transition-delay: 0.14s; }
  nav.main-nav.is-open a:nth-child(3){ transition-delay: 0.2s; }
  nav.main-nav.is-open a:nth-child(4){ transition-delay: 0.26s; }

  nav.main-nav a .num{
    display: inline-block;
    font-family: var(--font-hand);
    font-size: 1.1rem;
    color: #cbb8c6;
  }

  nav.main-nav a::after{ display: none; }

  .nav-toggle{ display: block; }

  .service-row{ grid-template-columns: 2.4rem 1fr; }
  .service-row .arrow{ display: none; }
}

/* ============================================================
   ONE-PAGE VARIANT
   ============================================================ */

body.onepage{ overflow-x: hidden; }

.op-nav-wrap{
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.2rem;
  box-shadow: 0 10px 30px rgba(28,22,32,0.14);
  max-width: calc(100vw - 1.5rem);
}

.op-nav-wrap .op-logo{
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary);
  margin-right: 0.6rem;
  white-space: nowrap;
}

.op-nav-wrap .op-links{ display: flex; gap: 0.2rem; }

.op-nav-wrap .op-links a{
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--primary);
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}

.op-nav-wrap .op-links a:hover,
.op-nav-wrap .op-links a.is-active{ background: var(--primary); color: var(--white); }

.op-nav-wrap .op-cta{
  background: var(--primary);
  color: var(--white);
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.op-nav-wrap .op-cta:hover{ background: var(--primary-soft); }

@media (max-width: 780px){
  .op-nav-wrap .op-links{ display: none; }
}

.op-hero{
  padding: clamp(7.5rem, 16vw, 10rem) var(--gap) clamp(3rem, 6vw, 4rem);
}

.op-hero h1{
  font-size: clamp(2.6rem, 8.4vw, 6.4rem);
  line-height: 0.95;
  max-width: 26ch;
}

.op-hero .op-sub{
  margin-top: 1.6rem;
  max-width: 40rem;
  font-family: var(--font-hand);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--primary-soft);
}

.op-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.op-strip-item{ position: relative; aspect-ratio: 3 / 4; overflow: hidden; }

.op-strip-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}

.op-strip-item:hover img{ transform: scale(1.05); }

@media (max-width: 760px){
  .op-strip{ grid-template-columns: repeat(2, 1fr); }
}

.op-statement{
  background: var(--primary);
  color: var(--white);
  padding: clamp(4.5rem, 11vw, 8rem) var(--gap);
  text-align: center;
}

.op-statement h2{
  color: var(--white);
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  max-width: 18ch;
  margin: 0 auto;
}

.op-statement p{
  color: #d9cfe0;
  max-width: 36rem;
  margin: 1.6rem auto 0;
  font-size: 1.05rem;
}

.op-statement .btn{ margin-top: 2.2rem; }

.op-services-dark{
  background: var(--primary);
  color: var(--white);
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.op-services-dark .section-head .eyebrow{ color: #cbb8d6; }
.op-services-dark .section-head h2{ color: var(--white); }
.op-services-dark .services-list{ border-top-color: rgba(255,255,255,0.18); }
.op-services-dark .service-row{ border-bottom-color: rgba(255,255,255,0.18); }
.op-services-dark .service-row h3{ color: var(--white); }
.op-services-dark .service-row p{ color: #cbb8d6; }
.op-services-dark .service-row .index{ color: #9d7fa8; }
.op-services-dark .service-row .arrow{ color: var(--white); }

.op-footer{
  background: var(--primary);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) var(--gap) 2rem;
}

.op-footer .op-wordmark{
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 15vw, 10rem);
  line-height: 0.85;
  color: var(--white);
  margin-bottom: 2.5rem;
  user-select: none;
}

.op-footer .footer-top{ border-bottom: 1px solid rgba(255,255,255,0.18); }
.op-footer .footer-top p{ color: #cbb8d6; }
.op-footer .footer-col h4{ color: #cbb8d6; }
.op-footer .footer-col a, .op-footer .footer-col span{ color: var(--white); }
.op-footer .footer-bottom{ border-top-color: rgba(255,255,255,0.18); color: #cbb8d6; }
.op-footer .brand img{ display: none; }

/* ============================================================
   GALLERY MODAL (per-universe photo grid)
   ============================================================ */

.univers-item[data-gallery]{ cursor: pointer; }

body.gallery-is-open{ overflow: hidden; }

.gallery-modal{
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.gallery-modal.is-open{
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease;
}

.gallery-modal-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 7rem) var(--gap) 5rem;
  min-height: 100svh;
}

.gallery-modal-label{ display: block; }

.gallery-modal-title{
  font-family: var(--font-display);
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: lowercase;
  margin: 0 0 2rem;
}

.gallery-close{
  position: fixed;
  top: 1.4rem; right: 1.4rem;
  z-index: 301;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.gallery-close:hover{ background: var(--primary); color: var(--white); transform: rotate(90deg); }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.8rem;
}

.gallery-grid figure{ margin: 0; overflow: hidden; border-radius: 2px; }

.gallery-grid img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}

.gallery-grid figure:hover img{ transform: scale(1.04); }

.gallery-single-view[hidden]{ display: none; }

.gallery-single-view{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  min-height: 75svh;
}

.gallery-single-img{
  max-width: min(78vw, 900px);
  max-height: 75svh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 40px 80px -20px rgba(28,22,32,0.3);
}

.gallery-nav{
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.gallery-nav:hover{ background: var(--primary); color: var(--white); }

.gallery-back{
  position: fixed;
  left: 1.5rem; bottom: 1.5rem;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-back:hover{ color: var(--primary); }

@media (max-width: 600px){
  .gallery-close{ top: 1rem; right: 1rem; }
  .gallery-back{ left: 1rem; bottom: 1rem; }
}
