/* =========================================================
   Rakkas Saat Atölyesi — Atölye Defteri
   Palet: kağıt + tek oksblood vurgu, altın yok
   ========================================================= */

:root {
  --bg: #F6F2EA;
  --surface: #FFFFFF;
  --surface-2: #F0EADD;
  --ink: #1C1A17;
  --ink-soft: #4A453E;
  --ink-faint: #837B6F;
  --accent: #7A2A23;
  --accent-2: #2E3A4B;
  --line: rgba(28, 26, 23, 0.14);
  --line-strong: rgba(28, 26, 23, 0.28);
  --paper-edge: rgba(122, 42, 35, 0.10);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body: Georgia, 'Times New Roman', serif;
  --mono: 'Courier New', Courier, monospace;

  --container: 1180px;
  --header-h: 78px;

  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 0.4em;
}

p { margin: 0 0 1.1em; }

::selection { background: var(--accent); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.eyebrow {
  font-family: var(--body);
  font-style: normal;
  font-size: 0.72rem;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 2000;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================ Header ============================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(246, 242, 234, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(246, 242, 234, 0.98);
  box-shadow: 0 8px 24px -16px rgba(28, 26, 23, 0.32);
  border-bottom-color: var(--line);
  height: 64px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand .mark { width: 30px; height: 30px; flex: none; color: var(--accent); }
.brand .mark svg { width: 100%; height: 100%; display: block; }
.brand small {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 26px;
}
.nav-desktop a {
  position: relative;
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transition: right 260ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { right: 0; }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--surface) !important;
  padding: 9px 18px;
  border-radius: 2px;
  font-size: 0.76rem !important;
  letter-spacing: 0.08em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--surface) !important; }

.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ============================ Drawer ============================ */

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 18px) 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -20px 0 50px -30px rgba(28,26,23,0.5);
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 18px;
  font-style: normal;
  font-family: var(--body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--ink);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  border-bottom: 0;
  padding: 14px;
}
.drawer .drawer-cta:hover { background: var(--accent); color: #fff; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============================ Main ============================ */

main { padding-top: var(--header-h); }

section { position: relative; }

.section {
  padding-block: clamp(56px, 9vw, 110px);
}
.section-narrow { max-width: 760px; margin: 0 auto; }

/* balance-wheel hairline divider */
.hairline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: var(--accent);
}
.hairline::before, .hairline::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}
.hairline .balance {
  width: 30px; height: 30px;
  flex: none;
}
.hairline .balance svg { width: 100%; height: 100%; display: block; }

/* second-hand sweep that draws section divider lines */
.sweep-rule {
  position: relative;
  height: 1px;
  background: var(--line);
  overflow: visible;
  margin: 0;
}
.sweep-rule .drawn {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--accent);
  transition: right 900ms cubic-bezier(.3,.7,.2,1);
}
.sweep-rule.is-in .drawn { right: 0; }
.sweep-rule .hand {
  position: absolute;
  top: 50%; left: 0;
  width: 14px; height: 14px;
  margin-top: -7px; margin-left: -7px;
  color: var(--accent);
  transform: rotate(-90deg);
  opacity: 0;
  transition: left 900ms cubic-bezier(.3,.7,.2,1), opacity 300ms ease, transform 900ms cubic-bezier(.3,.7,.2,1);
}
.sweep-rule.is-in .hand { left: 100%; opacity: 1; transform: rotate(270deg); }
@media (prefers-reduced-motion: reduce) {
  .sweep-rule .drawn { right: 0; transition: none; }
  .sweep-rule .hand { display: none; }
}

/* ============================ Hero ============================ */

