/* =========================================================
   DarcleSHOP — Service GSM Bacău
   Design system: red/charcoal/white, inspired by the
   original Darcle brand identity (est. 1998).
   ========================================================= */

:root {
  --red: #e5231c;
  --red-dark: #b5140f;
  --red-darker: #8f0f0b;
  --red-light: #fdece9;
  --red-tint: #fff5f4;
  --ink: #1d1d1f;
  --ink-soft: #55575c;
  --ink-faint: #86888d;
  --paper: #ffffff;
  --paper-soft: #f7f6f5;
  --paper-dim: #f0efee;
  --border: #eae8e6;
  --dark: #171618;
  --dark-soft: #2a292b;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(23, 22, 24, 0.06);
  --shadow-md: 0 16px 40px -12px rgba(23, 22, 24, 0.18);
  --shadow-red: 0 14px 30px -10px rgba(229, 35, 28, 0.45);
  --container: 1180px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { line-height: 1.7; color: var(--ink-soft); margin: 0 0 1em; }
button { font-family: inherit; }
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
section { position: relative; }
.section-pad { padding: 88px 0; }
@media (max-width: 720px) {
  .section-pad { padding: 56px 0; }
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow svg { width: 14px; height: 14px; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.text-red { color: var(--red); }
.bg-soft { background: var(--paper-soft); }
.bg-dark { background: var(--dark); color: #fff; }
.bg-dark p { color: #b8b7ba; }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--red);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { border-color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-word { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--ink); line-height: 1; }
.brand-word span { color: var(--red); }
.brand-tag { font-size: 11px; color: var(--ink-faint); letter-spacing: .04em; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 10px 16px;
  border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.main-nav a:hover { color: var(--ink); background: var(--paper-soft); }
.main-nav a.is-active { color: var(--red); background: var(--red-light); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.header-call svg { width: 18px; height: 18px; color: var(--red); }
.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger span::before { position: absolute; top: -6px; }
.hamburger span::after { position: absolute; top: 6px; }
.hamburger.is-open span { background: transparent; }
.hamburger.is-open span::before { transform: rotate(45deg) translate(-4px,-4px); top: 0; }
.hamburger.is-open span::after { transform: rotate(-45deg) translate(-4px,4px); top: 0; }

.mobile-nav {
  position: fixed;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  background: #fff;
  z-index: 99;
  padding: 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.mobile-nav a.is-active { color: var(--red); }

.mobile-call-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: var(--shadow-red);
  border-bottom: none;
}
.mobile-call-card .ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-call-card .ico svg { width: 20px; height: 20px; color: #fff; }
.mobile-call-card .txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.mobile-call-card .txt strong {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,0.8);
}
.mobile-call-card .txt span {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.mobile-call-card .chevron { width: 18px; height: 18px; color: rgba(255,255,255,0.75); flex-shrink: 0; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-call span { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 560px) {
  .header-call { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 100px;
  overflow: hidden;
  background: var(--paper-soft);
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--red-light), transparent 70%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow { }
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--ink);
}
.hero-stat span { font-size: 13px; color: var(--ink-faint); }
.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; }
.heritage-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  max-width: 190px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px 9px;
  box-shadow: var(--shadow-md);
  transform: rotate(4deg);
}
.heritage-badge img { width: 100%; height: auto; display: block; border-radius: 4px; }
.heritage-badge span {
  display: block;
  text-align: center;
  margin-top: 7px;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
@media (max-width: 520px) {
  .heritage-badge { max-width: 140px; top: -10px; right: -6px; padding: 8px 9px 7px; }
  .heritage-badge span { font-size: 9px; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 380px; margin-inline: auto; }
  .hero p.lead { max-width: none; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 56px 0 64px;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: auto;
  right: -120px;
  bottom: -160px;
  left: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,35,28,0.35), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #b8b7ba;
  margin-bottom: 18px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--red); }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); color: #fff; margin-bottom: 12px; }
.page-hero p { color: #cfced1; max-width: 560px; font-size: 17px; }

/* ---------- Trust bar ---------- */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ico {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.trust-item .ico svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 15px; }
.trust-item span { font-size: 13px; color: var(--ink-faint); }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card .ico svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 15px; margin-bottom: 0; }
.service-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.service-card .tags span {
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--paper-soft);
  padding: 5px 10px;
  border-radius: 999px;
}
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
}
.service-card .more svg { width: 14px; height: 14px; transition: transform .15s ease; }
.service-card:hover .more svg { transform: translateX(4px); }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Split / about ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img, .split-media svg { border-radius: var(--radius-lg); width: 100%; }
.split-media .frame-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid #fff;
}
.split-media .frame-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}
.split-media .badge-float {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.split-media .badge-float strong { display: block; font-family: var(--font-head); font-size: 22px; color: var(--red); line-height: 1; }
.split-media .badge-float span { font-size: 12px; color: var(--ink-faint); }
.split ul.check-list { margin-top: 22px; display: grid; gap: 14px; }
.split ul.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.check-list .tick {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-list .tick svg { width: 12px; height: 12px; }

@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: -1; }
  .split-media .badge-float { left: 16px; bottom: -18px; padding: 14px 18px; }
}

/* ---------- Values / icon list ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card { text-align: center; padding: 28px 18px; }
.value-card .ico {
  width: 64px; height: 64px; margin-inline: auto 12px auto;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-card .ico svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 17px; }
.value-card p { font-size: 14px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 32px; border-left: 2px dashed var(--border); display: grid; gap: 36px; }
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -41px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid var(--red-light);
}
.timeline-item .year { font-family: var(--font-head); color: var(--red); font-weight: 700; font-size: 14px; letter-spacing: .04em; }
.timeline-item h3 { font-size: 18px; margin: 6px 0 8px; }
.timeline-item p { font-size: 15px; margin: 0; }

/* ---------- Coverage map ---------- */
.coverage-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.city-pill-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.city-pill {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
}
.city-pill.is-main { border-color: var(--red); color: var(--red); background: var(--red-light); }
.city-pill svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
@media (max-width: 900px) { .coverage-wrap { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .city-pill-grid { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-darker) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255,255,255,0.18), transparent 55%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 0; max-width: 420px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 780px) {
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-banner p { max-width: none; }
  .cta-actions { justify-content: center; }
}
.cta-banner.is-dark { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%); }
.cta-banner.is-dark::after { background: radial-gradient(circle at 90% 10%, rgba(229,35,28,0.35), transparent 55%); }

