/* =========================================================
   Kübra Gözde Zorlu — Design System
   Soft Editorial Therapy: cherry + pastel, warm + refined
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --ink: #1F1116;
  --ink-soft: #4A2A33;
  --ink-mute: #7A5C64;

  --cherry-deep: #6E0F2A;
  --cherry: #A8324E;
  --cherry-bright: #C84B6A;
  --cherry-glow: rgba(200, 75, 106, 0.18);

  --blush: #F4D5DC;
  --blush-light: #FBE9ED;
  --cream: #FAF3E8;
  --sand: #F1E5D2;
  --sage: #C8D5BD;
  --paper: #FFFCF8;

  --line: rgba(31, 17, 22, 0.12);
  --line-strong: rgba(31, 17, 22, 0.22);

  /* Type */
  --font-sans: "Schibsted Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-script: "Allura", "Brush Script MT", cursive;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 12rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 920px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 220ms;
  --t-mid: 480ms;
  --t-slow: 900ms;

  /* Radii */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 18px 60px -22px rgba(110, 15, 42, 0.22), 0 4px 16px -8px rgba(31, 17, 22, 0.08);
  --shadow-card: 0 30px 80px -40px rgba(110, 15, 42, 0.35), 0 8px 24px -16px rgba(31, 17, 22, 0.12);
  --shadow-glow: 0 0 0 1px var(--line), 0 24px 60px -30px var(--cherry-glow);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; margin: 0; }
img, picture, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain on the body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.07 0 0 0 0 0.09 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.05'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.55;
  z-index: 1;
}

main, header, footer { position: relative; z-index: 2; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.1;
}
h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
}
h4 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
p { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cherry);
  margin-bottom: 1.2rem;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

.serif-italic { font-style: italic; }
.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
}

/* Accent — cherry-colored emphasis without the script font (used in body headings) */
.accent {
  color: var(--cherry);
  font-weight: 400;
  font-family: var(--font-sans);
}

/* Display number tag */
.numeral {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  color: var(--cherry);
  font-variant-numeric: tabular-nums;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: clamp(4rem, 10vw, 8rem);
  position: relative;
}
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--blush { background: linear-gradient(180deg, var(--blush-light) 0%, var(--cream) 100%); }
.section--paper { background: var(--paper); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink p { color: rgba(255, 252, 248, 0.75); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }

/* Decorative dotted divider used everywhere — feels editorial */
.dotted-rule {
  height: 1px;
  width: 100%;
  background-image: radial-gradient(circle, var(--line-strong) 1px, transparent 1.4px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: left center;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--cherry);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-mid) var(--ease-out), background var(--t-fast) var(--ease-out);
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 700ms var(--ease-out);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:hover::after { transform: translateX(110%); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
}

.btn .arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  transition: transform var(--t-fast) var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--cherry);
  position: relative;
  padding-bottom: 3px;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; right: 1.7rem;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 500ms var(--ease-in-out);
}
.link-arrow:hover::after { transform-origin: left; transform: scaleX(0); }
.link-arrow svg { transition: transform var(--t-fast) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: rgba(250, 243, 232, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: padding var(--t-mid) var(--ease-out), background var(--t-mid) var(--ease-out), border-color var(--t-mid) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(250, 243, 232, 0.88);
  border-bottom-color: var(--line);
  padding: 0.7rem 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.8rem, 2vw, 2rem);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
  line-height: 1;
}
.brand__logo {
  display: block;
  height: clamp(96px, 9vw, 124px);
  width: auto;
  object-fit: contain;
  /* let the tall portrait logo extend slightly past the header padding so
     the key shape reads at a useful size without forcing a giant header */
  margin-block: -1.4rem;
  transition: transform var(--t-fast), height var(--t-mid) var(--ease-out);
}
.brand:hover .brand__logo { transform: translateY(-2px); }

.site-header.is-scrolled .brand__logo {
  height: clamp(76px, 7.2vw, 96px);
  margin-block: -0.8rem;
}