.hero {
  padding-top: clamp(48px, 8vw, 90px);
  padding-bottom: clamp(40px, 7vw, 80px);
}
.hero .eyebrow { margin-bottom: 1.6rem; }
.hero h1 {
  font-size: clamp(3rem, 9.5vw, 4.5rem);
  line-height: 0.98;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 0.5em;
  max-width: 14ch;
}
.hero h1 .word {
  display: inline-block;
  animation: heroWord 720ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes heroWord {
  from { opacity: 0; transform: translateY(0.3em) rotate(1.2deg); }
  to { opacity: 1; transform: none; }
}
html.no-js .hero h1 .word { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero h1 .word { opacity: 1; transform: none; animation: none; }
}
.hero-sub {
  font-size: clamp(1.05rem, 2.3vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 44ch;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.8rem;
  align-items: center;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.trust-strip svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

/* hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(22px, 5vw, 60px);
  margin-top: 2.6rem;
  justify-content: start;
}
.hero-stats .stat .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stats .stat .lbl {
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ============================ Buttons ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface); transform: translateY(-2px);
}
.btn-primary .arrow { transition: transform 240ms ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--accent); border-color: var(--accent); transform: translateY(-2px);
}

/* ============================ Manifesto / intro ============================ */

.manifesto p:first-of-type::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 4.2em;
  line-height: 0.72;
  float: left;
  margin: 0.06em 0.12em 0 0;
  color: var(--accent);
}
.manifesto p { font-size: 1.15rem; line-height: 1.78; color: var(--ink-soft); }
.manifesto .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.section-head .lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 0.4rem;
}

/* ============================ Defter passages (timeline-ish editorial) ============================ */

.defter-entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-block: clamp(34px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.defter-entry:last-child { border-bottom: 0; }
.defter-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.defter-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--paper-edge);
  line-height: 0.8;
}
.defter-step {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
}
.defter-entry h3 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-top: 6px; }
.defter-entry p { color: var(--ink-soft); font-size: 1.06rem; }
.defter-entry .icon-wm {
  display: inline-flex;
  width: 40px; height: 40px;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.defter-entry .icon-wm svg {
  width: 100%; height: 100%; display: block;
  transform-origin: 50% 50%;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.defter-entry:hover .icon-wm svg { transform: rotate(30deg); }
@media (prefers-reduced-motion: reduce) {
  .defter-entry .icon-wm svg { transition: none; }
  .defter-entry:hover .icon-wm svg { transform: none; }
}

@media (min-width: 760px) {
  .defter-entry {
    grid-template-columns: 130px 1fr;
    gap: 30px;
    align-items: start;
  }
  .defter-meta { flex-direction: column; gap: 8px; }
}

/* ============================ Kalibreler list ============================ */

.kalibre-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.kalibre-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px 20px;
  align-items: center;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, padding-left 220ms ease;
}
.kalibre-row:hover { background: var(--surface); padding-left: 14px; }
.kalibre-row .ico {
  display: inline-flex;
  width: 34px; height: 34px;
  color: var(--accent);
  flex: none;
}
.kalibre-row .ico svg { width: 100%; height: 100%; display: block; }
.kalibre-row .body { min-width: 0; }
.kalibre-row h4 {
  font-size: 1.2rem;
  margin: 0 0 2px;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.kalibre-row p { margin: 0; font-size: 0.92rem; color: var(--ink-faint); }
.kalibre-row .tag {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .kalibre-row { grid-template-columns: auto 1fr; }
  .kalibre-row .tag { grid-column: 2; }
}

/* ============================ Ücret table ============================ */

.price-intro { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.price-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
  font-style: italic;
}

.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.96rem;
}
thead th {
  text-align: left;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-strong);
  font-weight: 700;
}
tbody td {
  padding: 18px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: 0; }
tbody td:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}
td .price {
  font-family: var(--mono);
  font-size: 0.96rem;
  color: var(--accent);
  white-space: nowrap;
  font-weight: 700;
}

