
:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #12315f;
  --text-soft: #607195;
  --primary: #1457b2;
  --primary-dark: #0d3e8a;
  --secondary: #b27bb8;
  --green: #7bb438;
  --green-dark: #5f9629;
  --border: rgba(18, 49, 95, 0.10);
  --shadow: 0 20px 48px rgba(17, 56, 123, 0.11);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(178, 123, 184, 0.12), transparent 23%),
    radial-gradient(circle at top left, rgba(20, 87, 178, 0.11), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--text-soft); line-height: 1.72; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-light { background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%); }
.section-kicker, .eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 15px; border-radius: 999px;
  background: rgba(20, 87, 178, 0.09); color: var(--primary); font-size: .88rem; font-weight: 800;
  letter-spacing: .02em; margin-bottom: 18px;
}
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand img { width: 220px; }
.main-nav { display: flex; align-items: center; gap: 22px; font-weight: 700; color: var(--text-soft); }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--primary); }
.nav-cta { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff !important; padding: 12px 18px; border-radius: 999px; box-shadow: 0 10px 24px rgba(20,87,178,.22); }
.nav-toggle { display: none; border: 0; width: 48px; height: 48px; border-radius: 14px; background: var(--surface-soft); font-size: 1.4rem; color: var(--primary); }
.hero { padding: 72px 0 36px; overflow: hidden; }
.hero-grid, .split-section, .image-story, .contact-box { display: grid; grid-template-columns: 1.06fr .94fr; gap: 42px; align-items: center; }
.transition-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: start; }
.hero-copy h1 { font-size: clamp(2.55rem, 5vw, 4.5rem); letter-spacing: -.045em; }
.hero-copy h1 span { color: var(--primary); }
.lead { font-size: 1.08rem; max-width: 62ch; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 23px;
  border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 12px 28px rgba(20,87,178,.22); }
