/* ====================================================
   Clarity Marketing — editorial brand system
   ==================================================== */

:root {
  /* Warm editorial palette */
  --bg:           #faf6f0;   /* page base, very soft warm white */
  --beige:        #ece2d2;   /* warm beige sections */
  --taupe:        #b8a78e;   /* taupe accent */
  --cocoa:        #5a4a3a;   /* deep warm brown for text on beige */
  --ink:          #1a1612;   /* near-black with warmth */
  --ink-soft:     #3a322a;
  --muted:        #8a7e6e;
  --cream-line:   rgba(90,74,58,0.14);
  --accent:       #b8552b;   /* terracotta */

  --radius:    999px;
  --container: 1240px;
  --ease:      cubic-bezier(.22,.61,.36,1);

  --display: 'Italiana', 'Cormorant Garamond', Georgia, serif;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; }
.serif { font-family: var(--serif); }

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
  border: 0;
  font-family: var(--sans);
}
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: #2a221a; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--cream-line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: var(--bg); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); background: #fff; }

/* ----- Marquee (top, subtle) ----- */
.marquee {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  overflow: hidden;
  padding: 10px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 55s linear infinite;
}
.marquee__track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.marquee__sep {
  color: rgba(255,255,255,0.28);
  font-size: 10px !important;
  letter-spacing: 0 !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,246,240,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--cream-line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px 40px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.site-header__logo img {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.site-header__nav {
  justify-self: end;
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
.site-header__nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.site-header__nav a:hover,
.site-header__nav a.active { color: var(--ink); }
.site-header__nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.site-header__lang .lang-toggle {
  display: inline-block;
  border: 1px solid var(--cream-line);
  background: #fff;
  border-radius: var(--radius);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .2s var(--ease);
}
.site-header__lang .lang-toggle:hover { border-color: var(--ink); }

/* ====================================================
   HOME PAGE
   ==================================================== */

/* ----- Hero with video bg ----- */
.hero-video {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: 20vh;
  overflow: hidden;
  background: var(--beige);
}
.hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,15,10,0.15) 0%, rgba(20,15,10,0) 30%, rgba(20,15,10,0) 50%, rgba(20,15,10,0.65) 100%);
  z-index: 1;
}
.hero-video__content {
  position: relative;
  z-index: 2;
  padding: 0 56px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
.hero-video__tagline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 56px);
  color: #fff;
  max-width: 820px;
  margin: 0 0 40px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.reveal-line {
  opacity: 0;
  transform: translateY(40px);
  animation: lineUp 1.1s var(--ease) forwards;
}
@keyframes lineUp { to { opacity: 1; transform: translateY(0); } }

/* ----- Stats ----- */
.stats {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 40px;
  text-align: center;
}
.stats__heading {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  margin-bottom: 56px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.stats__num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(72px, 8vw, 112px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--cocoa);
}
.stats__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

/* ----- Editorial section (brushstroke + body) ----- */
.editorial {
  background: var(--beige);
  padding: 120px 40px;
}
.editorial__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.editorial__heading h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.05;
  color: var(--cocoa);
  letter-spacing: -0.01em;
  margin: 0;
  position: relative;
  z-index: 2;
}
.brushstroke {
  position: relative;
  display: inline-block;
  margin-right: 0.18em;
}
.brushstroke svg {
  position: absolute;
  left: -12%;
  top: 14%;
  width: 124%;
  height: 78%;
  z-index: 0;
  pointer-events: none;
}
.brushstroke__word {
  position: relative;
  z-index: 1;
}
.editorial__body p {
  color: var(--cocoa);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 16px;
}
.editorial__body .btn { margin-top: 16px; }