/* pricing cards (packages) */
.packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
}
@media (min-width: 760px) { .packages { grid-template-columns: repeat(3, 1fr); } }
.pkg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.pkg:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -28px rgba(122,42,35,0.4); border-color: var(--paper-edge); }
.pkg.is-featured { border-color: var(--accent); }
.pkg .pkg-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
}
.pkg h3 { font-size: 1.5rem; margin: 8px 0 4px; }
.pkg .pkg-price {
  font-family: var(--mono);
  font-size: 1.3rem;
  color: var(--ink);
  margin: 8px 0 4px;
  font-weight: 700;
}
.pkg .pkg-sub { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 14px; }
.pkg ul { list-style: none; margin: 0 0 18px; padding: 0; }
.pkg ul li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 7px 0 7px 24px;
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.pkg ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 11px; height: 11px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}
.pkg ul li.excl { color: var(--ink-faint); }
.pkg ul li.excl::before { border-style: dashed; border-color: var(--ink-faint); }
.pkg ul li.excl::after {
  content: "";
  position: absolute;
  left: 3px; top: 19px;
  width: 5px; height: 1px;
  background: var(--ink-faint);
}
.pkg .pkg-foot { margin-top: auto; font-size: 0.78rem; color: var(--ink-faint); }

/* ============================ Hero-band (process / randevu) ============================ */

.band {
  background: var(--ink);
  color: #ECE6DA;
}
.band h2, .band h3, .band h4 { color: #fff; }
.band .eyebrow { color: #D98A80; }
.band .ink-soft, .band p { color: #C8C0B2; }
.band .hairline { color: #D98A80; }
.band .hairline::before, .band .hairline::after {
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.22), transparent);
}
.band .bigquote blockquote { color: #F4EEE3; }
.band .bigquote cite { color: #9AA6B5; }

.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: step;
}
.process .step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.process .step:last-child { border-bottom: 0; }
.process .step .marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.process .step .dot {
  width: 46px; height: 46px;
  border: 1px solid rgba(217,138,128,0.6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: #D98A80;
  flex: none;
}
.process .step .when {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9AA6B5;
}
.process .step h4 { font-size: 1.25rem; margin: 2px 0 6px; }
.process .step p { margin: 0; font-size: 0.98rem; }

/* ============================ Form ============================ */

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 40px);
}
.field { margin-bottom: 20px; display: block; }
.field > span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 0;
  border-bottom: 2px solid var(--line-strong);
  padding: 12px 4px;
  border-radius: 2px 2px 0 0;
  transition: border-color 200ms ease, background 200ms ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  background: var(--surface-2);
}
.field textarea { min-height: 130px; resize: vertical; }

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 20px;
}
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field.kvkk {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.field.kvkk > span { display: none; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
}
.field.kvkk label, .field.kvkk { line-height: 1.5; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
@media (min-width: 620px) { .form-submit .btn { width: auto; } }

/* ============================ Contact cards ============================ */

.contact-hero {
  padding-block: clamp(48px, 8vw, 90px);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.ccard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.ccard:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -26px rgba(28,26,23,0.4); }
.ccard .ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.ccard .ic svg { width: 22px; height: 22px; }
.ccard h3 { font-size: 1.1rem; font-style: italic; margin-bottom: 4px; }
.ccard a, .ccard .val {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 1.02rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.ccard a:hover { color: var(--accent); }
.ccard .sub { font-size: 0.82rem; color: var(--ink-faint); margin-top: 6px; }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.hours-grid .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.hours-grid .row:last-child { border-bottom: 0; }
.hours-grid .row .day { color: var(--ink-soft); }
.hours-grid .row .time { font-variant-numeric: tabular-nums; color: var(--ink); }
.hours-grid .row.today { background: var(--surface-2); }
.hours-grid .row.today .day { color: var(--accent); font-weight: 700; }

/* ============================ Reveal ============================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* spinning balance wheel (ambient) */
.spin {
  animation: spin 16s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spin { animation: none; } }

/* oscillating balance (back and forth) */
.osc { animation: osc 2.6s ease-in-out infinite; transform-origin: 50% 50%; }
@keyframes osc {
  0%, 100% { transform: rotate(-26deg); }
  50% { transform: rotate(26deg); }
}
@media (prefers-reduced-motion: reduce) { .osc { animation: none; } }

/* ============================ Testimonials / notes ============================ */

.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 26px 28px;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink);
}
.quote .who {
  font-family: var(--body);
  font-style: normal;
  font-size: 0.84rem;
  color: var(--ink-faint);
  margin-top: 10px;
}
.quote .who strong { color: var(--accent-2); font-weight: 700; }

.notes-list { border-top: 1px solid var(--line); }
.note-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.note-row .date {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  white-space: nowrap;
}
.note-row p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ============================ Manifesto big quote ============================ */

.bigquote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.bigquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  line-height: 1.24;
  margin: 0;
  color: var(--ink);
}
.bigquote cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============================ FAQ ============================ */

