/* FényFix Villanyszerelés — fő stíluslap */

:root {
  --bg: #f6f5f2;
  --ink: #14181f;
  --navy: #101620;
  --green: #0f5d4a;
  --gold: #f5b125;
  --gold-dark: #e0a010;
  --amber-link: #c8871a;
  --border: #e3e0d9;
  --border-2: #ddd8cd;
  --card: #fffffe;
  --muted-1: #4f5764;
  --muted-2: #5c6470;
  --muted-3: #6b7280;
  --muted-4: #3d4550;
  --label: #8a7a4e;
  --mono-label: #a1907f;
  --danger: #a4352f;
  --font-head: 'Archivo', Helvetica, Arial, sans-serif;
  --font-body: 'Barlow', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--amber-link); text-decoration: underline; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
h1, h2, h3 { font-family: var(--font-head); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy);
  padding: 10px 16px; font-weight: 700; z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

@keyframes ff-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes ff-slide { from { transform: translateX(24px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy); color: #cfd6e0; font-size: 13.5px; letter-spacing: 0.01em;
}
.topbar .container {
  padding: 9px 24px; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.topbar-left, .topbar-right { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar-highlight { font-family: var(--font-mono); color: var(--gold); }
.topbar-right a { color: #fff; font-weight: 600; }
.topbar-right a.muted { color: #cfd6e0; font-weight: 400; }
.topbar-right a:hover, .topbar-highlight { text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40; background: var(--card);
  border-bottom: 1px solid var(--border); box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.site-header .container {
  padding: 14px 24px; display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark {
  width: 38px; height: 38px; background: var(--gold); display: grid; place-items: center; border-radius: 3px; flex: 0 0 auto;
}
.brand-mark span {
  width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-bottom: 16px solid var(--navy); transform: rotate(18deg);
}
.brand-text { line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; color: var(--ink); }
.brand-sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; color: #6b7280; text-transform: uppercase; }

.main-nav { display: flex; gap: 4px; flex-wrap: wrap; margin-left: auto; }
.main-nav a {
  padding: 9px 12px; border-radius: 4px; font-size: 15px; font-weight: 600; color: var(--muted-1); text-decoration: none; display: inline-block;
}
.main-nav a:hover { background: #f1efe9; color: var(--ink); }
.main-nav a[aria-current="page"] { color: var(--ink); background: #f2efe8; }

.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.cart-btn {
  position: relative; padding: 10px 14px; border: 1.5px solid var(--ink); border-radius: 4px;
  font-weight: 700; font-size: 14.5px; background: none; color: var(--ink);
}
.cart-btn:hover { background: var(--ink); color: #fff; }
.btn-cta {
  padding: 11px 18px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 14.5px;
  border-radius: 4px; border: none; display: inline-block; text-decoration: none;
}
.btn-cta:hover { background: var(--gold-dark); color: var(--navy); text-decoration: none; }

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1.5px solid var(--ink); border-radius: 4px;
  padding: 8px 10px; font-size: 20px; line-height: 1;
}

/* ---------- Buttons (generic) ---------- */
.btn { display: inline-block; padding: 15px 26px; border-radius: 4px; font-weight: 700; font-size: 16px; border: none; cursor: pointer; text-align: center; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); color: var(--navy); text-decoration: none; }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.35); color: #fff; background: none; }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); color: #fff; text-decoration: none; }
.btn-outline-dark { border: 1.5px solid var(--ink); color: var(--ink); background: none; }
.btn-outline-dark:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--gold); color: var(--navy); text-decoration: none; }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 16px; font-size: 14.5px; }

/* ---------- Hero ---------- */
.hero { background: var(--navy); color: #fff; overflow: hidden; }
.hero .container {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero-copy { padding: 72px 0 76px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(245,177,37,0.35); padding: 7px 12px; border-radius: 3px;
}
.hero h1 { font-size: 56px; font-weight: 800; line-height: 1.04; margin: 22px 0 18px; color: #fff; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead { font-size: 19px; line-height: 1.6; color: #c3cad4; max-width: 560px; margin: 0 0 30px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
}
.hero-stats .num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--gold); }
.hero-stats .label { font-size: 14px; color: #a8b0bb; }
.hero-media {
  align-self: stretch; min-height: 520px; border-left: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }

/* ---------- Feature strip ---------- */
.feature-strip { background: var(--card); border-bottom: 1px solid var(--border); }
.feature-strip .container {
  padding: 26px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-dot { width: 8px; height: 8px; background: var(--gold); margin-top: 7px; flex: 0 0 auto; }
.feature-item .t { font-weight: 700; font-size: 15.5px; }
.feature-item .d { font-size: 14px; color: var(--muted-2); }

/* ---------- Section header ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 76px 24px 20px; }
.section-tight { padding: 26px 24px 76px; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--label); }
.section-title { font-size: 40px; font-weight: 800; margin-top: 10px; }
.section-link { font-weight: 700; cursor: pointer; color: var(--green); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.section-link:hover { color: var(--amber-link); }

/* ---------- Services grid ---------- */
.grid-3 { max-width: var(--maxw); margin: 0 auto; padding: 26px 24px 76px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card-service {
  background: var(--card); border: 1px solid var(--border); padding: 26px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s, transform .15s;
}
.card-service:hover { border-color: var(--ink); transform: translateY(-2px); }
.card-service .no { font-family: var(--font-mono); font-size: 12px; color: var(--mono-label); }
.card-service h3 { font-size: 21px; font-weight: 700; }
.card-service p { color: var(--muted-4); line-height: 1.6; font-size: 15.5px; flex: 1; }
.card-service .price { font-family: var(--font-mono); font-size: 13px; color: var(--green); border-top: 1px dashed var(--border-2); padding-top: 12px; }

/* ---------- How we work (green) ---------- */
.how { background: var(--green); color: #eaf3f0; }
.how .container { padding: 70px 24px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.how h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; line-height: 1.1; color: #fff; }
.how p { color: #bcd5cd; line-height: 1.65; font-size: 16.5px; margin: 0 0 22px; }
.how-steps { display: grid; gap: 2px; }
.how-step { background: rgba(255,255,255,0.06); padding: 22px 24px; display: flex; gap: 18px; }
.how-step .n { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--gold); min-width: 44px; }
.how-step .t { font-weight: 700; font-size: 17px; color: #fff; }
.how-step .d { color: #bcd5cd; font-size: 15px; }

/* ---------- Product cards / shop ---------- */
.grid-4 { max-width: var(--maxw); margin: 0 auto; padding: 26px 24px 76px; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.card-product { background: var(--card); border: 1px solid var(--border); display: flex; flex-direction: column; }
.card-product .thumb { height: 150px; overflow: hidden; background: #efece5; }
.card-product .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-product .body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-product .sku { font-family: var(--font-mono); font-size: 11px; color: var(--mono-label); }
.card-product .name { font-weight: 700; font-size: 16px; line-height: 1.3; }
.card-product .short { font-size: 14px; color: var(--muted-2); flex: 1; }
.card-product .stock { font-size: 13px; color: var(--green); font-weight: 600; }
.card-product .price { font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.add-btn {
  margin-top: 4px; text-align: center; padding: 11px; background: var(--ink); color: #fff; font-weight: 700;
  font-size: 14.5px; border-radius: 3px; border: none; width: 100%;
}
.add-btn:hover { background: var(--gold); color: var(--navy); }

.shop-hero { background: var(--navy); color: #fff; }
.shop-hero .container { padding: 52px 24px; }
.shop-hero h1 { font-size: 44px; font-weight: 800; margin-bottom: 10px; color: #fff; }
.shop-hero p { color: #b8c0cb; font-size: 17.5px; max-width: 760px; line-height: 1.6; }
.shop-filters { max-width: var(--maxw); margin: 0 auto; padding: 32px 24px 20px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.shop-filters a {
  padding: 9px 16px; border: 1px solid var(--border-2); font-weight: 600; font-size: 14.5px; text-decoration: none;
  background: var(--card); color: var(--muted-1);
}
.shop-filters a[aria-current="true"] { background: var(--ink); color: #fff; }
.shop-count { margin-left: auto; font-size: 14.5px; color: var(--muted-3); }

/* ---------- Reviews ---------- */
.reviews-section { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-section .container { padding: 70px 24px; }
.reviews-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 30px; }
.grid-reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card-review { border: 1px solid var(--border); padding: 26px; background: #faf9f6; }
.card-review .stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.card-review p { line-height: 1.65; color: #2c333d; font-size: 16px; margin: 14px 0 18px; }
.card-review .name { font-weight: 700; font-size: 15px; }
.card-review .meta { font-size: 13.5px; color: var(--muted-3); }

/* ---------- Areas + FAQ short ---------- */
.split-2 { max-width: var(--maxw); margin: 0 auto; padding: 76px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.split-2 h2 { font-size: 34px; font-weight: 800; margin-bottom: 14px; }
.split-2 > div > p { color: var(--muted-4); line-height: 1.65; font-size: 16.5px; margin-bottom: 20px; }
.areas-list { display: flex; flex-wrap: wrap; gap: 8px; }
.areas-list span { padding: 7px 13px; background: var(--card); border: 1px solid var(--border); font-size: 14px; font-weight: 500; }

.faq-list { display: grid; gap: 2px; }
.faq-item { background: var(--card); border: 1px solid var(--border); }
.faq-q {
  padding: 17px 20px; display: flex; justify-content: space-between; gap: 16px; cursor: pointer;
  font-weight: 600; font-size: 16px; border: none; background: none; width: 100%; text-align: left; color: var(--ink);
}
.faq-q .sign { color: var(--gold); font-weight: 800; }
.faq-a { padding: 0 20px 18px; color: var(--muted-4); line-height: 1.6; font-size: 15.5px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-list.faq-large .faq-q { padding: 19px 22px; font-size: 17px; }
.faq-list.faq-large .faq-a { padding: 0 22px 20px; font-size: 16px; line-height: 1.7; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--navy); color: #fff; }
.cta-banner .container {
  padding: 60px 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 { font-size: 34px; font-weight: 800; margin-bottom: 8px; color: #fff; }
.cta-banner p { color: #b8c0cb; font-size: 17px; }
.cta-banner .btn-gold { padding: 17px 32px; font-size: 18px; font-weight: 800; }

/* ---------- Generic page hero (dark / green) ---------- */
.page-hero { background: var(--navy); color: #fff; }
.page-hero.green { background: var(--green); }
.page-hero .container { padding: 56px 24px; }
.page-hero .kicker { color: var(--gold); }
.page-hero h1 { font-size: 44px; font-weight: 800; margin: 12px 0 10px; color: #fff; }
.page-hero p { color: #b8c0cb; font-size: 17.5px; max-width: 720px; line-height: 1.6; }
.page-hero.green p { color: #bcd5cd; }

/* ---------- Services full list ---------- */
.services-full { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 76px; display: grid; gap: 20px; }
.service-row {
  background: var(--card); border: 1px solid var(--border); padding: 32px;
  display: grid; grid-template-columns: 0.85fr 1.15fr 0.5fr; gap: 32px; align-items: start;
}
.service-row .no { font-family: var(--font-mono); font-size: 12px; color: var(--mono-label); margin-bottom: 8px; }
.service-row h2 { font-size: 25px; font-weight: 700; margin-bottom: 10px; line-height: 1.15; }
.service-row .price { font-family: var(--font-mono); font-size: 13px; color: var(--green); }
.service-row .desc { margin-bottom: 14px; color: var(--muted-4); line-height: 1.7; font-size: 16px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 5px 11px; background: #f2efe8; font-size: 13.5px; color: var(--muted-1); }
.service-row .cta {
  padding: 13px; text-align: center; border: 1.5px solid var(--ink); font-weight: 700; font-size: 14.5px;
  text-decoration: none; color: var(--ink); display: block;
}
.service-row .cta:hover { background: var(--ink); color: #fff; }

/* ---------- Price table ---------- */
.price-wrap { max-width: 1000px; margin: 0 auto; padding: 56px 24px 30px; }
.price-table { background: var(--card); border: 1px solid var(--border); }
.price-table .head-row {
  display: grid; grid-template-columns: 1fr 190px 130px; padding: 16px 24px; background: #f2efe8;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-3);
}
.price-row {
  display: grid; grid-template-columns: 1fr 190px 130px; padding: 16px 24px; border-top: 1px solid #eeeae1;
  font-size: 16px; align-items: center;
}
.price-row .item { font-weight: 600; }
.price-row .unit { color: var(--muted-3); font-size: 14.5px; }
.price-row .val { text-align: right; font-family: var(--font-head); font-weight: 700; }
.price-notes { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 30px; }
.price-note { background: var(--card); border: 1px solid var(--border); padding: 22px; }
.price-note .t { font-weight: 700; margin-bottom: 6px; }
.price-note .d { font-size: 15px; color: var(--muted-1); }
.price-disclaimer { font-size: 14px; color: var(--muted-3); margin: 24px 0 76px; line-height: 1.6; }

/* ---------- About page ---------- */
.about-hero { max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 40px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.about-hero h1 { font-size: 44px; font-weight: 800; margin: 12px 0 18px; line-height: 1.08; }
.about-hero p { font-size: 17.5px; line-height: 1.7; color: var(--muted-4); margin: 0 0 16px; }
.about-media { min-height: 420px; overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.stat-grid { max-width: var(--maxw); margin: 0 auto; padding: 20px 24px 40px; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat-card { background: var(--card); border: 1px solid var(--border); padding: 24px; }
.stat-card .num { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--green); }
.stat-card .label { color: var(--muted-1); }
.team-section { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.team-section .container { padding: 60px 24px; }
.team-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 26px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card .portrait { height: 190px; overflow: hidden; }
.team-card .portrait img { width: 100%; height: 100%; object-fit: cover; }
.team-card .name { padding-top: 14px; font-weight: 700; font-size: 17px; }
.team-card .role { color: var(--green); font-size: 14.5px; font-weight: 600; }
.team-card .note { color: var(--muted-2); font-size: 14.5px; margin-top: 6px; line-height: 1.55; }
.refs-section { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 76px; }
.refs-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 22px; }
.refs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card-ref { background: var(--card); border: 1px solid var(--border); }
.card-ref .photo { height: 170px; overflow: hidden; }
.card-ref .photo img { width: 100%; height: 100%; object-fit: cover; }
.card-ref .body { padding: 22px; }
.card-ref .year { font-family: var(--font-mono); font-size: 12px; color: var(--mono-label); }
.card-ref .title { font-weight: 700; font-size: 18px; margin: 6px 0 8px; }
.card-ref .desc { color: var(--muted-1); font-size: 15.5px; line-height: 1.6; }

/* ---------- Blog ---------- */
.blog-hero { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 30px; }
.blog-hero h1 { font-size: 44px; font-weight: 800; margin: 12px 0 10px; }
.blog-hero p { font-size: 17.5px; color: var(--muted-1); max-width: 720px; line-height: 1.6; }
.blog-grid { max-width: var(--maxw); margin: 0 auto; padding: 20px 24px 76px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card-post { background: var(--card); border: 1px solid var(--border); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.card-post:hover { border-color: var(--ink); text-decoration: none; }
.card-post .thumb { height: 170px; overflow: hidden; }
.card-post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-post .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-post .meta { font-family: var(--font-mono); font-size: 12px; color: var(--mono-label); }
.card-post h2 { font-size: 21px; font-weight: 700; line-height: 1.25; }
.card-post p { color: var(--muted-1); font-size: 15.5px; line-height: 1.6; flex: 1; }
.card-post .read { font-weight: 700; color: var(--green); }

.article-wrap { max-width: 820px; margin: 0 auto; padding: 52px 24px 76px; }
.back-link { cursor: pointer; font-weight: 700; color: var(--green); margin-bottom: 24px; display: inline-block; }
.article-wrap .meta { font-family: var(--font-mono); font-size: 12px; color: var(--mono-label); }
.article-wrap h1 { font-size: 40px; font-weight: 800; margin: 12px 0 16px; line-height: 1.12; }
.article-lead { font-size: 19px; line-height: 1.65; color: #2c333d; margin: 0 0 26px; font-weight: 500; }
.article-media { height: 280px; overflow: hidden; margin-bottom: 30px; }
.article-media img { width: 100%; height: 100%; object-fit: cover; }
.article-body h2 { font-size: 26px; font-weight: 700; margin: 34px 0 12px; }
.article-body p { font-size: 17.5px; line-height: 1.75; color: var(--muted-4); margin: 0 0 18px; }
.article-cta { margin-top: 40px; background: var(--navy); color: #fff; padding: 32px; }
.article-cta .t { font-family: var(--font-head); font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.article-cta p { color: #b8c0cb; margin: 0 0 18px; }

/* ---------- FAQ page ---------- */
.faq-page { max-width: 900px; margin: 0 auto; padding: 60px 24px 76px; }
.faq-page h1 { font-size: 44px; font-weight: 800; margin-bottom: 10px; }
.faq-page > p { font-size: 17.5px; color: var(--muted-1); margin-bottom: 32px; }

/* ---------- Contact ---------- */
.contact-wrap { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 76px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-wrap h1 { font-size: 44px; font-weight: 800; margin-bottom: 14px; }
.contact-wrap > div > p { font-size: 17.5px; color: var(--muted-4); line-height: 1.65; margin-bottom: 28px; }
.info-list { display: grid; gap: 2px; }
.info-item { background: var(--card); border: 1px solid var(--border); padding: 20px; }
.info-item .label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--label); }
.info-item a, .info-item .val { font-size: 20px; font-weight: 700; color: var(--ink); }
.info-item .val-sm { font-size: 16px; line-height: 1.6; }
.map-embed {
  margin-top: 20px; height: 220px; background: repeating-linear-gradient(135deg,#e7e6df 0 12px,#dfded6 12px 24px);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; color: #8f8b80; text-align: center;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.form-card { background: var(--card); border: 1px solid var(--border); padding: 32px; }
.form-card .title { font-family: var(--font-head); font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.form-card .hint { color: var(--muted-2); font-size: 15px; margin-bottom: 22px; }
.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; font-size: 14.5px; font-weight: 600; }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field textarea, .field select {
  padding: 12px 14px; border: 1px solid #d9d4c9; background: #faf9f6; border-radius: 3px; font-weight: 400; width: 100%;
}
.field textarea { resize: vertical; }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted-1); line-height: 1.5; font-weight: 400; }
.checkbox-field input { margin-top: 3px; }
.form-note { font-size: 13px; color: #8a8f98; text-align: center; }
.form-error {
  display: none; background: #fdeceb; border: 1px solid var(--danger); color: #7a231e;
  padding: 14px 16px; font-size: 14.5px; font-weight: 600; margin-bottom: 16px; border-radius: 3px;
}
.form-error.show { display: block; }
.form-success { background: var(--green); color: #fff; padding: 40px; }
.form-success .title { font-family: var(--font-head); font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.form-success p { color: #bcd5cd; line-height: 1.65; margin: 0 0 20px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 900px; margin: 0 auto; padding: 60px 24px 80px; }
.legal-wrap h1 { font-size: 40px; font-weight: 800; margin: 12px 0 8px; line-height: 1.12; }
.legal-updated { font-size: 14px; color: var(--muted-3); margin-bottom: 30px; }
.legal-wrap h2 { font-size: 23px; font-weight: 700; margin: 32px 0 10px; }
.legal-wrap p { font-size: 16.5px; line-height: 1.75; color: var(--muted-4); margin: 0 0 14px; }
.legal-item { display: flex; gap: 12px; margin: 0 0 10px; }
.legal-item .dot { width: 6px; height: 6px; background: var(--gold); margin-top: 10px; flex: 0 0 auto; }
.legal-item .txt { font-size: 16.5px; line-height: 1.7; color: var(--muted-4); }
.legal-contact { margin-top: 40px; padding: 24px; background: var(--card); border: 1px solid var(--border); font-size: 15px; color: var(--muted-1); line-height: 1.7; }

/* ---------- Order confirmation ---------- */
.order-ok { max-width: 760px; margin: 0 auto; padding: 80px 24px 100px; text-align: center; }
.order-ok .check {
  width: 64px; height: 64px; background: var(--green); margin: 0 auto 24px; display: grid; place-items: center;
  color: var(--gold); font-size: 30px; font-weight: 800;
}
.order-ok h1 { font-size: 38px; font-weight: 800; margin-bottom: 14px; }
.order-ok p { font-size: 18px; color: var(--muted-1); line-height: 1.7; margin-bottom: 28px; }
.order-ok .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.order-ok strong { font-family: var(--font-mono); }

/* ---------- Cart summary (checkout page) ---------- */
.checkout-wrap { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 76px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.checkout-wrap h1 { font-size: 44px; font-weight: 800; margin-bottom: 14px; }
.cart-lines { display: grid; gap: 12px; margin-bottom: 20px; }
.cart-line { background: var(--card); border: 1px solid var(--border); padding: 16px; display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; }
.cart-line .thumb { height: 60px; width: 60px; overflow: hidden; background: #efece5; }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .name { font-weight: 700; font-size: 15px; line-height: 1.3; }
.cart-line .sku { font-family: var(--font-mono); font-size: 11.5px; color: var(--mono-label); margin: 3px 0 7px; }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-controls button { width: 26px; height: 26px; border: 1px solid #d9d4c9; background: var(--card); display: grid; place-items: center; font-weight: 700; }
.qty-controls .qty { min-width: 24px; text-align: center; font-weight: 700; }
.remove-link { margin-left: 6px; font-size: 13px; color: var(--danger); cursor: pointer; text-decoration: underline; background: none; border: none; }
.cart-line .total { text-align: right; font-family: var(--font-head); font-weight: 800; font-size: 16px; }
.cart-empty { padding: 40px 0; text-align: center; color: var(--muted-3); }
.cart-empty .t { font-size: 16.5px; margin-bottom: 18px; }
.cart-totals { border-top: 1px solid var(--border); background: var(--card); padding: 22px 24px; border: 1px solid var(--border); }
.cart-totals .row { display: flex; justify-content: space-between; font-size: 15px; color: var(--muted-1); margin-bottom: 7px; }
.cart-totals .grand { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: 22px; font-weight: 800; padding-top: 12px; border-top: 1px solid #eeeae1; }
.cart-totals .note { font-size: 12.5px; color: #8a8f98; margin: 8px 0 14px; }

/* ---------- Cart drawer ---------- */
.cart-drawer-overlay {
  position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end;
}
.cart-drawer-overlay.open { display: flex; }
.cart-drawer-backdrop { position: absolute; inset: 0; background: rgba(16,22,32,0.55); border: none; }
.cart-drawer {
  position: relative; width: 440px; max-width: 100%; background: var(--bg); height: 100%; display: flex; flex-direction: column;
  animation: ff-slide 0.22s ease-out; box-shadow: -8px 0 40px rgba(0,0,0,0.25);
}
.cart-drawer-head { padding: 22px 24px; background: var(--navy); color: #fff; display: flex; justify-content: space-between; align-items: center; }
.cart-drawer-head .t { font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.cart-drawer-close { cursor: pointer; font-size: 22px; line-height: 1; color: #9fa8b4; background: none; border: none; }
.cart-drawer-body { flex: 1; overflow: auto; padding: 20px 24px; }
.cart-drawer-foot { border-top: 1px solid var(--border); background: var(--card); padding: 22px 24px; }

/* ---------- Cookie consent ---------- */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: var(--card); border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.14); animation: ff-up 0.25s ease-out; display: none;
}
.consent-banner.open { display: block; }
.consent-banner .container { padding: 24px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: center; }
.consent-banner h2 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.consent-banner p { margin: 0 0 10px; font-size: 15px; line-height: 1.65; color: var(--muted-1); }
.consent-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; }
.consent-links a { color: var(--green); font-weight: 600; text-decoration: underline; }
.consent-options { display: grid; gap: 10px; }
.consent-options label { display: flex; gap: 10px; align-items: center; font-size: 14.5px; color: var(--muted-3); }
.consent-actions { display: flex; gap: 10px; margin-top: 6px; }
.consent-actions button { flex: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #9fa8b4; margin-top: auto; }
.footer-top { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 32px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand-mark { width: 34px; height: 34px; background: var(--gold); display: grid; place-items: center; }
.footer-brand-mark span { width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 14px solid var(--navy); transform: rotate(18deg); }
.footer-brand-name { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: #fff; }
.footer-top p { line-height: 1.7; font-size: 15px; margin: 0 0 16px; color: #9fa8b4; }
.footer-legal-info { font-family: var(--font-mono); font-size: 12.5px; line-height: 1.9; color: #7d8794; }
.footer-col-title { color: #fff; font-weight: 700; margin-bottom: 14px; font-size: 15px; }
.footer-links { display: grid; gap: 9px; font-size: 15px; }
.footer-links a { color: #9fa8b4; text-decoration: none; }
.footer-links a:hover { color: var(--gold); text-decoration: none; }
.consent-reopen { cursor: pointer; color: var(--gold) !important; margin-top: 4px; background: none; border: none; text-align: left; font-size: 15px; font-family: inherit; padding: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom .container { padding: 20px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom-right { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container, .how .container, .about-hero, .split-2, .contact-wrap, .checkout-wrap { grid-template-columns: 1fr; }
  .hero-media { min-height: 320px; }
  .hero-media img { min-height: 320px; }
  .about-media { min-height: 280px; order: -1; }
  .about-media img { min-height: 280px; }
  .grid-3, .grid-4, .team-grid, .refs-grid, .blog-grid, .grid-reviews, .stat-grid, .price-notes { grid-template-columns: repeat(2,1fr); }
  .feature-strip .container { grid-template-columns: repeat(2,1fr); }
  .service-row { grid-template-columns: 1fr; }
  .consent-banner .container { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--card); border-bottom: 1px solid var(--border); flex-direction: column; padding: 8px; gap: 0; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header .container { flex-wrap: wrap; position: relative; }
  .header-actions { margin-left: auto; }
  .hero h1 { font-size: 38px; }
  .hero-lead { font-size: 17px; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .section-title, .page-hero h1, .shop-hero h1, .blog-hero h1, .faq-page h1, .contact-wrap h1, .checkout-wrap h1 { font-size: 30px; }
  .grid-3, .grid-4, .team-grid, .refs-grid, .blog-grid, .grid-reviews, .stat-grid, .price-notes, .feature-strip .container { grid-template-columns: 1fr; }
  .price-table .head-row, .price-row { grid-template-columns: 1fr 90px; }
  .price-table .head-row div:nth-child(2), .price-row .unit { display: none; }
  .cta-banner .container { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 24px 24px; }
  .cart-drawer { width: 100%; }
  .article-wrap h1 { font-size: 28px; }
}