.footer-brand .brand__logo {
  height: clamp(160px, 14vw, 200px);
  margin-bottom: 0.8rem;
  filter: brightness(0) invert(1) opacity(0.85);
}

.brand__signature {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 5.4vw, 2.4rem);
  color: var(--cherry-deep);
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-block;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}
.brand__role {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  font-weight: 500;
  white-space: nowrap;
  margin-left: 0.6rem;
  padding-left: 0.7rem;
  border-left: 1px solid var(--line-strong);
}

.menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--t-fast) var(--ease-out);
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--cherry);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease-in-out);
}
.menu a:hover, .menu a[aria-current="page"] { color: var(--cherry); }
.menu a:hover::after, .menu a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header__cta { display: inline-flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }
.brand { flex-shrink: 1; min-width: 0; }

.menu-toggle {
  display: none;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: transform var(--t-fast);
}
.menu-toggle span::before, .menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-mid) var(--ease-out);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero (slider) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(7rem, 14vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1500ms var(--ease-in-out);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.95);
}
.hero__slide.is-active img {
  animation: kenburns 9s var(--ease-out) forwards;
}
@keyframes kenburns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.13) translate(-1.5%, -0.5%); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 80% at 18% 75%, rgba(31, 17, 22, 0.75) 0%, rgba(31, 17, 22, 0) 60%),
    linear-gradient(180deg, rgba(31, 17, 22, 0.05) 0%, rgba(31, 17, 22, 0.55) 100%);
}
.hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
}
.hero__copy { color: var(--paper); max-width: 720px; }
.hero__copy .eyebrow { color: var(--blush); }
.hero__copy h1 {
  color: var(--paper);
  margin-top: 1.2rem;
  font-weight: 300;
}
.hero__copy h1 .script {
  font-family: var(--font-script);
  color: var(--blush);
  font-weight: 400;
  font-size: 1.15em;
  display: inline-block;
  transform: translateY(0.06em);
}
.hero__copy p {
  margin-top: 1.6rem;
  color: rgba(255, 252, 248, 0.85);
  max-width: 52ch;
  font-size: 1.05rem;
}
.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__copy .btn--ghost {
  --btn-fg: var(--paper);
  border-color: rgba(255, 252, 248, 0.55);
}
.hero__copy .btn--ghost:hover {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
}

.hero__meta {
  display: grid;
  gap: 1.2rem;
  text-align: right;
  color: rgba(255, 252, 248, 0.85);
}
.hero__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: end;
}
.hero__dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 252, 248, 0.4);
  border: none;
  cursor: pointer;
  transition: background var(--t-mid) var(--ease-out), width var(--t-mid) var(--ease-out);
  padding: 0;
}
.hero__dot.is-active { background: var(--blush); width: 56px; }
.hero__counter {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.hero__counter .current { color: var(--blush); font-size: 1.2rem; vertical-align: -0.1em; margin-right: 0.3rem; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 252, 248, 0.7);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,252,248,0.7), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Page hero (smaller, for inner pages) ---------- */
.page-hero {
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--blush-light) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: end;
}
/* let grid tracks shrink so a long unbroken word can't blow out the layout */
.page-hero__inner > div { min-width: 0; }
.page-hero h1 {
  margin-top: 1.4rem;
  font-weight: 300;
  overflow-wrap: break-word;
}
.page-hero__crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.page-hero__crumbs a:hover { color: var(--cherry); }
.page-hero p { margin-top: 1.4rem; max-width: 56ch; overflow-wrap: break-word; }

/* Decorative petals on page hero */
.page-hero::before, .page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}
.page-hero::before {
  width: 360px; height: 360px;
  background: var(--blush);
  top: -80px; right: -60px;
}
.page-hero::after {
  width: 220px; height: 220px;
  background: var(--sage);
  bottom: -80px; left: -40px;
  opacity: 0.45;
}

