/* ==========================================================================
   Günel Mira · RAM Estetic — styles
   ========================================================================== */

:root {
  --ivory: #faf7f3;
  --paper: #ffffff;
  --sand: #f3ede6;
  --blush: #f7e7ed;
  --blush-2: #efd5df;
  --rose: #b23a62;
  --rose-600: #9a2f53;
  --rose-700: #7f2644;
  --champagne: #c9a77c;
  --champagne-soft: #eadfcf;
  --ink: #241c21;
  --ink-2: #473c43;
  --muted: #6e6268;
  --line: rgba(36, 28, 33, 0.1);
  --line-strong: rgba(36, 28, 33, 0.16);
  --plum: #1f171c;
  --plum-2: #2b2127;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 34px;
  --shadow-sm: 0 1px 2px rgba(36, 28, 33, 0.05), 0 4px 14px rgba(36, 28, 33, 0.05);
  --shadow: 0 18px 40px -22px rgba(36, 28, 33, 0.28);
  --shadow-lg: 0 40px 80px -36px rgba(74, 24, 48, 0.42);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  background-image: radial-gradient(780px 780px at calc(100% + 130px) -150px, rgba(239, 213, 223, 0.9), rgba(239, 213, 223, 0) 70%);
  background-repeat: no-repeat;
}
h2 + .lead, h2 + p { margin-top: 1rem; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
figure { margin: 0; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.65rem, 1.55rem + 3.9vw, 4.7rem); }
h2 { font-size: clamp(2.05rem, 1.35rem + 2.3vw, 3.25rem); }
h3 { font-size: clamp(1.45rem, 1.2rem + 0.7vw, 1.8rem); line-height: 1.18; }
h4 { font-family: var(--font-sans); font-size: 1.02rem; font-weight: 700; letter-spacing: 0; line-height: 1.4; }
em.accent, .accent { font-style: italic; color: var(--rose-600); }

::selection { background: var(--blush-2); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-600);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--plain::before { display: none; }

.lead {
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.24rem);
  line-height: 1.7;
  color: var(--ink-2);
}
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.text-center { text-align: center; }
.stack-top { margin-top: 1.8rem; }
.stack-top-sm { margin-top: 1rem; }
.container--narrow { max-width: calc(900px + var(--gutter) * 2); }
.container--mid { max-width: calc(1040px + var(--gutter) * 2); }