/* ----- Projects section (case study) ----- */
.projects {
  background: var(--bg);
  padding: 140px 40px 120px;
  max-width: var(--container);
  margin: 0 auto;
}
.projects__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 120px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--cocoa);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 80px;
}
.projects__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.projects__visual {
  border-radius: 18px;
  overflow: hidden;
  background: var(--beige);
}
.projects__visual img {
  width: 100%;
  height: auto;
  display: block;
}
.projects__copy h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cocoa);
  text-transform: uppercase;
  margin: 0;
}
.projects__quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 0 0;
  border-top: 1px solid var(--cream-line);
}
.projects__stars {
  color: #c8923c;
  letter-spacing: 6px;
  font-size: 18px;
  margin-bottom: 20px;
}
.projects__quote p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--cocoa);
  margin: 0 0 32px;
}
.projects__person { display: inline-flex; align-items: center; gap: 14px; }
.projects__person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.projects__name { font-weight: 600; font-size: 15px; }
.projects__role { font-size: 13px; color: var(--muted); }

/* ----- Services preview ----- */
.services {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px 120px;
}
.services__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--cocoa);
  text-align: center;
  margin-bottom: 72px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.service {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--cream-line);
}
.service:last-child { border-bottom: 0; }
.service__icon {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--beige);
  flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.service:hover .service__icon { transform: scale(1.04); }
.service__icon img { width: 100%; height: 100%; object-fit: cover; }
.service__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--cocoa);
}
.service__body p { color: var(--ink-soft); margin: 0; }
.services__cta { text-align: center; margin-top: 56px; }

/* ----- Testimonials ----- */
.testimonials {
  background: var(--taupe);
  color: var(--cocoa);
  padding: 120px 40px;
}
.testimonials__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: #2a221a;
  text-align: left;
  max-width: var(--container);
  margin: 0 auto 80px;
}
.testimonials__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.testimonial {
  padding: 0 32px;
  border-left: 1px solid rgba(42,34,26,0.18);
}
.testimonial:first-child { border-left: 0; padding-left: 0; }
.testimonial p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: #2a221a;
  margin: 0 0 32px;
}
.testimonial__author {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #2a221a;
}

/* ----- Bottom CTA (cushion + book) ----- */
.bottom-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}
.bottom-cta__image {
  background-size: cover;
  background-position: center;
  min-height: 360px;
}
.bottom-cta__copy {
  background: var(--beige);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 80px 40px;
  text-align: center;
}
.bottom-cta__copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: var(--cocoa);
  letter-spacing: -0.01em;
}
.bottom-cta__dots { display: flex; gap: 8px; }
.bottom-cta__dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--taupe);
  animation: dotPulse 1.4s infinite var(--ease);
}
.bottom-cta__dots span:nth-child(2) { animation-delay: .2s; }
.bottom-cta__dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dotPulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.3); }
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,167,142,0.18) 0%, transparent 65%),
    var(--beige);
  position: relative;
  padding: 96px 0 32px;
  border-top: 1px solid rgba(90,74,58,0.08);
}
.site-footer__content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.site-footer__top {
  text-align: center;
  margin-bottom: 72px;
}
.site-footer__accent {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.site-footer__brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--cocoa);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.site-footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin: 0;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  text-align: left;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(90,74,58,0.12);
}
.site-footer__col p { margin: 6px 0; font-size: 14px; color: var(--cocoa); }
.site-footer__col a:hover { text-decoration: underline; }
.site-footer__col-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cocoa);
  margin: 0 0 20px;
}
.site-footer__hours {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 0;
  font-size: 14px;
  color: var(--cocoa);
}
.site-footer__hours span { margin: 0; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.site-footer__made { font-style: italic; text-transform: none; letter-spacing: 0.01em; font-size: 13px; }
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cream-line);
  border-radius: 50%;
  color: var(--cocoa);
  background: transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.social-icon:hover {
  border-color: var(--cocoa);
  background: var(--cocoa);
  color: #fff;
  transform: translateY(-2px);
}

/* ====================================================
   SUB-PAGES (service, contact, work)
   ==================================================== */

.page-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 96px 40px 64px;
  text-align: center;
}
.page-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(184,85,43,0.1);
  color: var(--accent);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--cocoa);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-hero p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}
.page-hero--service { padding-bottom: 88px; }

/* Service page hero with silk video bg */
.page-hero--video {
  position: relative;
  max-width: none;
  padding: 140px 40px 120px;
  overflow: hidden;
  background: var(--beige);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250,246,240,0.55) 0%, rgba(250,246,240,0.92) 100%);
  z-index: 1;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

