/* MeetingNotes.work — site stylesheet (hand-written, no build step) */
:root {
  --yellow: #facc15;
  --yellow-dark: #eab308;
  --yellow-soft: #fef08a;
  --brand-50: #fefce8;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-500: #78716c;
  --stone-400: #a8a29e;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;
  --white: #fff;
  --emerald: #059669;
  --emerald-soft: #d1fae5;
  --radius: .875rem;
  --radius-lg: 1.25rem;
  --shadow: 0 1px 2px rgba(28,25,23,.04), 0 8px 24px rgba(28,25,23,.08);
  --shadow-lg: 0 2px 4px rgba(28,25,23,.05), 0 24px 60px rgba(28,25,23,.14);
  --font: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1100px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--stone-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { color: var(--stone-900); line-height: 1.15; margin: 0 0 .75rem; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.5rem); font-weight: 900; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.35rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--stone-900); text-decoration-thickness: 1px; text-underline-offset: .15em; }
a:hover { color: var(--stone-700); }
ul { padding-left: 1.25rem; }
strong { color: var(--stone-900); font-weight: 700; }
code { font-size: .9em; background: var(--stone-100); padding: .1em .35em; border-radius: .3em; }

:focus-visible { outline: 3px solid var(--stone-900); outline-offset: 3px; border-radius: .25rem; }
.btn:focus-visible { outline-color: var(--stone-900); }
.skip-link { position: absolute; left: -999px; top: .5rem; z-index: 200; background: var(--stone-900); color: #fff; padding: .5rem 1rem; border-radius: var(--radius); }
.skip-link:focus { left: .5rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 760px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 800; line-height: 1.2;
  padding: .85rem 1.5rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color .15s, border-color .15s, transform .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: var(--stone-900); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--stone-900); }
.btn-secondary { background: transparent; color: var(--stone-900); border-color: var(--stone-300); }
.btn-secondary:hover { border-color: var(--stone-900); color: var(--stone-900); }
.btn-dark { background: var(--stone-900); color: #fff; border-color: var(--stone-900); }
.btn-dark:hover { background: var(--stone-800); color: #fff; }
.btn-lg { font-size: 1.1rem; padding: 1rem 1.9rem; }
.btn-sm { font-size: .95rem; padding: .55rem 1rem; }
.btn svg { width: 1.2em; height: 1.2em; }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: inherit; text-decoration: underline; cursor: pointer; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-200);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 4rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; gap: .55rem; font-weight: 900; font-size: 1.15rem; text-decoration: none; color: var(--stone-900); white-space: nowrap; }
.logo svg { width: 2rem; height: 2rem; flex: none; }
.logo span { color: var(--yellow-dark); }
.site-nav { display: none; }
.site-nav a { font-weight: 700; color: var(--stone-500); text-decoration: none; padding: .4rem .7rem; border-radius: .5rem; }
.site-nav a:hover { color: var(--stone-900); background: var(--stone-100); }
.header-cta { display: flex; align-items: center; gap: .75rem; }
.header-cta .lang { display: none; }
@media (min-width: 768px) {
  .site-nav { display: flex; align-items: center; gap: .25rem; }
  .header-cta .lang { display: inline-block; }
}

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--brand-50); }
.section-soft { background: var(--stone-50); }
.section-dark { background: var(--stone-900); color: var(--stone-300); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 680px; margin-bottom: 2.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.15rem; color: var(--stone-500); }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--stone-500); margin-bottom: .75rem; }
.section-dark .eyebrow { color: var(--yellow); }
@media (min-width: 768px) { .section { padding: 5.5rem 0; } }

