/* ==========================================================================
   Furdolap — Ruhhy 21852
   Statikus CSS. Nincs JavaScript. Nincs külső erőforrás.
   ========================================================================== */

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

:root {
  --ink:        #1a1714;
  --ink-soft:   #3f3a34;
  --ink-mute:   #6d665c;
  --ink-faint:  #948c82;
  --paper:      #f4efe7;
  --wash:       #ebe4d8;
  --foam:       #fbf8f3;
  --rule:       #ddd4c6;
  --rule-hard:  #1a1714;
  --clay:       #c24e22;
  --clay-deep:  #9a3b18;
  --sage:       #3d5c55;
  --night:      #161311;
  --gold:       #c9a36a;

  --serif: Palatino, "Palatino Linotype", "Iowan Old Style", "Times New Roman", Georgia, serif;
  --sans:  "Avenir Next", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --measure: 38rem;
  --wide:    68rem;
  --gutter:  1.5rem;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.74;
  letter-spacing: 0.004em;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--wide { max-width: var(--wide); }

section { padding-block: 0; }

hr.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin-block: 3.6rem;
}

hr.rule--hard { border-top: 2px solid var(--rule-hard); }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0 0 0.8em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5.8vw, 3.55rem); letter-spacing: -0.032em; }
h2 { font-size: clamp(1.5rem, 3.8vw, 2.05rem); margin-top: 2.4em; }
h3 { font-size: clamp(1.16rem, 2.8vw, 1.32rem); margin-top: 2.1em; }
h4 { font-size: 1.05rem; margin-top: 1.8em; }

p { margin: 0 0 1.32em; }

.lead {
  font-size: clamp(1.16rem, 2.8vw, 1.34rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.dek {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-mute);
}

.kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 1rem;
}

.small {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.62;
  color: var(--ink-mute);
}

.smaller {
  font-family: var(--sans);
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--ink-faint);
}

strong, b { font-weight: 700; }
em, i     { font-style: italic; }

.dropcap::first-letter {
  float: left;
  font-size: 4rem;
  line-height: 0.82;
  font-weight: 700;
  padding: 0.05em 0.1em 0 0;
  margin-top: 0.04em;
  color: var(--clay);
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  transition: background-color .18s ease, color .18s ease;
}

a:hover,
a:focus-visible { background: var(--clay); color: var(--foam); text-decoration-color: transparent; }

a:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

ul, ol { margin: 0 0 1.45em; padding-left: 1.35rem; }
li { margin-bottom: 0.58em; }
li::marker { color: var(--clay); }

blockquote {
  margin: 2.5rem 0;
  padding: 0.2rem 0 0.2rem 1.45rem;
  border-left: 3px solid var(--clay);
  font-style: italic;
  font-size: 1.26rem;
  line-height: 1.48;
  color: var(--ink);
}

blockquote p:last-child { margin-bottom: 0; }

.pull {
  margin: 2.8rem 0;
  padding: 1.55rem 1.45rem;
  background: var(--wash);
  border-top: 3px solid var(--clay);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
  font-style: italic;
}
.pull p { margin: 0; }

/* --------------------------------------------------------------------------
   Chapters
   -------------------------------------------------------------------------- */

.chapter { margin-top: 5rem; }