/* ---------- Buttons & links ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.45rem;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--rose);
  --btn-fg: #fff;
  --btn-bd: var(--rose);
  padding-inline: 1.7rem;
  box-shadow: 0 14px 30px -14px rgba(178, 58, 98, 0.75);
}
.btn--primary:hover { --btn-bg: var(--rose-600); --btn-bd: var(--rose-600); box-shadow: 0 18px 36px -14px rgba(178, 58, 98, 0.8); }

.btn--ghost:hover { --btn-bd: var(--ink); background: rgba(255, 255, 255, 0.6); }
.btn--light { --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, 0.35); }
.btn--light:hover { --btn-bd: #fff; background: rgba(255, 255, 255, 0.08); }
.btn--sm { min-height: 40px; padding: 0.55rem 1rem; font-size: 0.9rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.35s var(--ease), color 0.25s var(--ease);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.link-arrow:hover { background-size: 100% 1px; color: var(--rose-600); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(250, 247, 243, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 243, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(36, 28, 33, 0.35);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--ink);
  color: #e3c9a1;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; }
.brand__sub { margin-top: 3px; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.nav { margin-inline: auto; }
.nav__list { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav__item { position: relative; }
.nav__link,
.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav__trigger svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.nav__link:hover,
.nav__trigger:hover,
.nav__item.is-open > .nav__trigger { color: var(--ink); background: rgba(36, 28, 33, 0.05); }
.nav__item.is-open > .nav__trigger svg { transform: rotate(180deg); }
.nav__link[aria-current="page"],
.nav__trigger[data-active="true"] { color: var(--rose-600); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 290px;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s linear 0.22s;
}
.dropdown::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
.nav__item.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s;
}
.dropdown--mega { width: min(720px, calc(100vw - 48px)); padding: 0.8rem; }
.dropdown__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.2rem; list-style: none; }
.dropdown__list { list-style: none; }
.dropdown__link {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: background-color 0.2s var(--ease);
}
.dropdown__link:hover,
.dropdown__link:focus-visible { background: var(--blush); }
.dropdown__link[aria-current="page"] { background: var(--sand); }
.dropdown__icon {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--sand);
  color: var(--rose-600);
}
.dropdown__icon svg { width: 20px; height: 20px; }
.dropdown__title { display: block; font-size: 0.95rem; font-weight: 700; line-height: 1.3; }
.dropdown__desc { display: block; margin-top: 2px; font-size: 0.82rem; line-height: 1.45; color: var(--muted); }
.dropdown__footer {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 0.5rem; padding: 0.85rem 0.95rem 0.35rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem; color: var(--muted);
}

.header-tools { display: flex; align-items: center; gap: 0.5rem; flex: none; }
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { background: #fff; border-color: var(--line-strong); }
.card-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  min-height: 44px;
  padding: 0.5rem 1rem 0.5rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-size: 0.92rem; font-weight: 600;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card-btn:hover { background: #fff; border-color: var(--line-strong); }
.card-btn__avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.kbd {
  display: inline-block;
  padding: 0.05rem 0.4rem;
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
}
.burger { display: none; }

@media (max-width: 1080px) {
  .nav, .card-btn__label { display: none; }
  .card-btn { padding: 0.35rem; }
  .burger { display: inline-grid; }
  .header-tools { margin-left: auto; }
}
@media (max-width: 420px) {
  :root { --header-h: 70px; }
  .brand__mark { width: 38px; height: 38px; border-radius: 12px; font-size: 1rem; }
  .brand__name { font-size: 1.3rem; }
  .brand__sub { font-size: 0.58rem; letter-spacing: 0.16em; }
  .header-tools { gap: 0.35rem; }
  .icon-btn { width: 42px; height: 42px; }
}

/* ---------- Mobile drawer ---------- */
.drawer {
  width: min(420px, 100vw);
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: -30px 0 60px -30px rgba(36, 28, 33, 0.4);
}
.drawer::backdrop { background: rgba(31, 23, 28, 0.45); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.drawer[open] { animation: drawer-in 0.35s var(--ease); }
@keyframes drawer-in { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.drawer__inner { display: flex; flex-direction: column; height: 100%; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--line);
}
.drawer__body { flex: 1; overflow-y: auto; padding: 0.75rem var(--gutter) 1.5rem; }
.drawer__foot { padding: 1rem var(--gutter) 1.4rem; border-top: 1px solid var(--line); display: grid; gap: 0.6rem; }
.m-nav { list-style: none; }
.m-nav > li { border-bottom: 1px solid var(--line); }
.m-nav__link,
.m-nav__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%;
  min-height: 56px;
  padding: 0.6rem 0;
  border: 0; background: none;
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 500;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
}
.m-nav__trigger svg { width: 20px; height: 20px; transition: transform 0.3s var(--ease); }
.m-nav__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.m-nav__link[aria-current="page"] { color: var(--rose-600); }
.m-nav__sub { list-style: none; padding: 0 0 0.8rem; }
.m-nav__sub[hidden] { display: none; }
.m-nav__sub a {
  display: block;
  padding: 0.55rem 0 0.55rem 1rem;
  border-left: 1px solid var(--line-strong);
  color: var(--ink-2);
  font-weight: 600; font-size: 0.98rem;
  text-decoration: none;
}
.m-nav__sub a[aria-current="page"] { color: var(--rose-600); border-left-color: var(--rose); }
.drawer__contact { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; color: var(--muted); }
.drawer__contact a { color: var(--ink); font-weight: 600; text-decoration: none; }