/* Section divider — three soft dots, terracotta center */
.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 56px 0;
}
.section-divider span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream-line);
}
.section-divider span:nth-child(2) {
  width: 8px;
  height: 8px;
  background: var(--accent);
}

/* Ghost numeral behind each service block */
.service-block { position: relative; overflow: hidden; }
.service-block__ghost {
  position: absolute;
  top: 24px;
  right: -10px;
  font-family: var(--display);
  font-size: clamp(180px, 22vw, 320px);
  line-height: 0.85;
  color: var(--cocoa);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
}
.service-block__head,
.service-block__grid { position: relative; z-index: 1; }

/* Featured result callout */
.featured-result {
  max-width: var(--container);
  margin: 16px auto;
  background: linear-gradient(135deg, var(--beige) 0%, #f0e6d4 100%);
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.featured-result::before {
  content: "";
  position: absolute;
  left: -60px; bottom: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(184,85,43,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.featured-result__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 56px;
  border-right: 1px solid rgba(90,74,58,0.18);
}
.featured-result__num {
  font-family: var(--display);
  font-size: clamp(72px, 8vw, 120px);
  line-height: 1;
  color: var(--cocoa);
  letter-spacing: -0.02em;
}
.featured-result__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}
.featured-result__quote { position: relative; }
.featured-result__quote p {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--cocoa);
  margin: 0 0 18px;
  font-style: italic;
}
.featured-result__person {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Value card icons */
.value__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,85,43,0.08);
  color: var(--accent);
  margin-bottom: 20px;
}
.value__icon svg {
  width: 28px;
  height: 28px;
}
.value { padding-top: 28px; }

/* Service blocks */
.service-blocks {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}
.service-block {
  padding: 88px 0;
  border-bottom: 1px solid var(--cream-line);
}
.service-block:last-child { border-bottom: 0; }
.service-block__head {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.service-block__num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
}
.service-block__head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cocoa);
  letter-spacing: 0.01em;
  margin: 0;
}
.service-block__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-block__desc p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 0 14px;
  line-height: 1.65;
}
.service-block__list-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-line);
}
.service-block__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-block__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink-soft);
}
.service-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Values */
.values {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px 96px;
}
.values__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  text-transform: uppercase;
  text-align: center;
  color: var(--cocoa);
  letter-spacing: 0.01em;
  margin-bottom: 56px;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value {
  padding: 32px 28px;
  border: 1px solid var(--cream-line);
  border-radius: 20px;
  background: #fff;
  transition: transform .35s var(--ease), border-color .25s var(--ease);
}
.value:hover { transform: translateY(-4px); border-color: var(--cocoa); }
.value h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--cocoa);
}
.value p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* FAQ */
.faq {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 40px 120px;
}
.faq__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  text-transform: uppercase;
  text-align: center;
  color: var(--cocoa);
  letter-spacing: 0.01em;
  margin-bottom: 48px;
}
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1px solid var(--cream-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq__item[open] { border-color: var(--cocoa); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 28px 8px;
  margin: 0;
  color: var(--ink-soft);
}
.faq__item p:last-child { padding-bottom: 24px; }
.faq__item ul {
  margin: 8px 0 16px;
  padding: 0 28px 0 50px;
  color: var(--ink-soft);
}
.faq__item ul li { padding: 4px 0; }

/* CTA banner (service page) */
.cta-banner {
  max-width: var(--container);
  margin: 0 auto 96px;
  padding: 0 40px;
}
.cta-banner__inner {
  background: linear-gradient(135deg, #1a1612 0%, #2c2218 100%);
  color: #fff;
  border-radius: 28px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(184,85,43,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  position: relative;
}
.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}
.cta-banner .btn--ghost {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.cta-banner .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Calendly inline embed */
.calendly {
  max-width: 880px;
  margin: 0 auto;
  padding: 16px 40px 64px;
}
.calendly__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: var(--cocoa);
  letter-spacing: -0.005em;
  margin: 0 0 12px;
  text-align: center;
}
.calendly__p {
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 32px;
}
.calendly-inline-widget {
  border: 1px solid var(--cream-line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

/* Contact form */
.contact {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 40px 120px;
  border-top: 1px solid var(--cream-line);
}
.contact__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  color: var(--cocoa);
  margin: 48px 0 8px;
  text-align: center;
}
.contact__p {
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 32px;
}
.contact__form { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.field em { font-style: normal; color: var(--muted); font-weight: 400; }
.field .req { color: var(--accent); margin-left: 2px; }
.field input,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--cream-line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--cocoa);
  box-shadow: 0 0 0 4px rgba(90,74,58,0.08);
}
.contact__form .btn { align-self: flex-start; margin-top: 8px; }

/* Empty page (tidligere arbejde) */
.empty-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 40px 160px;
  text-align: center;
}
.empty-page__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.empty-page h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cocoa);
  margin-bottom: 20px;
}
.empty-page p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 auto 40px;
  max-width: 540px;
}
.empty-page__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* 404 variant — oversized error code above the eyebrow */
.empty-page--404 .empty-page__code {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(120px, 22vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cocoa);
  opacity: 0.16;
  margin: 0 auto 12px;
  user-select: none;
}
.empty-page--404 h1 {
  font-size: clamp(32px, 4.4vw, 56px);
}