.chapter__num {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.chapter__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* --------------------------------------------------------------------------
   Boxes
   -------------------------------------------------------------------------- */

.box {
  border: 1px solid var(--rule);
  padding: 1.45rem 1.4rem 1.15rem;
  margin: 2.3rem 0;
  background: var(--foam);
}

.box--fill  { background: var(--wash); border-color: transparent; }
.box--hard  { border: 2px solid var(--ink); background: var(--foam); }

.box__label {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 0.85rem;
}

.box p:last-child, .box ul:last-child, .box ol:last-child { margin-bottom: 0; }
.box p, .box li { font-family: var(--sans); font-size: 0.93rem; line-height: 1.65; }

/* --------------------------------------------------------------------------
   Ad label
   -------------------------------------------------------------------------- */

.adlabel {
  background: var(--night);
  color: var(--foam);
  border-bottom: 3px solid var(--clay);
}

.adlabel--bottom {
  border-bottom: 0;
  border-top: 3px solid var(--clay);
}

.adlabel__inner {
  max-width: var(--wide);
  margin-inline: auto;
  padding: 0.9rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.9rem;
}

.adlabel__mark {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1.5px solid var(--clay);
  color: var(--gold);
  padding: 0.18rem 0.5rem;
  white-space: nowrap;
}

.adlabel__text {
  font-family: var(--sans);
  font-size: 0.76rem;
  line-height: 1.48;
  color: rgba(251,248,243,.82);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Masthead
   -------------------------------------------------------------------------- */

.masthead {
  background: var(--foam);
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}

.masthead__inner {
  max-width: var(--wide);
  margin-inline: auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.masthead__name {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}

.masthead__name:hover { background: none; color: var(--clay); }

.masthead__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masthead__nav a { text-decoration: none; color: var(--ink-mute); }
.masthead__nav a:hover { background: var(--clay); color: var(--foam); }

/* --------------------------------------------------------------------------
   Hero — split
   -------------------------------------------------------------------------- */

.hero {
  padding: 0;
  background: var(--foam);
  border-bottom: 1px solid var(--rule);
}

.hero__grid {
  max-width: var(--wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
}

.hero__copy {
  padding: 2.6rem var(--gutter) 2.2rem;
}

.hero__shot {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-decoration: none;
  line-height: 0;
}
.hero__shot:hover,
.hero__shot:focus-visible { background: #fff; color: inherit; }

.hero__shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-cap {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ink-mute);
  margin-top: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.hero__meta {
  font-family: var(--sans);
  font-size: 0.74rem;
  color: var(--ink-mute);
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  color: var(--ink-mute);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.byline strong { color: var(--ink); font-weight: 700; }

.hero .cta {
  margin-top: 0.4rem;
  max-width: 22rem;
}

@media (min-width: 56rem) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }
  .hero__copy {
    padding: 4rem 2.4rem 3.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero__shot img {
    height: auto;
    max-height: none;
    min-height: 0;
    width: 100%;
    object-fit: contain;
  }
}

/* --------------------------------------------------------------------------
   TOC
   -------------------------------------------------------------------------- */

.toc {
  margin: 3.2rem 0;
  background: var(--foam);
  border: 1px solid var(--rule);
  padding: 1.5rem 1.4rem 0.35rem;
}

.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}

.toc li { margin: 0; border-bottom: 1px solid var(--rule); }

.toc a {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.74rem 0.1rem;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.9rem;
}

.toc a:hover { background: var(--ink); color: var(--foam); padding-inline: 0.5rem; }

.toc__n {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clay);
  min-width: 1.8rem;
  font-variant-numeric: tabular-nums;
}

.toc a:hover .toc__n { color: var(--gold); }

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */

.tablewrap { overflow-x: auto; margin: 2.2rem 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.5;
}

caption {
  caption-side: top;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 0.75rem;
}

th, td {
  text-align: left;
  vertical-align: top;
  padding: 0.72rem 0.9rem 0.72rem 0;
  border-bottom: 1px solid var(--rule);
}

thead th {
  border-bottom: 2px solid var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

tbody tr:last-child td { border-bottom: 1px solid var(--ink); }

/* --------------------------------------------------------------------------
   Offer
   -------------------------------------------------------------------------- */

.offer {
  border: 1px solid var(--rule);
  margin: 3rem 0;
  background: var(--foam);
}

.offer__head {
  background: var(--clay);
  color: var(--foam);
  padding: 0.72rem 1.3rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer__body { padding: 1.5rem 1.25rem; }
.offer__body h3 { margin-top: 0; }
.offer__body h3 a { text-decoration: none; }

.spec {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  border-top: 1px solid var(--rule);
}

.spec li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  justify-content: space-between;
  padding: 0.58rem 0;
  border-bottom: 1px solid var(--rule);
  margin: 0;
  font-family: var(--sans);
  font-size: 0.88rem;
}

.spec b { font-weight: 400; color: var(--ink-mute); }
.spec span { font-weight: 700; text-align: right; }

.price {
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 1.2rem 0 0.35rem;
}
.price a { color: inherit; text-decoration: none; }
.price a:hover,
.price a:focus-visible {
  background: none;
  color: var(--clay);
  text-decoration: underline;
}
.price small {
  display: block;
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--ink-mute);
  letter-spacing: 0;
  margin-top: 0.4rem;
  line-height: 1.5;
}

.cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--clay);
  color: var(--foam);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 1.2rem;
  margin: 1.4rem 0 0.85rem;
  text-decoration: none;
  border: 2px solid var(--clay);
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--night);
  border-color: var(--night);
  color: var(--foam);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(26,23,20,.18);
}

.cta__sub {
  font-family: var(--sans);
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
  text-align: center;
}

.cta--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.cta--ghost:hover,
.cta--ghost:focus-visible {
  background: var(--ink);
  color: var(--foam);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--rule); margin: 2rem 0; }