/* ---------- Sections ---------- */
.section { position: relative; padding-block: clamp(4.5rem, 3rem + 5vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 2rem + 3vw, 4.5rem); }
.section--tint { background: linear-gradient(180deg, var(--sand) 0%, var(--ivory) 100%); }
.section--blush { background: var(--blush); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--plum); color: rgba(255, 255, 255, 0.78); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--champagne); }
.section--dark .lead { color: rgba(255, 255, 255, 0.78); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 2rem + 2vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 + .lead,
.section-head h2 + p { margin-top: 1.1rem; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; max-width: none; }
.section-head--row > div { max-width: 700px; }

/* ---------- Home hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 5.5rem) clamp(4rem, 3rem + 4vw, 6.5rem);
  overflow: hidden;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 2rem + 4vw, 6rem);
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .accent { display: block; }
.hero .lead { max-width: 560px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }
.hero__notes { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-top: 2.2rem; list-style: none; }
.hero__notes li { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--ink-2); }
.hero__notes svg { width: 18px; height: 18px; color: var(--rose); flex: none; }

.hero__media { position: relative; justify-self: end; width: min(100%, 480px); margin-right: 18px; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: 26px -18px -18px 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, var(--blush-2) 0%, var(--champagne-soft) 100%);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: -16px 34px 40px -16px;
  border: 1px solid rgba(201, 167, 124, 0.55);
  border-radius: var(--radius-xl);
  pointer-events: none;
}
.photo-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--sand);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.photo-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1rem 0.7rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  color: var(--ink);
  line-height: 1.25;
}
.float-chip__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--blush); color: var(--rose-600); flex: none; }
.float-chip__icon svg { width: 22px; height: 22px; }
.float-chip strong { display: block; font-size: 0.95rem; font-weight: 700; }
.float-chip span { display: block; font-size: 0.8rem; color: var(--muted); }
.float-chip--tl { top: 9%; left: -44px; }
.float-chip--br { right: -30px; bottom: 9%; }

@media (prefers-reduced-motion: no-preference) {
  .float-chip--tl { animation: floaty 7s ease-in-out infinite; }
  .float-chip--br { animation: floaty 8s ease-in-out -3s infinite; }
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { justify-self: center; width: min(100%, 440px); margin: 0.5rem auto 0; }
  .float-chip--tl { left: -12px; }
  .float-chip--br { right: -8px; }
}
@media (max-width: 520px) {
  .hero__media { width: calc(100% - 22px); margin-right: 22px; }
  .hero__media::before { inset: 18px -14px -14px 18px; }
  .hero__media::after { inset: -10px 22px 30px -10px; }
  .float-chip { padding: 0.55rem 0.8rem 0.55rem 0.55rem; border-radius: 14px; gap: 0.55rem; }
  .float-chip__icon { width: 34px; height: 34px; border-radius: 10px; }
  .float-chip strong { font-size: 0.86rem; }
  .float-chip span { font-size: 0.74rem; }
  .float-chip--tl { top: 5%; left: 10px; }
  .float-chip--br { right: 10px; bottom: 5%; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding-block: clamp(2rem, 1.5rem + 2.5vw, 3.75rem) clamp(3.5rem, 2.5rem + 3vw, 5.5rem); overflow: hidden; }
.page-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 1.5rem + 4vw, 5rem); align-items: center; }
.page-hero__grid--solo { grid-template-columns: minmax(0, 820px); }
.page-hero h1 { margin-bottom: 1.2rem; font-size: clamp(2.5rem, 1.6rem + 3.2vw, 4.2rem); }
.page-hero .lead { max-width: 620px; margin-bottom: 1.9rem; }
.page-hero__media { position: relative; justify-self: end; width: min(100%, 440px); margin-right: 16px; }
.page-hero__media::before {
  content: "";
  position: absolute;
  inset: 22px -16px -16px 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, var(--blush-2), var(--champagne-soft));
}
.page-hero__media .photo-card { aspect-ratio: 5 / 6; }
.page-hero__media--wide .photo-card { aspect-ratio: 4 / 3; }

.breadcrumb { margin-bottom: 1.6rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.6rem; list-style: none; font-size: 0.86rem; color: var(--muted); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.6rem; }
.breadcrumb li + li::before { content: ""; width: 5px; height: 5px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); opacity: 0.6; }
.breadcrumb a { color: var(--ink-2); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--rose-600); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--muted); }

@media (max-width: 960px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__media { justify-self: start; width: min(100%, 520px); margin-top: 0.5rem; }
  .page-hero__media .photo-card { aspect-ratio: 4 / 3; }
}
@media (max-width: 520px) {
  .page-hero__media { width: calc(100% - 16px); }
  .page-hero__media::before { inset: 16px -12px -12px 16px; }
}

/* ---------- Quick facts ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}
.facts > div { padding: 1.15rem 1.25rem; border-left: 1px solid var(--line); }
.facts > div:first-child { border-left: 0; }
.facts dt { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 0.35rem 0 0; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; line-height: 1.2; color: var(--ink); }
.facts--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 860px) {
  .facts, .facts--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts > div:nth-child(odd) { border-left: 0; }
  .facts > div:nth-child(n + 3) { border-top: 1px solid var(--line); }
}
@media (max-width: 400px) {
  .facts, .facts--3, .facts--2 { grid-template-columns: 1fr; }
  .facts > div { border-left: 0; }
  .facts > div + div { border-top: 1px solid var(--line); }
}

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 2rem + 4vw, 6rem); align-items: center; }
.split--media-left > .split__media { order: -1; }
.split__media { position: relative; }
.split__media .photo-card { aspect-ratio: 4 / 5; }
.split__media--landscape .photo-card { aspect-ratio: 5 / 4; }
.split__media--offset::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(201, 167, 124, 0.55);
  border-radius: var(--radius-xl);
}
.split__body > p { max-width: 580px; }
.split__body h2 { margin-bottom: 1.2rem; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--media-left > .split__media { order: 0; }
  .split__media { max-width: 520px; }
  .split__media--offset { margin-left: 18px; }
}

.split--profile { grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr); align-items: start; }
.split__media--portrait .photo-card { aspect-ratio: 3 / 4; max-width: 440px; }
.profile-card { position: sticky; top: calc(var(--header-h) + 28px); }
.facts--stack { grid-template-columns: 1fr; }
.facts--stack > div { border-left: 0; }
.facts--stack > div + div { border-top: 1px solid var(--line); }
.facts--stack dd { font-size: 1.22rem; }
@media (max-width: 900px) {
  .split--profile { grid-template-columns: 1fr; }
  .profile-card { position: static; }
}

.split--even { align-items: start; }
.info-panel {
  padding: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.info-panel h3 { margin-bottom: 0.9rem; }
.info-panel p:last-child { margin-bottom: 0; }
.check-list { display: grid; gap: 0.85rem; list-style: none; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; line-height: 1.55; }
.check-list svg { width: 22px; height: 22px; flex: none; margin-top: 1px; padding: 3px; border-radius: 50%; background: var(--blush); color: var(--rose-600); }
.check-list strong { color: var(--ink); }
.check-list--cards li { padding: 1.05rem 1.15rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.chips--center { justify-content: center; }
.split__body > .note { margin-top: 1.6rem; }

.next-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; list-style: none; }
.next-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.2rem 1rem;
  height: 100%;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.next-link span { grid-column: 1; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-600); }
.next-link strong { grid-column: 1; font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; line-height: 1.2; }
.next-link svg { grid-column: 2; grid-row: 1 / span 2; width: 22px; height: 22px; transition: transform 0.3s var(--ease); }
.next-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.next-link:hover svg { transform: translateX(4px); color: var(--rose-600); }
@media (max-width: 860px) { .next-links { grid-template-columns: 1fr; } }

/* ---------- Principles (numbered) ---------- */
.principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.2rem; list-style: none; counter-reset: pr; }
.principles li {
  position: relative;
  padding: 1.35rem 1.25rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  counter-increment: pr;
}
.principles li::before {
  content: "0" counter(pr);
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--rose);
}
.principles strong { display: block; margin-bottom: 0.3rem; color: var(--ink); font-size: 1rem; }
.principles span { display: block; font-size: 0.93rem; line-height: 1.6; color: var(--muted); }
.principles--stack { grid-template-columns: 1fr; margin-top: 1.6rem; }
.principles--stack li { display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: 0.9rem; align-items: baseline; padding: 1rem 1.1rem; }
.principles--stack li::before { grid-row: 1 / span 2; margin: 0; }
.principles--stack strong { margin-bottom: 0.1rem; }
.principles--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.principles--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .principles--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .principles, .principles--4, .principles--6 { grid-template-columns: 1fr; } }
.steps--spaced { margin-top: 2rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; list-style: none; }
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem 1.6rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
a.card:hover,
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 1.4rem;
  border-radius: 16px;
  background: var(--blush);
  color: var(--rose-600);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}
