:root {
  color-scheme: light;
  --cream: #f2e6d2;
  --paper: #fffaf1;
  --teal: #178e87;
  --ink: #232725;
  --coral: #e75a3c;
  --muted: #68706b;
  --line: rgba(35, 39, 37, 0.16);
  --shadow: 0 24px 70px rgba(35, 39, 37, 0.13);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 5%, rgba(23, 142, 135, 0.14), transparent 30rem),
    var(--cream);
  line-height: 1.65;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; }
.brand img { width: 42px; height: 42px; border-radius: 11px; }

nav, .language-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
nav a, .language-nav a { text-underline-offset: 5px; text-decoration-thickness: 1px; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 8vw, 96px);
  min-height: 72vh;
  padding: 56px 0 88px;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 250, 241, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.06; letter-spacing: -0.035em; }
h1 { margin: 22px 0; font-size: clamp(3.4rem, 9vw, 7rem); }
h2 { margin: 0 0 20px; font-size: clamp(2rem, 5vw, 3.8rem); }
h3 { margin: 0 0 10px; font-size: 1.2rem; }
p { margin: 0 0 20px; }
.lede { max-width: 42rem; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: min(68vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
}

.hero-art img {
  position: relative;
  width: min(55vw, 340px);
  border-radius: 26%;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.profile-strip {
  position: absolute;
  bottom: 6%;
  left: 0;
  display: flex;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(35, 39, 37, 0.9);
  color: white;
  box-shadow: var(--shadow);
}
.profile-strip span { padding: 6px 10px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.07em; }
.profile-strip span:first-child { border-radius: 999px; background: var(--coral); }

.section { padding: 88px 0; border-top: 1px solid var(--line); }
.section-intro { max-width: 700px; margin-bottom: 40px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.7);
}
.card-number { color: var(--coral); font-weight: 900; }
.card p { color: var(--muted); }

.privacy-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 28px;
  border-radius: 24px;
  color: white;
  background: var(--ink);
}
.privacy-note strong { color: var(--cream); font-size: 1.15rem; }
.privacy-note .mark { color: var(--coral); font-size: 2rem; line-height: 1; }

.page-main { width: min(760px, 100%); padding: 72px 0 110px; }
.page-main h1 { font-size: clamp(3rem, 8vw, 5.6rem); }
.page-main h2 { margin-top: 54px; font-size: 1.8rem; }
.page-main li { margin-bottom: 10px; }
.meta { color: var(--muted); }
.callout { margin: 32px 0; padding: 24px; border-left: 5px solid var(--coral); background: var(--paper); }

footer { padding: 36px 0 56px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }

.consent-panel {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  width: min(430px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.consent-panel[hidden] { display: none; }
.consent-panel p { color: var(--muted); font-size: 0.92rem; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; }
button {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}
button.primary { color: white; border-color: var(--teal); background: var(--teal); }
.privacy-controls { margin-top: 24px; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  .site-header > nav { justify-content: flex-end; gap: 10px; font-size: 0.88rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 38px; }
  .hero-art { min-height: 430px; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .profile-strip { left: 50%; transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