.faq details { border-bottom: 1px solid var(--rule); }

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 2rem 1rem 0;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 0.85rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--clay);
  transition: transform .22s ease;
}

.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { padding-left: 0.45rem; }
.faq summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.faq details > div { padding: 0 0 1.2rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Checklist & glossary
   -------------------------------------------------------------------------- */

.checklist { list-style: none; padding: 0; margin: 1.6rem 0; }

.checklist li {
  position: relative;
  padding: 0.62rem 0 0.62rem 2.1rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 1.5px solid var(--clay);
}

.glossary { margin: 2rem 0; border-top: 1px solid var(--rule); }

.glossary dt {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  padding-top: 1rem;
}

.glossary dd {
  margin: 0.25rem 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Photos
   -------------------------------------------------------------------------- */

.photo-break { margin: 2.6rem 0; }
.photo-break a { display: block; background: none; line-height: 0; }
.photo-break a:hover { background: none; }
.photo-break img {
  display: block;
  width: 100%;
  height: auto;
}
.photo-break figcaption {
  font-family: var(--sans);
  font-size: 0.76rem;
  color: var(--ink-mute);
  margin-top: 0.7rem;
  letter-spacing: 0.02em;
  padding-left: 0.85rem;
  border-left: 2px solid var(--clay);
}

.ribbon {
  margin: 3.4rem 0;
  background: #d8d3cc;
}
.ribbon img {
  display: block;
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  height: auto;
  max-height: 28rem;
  object-fit: cover;
}
.ribbon figcaption {
  max-width: var(--measure);
  margin: 0.8rem auto 0;
  padding-inline: var(--gutter);
  font-family: var(--sans);
  font-size: 0.76rem;
  color: var(--ink-mute);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 2.1rem 0 2.4rem;
}
.stats div {
  background: var(--wash);
  padding: 1.15rem 0.6rem 1rem;
  text-align: center;
}
.stats b {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--clay);
}
.stats span {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.28rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.3rem 0 1.6rem;
}
.gallery a {
  display: block;
  background: #d8d3cc;
  line-height: 0;
}
.gallery a:hover,
.gallery a:focus-visible { background: #d8d3cc; }
.gallery img {
  width: 100%;
  height: 8.8rem;
  object-fit: cover;
  display: block;
}
.gallery a:first-child {
  grid-column: 1 / -1;
  background: #fff;
}
.gallery a:first-child img {
  height: auto;
  max-height: 26rem;
  object-fit: contain;
  background: #fff;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  margin-top: 5rem;
  padding-block: 3rem 3.2rem;
  background: var(--night);
  color: var(--foam);
  border-top: 3px solid var(--clay);
}

.adlabel--bottom + .footer {
  margin-top: 0;
  border-top: 1px solid #2a2622;
}
.footer h4 { color: var(--gold); }
.footer p, .footer li, .footer a { color: #cfc6ba; }
.footer a:hover { background: var(--clay); color: var(--foam); }

.footer__grid {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1fr;
}

.footer h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}

.footer p, .footer li {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.42rem; }

/* --------------------------------------------------------------------------
   Consent
   -------------------------------------------------------------------------- */

.consent {
  border: 2px solid var(--ink);
  background: var(--foam);
  padding: 1.3rem;
  margin: 2.5rem 0;
}

.consent__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.consent__btn {
  flex: 1 1 12rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border: 2px solid var(--ink);
  text-decoration: none;
  background: var(--foam);
  color: var(--ink);
}

.consent__btn:hover { background: var(--ink); color: var(--foam); }

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: rise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 46%;
    }
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .fade-in { animation: fadein .85s cubic-bezier(.2,.7,.3,1) both; }
  .fade-in--1 { animation-delay: .05s; }
  .fade-in--2 { animation-delay: .16s; }
  .fade-in--3 { animation-delay: .28s; }
  .fade-in--4 { animation-delay: .4s; }
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

main.wrap { padding-block: 1rem 3rem; }

@media (min-width: 46rem) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
  .offer__body  { padding: 2rem 1.85rem; }
  .toc { padding: 1.8rem 1.8rem 0.5rem; }
}

@media (max-width: 30rem) {
  body { font-size: 1.05rem; }
  :root { --gutter: 1.15rem; }
  .dropcap::first-letter { font-size: 3.2rem; }
  .masthead__inner { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr; }
  .gallery a:first-child img { height: auto; max-height: 20rem; }
  .gallery img { height: 7.4rem; }
}

@media print {
  body { font-size: 11pt; }
  .masthead__nav, .cta, .adlabel { display: none; }
  a { text-decoration: none; }
}