.card__icon svg { width: 26px; height: 26px; }
a.card:hover .card__icon { background: var(--rose); color: #fff; }
.card h3 { margin-bottom: 0.6rem; }
.card p { margin-bottom: 1.3rem; font-size: 0.96rem; line-height: 1.65; color: var(--muted); }
.card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: -0.3rem 0 1.4rem; list-style: none; }
.card__tags li { padding: 0.25rem 0.65rem; border-radius: 999px; background: var(--sand); font-size: 0.78rem; font-weight: 600; color: var(--ink-2); }
.card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.93rem; font-weight: 700; color: var(--ink); }
.card__more svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
a.card:hover .card__more { color: var(--rose-600); }
a.card:hover .card__more svg { transform: translateX(4px); }
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .cards, .cards--2 { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 0; list-style: none; counter-reset: st; }
.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1.1rem;
  padding-bottom: 1.6rem;
  counter-increment: st;
}
.steps li::before {
  content: counter(st);
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--font-serif);
  font-size: 1.45rem; font-weight: 600;
  color: var(--rose-600);
}
.steps li::after {
  content: "";
  position: absolute;
  top: 60px; bottom: 4px; left: 27.5px;
  width: 1px;
  background: var(--line-strong);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps strong { display: block; margin: 0.35rem 0 0.25rem; font-size: 1.05rem; color: var(--ink); }
.steps span { display: block; font-size: 0.95rem; line-height: 1.65; color: var(--muted); }
.section--dark .steps li::before { background: transparent; border-color: rgba(255, 255, 255, 0.25); color: var(--champagne); }
.section--dark .steps li::after { background: rgba(255, 255, 255, 0.18); }
.section--dark .steps strong { color: #fff; }
.section--dark .steps span { color: rgba(255, 255, 255, 0.7); }

/* ---------- Quote ---------- */
.quote { position: relative; margin: 0; }
.quote__mark { display: block; width: 44px; height: 44px; margin-bottom: 1rem; color: var(--champagne); }
.quote blockquote { margin: 0; }
.quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}
.quote figcaption { margin-top: 1.3rem; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose-600); }
.section--dark .quote p { color: #fff; }
.section--dark .quote figcaption { color: var(--champagne); }
.quote--center { max-width: 900px; margin-inline: auto; text-align: center; }
.quote--center .quote__mark { margin-inline: auto; }
.quote--inline { padding: 1.6rem 1.7rem; border-left: 2px solid var(--champagne); background: rgba(255, 255, 255, 0.6); border-radius: 0 var(--radius) var(--radius) 0; }
.quote--inline p { font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.8rem); }
.quote--inline .quote__mark { display: none; }