.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 4px;
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 300ms ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq .body {
  height: 0;
  padding: 0 4px;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq details[open] .body { height: auto; padding-block-end: 24px; }
.faq .body p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
@media (prefers-reduced-motion: reduce) {
  .faq .body { transition: none; }
}

/* ============================ Footer ============================ */

.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(44px, 6vw, 70px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 {
  font-size: 0.74rem;
  font-style: normal;
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; color: var(--ink-soft); max-width: 38ch; }
.footer-col a, .footer-col .val {
  display: block;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 5px 0;
  word-break: break-word;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { font-family: var(--mono); font-size: 0.72rem; }

/* ============================ Cookie banner ============================ */

.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: #ECE6DA;
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; margin: 0; }
}
.cookie-banner h4 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.86rem; color: #C8C0B2; margin-bottom: 16px; line-height: 1.55; }
.cookie-banner p a { color: #D98A80; text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 16px;
  font-family: var(--body);
  font-size: 0.86rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 200ms ease, color 200ms ease;
}
.cookie-actions [data-consent="accept"] { background: #fff; color: var(--ink); }
.cookie-actions [data-consent="accept"]:hover { background: #D98A80; color: var(--ink); }
/* Reddet carries equal visual weight to Kabul et (light solid, not a weak outline) so
   declining is as easy and prominent as accepting. */
.cookie-actions [data-consent="reject"] { background: #C9C1B4; color: var(--ink); border-color: #C9C1B4; }
.cookie-actions [data-consent="reject"]:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cookie-actions [data-consent="settings"] { background: transparent; color: #9AA6B5; border-color: rgba(255,255,255,0.18); flex: 1 1 100%; }
.cookie-actions [data-consent="settings"]:hover { color: #fff; }

/* ============================ Legal / doc pages ============================ */

.doc {
  max-width: 760px;
  margin: 0 auto;
}
.doc h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-bottom: 0.3em; }
.doc .updated { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 2.4rem; font-family: var(--mono); }
.doc h2 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); margin-top: 2.2em; }
.doc h3 { font-size: 1.2rem; margin-top: 1.6em; }
.doc p, .doc li { color: var(--ink-soft); font-size: 1.02rem; }
.doc ul, .doc ol { padding-left: 1.3em; }
.doc li { margin-bottom: 0.5em; }

.sitemap-list { list-style: none; padding: 0; columns: 2; column-gap: 40px; }
@media (max-width: 560px) { .sitemap-list { columns: 1; } }
.sitemap-list li { margin-bottom: 12px; break-inside: avoid; }
.sitemap-list a { font-family: var(--serif); font-style: italic; font-size: 1.15rem; }

/* 404 */
.err-wrap { text-align: center; max-width: 620px; margin: 0 auto; padding-block: clamp(60px, 12vw, 140px); }
.err-wrap .code { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: clamp(5rem, 18vw, 11rem); color: var(--accent); line-height: 0.9; }
.err-wrap h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0.4em 0; }

/* thank you */
.thanks-wrap { text-align: center; max-width: 620px; margin: 0 auto; padding-block: clamp(60px, 12vw, 130px); }
.thanks-wrap .ic {
  width: 70px; height: 70px; margin: 0 auto 24px;
  border-radius: 50%; background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--accent);
}
.thanks-wrap h1 { font-size: clamp(2rem, 5vw, 3rem); }
.thanks-wrap p { color: var(--ink-soft); font-size: 1.1rem; }

/* utility */
.text-center { text-align: center; }
.mt-l { margin-top: clamp(28px, 5vw, 56px); }
.ink-soft { color: var(--ink-soft); }
.lead-spacer { height: clamp(20px, 4vw, 40px); }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