/* ---------- Intro band ---------- */
.intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding-block: clamp(4rem, 8vw, 7rem);
}
.intro__label {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: sticky;
  top: 7rem;
}
.intro__label .numeral { color: var(--cherry); }
.intro__body p {
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.012em;
  max-width: 32ch;
}
.intro__body p + p { margin-top: 1.4rem; max-width: 56ch; font-size: 1.05rem; color: var(--ink-soft); font-weight: 400; }
.intro__body em { font-style: italic; color: var(--cherry); }

/* ---------- Service preview / cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.service-card {
  grid-column: span 4;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out), background var(--t-mid);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--blush-light);
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 17, 22, 0.18) 100%);
}
.service-card .numeral {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  font-size: 1rem;
  letter-spacing: 0.16em;
  color: var(--cherry);
  font-weight: 600;
  background: rgba(255, 252, 248, 0.92);
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  z-index: 2;
}
.service-card h3 { margin-top: 0.2rem; }
.service-card p { font-size: 0.96rem; color: var(--ink-soft); }
.service-card__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card--feature {
  grid-column: span 6;
}
.service-card--wide {
  grid-column: span 8;
  flex-direction: row;
  align-items: stretch;
}
.service-card--wide .service-card__media {
  flex: 1 1 50%;
  aspect-ratio: auto;
  min-height: 280px;
}
.service-card--wide .service-card__body {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
}

/* ---------- About preview / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--blush);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  pointer-events: none;
}
.split__media .signature-mark {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem;
  font-family: var(--font-sans);
  font-weight: 200;
  color: var(--paper);
  font-size: 3.2rem;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
/* Only used by the home about-preview "Kübra Gözde Zorlu" — the client's signature inside a heading */
.split__copy h2 .script { font-family: var(--font-script); color: var(--cherry); display: inline-block; font-size: 1.15em; transform: translateY(0.06em); }
.split__copy p { margin-top: 1.4rem; max-width: 56ch; }
.split__copy .actions { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.split--reverse .split__media { order: 2; }
.split--top { align-items: start; }

/* Frame stack — overlapping picture frames */
.frame-stack {
  position: relative;
  aspect-ratio: 1/1;
}
.frame-stack__main, .frame-stack__sub {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--blush);
  border: 1px solid var(--line);
}
.frame-stack__main {
  top: 0; left: 0;
  width: 78%;
  aspect-ratio: 4/5;
  z-index: 2;
  box-shadow: var(--shadow-card);
}
.frame-stack__sub {
  bottom: 0; right: 0;
  width: 52%;
  aspect-ratio: 3/4;
  z-index: 3;
  box-shadow: var(--shadow-soft);
}
.frame-stack img { width: 100%; height: 100%; object-fit: cover; }
.frame-stack__tag {
  position: absolute;
  top: 6%; right: 0;
  background: var(--cherry);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 4;
  box-shadow: var(--shadow-soft);
}

/* ---------- Testimonial / quote ---------- */
.quote-band {
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem);
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush-light) 100%);
}
.quote {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.35;
  font-weight: 300;
  max-width: 28ch;
  margin: 1.6rem auto 0;
  letter-spacing: -0.018em;
}
.quote em { font-style: italic; color: var(--cherry); }
.quote::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--cherry);
  margin: 0 auto 2rem;
}
.quote::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--cherry);
  margin: 2rem auto 0;
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}
.stat {
  padding: 2.4rem 1.6rem;
  text-align: left;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--cherry-deep);
  line-height: 1;
}
.stat__num small { font-size: 0.4em; vertical-align: super; color: var(--cherry); margin-left: 0.2rem; }
.stat__label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}