/* ---------- Chips (requests) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; list-style: none; }
.chips li {
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--font-serif);
  font-size: 1.2rem; font-style: italic; font-weight: 500;
  color: var(--ink);
}

/* ---------- Prose & procedure blocks ---------- */
.prose { max-width: 720px; }
.prose p { color: var(--ink-2); }
.prose h2 { margin: 0 0 1rem; }
.prose h3 { margin: 2rem 0 0.7rem; }
.prose ul { margin: 0 0 1.2em; list-style: none; display: grid; gap: 0.55rem; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 8px; height: 8px; border-radius: 50%; background: var(--blush-2); box-shadow: inset 0 0 0 2px var(--rose); }
.prose strong { color: var(--ink); }
.prose a:not(.btn):not(.link-arrow) { color: var(--rose-600); font-weight: 600; }

.proc-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(2rem, 1.5rem + 3vw, 4.5rem); align-items: start; }
.toc { position: sticky; top: calc(var(--header-h) + 28px); }
.toc__title { margin-bottom: 0.9rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.toc ol { list-style: none; display: grid; gap: 0.15rem; border-left: 1px solid var(--line-strong); }
.toc a {
  display: block;
  margin-left: -1px;
  padding: 0.45rem 0 0.45rem 1rem;
  border-left: 2px solid transparent;
  font-size: 0.92rem; font-weight: 600; line-height: 1.4;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.toc a:hover { color: var(--ink); }
.toc a.is-active { color: var(--rose-600); border-left-color: var(--rose); }
.proc-list { display: grid; gap: clamp(1.25rem, 1rem + 1vw, 2rem); }
.proc {
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.proc__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem 1.5rem; margin-bottom: 1rem; }
.proc__head h2 { font-size: clamp(1.8rem, 1.35rem + 1.5vw, 2.5rem); }
.proc__label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose-600); }
.proc .prose { max-width: none; }
.proc .facts { margin-top: 1.5rem; }
.proc__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.4rem 2.2rem; }
.proc .prose h3 { margin: 1.4rem 0 0.6rem; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; line-height: 1.4; text-transform: uppercase; color: var(--muted); }
.facts--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.note {
  display: flex; gap: 0.85rem;
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--sand);
  font-size: 0.93rem; line-height: 1.6;
  color: var(--ink-2);
}
.note svg { width: 22px; height: 22px; flex: none; margin-top: 1px; color: var(--rose-600); }
.note p { margin: 0; }
@media (max-width: 980px) {
  .proc-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .toc ol { display: flex; flex-wrap: wrap; gap: 0.5rem; border-left: 0; }
  .toc a { margin: 0; padding: 0.45rem 0.85rem; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--paper); font-size: 0.86rem; }
  .toc a.is-active { border-color: var(--rose); }
}
@media (max-width: 640px) { .proc__cols { grid-template-columns: 1fr; } }

/* ---------- Technique grid ---------- */
.tech { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; list-style: none; }
.tech li { padding: 1.4rem 1.4rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.8); }
.tech li.is-featured { grid-column: 1 / -1; background: var(--plum); border-color: var(--plum); color: rgba(255, 255, 255, 0.78); }
.tech li.is-featured h3 { color: #fff; }
.tech li.is-featured .tech__badge { background: rgba(201, 167, 124, 0.18); color: var(--champagne); }
.tech h3 { margin-bottom: 0.45rem; font-size: 1.55rem; }
.tech p { margin: 0; font-size: 0.95rem; line-height: 1.65; }
.tech__badge { display: inline-block; margin-bottom: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 999px; background: var(--blush); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-700); }
@media (max-width: 700px) { .tech { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.75rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink);
  border-radius: var(--radius);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241c21' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--blush); }
.faq__answer { padding: 0 1.35rem 1.25rem; color: var(--ink-2); }
.faq__answer p:last-child { margin-bottom: 0; }
.faq-group + .faq-group { margin-top: 3rem; }
.faq-group h2 { margin-bottom: 1.2rem; font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.3rem); }