/* ---------- Status check (Verifică status service) ---------- */
.status-card {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.status-form { display: flex; gap: 12px; flex-wrap: wrap; }
.status-form input[type="text"] {
  flex: 1 1 220px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 2px solid var(--border);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper-soft);
  outline: none;
  min-width: 0;
  transition: border-color .15s ease, background .15s ease;
}
.status-form input[type="text"]:focus { border-color: var(--red); background: #fff; }
.status-form input[type="text"]::placeholder { color: var(--ink-faint); }
.status-form button { flex-shrink: 0; border: none; cursor: pointer; }
.status-hint {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-faint);
}
.status-hint svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 1px; }

#rezultat:not(:empty) { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
#rezultat h2 { font-size: 17px; margin-bottom: 14px; }
#rezultat h2 strong { color: var(--red); }
#rezultat table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
#rezultat table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--ink-soft); }
#rezultat table tr:last-child td { border-bottom: none; }
#rezultat table tr td:first-child { font-weight: 600; color: var(--ink); width: 44%; background: var(--paper-soft); }
#rezultat p { font-size: 13.5px; margin: 14px 0 0; }
#rezultat hr { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
#rezultat a { color: var(--red); font-weight: 600; }
.status-msg { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.status-msg.is-error { color: var(--red); }
@media (max-width: 560px) {
  .status-card { padding: 28px 20px; }
  .status-form { flex-direction: column; }
  .status-form input[type="text"] { flex: none; width: 100%; }
  .status-form button { width: 100%; }
}

/* ---------- Steps (Folii page) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card { position: relative; padding: 30px 24px; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); }
.step-card .num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 17px; }
.step-card p { font-size: 14px; margin: 0; }
@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- Feature list w/ icons (benefits) ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: var(--paper-soft);
}
.benefit-card .ico { width: 48px; height: 48px; color: var(--red); margin-bottom: 16px; }
.benefit-card .ico svg { width: 100%; height: 100%; }
.benefit-card h3 { font-size: 17px; }
.benefit-card p { font-size: 14px; margin: 0; }
@media (max-width: 900px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery (storefront photos) ---------- */
.gallery-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ico {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .ico svg { width: 20px; height: 20px; }
.contact-row h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-faint); margin-bottom: 4px; font-family: var(--font-head); }
.contact-row p, .contact-row a { font-size: 16px; font-weight: 600; color: var(--ink); margin: 0; }
.contact-row .note { font-size: 13px; font-weight: 400; color: var(--ink-faint); margin-top: 4px; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  min-height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #d9d8da; padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-word { color: #fff; }
.footer-brand p { max-width: 300px; margin-top: 16px; font-size: 14px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14px; color: #b8b7ba; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--red); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #8b8a8d;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Floating call button (mobile) ---------- */
.float-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  animation: pulse-ring 2.4s ease-out infinite;
}
.float-call svg { width: 24px; height: 24px; }
@media (max-width: 900px) { .float-call { display: flex; } }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(229,35,28,0.55), var(--shadow-red); }
  70% { box-shadow: 0 0 0 16px rgba(229,35,28,0), var(--shadow-red); }
  100% { box-shadow: 0 0 0 0 rgba(229,35,28,0), var(--shadow-red); }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Misc responsive text ---------- */
@media (max-width: 720px) {
  .cta-banner { border-radius: var(--radius-md); }
}

/* ---------- Motion utilities ---------- */
.floaty { animation: float-y 5s ease-in-out infinite; }
.floaty-slow { animation: float-y 7s ease-in-out infinite; }
.floaty-delay { animation-delay: 1.1s; }
.spin-slow { animation: spin-slow 16s linear infinite; transform-origin: center; }
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .floaty, .floaty-slow, .spin-slow, [data-reveal] { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 10px 0;
  font-family: var(--font-head);
  font-weight: 600;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.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;
}