/* ---------- Approach list (timeline-ish) ---------- */
.approach-list {
  display: grid;
  gap: 0;
  margin-top: 3rem;
}
.approach-item {
  display: grid;
  grid-template-columns: minmax(180px, max-content) minmax(0, 1fr) minmax(0, 2fr);
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left var(--t-mid) var(--ease-out), background var(--t-mid);
}
.approach-item__num { white-space: nowrap; }
.approach-item:first-child { border-top: 1px solid var(--line); }
.approach-item:hover {
  padding-left: 1rem;
  background: linear-gradient(90deg, var(--blush-light), transparent);
}
.approach-item__num { font-family: var(--font-sans); font-weight: 300; font-size: 1.5rem; color: var(--cherry); font-variant-numeric: tabular-nums; }
.approach-item h3 { font-size: 1.3rem; }
.approach-item p { font-size: 0.98rem; }

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.post-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  border: 1px solid var(--line);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.post-card__media {
  display: block;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--blush-light);
  position: relative;
}
.post-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--sand) 100%);
  font-family: var(--font-script);
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--cherry);
}
.post-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1000ms var(--ease-out);
}
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__cat {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  background: rgba(250, 243, 232, 0.95);
  padding: 0.32rem 0.7rem;
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--cherry);
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.post-card__meta span:not(:last-child)::after {
  content: "•";
  margin-left: 0.8rem;
  color: var(--line-strong);
}
.post-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}
.post-card h3 a:hover { color: var(--cherry); }
.post-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  overflow-wrap: break-word;
}
.post-card__foot { margin-top: auto; padding-top: 0.6rem; }
.post-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cherry);
  text-decoration: none;
}
.post-card__more svg { width: 13px; height: 13px; transition: transform var(--t-fast) var(--ease-out); }
.post-card:hover .post-card__more svg { transform: translateX(4px); }

/* ---------- Pagination ---------- */
.pagination { margin-top: 3.5rem; }
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2.6rem;
  padding: 0 0.6rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.pagination a.page-numbers:hover {
  border-color: var(--cherry);
  color: var(--cherry);
}
.pagination .page-numbers.current {
  background: var(--cherry);
  border-color: var(--cherry);
  color: var(--paper);
}
.pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

/* ---------- Blog empty state ---------- */
.blog-empty {
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.blog-empty p { font-size: 1.1rem; color: var(--ink-mute); }

/* ---------- Section heads ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1rem;
}
.section-head__aside { max-width: 36ch; }
.section-head__aside p { font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(2.4rem, 5vw, 4.4rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cherry) 0%, transparent 70%);
  top: -200px; right: -200px;
  opacity: 0.4;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  bottom: -160px; left: -100px;
  opacity: 0.18;
}
.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-band h2 { color: var(--paper); font-weight: 300; }
.cta-band p { color: rgba(255, 252, 248, 0.78); margin-top: 1.2rem; max-width: 50ch; }
.cta-band .actions { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-band .actions .btn--ghost {
  --btn-fg: var(--paper);
  border-color: rgba(255, 252, 248, 0.4);
}
.cta-band .actions .btn--ghost:hover {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
}
.cta-band__contact {
  display: grid;
  gap: 1rem;
  border-left: 1px solid rgba(255, 252, 248, 0.18);
  padding-left: 2rem;
}
.cta-band__contact dt {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 252, 248, 0.55);
}
.cta-band__contact dd {
  margin: 0.2rem 0 1rem;
  font-size: 1.05rem;
  color: var(--paper);
}
.cta-band__contact dd a { color: var(--blush); }
.cta-band__contact dd a:hover { color: var(--paper); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(4rem, 8vw, 6rem) 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand .brand__signature {
  font-size: 3rem;
  color: var(--blush);
}
.footer-brand .brand__role {
  color: rgba(255, 252, 248, 0.55);
  border-color: rgba(255, 252, 248, 0.18);
}
.footer-brand p {
  margin-top: 1.4rem;
  color: rgba(255, 252, 248, 0.62);
  max-width: 36ch;
  font-size: 0.94rem;
}
.footer-col h4 {
  color: var(--paper);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a {
  color: rgba(255, 252, 248, 0.7);
  font-size: 0.94rem;
  transition: color var(--t-fast) var(--ease-out), padding-left var(--t-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--blush); padding-left: 0.4rem; }
.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 252, 248, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 252, 248, 0.5);
}
.footer-bottom .socials { display: flex; gap: 1rem; }
.footer-bottom .socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 252, 248, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 252, 248, 0.7);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.footer-bottom .socials a:hover {
  background: var(--cherry);
  border-color: var(--cherry);
  color: var(--paper);
  transform: translateY(-2px);
}
.footer-bottom .socials svg { width: 16px; height: 16px; }

/* Floating WhatsApp */
.whatsapp-fab {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  box-shadow: 0 14px 40px -12px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform var(--t-fast) var(--ease-out);
}
.whatsapp-fab:hover { transform: scale(1.08) rotate(-4deg); }
.whatsapp-fab svg { width: 26px; height: 26px; }
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 1.4rem;
  max-width: 620px;
}
.field { display: grid; gap: 0.5rem; position: relative; }
.field label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.95rem 1.05rem;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; min-height: 150px; line-height: 1.55; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--cherry);
  box-shadow: 0 0 0 4px var(--cherry-glow);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-actions { display: flex; gap: 1rem; align-items: center; }
