/* ==========================================================================
   Megőrzöm Neked Fotó — style.css
   Sima HTML+CSS+JS oldal, build lépés nélkül.
   ========================================================================== */

:root {
  --ink: #1b1712;
  --ink-soft: #2a251d;
  --bg: #17140f;
  --bg-alt: #211c15;
  --cream: #f7f2e7;
  --cream-dim: #e8e0cd;
  --gold: #c9a15a;        /* akcentszín sötét háttéren (kontraszt kb. 7,4:1 az inken) */
  --gold-deep: #a37c3d;    /* dekoratív/hover árnyalat — HÁTTÉRRE, ne szövegre világos alapon */
  --gold-ink: #7a5d2e;     /* akcentszín/szöveg világos háttéren (kontraszt kb. 4,6–6,1:1) */
  --line: rgba(247, 242, 231, 0.14);
  --line-dark: rgba(27, 23, 18, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 4px;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* landing (főoldal): egyetlen teljes képernyős szekció, szándékosan nem görgethető */
html.landing, html.landing body {
  height: 100%;
  overflow: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-ink);
  font-weight: 600;
  margin-bottom: 0.9em;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--cream-dim); }
.section--dark {
  background: var(--bg);
  color: var(--cream);
}
.section--dark h2, .section--dark h3, .section--dark p { color: var(--cream); }
.section--dark .lead { color: rgba(247, 242, 231, 0.75); }
.section--dark .eyebrow { color: var(--gold); }