/* ====================================================
   SCROLL REVEAL
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ====================================================
   MOBILE
   ==================================================== */
@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; gap: 12px; padding: 12px 20px; }
  .site-header__nav { display: none; }

  .hero-video { min-height: 70vh; }
  .hero-video__content { padding: 0 24px 48px; }

  .stats { padding: 64px 20px; }
  .stats__grid { grid-template-columns: 1fr; gap: 40px; }

  .editorial { padding: 72px 20px; }
  .editorial__inner { grid-template-columns: 1fr; gap: 40px; }

  .projects { padding: 80px 20px 64px; }
  .projects__grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }

  .services { padding: 0 20px 64px; }
  .service { grid-template-columns: 1fr; gap: 16px; }
  .service__icon { width: 80px; height: 80px; }

  .testimonials { padding: 72px 20px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial { border-left: 0; padding: 0; border-top: 1px solid rgba(42,34,26,0.18); padding-top: 32px; }
  .testimonial:first-child { border-top: 0; padding-top: 0; }

  .bottom-cta { grid-template-columns: 1fr; }

  .site-footer { padding: 64px 0 24px; }
  .site-footer__content { padding: 0 20px; }
  .site-footer__top { margin-bottom: 48px; }
  .site-footer__cols { grid-template-columns: 1fr; gap: 32px; text-align: center; padding-bottom: 40px; }
  .site-footer__hours { justify-content: center; }
  .site-footer__social { justify-content: center; }
  .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; padding-top: 24px; }

  .page-hero { padding: 56px 20px 40px; }
  .page-hero--video { padding: 88px 20px 72px; }
  .section-divider { padding: 32px 0; }
  .featured-result {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 24px;
    margin: 8px 20px;
  }
  .featured-result__stat {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(90,74,58,0.18);
  }
  .service-block__ghost { font-size: 160px; right: -20px; }
  .service-blocks { padding: 0 20px; }
  .service-block { padding: 56px 0; }
  .service-block__grid { grid-template-columns: 1fr; gap: 32px; }
  .service-block__head { margin-bottom: 24px; gap: 16px; }
  .values { padding: 0 20px 64px; }
  .values__grid { grid-template-columns: 1fr; gap: 16px; }
  .faq { padding: 16px 20px 80px; }
  .contact { padding: 8px 20px 80px; }
  .empty-page { padding: 80px 20px 100px; }
  .cta-banner { padding: 0 20px; margin-bottom: 64px; }
  .cta-banner__inner { grid-template-columns: 1fr; padding: 40px 28px; gap: 24px; }
  .cta-banner__actions { justify-content: flex-start; }
}

/* ====================================================
   Cookie banner — bottom bar, minimal
   ==================================================== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  padding: 16px 20px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .35s var(--ease);
}
.cookie-banner.is-in { transform: translateY(0); opacity: 1; }
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
  flex: 1 1 320px;
}
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 10px 20px;
  font-size: 13px;
}
.cookie-banner__btn.btn--ghost {
  color: rgba(255,255,255,0.86);
  border-color: rgba(255,255,255,0.28);
}
.cookie-banner__btn.btn--ghost:hover { border-color: #fff; color: #fff; }
.cookie-banner__btn.btn--dark {
  background: var(--bg);
  color: var(--ink);
}
.cookie-banner__btn.btn--dark:hover { background: #fff; }

/* ====================================================
   Calendly CTA popup — modal with embedded Calendly
   ==================================================== */