.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--ink-mute);
  line-height: 1.5;
}
.consent input { width: 18px; height: 18px; accent-color: var(--cherry); margin-top: 0.18rem; }

/* ---------- Single post styles ---------- */
.post-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-block: clamp(7rem, 14vw, 11rem) 2rem;
}
.post-header .eyebrow { justify-content: center; }
.post-header h1 {
  margin-top: 1.4rem;
  font-weight: 300;
}
.post-header .meta {
  display: inline-flex;
  gap: 1rem;
  margin-top: 1.6rem;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}
.post-header .meta span:not(:last-child)::after { content: "•"; margin-left: 1rem; color: var(--line-strong); }
.post-cover {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding-block: clamp(3rem, 6vw, 5rem);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  overflow-wrap: break-word;
}
.post-content p { margin-bottom: 1.4rem; }
.post-content h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-top: 2.6rem;
  margin-bottom: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.post-content blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem 1.4rem 2rem;
  border-left: 3px solid var(--cherry);
  background: var(--blush-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--ink);
  font-size: 1.1rem;
}
.post-content ul, .post-content ol { padding-left: 1.4rem; margin-bottom: 1.4rem; }
.post-content ul { list-style: none; padding-left: 0; }
.post-content ul li { position: relative; padding-left: 1.6rem; margin-bottom: 0.7rem; }
.post-content ul li::before {
  content: ""; position: absolute; left: 0; top: 0.7em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--cherry);
}
.post-content ol li { margin-bottom: 0.7rem; padding-left: 0.3rem; }
.post-content a { color: var(--cherry); text-decoration: underline; text-underline-offset: 4px; transition: color var(--t-fast) var(--ease-out); }
.post-content a:hover { color: var(--cherry-deep); }
.post-content h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-top: 2.2rem; margin-bottom: 0.8rem; color: var(--ink); font-weight: 500; }
.post-content h4 { font-size: 1.2rem; margin-top: 1.8rem; margin-bottom: 0.6rem; color: var(--ink); font-weight: 600; }
.post-content blockquote p { margin-bottom: 0; }
.post-content blockquote cite { display: block; margin-top: 0.8rem; font-style: normal; font-size: 0.9rem; color: var(--ink-mute); }
.post-content > :first-child { margin-top: 0; }
.post-content hr {
  border: 0; height: 1px; margin: 2.6rem auto; width: 60%;
  background: var(--line-strong);
}
.post-content code {
  font-size: 0.92em; background: var(--blush-light);
  padding: 0.15em 0.45em; border-radius: var(--r-sm); color: var(--cherry-deep);
}
/* Gutenberg image blocks */
.post-content figure,
.post-content .wp-block-image { margin: 2.4rem 0; }
.post-content figure img,
.post-content .wp-block-image img {
  width: 100%; height: auto; border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
}
.post-content figcaption {
  margin-top: 0.8rem; text-align: center;
  font-size: 0.85rem; color: var(--ink-mute);
}
.post-content img.alignleft,
.post-content img.alignright { max-width: 50%; }