/* Hero */
.hero { background: linear-gradient(180deg, var(--brand-50) 0%, #fff 100%); padding: 3rem 0 3.5rem; overflow: hidden; }
.hero .container { display: grid; gap: 2.5rem; align-items: center; }
.hero p.lead { font-size: 1.2rem; color: var(--stone-700); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0 .75rem; }
.hero-note { font-size: .95rem; color: var(--stone-500); margin: 0; }
.hero-visual { display: flex; justify-content: center; }
@media (min-width: 900px) {
  .hero { padding: 5rem 0; }
  .hero .container { grid-template-columns: 1.15fr .85fr; gap: 3rem; }
}

/* CSS phone frame */
.phone {
  position: relative; width: 270px; max-width: 80vw; aspect-ratio: 390 / 844;
  background: var(--stone-900); border-radius: 2.6rem; padding: .7rem;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px #3f3a37;
}
.phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 2rem; background: var(--stone-100); }
.phone-sm { width: 220px; }

/* Grids and cards */
.grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius-lg); padding: 1.5rem; }
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card .moment { display: block; font-size: .85rem; font-weight: 800; color: var(--yellow-dark); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.icon { width: 2.6rem; height: 2.6rem; border-radius: .75rem; background: var(--yellow-soft); color: var(--stone-900); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.icon svg { width: 1.4rem; height: 1.4rem; }
.card-dark { background: var(--stone-800); border-color: #3f3a37; color: var(--stone-300); }
.card-dark h3 { color: #fff; }
.card-dark .icon { background: rgba(250,204,21,.15); color: var(--yellow); }

/* Steps */
.step { display: grid; gap: 1.5rem; align-items: center; padding: 2rem 0; }
.step + .step { border-top: 1px solid var(--stone-200); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--yellow); color: var(--stone-900); font-weight: 900; margin-bottom: .75rem; }
.step-text p { color: var(--stone-500); }
.shot { border-radius: var(--radius); border: 1px solid var(--stone-200); box-shadow: var(--shadow); background: var(--stone-100); }
.shot img { border-radius: var(--radius); width: 100%; }
@media (min-width: 860px) {
  .step { grid-template-columns: 1fr 1.25fr; gap: 3rem; padding: 3rem 0; }
  .step:nth-child(even) .step-text { order: 2; }
}
.steps-compact { counter-reset: s; }
.steps-compact .card { position: relative; padding-top: 1.5rem; }

/* Video */
.video { border-radius: var(--radius-lg); overflow: hidden; background: var(--stone-900); box-shadow: var(--shadow-lg); aspect-ratio: 16 / 9; max-width: 900px; margin: 0 auto; }
.video video { width: 100%; height: 100%; object-fit: cover; }

/* Check list */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.checks li { display: flex; gap: .6rem; align-items: flex-start; }
.checks li::before { content: ""; flex: none; width: 1.3rem; height: 1.3rem; margin-top: .15rem; border-radius: 50%; background: var(--emerald-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 60% no-repeat; }
.section-dark .checks li::before { background-color: rgba(5,150,105,.25); }

/* Pricing */
.plans { align-items: stretch; }
.plan { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius-lg); padding: 1.5rem; }
.plan.featured { border: 2px solid var(--yellow); box-shadow: var(--shadow); position: relative; }
.plan .badge { position: absolute; top: -.8rem; left: 1.25rem; background: var(--yellow); color: var(--stone-900); font-size: .75rem; font-weight: 800; padding: .25rem .7rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }
.plan h3 { margin-bottom: .25rem; }
.plan .who { color: var(--stone-500); font-size: .95rem; margin-bottom: 1rem; min-height: 2.6em; }
.price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .25rem; }
.price strong { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.price span { color: var(--stone-500); font-size: .95rem; }
.plan .vat { font-size: .8rem; color: var(--stone-400); margin-bottom: 1.25rem; }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.5rem; color: var(--stone-700); }
.plan li { padding: .35rem 0; border-top: 1px solid var(--stone-100); }
.plan .btn { margin-top: auto; }
.pricing-note { text-align: center; color: var(--stone-500); margin-top: 1.5rem; font-size: .95rem; }

/* Teaser table */
.teaser { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--stone-200); }
.teaser th, .teaser td { padding: .8rem 1rem; text-align: left; border-top: 1px solid var(--stone-100); }
.teaser th { background: var(--stone-50); color: var(--stone-500); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; border-top: 0; }
.teaser td:first-child { font-weight: 800; color: var(--stone-900); }
.table-wrap { overflow-x: auto; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--stone-200); border-radius: var(--radius); margin-bottom: .75rem; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; font-weight: 800; color: var(--stone-900); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--stone-400); flex: none; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.25rem 1.25rem; color: var(--stone-700); }
.faq details > div p:last-child { margin: 0; }

/* Final CTA */
.cta-final { background: var(--stone-900); color: var(--stone-300); text-align: center; padding: 4.5rem 0; }
.cta-final h2 { color: #fff; }
.cta-final p { max-width: 36rem; margin: 0 auto 1.5rem; font-size: 1.15rem; }
.cta-final .hero-note { color: var(--stone-400); margin-top: .75rem; }

/* Footer */
.site-footer { background: var(--stone-900); color: var(--stone-400); padding: 2.5rem 0 2rem; font-size: .95rem; border-top: 1px solid #3f3a37; }
.site-footer .container { display: grid; gap: 1.25rem; }
.site-footer .logo { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.site-footer a, .site-footer .linklike { color: var(--stone-300); }
.site-footer a:hover, .site-footer .linklike:hover { color: #fff; }
.site-footer .legal { font-size: .85rem; }
@media (min-width: 768px) {
  .site-footer .container { grid-template-columns: auto 1fr; align-items: start; }
  .site-footer .legal { grid-column: 1 / -1; }
}

/* Consent banner */
.consent {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 150;
  max-width: 560px; margin: 0 auto;
  background: #fff; border: 1px solid var(--stone-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.25rem; font-size: .95rem;
}
.consent p { margin: 0 0 1rem; }
.consent-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.consent-actions .btn { flex: 1 1 10rem; }
@media (min-width: 768px) { .consent { left: auto; right: 1.5rem; bottom: 1.5rem; } }

/* Legal / prose pages */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
.prose h2 { font-size: 1.35rem; margin-top: 2.25rem; }
.prose h3 { font-size: 1.05rem; margin-top: 1.5rem; }
.prose a { color: var(--stone-900); }
.prose .meta { color: var(--stone-500); font-size: .9rem; margin-bottom: .5rem; }
.prose .lead { font-size: 1.15rem; color: var(--stone-500); }
.summary-box { background: var(--emerald-soft); border: 1px solid #a7f3d0; border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin: 2rem 0; }
.summary-box h2 { margin: 0 0 .5rem; font-size: 1rem; color: #064e3b; }
.summary-box ul { margin: 0; color: #065f46; }

/* 404 */
.center-page { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.center-page .container { max-width: 620px; }

/* Utilities */
.center { text-align: center; }
.muted { color: var(--stone-500); }
.mt-2 { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Photography (generated 2026-09-11) */
.hero-photo { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.section-photo { width: 100%; height: auto; border-radius: var(--radius-lg); display: block; margin: 0 auto 2rem; max-width: 960px; }
