@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ink: #18252b;
  --muted: #5b6a6f;
  --ice: #eef8fa;
  --paper: #fbfdfc;
  --amber: #d99319;
  --honey: #f4c45e;
  --smoke: #839399;
  --line: rgba(45, 72, 79, .18);
  --glass: rgba(255, 255, 255, .67);
  --shadow: 0 22px 60px rgba(41, 62, 65, .13);
  --radius: 6px 24px 6px 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 3%, rgba(222, 164, 45, .20), transparent 23rem),
    linear-gradient(145deg, #f8fcfc, #eaf3f5 48%, #fff8e8);
  font: 400 1rem/1.7 "DM Sans", sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
a { color: inherit; text-underline-offset: .2em; }
img { display: block; max-width: 100%; object-fit: cover; }
h1, h2, h3, strong, .brand { font-family: "Space Grotesk", sans-serif; }
h1 { margin: .15em 0 .4em; font-size: clamp(2.8rem, 7vw, 6.5rem); line-height: .95; letter-spacing: -.06em; }
h2 { font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1.08; letter-spacing: -.04em; }
h3 { font-size: 1.3rem; line-height: 1.25; }
p { max-width: 68ch; }
main { width: min(1200px, calc(100% - 40px)); margin: auto; }
main > section, main > header, .legal-copy { margin: clamp(4rem, 10vw, 9rem) 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 20; padding: .7rem 1rem; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.site-header {
  width: min(1320px, calc(100% - 32px));
  min-height: 84px;
  margin: 12px auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.75);
  border-bottom-color: var(--line);
  border-radius: 5px 22px;
  background: rgba(249, 253, 253, .67);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 10px;
  z-index: 10;
  box-shadow: 0 8px 30px rgba(37, 56, 60, .08);
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; letter-spacing: -.03em; }
.brand span { display: grid; place-items: center; width: 48px; height: 48px; color: #382a12; border: 1px solid rgba(105, 75, 19, .25); border-radius: 4px 15px; background: linear-gradient(145deg, rgba(255,255,255,.65), rgba(238,170,38,.72)); box-shadow: inset 0 0 14px rgba(255,255,255,.8); }
nav { display: flex; gap: clamp(.8rem, 2.4vw, 2rem); align-items: center; }
nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .92rem; }
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }
nav a[aria-current="page"]::after { content: ""; display: block; height: 2px; background: var(--amber); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--glass); padding: .7rem; font: inherit; }
.hero { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; min-height: 72vh; }
.hero__content { padding: 3rem 0; }
.hero__content h1 { max-width: 10ch; }
.lead { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--muted); }
.eyebrow, .tag, .meta { color: #8a5b08; text-transform: uppercase; letter-spacing: .17em; font-size: .75rem; font-weight: 700; }
.hero__visual { margin: 0; position: relative; }
.hero__visual::before { content: ""; position: absolute; inset: -20px 35% 28% -30px; z-index: -1; border: 1px solid rgba(217,147,25,.32); background: rgba(243,190,78,.25); backdrop-filter: blur(8px); border-radius: 30px 5px; }
.hero__visual img { height: min(620px, 70vh); width: 100%; border-radius: 6px 80px 6px 36px; filter: saturate(.82); box-shadow: var(--shadow); }
.hero__visual figcaption { padding: 1rem 0; color: var(--muted); font-size: .85rem; }
.actions { display: flex; gap: 1.4rem; align-items: center; margin-top: 2rem; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: .7rem 1.25rem; border: 1px solid #b77405; border-radius: 3px 14px; color: #2b2417; background: linear-gradient(150deg, #fff3c9, #dda028); box-shadow: inset 0 1px rgba(255,255,255,.9), 0 8px 18px rgba(179,119,13,.16); font: 600 .92rem "Space Grotesk", sans-serif; text-decoration: none; cursor: pointer; }
.button:hover { background: linear-gradient(150deg, #fff9e6, #e8af42); transform: translateY(-1px); }
.button--ghost { background: rgba(255,255,255,.55); border-color: var(--line); box-shadow: none; }
.text-link { font-weight: 600; }
.signal-grid, .cards, .values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.signal-grid article, .values article { padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(12px); border-radius: var(--radius); }
.signal-grid span { color: var(--amber); font: 700 1.2rem "Space Grotesk"; }
.signal-grid h2, .values h2 { font-size: 1.35rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; }
.quote { padding: clamp(2rem, 5vw, 5rem); border-radius: 40px 7px; background: linear-gradient(145deg, rgba(255,255,255,.7), rgba(237,177,53,.22)); border: 1px solid rgba(215,153,32,.25); box-shadow: var(--shadow); }
blockquote { margin: 0; font: 600 clamp(1.6rem, 3vw, 2.8rem)/1.25 "Space Grotesk"; letter-spacing: -.04em; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2rem; }
.section-heading h2 { margin: .2rem 0; }
.card { overflow: hidden; background: rgba(255,255,255,.66); border: 1px solid var(--line); border-radius: 5px 35px 5px 20px; box-shadow: 0 14px 35px rgba(41, 62, 65, .08); }
.card img { width: 100%; height: 220px; }
.card > div { padding: 1.5rem; }
.card h3 a { text-decoration: none; }
.newsletter { padding: clamp(2rem, 6vw, 5rem); display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: end; border-radius: 5px 50px; color: #f4fafb; background: linear-gradient(135deg, rgba(29,45,49,.98), rgba(61,75,75,.92)); box-shadow: var(--shadow); }
.newsletter .eyebrow { color: var(--honey); }
.inline-form { display: grid; grid-template-columns: 1fr auto; gap: .6rem; }
label { display: grid; gap: .4rem; font-weight: 600; font-size: .9rem; }
.inline-form label span { position: absolute; width: 1px; height: 1px; overflow: hidden; }
input, textarea, select { width: 100%; min-height: 48px; padding: .75rem 1rem; border: 1px solid var(--line); border-radius: 3px 12px; background: rgba(255,255,255,.88); color: var(--ink); font: inherit; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(225,164,43,.3); border-color: var(--amber); }
.form-status { grid-column: 1 / -1; min-height: 1.7em; margin: .2rem 0; font-weight: 600; }
.page-intro { max-width: 960px; padding: clamp(4rem, 10vw, 8rem) 0 2rem; }
.page-intro h1 { font-size: clamp(3.2rem, 8vw, 7.4rem); }
.article-list { display: grid; gap: 5rem; }
.feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; scroll-margin-top: 130px; }
.feature:nth-child(even) img { order: 2; }
.feature img { width: 100%; height: 380px; border-radius: 4px 38px; box-shadow: var(--shadow); }
.score { padding: clamp(2rem, 5vw, 4rem); background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 5px 40px; }
.score ol { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: score; }
.score li { display: grid; gap: .7rem; padding: 1.5rem; border-top: 3px solid var(--amber); background: rgba(238,248,250,.8); }
.score li::before { counter-increment: score; content: "0" counter(score); color: var(--amber); font: 700 1.2rem "Space Grotesk"; }
.method { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; }
.method img { min-height: 480px; border-radius: 5px 60px; box-shadow: var(--shadow); }
.trend-table { border: 1px solid var(--line); border-radius: 4px 22px; overflow: hidden; background: var(--glass); }
.trend-table > div { display: grid; grid-template-columns: 1.2fr .5fr 1fr; gap: 1rem; padding: 1rem 1.3rem; border-bottom: 1px solid var(--line); }
.trend-table > div:last-child { border: 0; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: start; }
.contact-layout > div { padding: clamp(1.4rem, 4vw, 3rem); background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-form { display: grid; gap: 1.2rem; }
.check { grid-template-columns: auto 1fr; align-items: start; }
.check input { width: 20px; min-height: 20px; margin-top: .25rem; }
address { font-style: normal; }
.small { font-size: .85rem; color: var(--muted); }
.legal-intro { padding-top: 5rem; max-width: 800px; }
.legal-intro h1 { font-size: clamp(3rem, 7vw, 6rem); }
.legal-copy { max-width: 850px; }
.legal-copy section { padding: 1.3rem 0; border-top: 1px solid var(--line); }
.legal-copy h2 { font-size: 1.5rem; }
.not-found { min-height: 64vh; display: grid; place-content: center; text-align: center; }
.not-found h1 { max-width: 10ch; }
.not-found p, .not-found a { margin-left: auto; margin-right: auto; }
.site-footer { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; padding: 5rem max(24px, calc((100vw - 1200px)/2)); color: #dce8e9; background: #1d2b2f; }
.site-footer > div { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.site-footer h2 { font-size: 1rem; color: var(--honey); }
.site-footer a { color: inherit; }
.brand--footer span { color: #342813; }
.copyright { grid-column: 1/-1; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15); color: #9eb0b3; }
.cookie-banner { position: fixed; z-index: 30; left: 20px; right: 20px; bottom: 20px; max-width: 920px; margin: auto; padding: 1.25rem; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 5px 22px; background: rgba(239,247,247,.94); backdrop-filter: blur(18px); box-shadow: var(--shadow); }
.cookie-banner:not([hidden]) { display: grid; }
.cookie-banner p { margin: .2rem 0; }
.cookie-banner > div:last-of-type { display: flex; gap: .7rem; }
.inline-status { grid-column: 1/-1; margin: 0; }

@media (max-width: 850px) {
  h1 { letter-spacing: -.05em; }
  .site-header { align-items: center; }
  .nav-toggle { display: block; }
  nav { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 1.2rem; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 5px 20px; background: rgba(248,252,252,.97); box-shadow: var(--shadow); }
  nav[data-open="true"] { display: flex; }
  .hero, .split, .newsletter, .feature, .method, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__visual img { height: 480px; }
  .feature:nth-child(even) img { order: 0; }
  .signal-grid, .cards, .values { grid-template-columns: 1fr; }
  .score ol { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  main { width: min(100% - 28px, 1200px); }
  .brand strong { font-size: .85rem; }
  .brand span { width: 40px; height: 40px; font-size: .8rem; }
  .hero__visual img { height: 380px; }
  .inline-form { grid-template-columns: 1fr; }
  .score ol, .site-footer { grid-template-columns: 1fr; }
  .trend-table > div { grid-template-columns: 1fr; gap: .25rem; }
  .cookie-banner:not([hidden]) { display: block; }
  .cookie-banner > div:last-of-type { margin-top: 1rem; }
}