/* ---------- Events & media ---------- */
.event { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(1.75rem, 1.5rem + 3vw, 4rem); align-items: center; }
.event + .event { margin-top: clamp(3.5rem, 2.5rem + 3vw, 5.5rem); }
.event--reverse > .event__media { order: 2; }
.event__media .photo-card { aspect-ratio: 4 / 3; }
.event__media--portrait .photo-card { aspect-ratio: 4 / 5; max-width: 440px; }
.event__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; list-style: none; }
.event__meta li { padding: 0.28rem 0.7rem; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: 0.8rem; font-weight: 600; color: var(--ink-2); }
.event h2, .event h3 { margin-bottom: 1rem; }
.source-link {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.source-link:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.source-link__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--sand); color: var(--rose-600); flex: none; }
.source-link__icon svg { width: 20px; height: 20px; }
.source-link strong { display: block; font-size: 0.95rem; line-height: 1.35; }
.source-link span { display: block; font-size: 0.82rem; color: var(--muted); }
.source-link__ext { margin-left: auto; width: 18px; height: 18px; color: var(--muted); flex: none; }
@media (max-width: 860px) {
  .event { grid-template-columns: 1fr; }
  .event--reverse > .event__media { order: 0; }
}

.videos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; list-style: none; }
.video-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--plum-2);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.video-card:hover { transform: translateY(-3px); border-color: rgba(201, 167, 124, 0.55); background: #33272e; }
.video-card__thumb {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: 9 / 12;
  border-radius: 14px;
  background: linear-gradient(160deg, #b23a62 0%, #5a2140 55%, #2b2127 100%);
  color: #fff;
  overflow: hidden;
}
.video-card__thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 55%); }
.video-card__thumb svg { position: relative; z-index: 1; width: 34px; height: 34px; }
.video-card strong { display: block; margin-bottom: 0.35rem; font-size: 1rem; line-height: 1.4; color: #fff; }
.video-card span { display: block; font-size: 0.84rem; color: rgba(255, 255, 255, 0.62); }
@media (max-width: 760px) { .videos { grid-template-columns: 1fr; } }

.social-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.event__body h2 { margin-bottom: 1rem; }
.mini-events { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; list-style: none; }
.mini-event { display: flex; flex-direction: column; height: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); border: 1px solid var(--line); color: inherit; text-decoration: none; transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease); }
a.mini-event:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.mini-event__img--top img { object-position: 50% 28%; }
.mini-event__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.mini-event__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mini-event:hover .mini-event__img img { transform: scale(1.04); }
.mini-event__body { padding: 1.3rem 1.35rem 1.4rem; }
.mini-event__body h3 { margin-bottom: 0.45rem; font-size: 1.45rem; }
.mini-event__body p { margin: 0; font-size: 0.94rem; color: var(--muted); }
.mini-event--video .mini-event__img { display: grid; place-items: center; background: linear-gradient(160deg, #b23a62 0%, #5a2140 55%, #2b2127 100%); color: #fff; }
.mini-event--video .mini-event__img svg { width: 56px; height: 56px; }
@media (max-width: 900px) { .mini-events { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .mini-events { grid-template-columns: 1fr; } }

/* ---------- Contact band ---------- */
.contact-band { position: relative; overflow: hidden; }
.contact-band::before {
  content: "";
  position: absolute;
  right: -10%; top: -40%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(178, 58, 98, 0.35), rgba(178, 58, 98, 0));
  pointer-events: none;
}
.contact-band__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 1.5rem + 3vw, 5rem); align-items: center; }
.contact-lines { display: grid; gap: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.contact-lines li { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.contact-lines a,
.contact-lines .contact-lines__static {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 0.2rem;
  color: #fff;
  text-decoration: none;
}
.contact-lines small { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.contact-lines b { display: block; margin-top: 0.15rem; font-family: var(--font-serif); font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.8rem); font-weight: 500; }
.contact-lines svg { width: 22px; height: 22px; color: var(--champagne); flex: none; transition: transform 0.3s var(--ease); }
.contact-lines a:hover b { color: var(--champagne); }
.contact-lines a:hover svg { transform: translate(3px, -3px); }
@media (max-width: 860px) { .contact-band__grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 1.5rem + 3vw, 4.5rem); align-items: start; }
.contact-cards { display: grid; gap: 0.75rem; list-style: none; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
a.contact-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-card__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--blush); color: var(--rose-600); flex: none; }
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card small { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.contact-card b { display: block; font-size: 1.04rem; font-weight: 700; }
.contact-card__go { margin-left: auto; width: 18px; height: 18px; color: var(--muted); flex: none; }
.contact-aside { display: grid; gap: 0.9rem; justify-items: start; margin-top: 1.5rem; padding: 1.3rem 1.4rem; border: 1px dashed var(--line-strong); border-radius: var(--radius); }
.contact-aside p { margin: 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-card { padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.5rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); }
.form-card h2 { margin-bottom: 0.5rem; font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.1rem; margin-top: 1.6rem; }
.field { display: grid; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.field .optional { font-weight: 500; color: var(--muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.field select {
  appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23473c43' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(36, 28, 33, 0.3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); background-color: #fff; box-shadow: 0 0 0 4px rgba(178, 58, 98, 0.14); }
.field [aria-invalid="true"] { border-color: #b3261e; background-color: #fff8f7; }
.field__error { min-height: 0; font-size: 0.84rem; font-weight: 600; color: #b3261e; }
.field__error:empty { display: none; }
.form-foot { display: grid; gap: 0.9rem; margin-top: 1.4rem; }
.form-privacy { display: flex; gap: 0.6rem; font-size: 0.85rem; line-height: 1.55; color: var(--muted); }
.form-privacy svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--rose-600); }
.form-status { padding: 0.9rem 1rem; border-radius: 12px; background: #eef7f0; color: #1f5130; font-size: 0.93rem; font-weight: 600; }
.form-status[hidden] { display: none; }
.form-status a { color: inherit; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- CTA panel ---------- */
.cta-panel {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2rem;
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.8rem);
  border-radius: var(--radius-xl);
  background: var(--plum);
  color: rgba(255, 255, 255, 0.75);
}
.cta-panel h2 { color: #fff; font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem); margin-bottom: 0.5rem; }
.cta-panel p { margin: 0; max-width: 560px; }

/* ---------- Search page ---------- */
.search-page-form { display: flex; gap: 0.6rem; max-width: 720px; }
.search-page-form input { flex: 1; min-width: 0; }
.results { display: grid; gap: 0.75rem; list-style: none; max-width: 820px; }
.result {
  display: block;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.result:hover, .result.is-active { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.result__cat { display: block; margin-bottom: 0.2rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-600); }
.result__title { display: block; font-size: 1.06rem; font-weight: 700; line-height: 1.4; color: var(--ink); }
.result__desc { display: block; margin-top: 0.25rem; font-size: 0.9rem; line-height: 1.55; color: var(--muted); }
.result mark { padding: 0 0.1em; border-radius: 3px; background: var(--blush-2); color: inherit; }

/* ---------- Footer ---------- */
.site-footer { position: relative; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: clamp(3.5rem, 2.5rem + 3vw, 5rem); background: var(--plum); color: rgba(255, 255, 255, 0.68); font-size: 0.95rem; }
.site-footer a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand__mark { background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 0 0 1px rgba(227, 201, 161, 0.35); }
.footer-brand .brand__sub { color: rgba(255, 255, 255, 0.55); }
.footer-brand p { max-width: 340px; margin: 1.3rem 0 0; line-height: 1.7; }
.footer-col h2 { margin-bottom: 1rem; font-family: var(--font-sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne); }
.footer-col ul { list-style: none; display: grid; gap: 0.15rem; }
.footer-col ul a, .footer-col ul li { display: inline-block; padding-block: 0.32rem; }
.footer-link-btn { padding: 0.32rem 0; border: 0; background: none; color: rgba(255, 255, 255, 0.82); font-size: inherit; text-align: left; }
.footer-link-btn:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.4rem; }
.footer-social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.18); }
.footer-social a:hover { border-color: var(--champagne); color: var(--champagne); text-decoration: none; }
.footer-social svg { width: 19px; height: 19px; }
.footer-note { padding-block: 1.3rem; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.85rem; line-height: 1.6; color: rgba(255, 255, 255, 0.55); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.6rem 1.5rem; padding-block: 1.2rem 1.6rem; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.86rem; color: rgba(255, 255, 255, 0.55); }
.footer-bottom p { margin: 0; }
.footer-credit a { color: #fff; font-weight: 700; letter-spacing: 0.04em; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Dialogs ---------- */
.modal {
  width: min(680px, calc(100vw - 32px));
  max-height: min(760px, calc(100dvh - 48px));
  margin: max(24px, 8vh) auto auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 50px 100px -30px rgba(31, 23, 28, 0.55);
  overflow: hidden;
}
.modal::backdrop { background: rgba(31, 23, 28, 0.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.modal[open] { animation: modal-in 0.28s var(--ease); }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(0.985); } to { opacity: 1; transform: none; } }
.modal__close {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  flex: none;
}
.modal__close svg { width: 18px; height: 18px; }
.modal__close:hover { border-color: var(--line-strong); }

.search-modal[open] { display: flex; flex-direction: column; }
.search-bar { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 0.9rem 0.9rem 1.25rem; border-bottom: 1px solid var(--line); background: #fff; }
.search-bar > svg { width: 22px; height: 22px; color: var(--muted); flex: none; }
.search-bar input { flex: 1; min-width: 0; height: 46px; border: 0; background: transparent; font-size: 1.1rem; color: var(--ink); }
.search-bar input:focus { outline: none; }
.search-bar input::-webkit-search-cancel-button { display: none; }
.search-body { flex: 1; overflow-y: auto; padding: 1rem 1.1rem 1.25rem; }
.search-hint { margin: 0.25rem 0.2rem 0.8rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.search-suggest { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.search-suggest button { padding: 0.5rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 0.9rem; font-weight: 600; color: var(--ink-2); }
.search-suggest button:hover { border-color: var(--rose); color: var(--rose-600); }
.search-empty { padding: 1.5rem 0.3rem; color: var(--muted); }
.search-empty strong { color: var(--ink); }
.search-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 1.25rem; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--muted); background: #fff; }
.search-foot span { display: inline-flex; align-items: center; gap: 0.4rem; }
@media (max-width: 600px) {
  .modal { width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; margin: 0; border-radius: 0; }
  .search-foot { display: none; }
}

/* Vizitkart */
.vcard-modal { width: min(600px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); margin: auto; background: transparent; box-shadow: none; overflow: visible; }
.vcard {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--plum);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 50px 100px -30px rgba(31, 23, 28, 0.6);
}
.vcard::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(178, 58, 98, 0.55), rgba(178, 58, 98, 0));
  pointer-events: none;
}
.vcard__scroll { position: relative; max-height: calc(100dvh - 32px); overflow-y: auto; padding: 1.35rem 1.6rem 1.3rem; scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.22) transparent; }
.vcard__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.vcard__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); }
.vcard .modal__close { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); color: #fff; }
.vcard .modal__close:hover { border-color: rgba(255, 255, 255, 0.45); }
.vcard__id { display: flex; align-items: center; gap: 1.1rem; margin-top: 0.6rem; }
.vcard__photo { width: 88px; height: 88px; border-radius: 26px; object-fit: cover; box-shadow: 0 0 0 1px rgba(227, 201, 161, 0.45), 0 16px 30px -14px rgba(0, 0, 0, 0.6); flex: none; }
.vcard__name { margin: 0; font-family: var(--font-serif); font-size: 2.2rem; font-weight: 500; line-height: 1; color: #fff; }
.vcard__role { margin: 0.45rem 0 0; font-size: 0.95rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.vcard__brand { margin: 0.15rem 0 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); }
.vcard__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.4rem; margin: 1.2rem 0 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.vcard__list li { border-bottom: 1px solid rgba(255, 255, 255, 0.12); min-width: 0; }
.vcard__list li:last-child { grid-column: 1 / -1; }
.vcard__row { display: flex; align-items: center; gap: 0.8rem; padding: 0.62rem 0.1rem; color: #fff; text-decoration: none; }
a.vcard__row:hover .vcard__value { color: var(--champagne); }
.vcard__row svg { width: 20px; height: 20px; color: var(--champagne); flex: none; }
.vcard__row small { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.vcard__value { display: block; font-size: 0.98rem; font-weight: 600; transition: color 0.2s var(--ease); overflow-wrap: anywhere; }
.vcard__go { margin-left: auto; width: 16px !important; height: 16px !important; color: rgba(255, 255, 255, 0.4) !important; }
.vcard__bottom { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.4rem; align-items: center; margin-top: 1.15rem; }
.vcard__actions { display: grid; gap: 0.55rem; }
.vcard__actions .btn { justify-content: flex-start; }
.vcard__qr { display: grid; justify-items: center; gap: 0.45rem; }
.vcard__qr canvas { width: 116px; height: 116px; padding: 8px; border-radius: 16px; background: #fff; }
.vcard__qr span { max-width: 124px; font-size: 0.72rem; line-height: 1.35; text-align: center; color: rgba(255, 255, 255, 0.55); }
.vcard__note { margin: 1.1rem 0 0; font-size: 0.82rem; line-height: 1.55; color: rgba(255, 255, 255, 0.5); }
@media (max-width: 600px) {
  .vcard-modal { width: 100vw; max-width: 100vw; height: auto; max-height: 92dvh; margin: auto 0 0; border-radius: 0; }
  .vcard { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .vcard__scroll { max-height: 92dvh; padding: 1.25rem var(--gutter) 1.4rem; }
  .vcard__name { font-size: 1.9rem; }
  .vcard__photo { width: 72px; height: 72px; border-radius: 22px; }
  .vcard__bottom { grid-template-columns: 1fr; }
  .vcard__list { grid-template-columns: 1fr; }
  .vcard__qr { display: none; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%; bottom: 24px;
  z-index: 300;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem; font-weight: 600;
  box-shadow: var(--shadow);
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--reveal-delay, 0s); }
  .js [data-reveal].is-visible { opacity: 1; transform: none; }
  .js .hero [data-reveal], .js .page-hero [data-reveal] { transition-duration: 0.95s; }
}

/* ---------- 404 ---------- */
.not-found { min-height: calc(100vh - var(--header-h) - 200px); display: grid; align-items: center; }
.not-found__code { font-family: var(--font-serif); font-size: clamp(5rem, 3rem + 10vw, 10rem); line-height: 0.9; color: var(--blush-2); }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .contact-band, dialog, .toc, .hero__media::before, .hero__media::after { display: none !important; }
  body { background: #fff; }
}