.btn-secondary { background: #fff; border: 1px solid var(--border); color: var(--primary-dark); }
.hero-points { display: grid; gap: 12px; }
.hero-points li, .check-list li { position: relative; padding-left: 28px; font-weight: 600; color: var(--text); }
.hero-points li::before, .check-list li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 11px; height: 11px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.hero-main-card, .info-panel, .transition-copy, .transition-side, .service-card, .showcase-card, .store-card, .map-panel, .contact-box, .contact-panel, .story-photo, .story-copy, .trust-grid > div {
  background: rgba(255,255,255,.96); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.hero-main-card { padding: 24px; position: relative; }
.hero-main-card img { width: 100%; border-radius: 18px; background: linear-gradient(180deg, #fff, #f7f9ff); }
.hero-brand-ribbon {
  display: inline-flex; margin-bottom: 18px; padding: 9px 14px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(123,180,56,.16), rgba(178,123,184,.16)); color: var(--text); font-weight: 700; font-size: .9rem;
}
.hero-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.hero-mini-grid article { padding: 16px; border-radius: 18px; background: linear-gradient(180deg, #fff, #f5f8ff); border: 1px solid var(--border); }
.hero-mini-grid strong { display: block; margin-bottom: 6px; font-size: .98rem; }
.hero-mini-grid span { color: var(--text-soft); font-size: .92rem; line-height: 1.5; }
.trust-strip { padding-bottom: 26px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-grid > div { padding: 22px; }
.trust-grid strong { display: block; margin-bottom: 8px; font-size: 1.02rem; }
.trust-grid span { color: var(--text-soft); }
.split-section > div:first-child, .transition-copy, .story-copy { padding: 10px 0; }
.info-panel, .transition-side, .contact-panel { padding: 28px; }
.info-panel h3, .contact-panel h3 { margin-bottom: 16px; }
.check-list { display: grid; gap: 14px; }
.transition-side img { border-radius: 18px; width: 100%; margin-bottom: 18px; }
.side-note { padding: 18px; border-radius: 18px; background: linear-gradient(180deg, #f6f9ff, #fff); border: 1px solid var(--border); }
.mini-cards { display: grid; gap: 14px; margin-top: 24px; }
.mini-cards article { padding: 20px; border-radius: 18px; background: linear-gradient(180deg, #ffffff, #f5f8ff); border: 1px solid var(--border); }
.mini-cards strong { display: block; margin-bottom: 8px; font-size: 1rem; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading h2 { font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.03em; }
.showcase-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.showcase-card { overflow: hidden; }
.showcase-card-large { grid-row: span 2; }
.showcase-media { aspect-ratio: 16 / 10; background: linear-gradient(180deg, #f4f7ff, #fff); }
.showcase-card-large .showcase-media { aspect-ratio: 4 / 3; }
.showcase-media img { width: 100%; height: 100%; object-fit: cover; }
.showcase-body { padding: 24px; }
.showcase-tag {
  display: inline-flex; margin-bottom: 14px; padding: 7px 12px; border-radius: 999px; background: rgba(20,87,178,.08); color: var(--primary); font-weight: 800; font-size: .82rem;
}
.text-card { padding: 24px; min-height: 160px; }
.accent-card { background: linear-gradient(135deg, rgba(178,123,184,.12), rgba(123,180,56,.12)); }
.image-story-section { padding-top: 72px; }
.story-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: var(--radius-lg); }
.story-copy { padding: 34px; }
.stores-layout { display: grid; grid-template-columns: 440px 1fr; gap: 24px; align-items: start; }
.stores-list { display: grid; gap: 16px; }
.store-card { padding: 22px; cursor: pointer; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.store-card:hover, .store-card.is-active { transform: translateY(-2px); border-color: rgba(20,87,178,.28); box-shadow: 0 24px 50px rgba(20,87,178,.14); }
.store-badge {
  display: inline-flex; margin-bottom: 12px; padding: 6px 10px; border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase;
}
.store-badge.sud { background: rgba(178,123,184,.14); color: #9d5db0; }
.store-badge.group { background: rgba(123,180,56,.16); color: var(--green-dark); }
.store-badge.express { background: rgba(20,87,178,.11); color: var(--primary); }
.store-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.store-card a[href^="tel:"] { display: inline-block; color: var(--primary); font-weight: 800; margin-bottom: 10px; }
.map-link { display: inline-flex; font-weight: 700; color: var(--text-soft); }
.map-panel { padding: 18px; }
#store-map { width: 100%; min-height: 720px; border-radius: 18px; overflow: hidden; }
.contact-box { padding: 34px; }
.contact-panel img { width: 100%; border-radius: 16px; margin-top: 18px; }
.site-footer { padding: 22px 0 34px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid var(--border); padding-top: 22px; }
.footer-inner img { width: 190px; }

@media (max-width: 1080px) {
  .hero-grid, .split-section, .image-story, .contact-box, .transition-layout, .showcase-grid, .stores-layout { grid-template-columns: 1fr; }
  .showcase-card-large { grid-row: auto; }
  #store-map { min-height: 520px; }
}

@media (max-width: 820px) {
  .main-nav {
    position: absolute; top: calc(100% + 8px); right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 10px;
    padding: 18px; background: rgba(255,255,255,.98); border-radius: 18px; border: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero { padding-top: 38px; }
  .hero-copy h1 { font-size: clamp(2.2rem, 10vw, 3.3rem); }
  .hero-mini-grid, .trust-grid { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
  .header-inner { min-height: 78px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero-main-card, .info-panel, .transition-side, .contact-panel, .story-copy, .contact-box { padding: 20px; }
  .hero-mini-grid article, .mini-cards article, .store-card, .text-card, .showcase-body { padding: 18px; }
  .brand img { width: 176px; }
  #store-map { min-height: 400px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1a4d24;
  color: #fff;
  padding: 15px;
  display: none;
  justify-content: center;
  z-index: 9999;
}

.cookie-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner button {
  background: #fff;
  color: #1a4d24;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-banner button:hover {
  opacity: 0.9;
}