.cta-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.cta-popup.is-in { opacity: 1; pointer-events: auto; }
.cta-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,22,18,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cta-popup__panel {
  position: relative;
  background: var(--bg);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.32);
  max-width: 760px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transform: translateY(16px) scale(0.98);
  transition: transform .45s var(--ease);
}
.cta-popup.is-in .cta-popup__panel { transform: translateY(0) scale(1); }
.cta-popup__close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: rgba(26,22,18,0.06);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.cta-popup__close:hover { background: rgba(26,22,18,0.14); }
.cta-popup__copy {
  padding: 28px 32px 14px;
  text-align: center;
}
.cta-popup__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.cta-popup__title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.1;
}
.cta-popup__p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.cta-popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 28px 24px;
}
.cta-popup__form input,
.cta-popup__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(26,22,18,0.18);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cta-popup__form input:focus,
.cta-popup__form textarea:focus {
  outline: 0;
  border-color: var(--cocoa, #5a4a3a);
  box-shadow: 0 0 0 3px rgba(90,74,58,0.12);
}
.cta-popup__form textarea { resize: vertical; min-height: 80px; }
.cta-popup__submit {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}
.cta-popup__success {
  margin: 8px 0 0;
  padding: 12px 14px;
  background: #ecf3ec;
  border-radius: 10px;
  color: #1f4d1f;
  font-size: 14px;
  text-align: center;
}
.cta-popup__or {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 28px 12px;
  position: relative;
}
.cta-popup__or::before,
.cta-popup__or::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(26,22,18,0.18);
  vertical-align: middle;
  margin: 0 10px;
}
.cta-popup__calendly {
  min-height: 480px;
  overflow: hidden;
  padding: 0 12px 12px;
}
.cta-popup__calendly .calendly-inline-widget {
  min-width: 100% !important;
  height: 480px !important;
}
@media (max-width: 600px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-banner__actions { justify-content: flex-end; }
  .cta-popup { padding: 10px; }
  .cta-popup__panel { max-height: 96vh; border-radius: 16px; }
  .cta-popup__copy { padding: 22px 18px 8px; }
  .cta-popup__form { padding: 12px 18px 18px; }
  .cta-popup__or { padding: 0 18px 10px; }
  .cta-popup__calendly { min-height: 420px; padding: 0 6px 6px; }
  .cta-popup__calendly .calendly-inline-widget { height: 420px !important; }
}

/* ====================================================
   Work / Previous cases page — magazine layout
   ==================================================== */
.work-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 96px 40px 80px;
  text-align: center;
}
.work-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.work-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cocoa);
  margin-bottom: 22px;
}
.work-hero p {
  color: var(--ink-soft);
  font-size: 18px;
  margin: 0 auto;
  max-width: 620px;
}

/* Each case is a full-width section that alternates background */
.work-cases { display: flex; flex-direction: column; }
.work-case {
  padding: 88px 0;
  position: relative;
}
.work-case:nth-of-type(odd)  { background: var(--bg); }
.work-case:nth-of-type(even) { background: var(--beige); }

.work-case__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ----- Chapter header (top of each case) ----- */
.work-case__chapter { margin-bottom: 56px; }
.work-case__chapter-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.work-case__chapter-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.work-case__chapter-meta::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--cream-line);
  margin: 0 4px;
  align-self: center;
}
.work-case__url {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color .2s var(--ease);
  text-transform: lowercase;
}
.work-case__url:hover { color: var(--accent); }

.work-case__chapter-headline {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.work-case__chapter-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0;
  user-select: none;
}
.work-case__company {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cocoa);
  letter-spacing: 0.01em;
  margin: 0;
}

/* ----- Two-column body grid ----- */
.work-case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
/* Alternate the visual position so cases don't feel identical */
.work-case:nth-of-type(even) .work-case__visual { order: 2; }