/* ---------- Single post (article) ---------- */
/* Smaller hero title on single posts (article titles read better at a
   calmer size than the big landing-page headings). */
body.single .page-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: -0.02em;
}
.single-post {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
.single-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.single-post__meta > span:not(.single-post__cat):not(:last-child)::after {
  content: "·";
  margin-left: 0.9rem;
  color: var(--line-strong);
}
.single-post__cat {
  display: inline-flex;
  align-items: center;
  padding: 0.35em 0.9em;
  background: var(--cherry);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.single-post__media {
  margin: 2.2rem 0 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.single-post__media img {
  width: 100%;
  height: auto;
  display: block;
}
/* body sits inside the narrow container already — drop the inner constraints */
.single-post__body {
  max-width: none;
  margin: 0;
  padding-block: 2.4rem 0;
}
.single-post__foot {
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.single-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.single-post__tags a {
  font-size: 0.8rem;
  padding: 0.4em 0.9em;
  background: var(--blush-light);
  color: var(--cherry-deep);
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background var(--t-fast) var(--ease-out);
}
.single-post__tags a:hover { background: var(--blush); }
.single-post__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--cherry);
  text-decoration: none;
}
.single-post__back svg { width: 14px; height: 14px; transition: transform var(--t-fast) var(--ease-out); }
.single-post__back:hover svg { transform: translateX(-3px); }

/* ---------- Sidebar (contact info) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.info-card h3 { font-size: 1.05rem; font-weight: 600; }
.info-list { display: grid; gap: 1.4rem; margin-top: 1.6rem; }
.info-list dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin-bottom: 0.3rem;
}
.info-list dd { margin: 0; font-size: 1rem; color: var(--ink); }
.info-list dd a { color: var(--cherry); }
.info-list dd a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Soft per-word reveal — opacity + tiny lift, no overflow clipping so
   descenders (ğ, ş, p, y) and words nested in .accent/.script never get cut. */
.reveal-text { display: inline; }
.reveal-text__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 55ms);
  will-change: opacity, transform;
}
.reveal-text.is-in .reveal-text__word {
  opacity: 1;
  transform: translateY(0);
}

.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1100ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal-clip.is-in { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-text__word, .reveal-clip { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  /* Drop the header's backdrop-filter on mobile — backdrop-filter creates a
     containing block for position:fixed descendants, which would otherwise
     trap the fullscreen mobile menu inside the thin header strip. */
  .site-header {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header.is-scrolled { background: var(--cream); }

  .menu-toggle { display: inline-flex; }
  .header__cta .btn { display: none; }
  .menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.6rem;
    padding: 6rem 2rem 3rem;
    transform: translateY(-100%);
    transition: transform 600ms var(--ease-in-out);
    z-index: 110;
    border-bottom: 1px solid var(--line);
  }
  .menu.is-open { transform: translateY(0); }
  .menu a { font-size: 1.8rem; font-weight: 400; padding: 0.4rem 0; }
  .menu a::after { display: none; }
  .menu-toggle { z-index: 120; position: relative; }

  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__meta { text-align: left; }
  .hero__dots { justify-self: start; }

  .page-hero__inner { grid-template-columns: 1fr; }

  .intro { grid-template-columns: 1fr; }
  .intro__label { position: static; flex-direction: row; align-items: baseline; gap: 1rem; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--feature, .service-card--wide { grid-column: 1 / -1; flex-direction: column; }
  .service-card--wide .service-card__body { padding-left: 0; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }

  .approach-item { grid-template-columns: 1fr; gap: 0.6rem; }
  .approach-item__num { font-size: 1.15rem; }
  .approach-item p { grid-column: 1; }

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

  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__contact { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,252,248,0.18); padding-top: 1.6rem; }

  .section-head { grid-template-columns: 1fr; }
  .section-head__aside { max-width: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .field-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .brand__role { display: none; }
  .hero__copy h1 { font-size: 2.4rem; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