.section-head {
  max-width: 720px;
  margin: 0 auto 3.2rem;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover { background: var(--gold-deep); color: var(--ink); }
.btn-outline {
  border-color: currentColor;
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { background: var(--cream); color: var(--ink); }
.btn-outline.on-light { color: var(--ink); border-color: var(--ink); }
.btn-outline.on-light:hover { background: var(--ink); color: var(--cream); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.is-solid {
  background: rgba(23, 20, 15, 0.96);
  padding: 14px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* landing (főoldal): a fejlécnek nincs mire "szolidra" váltania görgetéskor
   (az oldal nem görgethető), ezért állandó, halvány üveghatású háttere van,
   hogy a váltakozó háttérképektől függetlenül is jól olvasható maradjon. */
html.landing .site-header {
  background: rgba(23, 20, 15, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.brand-mark {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 20px; height: 20px; fill: var(--gold); }
.brand-text { line-height: 1.15; }
.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.brand-text span {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.main-nav a {
  color: var(--cream);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-actions .btn { padding: 12px 24px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -5px; }
.nav-toggle span::after { position: absolute; top: 5px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* mobil böngészők címsorát is figyelembe véve, ahol támogatott */
  display: flex;
  align-items: center;
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,20,15,0.35) 0%, rgba(23,20,15,0.55) 55%, rgba(23,20,15,0.94) 100%);
  z-index: 1;
}
.hero .ph-label { background: linear-gradient(180deg, rgba(0,0,0,0.55), transparent); }

/* landing hero: több egymásra rétegzett kép, amik felváltva tűnnek fel/el (script.js) */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide .ph { width: 100%; height: 100%; border-radius: 0; align-items: flex-start; padding-top: 90px; }
/* eltérő gradiens iránytű diánként, hogy a valódi fotók beillesztéséig is látszódjon a váltás */
.hero-slide:nth-child(2) .ph { background: radial-gradient(circle at 72% 28%, rgba(201,161,90,0.35), transparent 55%), linear-gradient(135deg, #2c2620 0%, #171310 100%); }
.hero-slide:nth-child(3) .ph { background: radial-gradient(circle at 50% 75%, rgba(201,161,90,0.35), transparent 55%), linear-gradient(225deg, #2c2620 0%, #171310 100%); }
.hero-slide:nth-child(4) .ph { background: radial-gradient(circle at 22% 82%, rgba(201,161,90,0.35), transparent 55%), linear-gradient(45deg, #2c2620 0%, #171310 100%); }

.hero-dots {
  position: absolute;
  z-index: 3;
  right: 40px; bottom: 36px;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(247,242,231,0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.hero-dots button.is-active { background: var(--gold); border-color: var(--gold); transform: scale(1.25); }

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  width: 100%;
}
.hero-inner .eyebrow { color: var(--gold); }
.hero-inner h1 { color: var(--cream); max-width: 900px; }
.hero-inner .lead { color: rgba(247,242,231,0.82); max-width: 560px; margin-bottom: 2.2em; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- page header (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 190px 0 90px;
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}
.page-hero .ph { position: absolute; inset: 0; border-radius: 0; opacity: 0.55; }
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,20,15,0.75), rgba(23,20,15,0.94));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--cream); }
.page-hero .eyebrow { color: var(--gold); }

/* ---------- placeholder "photo" component ---------- */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 20%, rgba(201,161,90,0.35), transparent 55%),
    linear-gradient(135deg, #2c2620 0%, #171310 100%);
  aspect-ratio: var(--ar, 4 / 3);
  display: flex;
  align-items: flex-end;
}
.ph::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 30%;
  aspect-ratio: 1;
  transform: translate(-50%, -60%);
  opacity: 0.28;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path fill='%23c9a15a' d='M21 10l-3.6 5H10a4 4 0 0 0-4 4v29a4 4 0 0 0 4 4h44a4 4 0 0 0 4-4V19a4 4 0 0 0-4-4h-7.4L43 10H21zm11 13a13 13 0 1 1 0 26 13 13 0 0 1 0-26zm0 5a8 8 0 1 0 0 16 8 8 0 0 0 0-16z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ph-label {
  position: relative;
  z-index: 1;
  padding: 14px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,242,231,0.8);
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
  width: 100%;
}
.ph--tall { --ar: 3 / 4; }
.ph--wide { --ar: 16 / 9; }
.ph--square { --ar: 1 / 1; }

/* ---------- generic grid / cards ---------- */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 36px 30px;
}

.service-card { text-align: left; }
.service-card .icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-ink);
}
.service-card .icon svg,
.contact-info-list .ico svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { margin-bottom: 0.4em; }
.service-card p { color: var(--ink-soft); margin-bottom: 1.2em; font-size: 0.95rem; }
.service-card .more {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 600;
}

.step-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative;
  padding-top: 46px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.9rem; color: var(--ink-soft); }

.testimonial {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.testimonial p.quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
}
.testimonial .who {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
  background: var(--ink);
  color: var(--cream);
}
.price-card.featured h3, .price-card.featured .price { color: var(--cream); }
.price-card.featured ul li { color: rgba(247,242,231,0.85); border-color: var(--line); }
.price-card .badge {
  position: absolute; top: -14px; right: 28px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  margin: 0.2em 0 0.1em;
}
.price-card .price small { font-size: 0.9rem; font-weight: 400; opacity: 0.7; }
.price-card .price-note { font-size: 0.82rem; color: var(--gold-ink); margin-bottom: 1.4em; }
.price-card.featured .price-note { color: var(--gold); }
.price-card ul { list-style: none; margin: 0 0 2em; padding: 0; flex-grow: 1; }
.price-card ul li {
  padding: 11px 0;
  border-bottom: 1px dashed var(--line-dark);
  font-size: 0.92rem;
  display: flex; gap: 10px;
}
.price-card ul li::before { content: "✓"; color: var(--gold-ink); font-weight: 700; }
.price-card.featured ul li::before { color: var(--gold); }

.addon-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.addon-table th, .addon-table td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.95rem;
}
.addon-table th { text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--gold-ink); }
.addon-table td.price-col, .addon-table th.price-col { text-align: right; white-space: nowrap; }

.pricing-note {
  margin-top: 40px;
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  background: var(--cream-dim);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- gallery ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn.is-active, .filter-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item { cursor: pointer; }
.gallery-item .ph { transition: transform 0.4s ease; }
.gallery-item:hover .ph { transform: scale(1.03); }
.gallery-item[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,12,9,0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox-inner { max-width: 900px; width: 100%; }
.lightbox-inner .ph { --ar: 3/2; }
.lightbox-close {
  position: absolute; top: 28px; right: 34px;
  color: var(--cream);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
}

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }

.contact-info-list { list-style: none; margin: 0; padding: 0; }
.contact-info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-list .ico {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-info-list strong { display: block; color: var(--cream); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; color: var(--gold); }

.social-row { display: flex; gap: 14px; margin-top: 28px; }
.social-row a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: all 0.2s ease;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.social-row a svg { width: 17px; height: 17px; fill: currentColor; }

.map-block {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2c2620, #171310);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.map-block .pin {
  width: 46px; height: 46px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(201,161,90,0.15);
}
.map-block .pin span { transform: rotate(45deg); font-family: var(--font-display); color: var(--ink); font-weight: 700; }
.map-block .cap {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(247,242,231,0.7); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---------- values / usp ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.usp {
  text-align: center;
  padding: 10px;
}
.usp .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2em;
}
.usp h3 { font-size: 1.05rem; }
.usp p { font-size: 0.9rem; color: rgba(247,242,231,0.7); }

/* ---------- cta band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--cream); }
.cta-band .lead { color: rgba(247,242,231,0.75); margin: 0 auto 2em; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--bg);
  color: rgba(247,242,231,0.75);
  padding: 70px 0 30px;
}
.footer-brand {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { margin: 14px 0 0; font-size: 0.92rem; max-width: 320px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-legal-links { display: flex; gap: 20px; }

/* ---------- cookie notice ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(23, 20, 15, 0.97);
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 0.88rem; color: rgba(247,242,231,0.85); max-width: 720px; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner .btn { flex-shrink: 0; padding: 11px 26px; }

/* ---------- misc ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.4em; }
.tag-row span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line-dark);
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav, .header-actions .btn.on-desktop { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4, .usp-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .step-list { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
}

@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .usp-grid, .pricing-grid { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-inner { padding: 70px 0; }
  .hero-dots { right: 50%; transform: translateX(50%); bottom: 20px; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner .btn { width: 100%; text-align: center; }
}

/* ---------- mobile nav drawer ---------- */
@media (max-width: 980px) {
  .main-nav {
    display: block;
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80%);
    height: 100vh;
    background: var(--ink);
    padding: 110px 32px 40px;
    transition: right 0.3s ease;
    z-index: 99;
  }
  .main-nav.is-open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 22px; }
  body.nav-open { overflow: hidden; }
}
