:root {
  --ink: #1d2126;
  --ink-2: #3a4046;
  --paper: #fff;
  --paper-2: #f4f3f1;
  --accent: #c8102e;
  --accent-dark: #a30d26;
  --gold: #b98a3e;
  --muted: #5d646b;
  --radius: 14px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 600; }

.skip-link {
  background: var(--ink); color: #fff; z-index: 200;
  padding: 8px 16px; position: absolute; top: 0; left: -999px;
}
.skip-link:focus { left: 8px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.label {
  text-transform: uppercase; letter-spacing: .12em; color: var(--accent);
  margin-bottom: 10px; font-size: .78rem; font-weight: 600; display: inline-block;
}
.section { padding: 72px 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink); color: #e9e9e7; }
.section-dark h2 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head p { color: var(--muted); margin-top: 10px; }
.section-dark .section-head p,
.section-dark p { color: #c8ccd0; }
.section-dark .label { color: #ff5a6e; }

/* Header */
.site-header { z-index: 100; background: var(--ink); color: #fff; position: sticky; top: 0; }
.bar { justify-content: space-between; align-items: center; gap: 16px; min-height: 64px; display: flex; }
.brand { align-items: baseline; gap: 8px; text-decoration: none; display: inline-flex; }
.brand:hover { color: inherit; }
.brand-red { color: #ff5a6e; font-size: 1.35rem; font-weight: 800; font-family: var(--font-body); }
.brand-text { color: #fff; letter-spacing: .18em; font-size: .95rem; font-weight: 500; }
.main-nav { align-items: center; gap: 22px; display: flex; }
.main-nav a { color: #d7dadd; padding: 6px 2px; font-size: .95rem; text-decoration: none; }
.main-nav a:hover, .main-nav a[aria-current] { color: #fff; }
.header-actions { align-items: center; gap: 8px; display: flex; }
.phone-cta, .icon-btn {
  color: #fff; border-radius: 10px; justify-content: center; align-items: center;
  gap: 8px; min-width: 44px; min-height: 44px; padding: 8px 10px;
  text-decoration: none; display: inline-flex;
}
.phone-cta:hover, .icon-btn:hover { color: #fff; background: #ffffff14; }
.phone-cta svg, .icon-btn svg { fill: currentColor; width: 20px; height: 20px; }
.phone-num { font-size: .95rem; }
.burger {
  cursor: pointer; background: 0 0; border: 0; min-width: 44px; min-height: 44px;
  display: none; position: relative;
}
.burger span, .burger span::before, .burger span::after {
  content: ""; background: #fff; width: 22px; height: 2px;
  transition: transform .2s; display: block; position: absolute; left: 11px;
}
.burger span { top: 21px; }
.burger span::before { top: -7px; left: 0; }
.burger span::after { top: 7px; left: 0; }

/* Hero */
.hero { color: #fff; position: relative; overflow: hidden; }
.hero-bg { object-fit: cover; width: 100%; height: 100%; position: absolute; inset: 0; }
.hero::before {
  content: ""; background: linear-gradient(100deg, #0f11148c 30%, #0f11144d);
  position: absolute; inset: 0;
}
.hero-content {
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: var(--radius); background: #0f1114b8; padding: 32px 34px;
}
.hero-grid {
  grid-template-columns: 1.2fr 1fr; align-items: center; gap: 48px;
  padding-top: 88px; padding-bottom: 88px; display: grid; position: relative;
}
.hero .label { color: #e0b271; }
.hero .highlight { color: #ff5a6e; font-family: var(--font-head); }
.hero-sub { color: #d9dcdf; max-width: 46ch; margin-top: 16px; }
.hero-trust { flex-wrap: wrap; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; display: flex; }
.hero-trust li {
  color: #fff; background: #ffffff1a; border: 1px solid #ffffff38; border-radius: 999px;
  align-items: center; gap: 8px; padding: 7px 14px; font-size: .88rem; font-weight: 600;
  display: inline-flex;
}
.hero-trust li::before { content: ""; background: #ff5a6e; border-radius: 50%; width: 7px; height: 7px; }
.hero-form {
  color: var(--ink); border-radius: var(--radius); background: #fff;
  padding: 26px; box-shadow: 0 24px 60px #00000059;
}
.hero-form h2 { font-size: 1.3rem; font-family: var(--font-body); margin-bottom: 16px; font-weight: 600; }
.hero-badge {
  background: var(--accent); color: #fff; border-radius: 50%;
  flex-direction: column; justify-content: center; align-items: center;
  width: 92px; height: 92px; display: flex; position: absolute; top: 96px; right: 4vw;
  transform: rotate(8deg); z-index: 2;
}
.hero-badge span { text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; }
.hero-badge strong { font-size: 1.5rem; }

/* Forms */
.contact-form { flex-direction: column; display: flex; }
.form-fields { flex-direction: column; gap: 16px; display: flex; }
.form-row { grid-template-columns: 1fr 1fr; gap: 16px; display: grid; }
.contact-form input,
.contact-form textarea {
  font: inherit; width: 100%; color: var(--ink); background: #fff;
  border: 1px solid #d4d6d9; border-radius: 10px; padding: 12px 14px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent);
}
.check { color: var(--muted); align-items: flex-start; gap: 10px; margin: 4px 0 8px; font-size: .85rem; display: flex; }
.check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.hp { clip: rect(0 0 0 0); white-space: nowrap; width: 1px; height: 1px; position: absolute; overflow: hidden; }
.form-status { color: var(--accent-dark); font-size: .92rem; }
.form-status.is-err {
  color: #b3261e; background: #fdecea; border: 1px solid #f5c6c0;
  border-radius: 8px; padding: 10px 14px;
}

.btn {
  font: inherit; text-align: center; cursor: pointer; border: 0; border-radius: 10px;
  min-height: 44px; padding: 13px 26px; font-weight: 600; text-decoration: none; display: inline-block;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-accent { background: var(--gold); color: #1d2126; }
.btn-accent:hover { color: #fff; background: #a67a34; }
.btn-wa { color: #0b2b17; background: #25d366; }
.btn-wa:hover { color: #0b2b17; background: #1fb457; }

.form-success { text-align: center; padding: 28px 16px; }
.form-success h3 { outline: none; margin: 16px 0 8px; font-size: 1.3rem; color: var(--ink); }
.form-success p { color: var(--muted); margin-bottom: 20px; }
.fs-check { width: 72px; height: 72px; margin: 0 auto; display: block; }
.fs-circle { stroke: #2eaf6b; stroke-width: 2.5px; stroke-dasharray: 151; stroke-dashoffset: 151px; }
.fs-tick {
  stroke: #2eaf6b; stroke-width: 3.5px; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 36; stroke-dashoffset: 36px;
}
.form-success.show .fs-circle { animation: .6s ease-out forwards fs-draw; }
.form-success.show .fs-tick { animation: .35s ease-out .55s forwards fs-draw; }
.form-success.show h3,
.form-success.show p,
.form-success.show .fs-again { opacity: 0; animation: .4s ease-out .8s forwards fs-fade; }
@keyframes fs-draw { to { stroke-dashoffset: 0; } }
@keyframes fs-fade { to { opacity: 1; } }
.fs-again {
  color: var(--muted); cursor: pointer; font: inherit; background: 0 0; border: none;
  min-height: 44px; padding: 6px 10px; font-size: .9rem; text-decoration: underline;
}
.fs-again:hover { color: var(--ink-2); }
@media (prefers-reduced-motion: reduce) {
  .form-success.show .fs-circle,
  .form-success.show .fs-tick { stroke-dashoffset: 0; animation: none; }
  .form-success.show h3,
  .form-success.show p,
  .form-success.show .fs-again { opacity: 1; animation: none; }
}

/* Cards / grids */
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 22px; display: grid; }
.grid-2 { grid-template-columns: 1fr 1fr; gap: 18px; display: grid; }
.card { border-radius: var(--radius); background: #fff; border: 1px solid #e7e7e4; padding: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; }
.section-alt .card { border-color: #e0dfdb; }
.benefit-card { transition: transform .25s, box-shadow .25s, border-color .25s; }
.benefit-card:hover { border-color: #c8102e59; transform: translateY(-4px); box-shadow: 0 14px 34px #1d21261a; }
.benefit-icon {
  width: 52px; height: 52px; color: var(--accent); background: #c8102e14; border-radius: 14px;
  justify-content: center; align-items: center; margin-bottom: 16px; display: inline-flex;
}
.benefit-icon svg { width: 26px; height: 26px; }

.made-in {
  background: var(--ink); color: #e9e9e7; border-radius: var(--radius);
  align-items: flex-start; gap: 20px; margin-top: 28px; padding: 28px 30px; display: flex;
}
.made-in h3 { color: #fff; margin-bottom: 8px; font-size: 1.15rem; }
.made-in p { color: #c8ccd0; max-width: 75ch; font-size: .97rem; }
.made-in-flag {
  border-radius: 5px; flex-direction: column; flex: none; width: 46px; height: 30px;
  margin-top: 4px; display: flex; overflow: hidden; box-shadow: 0 2px 8px #00000059;
}
.made-in-flag span { flex: 1; }
.made-in-flag span:first-child { background: #000; }
.made-in-flag span:nth-child(2) { background: #d00; }
.made-in-flag span:nth-child(3) { background: #ffce00; }

.gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; display: grid; }
.gallery-item { border-radius: var(--radius); position: relative; overflow: hidden; }
.gallery-item img { aspect-ratio: 1400/764; object-fit: cover; width: 100%; }
.gallery-item figcaption {
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: #fff; background: #0f1114b8; flex-direction: column; padding: 14px 16px;
  display: flex; position: absolute; inset: auto 0 0;
}
.gallery-item figcaption span { color: #cfd3d7; font-size: .85rem; }

.features-grid { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 44px; display: grid; }
.features-grid > div > p { color: var(--muted); margin: 10px 0 18px; }
.check-list { margin: 0 0 24px; padding: 0; list-style: none; }
.check-list li { padding: 7px 0 7px 30px; position: relative; }
.check-list li::before {
  content: ""; background: var(--accent); border-radius: 50%; width: 18px; height: 18px;
  position: absolute; top: 12px; left: 0;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") 50% / contain no-repeat;
}
.rounded { border-radius: var(--radius); width: 100%; object-fit: cover; }

.buy-card a { font-weight: 600; display: inline-block; margin-top: 12px; }

.steps-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 0; list-style: none; display: grid; }
.step-num { font-family: var(--font-head); color: var(--accent); margin-bottom: 8px; font-size: 2.2rem; display: block; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

.partner-groups { flex-direction: column; gap: 36px; display: flex; }
.partner-group h3 {
  text-align: center; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin-bottom: 18px; font-size: .82rem; font-weight: 600;
}
.partners-grid { flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 40px; display: flex; }
.partner-name {
  color: var(--ink); opacity: .55; font-weight: 700; font-size: 1.05rem;
  letter-spacing: .04em; padding: 8px 4px; transition: opacity .3s;
}
.partner-name:hover { opacity: 1; }

.cta-grid { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 44px; display: grid; }
.cta-grid .addr { color: #fff; margin: 14px 0 22px; }

.reviews-summary { align-items: center; gap: 16px; margin-bottom: 28px; display: flex; }
.reviews-score { font-family: var(--font-head); color: var(--ink); font-size: 3rem; line-height: 1; }
.reviews-stars { color: #f5a623; letter-spacing: 2px; font-size: 1.15rem; display: block; }
.reviews-of { color: var(--muted); font-size: .92rem; }
.review-card { flex-direction: column; gap: 10px; margin: 0; display: flex; }
.review-stars { color: #f5a623; letter-spacing: 2px; font-size: .95rem; }
.review-card p { color: var(--ink-2); font-size: .97rem; }
.review-card footer { color: var(--muted); font-size: .9rem; font-weight: 600; }
.reviews-cta { margin-top: 24px; }
.reviews-grid { grid-template-columns: 1fr 1fr; }

.faq-list { max-width: 820px; }
.faq-item { border-radius: var(--radius); background: #fff; border: 1px solid #e0dfdb; margin-bottom: 12px; }
.faq-item summary {
  cursor: pointer; min-height: 44px; padding: 18px 48px 18px 22px;
  font-weight: 600; list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--accent); font-size: 1.5rem; font-weight: 400;
  transition: transform .2s; position: absolute; top: 50%; right: 20px; transform: translateY(-50%);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 22px 18px; }

.contact-grid { grid-template-columns: 1.2fr 1fr; align-items: start; gap: 34px; display: grid; }
.contact-info { flex-direction: column; gap: 18px; display: flex; }
.contact-info h3 { margin-bottom: 4px; font-size: 1rem; }
.contact-info p { color: var(--muted); }
.map-link { font-size: .9rem; }

/* Footer */
.site-footer { color: #b8bdc2; background: #14171b; padding: 56px 0 28px; }
.site-footer a { color: #d7dadd; }
.site-footer a:hover { color: #fff; }
.cols { grid-template-columns: 1.3fr .8fr 1fr 1fr; gap: 32px; margin-bottom: 34px; display: grid; }
.f-about p { margin-top: 12px; font-size: .95rem; }
.f-title { font-family: var(--font-body); color: #fff; margin-bottom: 12px; font-size: 1rem; }
.f-nav { padding: 0; list-style: none; }
.f-nav li { margin-bottom: 6px; }
.f-nav a { text-decoration: none; }
.f-hours { justify-content: space-between; gap: 10px; font-size: .95rem; display: flex; }
.f-legal { margin-top: 14px; }
.footer-credit { color: #b0b5ba; border-top: 1px solid #262b30; padding-top: 20px; font-size: .85rem; }

/* Legal pages */
.legal { max-width: 760px; padding-top: 48px; padding-bottom: 72px; }
.legal h1 { margin-bottom: 12px; }
.legal .lead { color: var(--muted); margin-bottom: 28px; }
.legal h2 { font-size: 1.25rem; font-family: var(--font-body); margin: 28px 0 8px; font-weight: 600; }
.legal p, .legal li { color: var(--ink-2); font-size: .97rem; }
.legal ul { padding-left: 1.2rem; margin: 8px 0 16px; }
.legal-box {
  background: var(--paper-2); border: 1px solid #e7e7e4; border-radius: var(--radius);
  padding: 1.3rem 1.5rem; margin: 12px 0 20px;
}
.legal-updated { font-size: .85rem; color: var(--muted); margin-top: 32px; }

@media (width <= 1240px) { .phone-num { display: none; } }
@media (width <= 900px) {
  .hero-grid, .features-grid, .cta-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .gallery-grid, .steps-grid, .cols { grid-template-columns: 1fr 1fr; }
  .hero-badge { display: none; }
  .hero-content { padding: 24px 20px; }
  .made-in { flex-direction: column; gap: 12px; padding: 22px 20px; }
  .main-nav {
    background: var(--ink); flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 18px 22px 24px; display: none; position: fixed; inset: 64px 0 auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 0; font-size: 1.1rem; }
  .burger { display: block; }
  .phone-num { display: none; }
}
@media (width <= 700px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (width <= 560px) {
  .grid-3, .gallery-grid, .steps-grid, .cols, .form-row, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .bar { gap: 8px; }
  .brand-text { letter-spacing: .1em; font-size: .82rem; }
  .header-actions { gap: 2px; }
}