/* ----- Visual: image variant ----- */
.work-case__visual {
  border-radius: 14px;
  overflow: hidden;
}
.work-case__visual--image { background: var(--beige); }
.work-case__visual--image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----- Visual: typographic card (no image) ----- */
.work-case__visual--card {
  aspect-ratio: 4 / 5;
  padding: 32px 28px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.work-case:nth-of-type(odd)  .work-case__visual--card { background: var(--beige); }
.work-case:nth-of-type(even) .work-case__visual--card {
  background: #fff;
  border: 1px solid var(--cream-line);
}
.work-case__visual--card::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(184,85,43,0.14), transparent 70%);
  pointer-events: none;
}

/* Top mark — case number + dot */
.work-case__visual-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.work-case__visual-num {
  font-family: var(--display);
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.work-case__visual-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cocoa);
  opacity: 0.4;
}

/* Stack — eyebrow / logo or title / url */
.work-case__visual-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.work-case__visual-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.work-case__visual-logo {
  max-width: 78%;
  width: auto;
  height: auto;
  max-height: 44px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.work-case__visual-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cocoa);
  letter-spacing: 0.01em;
}
.work-case__visual-url {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cocoa);
  opacity: 0.55;
}

/* ----- Body content ----- */
.work-case__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.work-case__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  color: var(--cocoa);
  margin: 0;
}

/* Goal panel — contrast adjusts to section bg */
.work-case__goal {
  padding: 22px 24px;
  border-radius: 14px;
  border-left: 3px solid var(--accent);
}
.work-case:nth-of-type(odd)  .work-case__goal { background: rgba(236, 226, 210, 0.55); }
.work-case:nth-of-type(even) .work-case__goal { background: rgba(255, 255, 255, 0.6); }

.work-case__goal-label,
.work-case__results-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.work-case__goal p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.work-case__intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.work-case__results {
  padding-top: 24px;
  border-top: 1px solid var(--cream-line);
}
.work-case__results ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.work-case__results li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.work-case__results li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 1px;
  background: var(--accent);
}
.work-case__quote {
  margin: 4px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--cream-line);
}
.work-case__quote p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--cocoa);
  margin: 0;
  font-style: italic;
}
.work-case__person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.work-case__person img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.work-case__person-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.work-case__person-role { font-size: 13px; color: var(--muted); }

/* ----- Bottom CTA ----- */
.work-cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 40px 140px;
  text-align: center;
}
.work-cta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cocoa);
  margin-bottom: 18px;
}
.work-cta p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 auto 32px;
  max-width: 520px;
}
.work-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .work-case { padding: 64px 0; }
  .work-case__grid { grid-template-columns: 1fr; gap: 32px; }
  .work-case:nth-of-type(even) .work-case__visual { order: 0; }
  .work-case__visual--card { aspect-ratio: 16 / 10; }
  .work-case__chapter { margin-bottom: 36px; }
}
@media (max-width: 600px) {
  .work-hero { padding: 56px 24px 32px; }
  .work-case__inner { padding: 0 24px; }
  .work-case__visual--card { padding: 26px 22px; }
  .work-cta { padding: 72px 24px 88px; }
}

/* ====================================================
   Policy pages (Privacy, Cookies)
   ==================================================== */
.policy {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}
.policy__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.policy h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cocoa);
  margin-bottom: 12px;
}
.policy__updated {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0 0 56px;
}
.policy__section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--cream-line);
}
.policy__section:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.policy__section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--cocoa);
  margin-bottom: 14px;
}
.policy__section p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.policy__section p:last-child { margin-bottom: 0; }
.policy__section a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}
.policy__section a:hover { color: var(--cocoa); }

@media (max-width: 600px) {
  .policy { padding: 56px 24px 88px; }
}

/* Footer legal links */
.site-footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.site-footer__legal a {
  color: var(--muted);
  transition: color .2s var(--ease);
}
.site-footer__legal a:hover { color: var(--ink); }

/* Cookie banner inline link */
.cookie-banner__link {
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color .2s var(--ease);
}
.cookie-banner__link:hover { border-bottom-color: rgba(255,255,255,0.85); }

