:root {
  --blue: #146db8;
  --blue-dark: #0a3f75;
  --ink: #172033;
  --muted: #606b7d;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #e2e8f0;
  --yellow: #ffc928;
  --orange: #f47d24;
  --red: #ea3c43;
  --green: #49a86e;
  --shadow: 0 24px 70px rgba(26, 57, 89, .14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 100px 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 10px 14px; background: #fff; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.75);
}
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 340px; max-height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 700; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--blue); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 27px; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 2px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(20,109,184,.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #0f5fa2; box-shadow: 0 16px 34px rgba(20,109,184,.3); }
.button-small { min-height: 42px; padding: 0 18px; border-radius: 12px; }
.button-ghost { color: var(--blue-dark); background: #fff; border: 1px solid var(--line); box-shadow: none; }
.button-ghost:hover { background: var(--soft); box-shadow: none; }
.button-light { background: #fff; color: var(--blue-dark); box-shadow: none; }
.button-light:hover { background: #f4f8ff; box-shadow: none; }

.hero { position: relative; overflow: hidden; padding: 92px 0 88px; background: linear-gradient(135deg, #f7fbff 0%, #ffffff 58%, #fff9ee 100%); }
.color-ribbon { position: absolute; inset: 0 0 auto 0; height: 8px; background: linear-gradient(90deg, #df3142 0 16%, #f78627 16% 32%, #ffd338 32% 48%, #4cae70 48% 64%, #2499c9 64% 80%, #2456a8 80% 100%); }
.hero::before { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; right: -180px; top: -240px; background: radial-gradient(circle, rgba(255,201,40,.28), rgba(255,201,40,0) 67%); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(48px, 6vw, 78px); max-width: 780px; }
h2 { font-size: clamp(36px, 4vw, 54px); }
h3 { font-size: 23px; }
.hero-lead { max-width: 690px; margin: 28px 0 0; font-size: 20px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0 42px; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.hero-points li { padding-top: 18px; border-top: 2px solid var(--line); }
.hero-points strong, .hero-points span { display: block; }
.hero-points strong { font-size: 16px; }
.hero-points span { margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.4; }

.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.store-card { position: relative; z-index: 2; width: min(430px, 100%); transform: rotate(1.4deg); }
.store-card::before { display: none; }
.store-card img { position: relative; z-index: 1; display: block; width: 100%; height: auto; border-radius: 26px; box-shadow: var(--shadow); }
.store-badge { position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; width: max-content; max-width: calc(100% - 24px); margin: -3px auto 0; padding: 13px 15px; border-radius: 14px; background: #fff; box-shadow: 0 12px 30px rgba(29,55,88,.12); font-size: 13px; font-weight: 800; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(73,168,110,.14); }
.paint-blob { position: absolute; border-radius: 48% 52% 63% 37% / 45% 38% 62% 55%; filter: saturate(1.05); }
.blob-one { width: 430px; height: 430px; background: linear-gradient(135deg, var(--yellow), var(--orange)); top: 70px; left: 15px; transform: rotate(-12deg); }
.blob-two { width: 260px; height: 260px; background: linear-gradient(135deg, #39a2d4, #2256aa); right: -30px; bottom: 35px; transform: rotate(24deg); }

.intro-strip { padding-top: 90px; padding-bottom: 70px; }
.intro-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.intro-grid > p { margin: 0 0 6px; color: var(--muted); font-size: 18px; }

.products-section { background: var(--soft); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 44px; }
.section-heading > p { max-width: 430px; margin: 0 0 4px; color: var(--muted); }
.section-heading.centered { display: block; max-width: 780px; margin: 0 auto 44px; text-align: center; }
.section-heading.centered > p { max-width: none; margin-top: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { min-height: 280px; padding: 30px; border: 1px solid #e8edf4; border-radius: 22px; background: #fff; box-shadow: 0 12px 36px rgba(29,55,88,.05); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(29,55,88,.1); }
.product-card p { margin: 15px 0 0; color: var(--muted); }
.product-card a { display: inline-block; margin-top: 20px; color: var(--blue); font-weight: 850; }
.product-card-featured { color: #fff; background: linear-gradient(145deg, var(--blue), var(--blue-dark)); border-color: transparent; }
.product-card-featured p, .product-card-featured a { color: rgba(255,255,255,.85); }
.product-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 26px; border-radius: 17px; background: #e8f3fc; position: relative; }
.product-card:nth-child(2) .product-icon { background: #fff1dd; }
.product-card:nth-child(3) .product-icon { background: #f8e6e9; }
.product-card:nth-child(4) .product-icon { background: #e7f4eb; }
.product-card:nth-child(5) .product-icon { background: #eee9fb; }
.product-card-featured .product-icon { background: rgba(255,255,255,.14); }
.product-icon::before, .product-icon::after { content: ""; position: absolute; }
.icon-wall::before { width: 27px; height: 31px; border: 3px solid var(--blue); border-radius: 3px; }
.icon-wall::after { width: 19px; height: 4px; background: var(--yellow); bottom: 15px; border-radius: 4px; }
.icon-brush::before { width: 27px; height: 13px; background: var(--orange); border-radius: 3px; transform: rotate(-8deg); top: 15px; }
.icon-brush::after { width: 7px; height: 24px; background: #8f5b2d; border-radius: 0 0 5px 5px; transform: rotate(-8deg); bottom: 9px; }
.icon-texture::before { width: 31px; height: 31px; border-radius: 50%; background: repeating-linear-gradient(45deg, var(--red) 0 3px, transparent 3px 7px); border: 2px solid var(--red); }
.icon-industry::before { width: 33px; height: 25px; border: 3px solid var(--green); border-top: 0; bottom: 13px; }
.icon-industry::after { width: 6px; height: 30px; background: var(--green); right: 12px; bottom: 13px; box-shadow: -9px 9px 0 -1px var(--green), -18px 3px 0 -1px var(--green); }
.icon-tools::before { width: 31px; height: 8px; border-radius: 5px; background: #7451b8; transform: rotate(-40deg); }
.icon-tools::after { width: 9px; height: 32px; border-radius: 5px; background: #9b7bd7; transform: rotate(-40deg); }
.icon-box::before { width: 29px; height: 24px; border: 3px solid #fff; border-radius: 3px; bottom: 13px; }
.icon-box::after { width: 18px; height: 7px; border: 3px solid #fff; border-bottom: 0; top: 12px; border-radius: 3px 3px 0 0; }

.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.story-image-wrap { position: relative; min-height: 590px; display: grid; place-items: center; }
.story-image-wrap::before { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 44% 56% 40% 60% / 54% 40% 60% 46%; background: linear-gradient(140deg, #dff2ff, #fff2d8); transform: rotate(15deg); }
.story-image-card { position: relative; width: 455px; max-width: 90%; padding: 18px; background: #fff; border-radius: 28px; box-shadow: var(--shadow); transform: rotate(-2deg); }
.story-image-card img { width: 100%; height: 520px; object-fit: cover; object-position: center 36%; border-radius: 18px; }
.mini-card { position: absolute; z-index: 3; right: 0; bottom: 45px; width: 250px; padding: 20px 22px; border-radius: 18px; background: #fff; box-shadow: 0 18px 50px rgba(29,55,88,.18); }
.mini-card strong, .mini-card span { display: block; }
.mini-card span { margin-top: 5px; color: var(--muted); font-size: 13px; }
.story-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.check-list { display: grid; gap: 12px; margin: 30px 0; }
.check-list span { position: relative; padding-left: 31px; font-weight: 750; }
.check-list span::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: #e5f5ea; color: var(--green); font-size: 13px; font-weight: 900; }
.text-link { color: var(--blue); font-weight: 850; }

.product-showcase { overflow: hidden; padding-top: 70px; padding-bottom: 70px; color: #fff; background: linear-gradient(120deg, var(--blue-dark), var(--blue)); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.showcase-copy .eyebrow { color: #a8d7ff; }
.showcase-copy p:not(.eyebrow) { max-width: 600px; margin: 22px 0 30px; color: rgba(255,255,255,.78); font-size: 18px; }
.showcase-image { min-height: 420px; display: grid; place-items: center; position: relative; }
.showcase-image::before { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; background: rgba(255,255,255,.08); }
.showcase-image img { position: relative; z-index: 1; width: min(590px, 100%); filter: drop-shadow(0 28px 30px rgba(0,0,0,.26)); }

.brand-strip { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 18px 56px rgba(29,55,88,.07); overflow: hidden; }
.brand-strip img { width: 100%; margin: 0 auto; }

.social-section { padding-top: 70px; padding-bottom: 70px; background: linear-gradient(135deg, #fff4f6, #f3f0ff); }
.social-grid { display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: 60px; }
.social-card { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 15px; padding: 22px; border: 1px solid rgba(255,255,255,.9); border-radius: 20px; background: rgba(255,255,255,.8); box-shadow: 0 18px 50px rgba(86,39,106,.1); }
.instagram-mark { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: #fff; background: linear-gradient(135deg, #6d42d7, #e82d7c, #f6a23d); font-size: 33px; font-weight: 900; }
.social-card strong, .social-card span { display: block; }
.social-card span { color: var(--muted); font-size: 13px; }
.social-card a { color: #7b3f9c; font-size: 14px; font-weight: 850; }

.location-section { background: var(--soft); }
.location-grid { display: grid; grid-template-columns: .92fr 1.08fr; border-radius: 28px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.location-card { padding: 52px; }
.location-card address { margin: 26px 0 30px; color: var(--muted); font-style: normal; font-size: 18px; }
.contact-lines { display: grid; gap: 16px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-lines a, .contact-lines div { display: grid; gap: 3px; }
.contact-lines span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-lines strong { font-size: 17px; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.map-wrap { min-height: 610px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 610px; border: 0; }

.cta-section { padding: 72px 0; color: #fff; background: linear-gradient(100deg, var(--red), var(--orange)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner .eyebrow { color: rgba(255,255,255,.72); }
.cta-inner h2 { max-width: 750px; }

.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.76); background: #0f1f33; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr; gap: 70px; }
.footer-brand img { width: 360px; max-width: 100%; height: auto; object-fit: contain; border-radius: 12px; background: #fff; }
.footer-brand p { max-width: 480px; margin: 22px 0 0; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; }
.footer-grid strong { margin-bottom: 6px; color: #fff; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.solar-hosting-badge { display: block; flex: 0 1 300px; width: min(300px,100%); margin-right: 80px; margin-left: auto; border-radius: 999px; transition: transform .2s ease, filter .2s ease; }
.solar-hosting-badge:hover { transform: translateY(-2px); filter: brightness(1.04); }
.solar-hosting-badge:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.solar-hosting-badge img { display: block; width: 100%; height: auto; aspect-ratio: 15/4; object-fit: contain; }

.whatsapp-float { position: fixed; z-index: 70; right: 22px; bottom: 22px; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: #25d366; box-shadow: 0 16px 40px rgba(37,211,102,.34); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 36px; height: 36px; fill: #fff; }

@media (max-width: 1020px) {
  .brand img { width: 290px; }
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 82px; left: 20px; right: 20px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .main-nav .button { margin-top: 8px; }
  .hero-grid, .story-grid, .showcase-grid, .location-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; }
  .hero-visual { min-height: 560px; margin-top: 10px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 50px; }
  .story-image-wrap { order: 2; }
  .social-grid { grid-template-columns: 1fr; }
  .social-card { max-width: 520px; }
  .map-wrap, .map-wrap iframe { min-height: 460px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .header-inner { height: 72px; }
  .main-nav { top: 72px; }
  .brand img { width: 235px; }
  .hero { padding: 58px 0 62px; }
  h1 { font-size: clamp(43px, 13vw, 62px); }
  h2 { font-size: 36px; }
  .hero-lead { font-size: 18px; }
  .hero-points { grid-template-columns: 1fr; gap: 12px; }
  .hero-points li { display: grid; grid-template-columns: 115px 1fr; gap: 12px; padding-top: 12px; }
  .hero-points span { margin-top: 0; }
  .hero-visual { min-height: 500px; }
  .store-card { width: 88%; }
  .store-card img { height: auto; }
  .blob-one { width: 330px; height: 330px; left: -10px; }
  .blob-two { width: 210px; height: 210px; right: -30px; }
  .intro-grid, .product-grid, .footer-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 26px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .product-card { min-height: auto; }
  .story-image-wrap { min-height: 510px; }
  .story-image-card { width: 88%; }
  .story-image-card img { height: 430px; }
  .mini-card { right: 0; bottom: 22px; width: 220px; }
  .showcase-image { min-height: 300px; }
  .brand-strip { padding: 16px; }
  .social-card { grid-template-columns: 48px 1fr; }
  .social-card a { grid-column: 2; }
  .location-card { padding: 34px 24px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .solar-hosting-badge { width: min(260px,calc(100% - 80px)); margin-right: 80px; margin-left: 0; }
  .whatsapp-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}


/* Expanded catalog and SEO content */
.main-nav a.is-active { color: var(--blue); }
.center-action { display:flex; justify-content:center; margin-top:38px; }
.section-lead { color:var(--muted); font-size:18px; max-width:560px; }
.catalog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.catalog-card { overflow:hidden; border:1px solid var(--line); border-radius:24px; background:#fff; box-shadow:0 14px 42px rgba(29,55,88,.07); transition:transform .2s ease, box-shadow .2s ease; }
.catalog-card:hover { transform:translateY(-5px); box-shadow:0 22px 50px rgba(29,55,88,.13); }
.catalog-card-image { display:block; aspect-ratio:1/1; overflow:hidden; background:#f7f8fa; }
.catalog-card-image img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.catalog-card:hover .catalog-card-image img { transform:scale(1.025); }
.catalog-card-body { padding:25px; }
.card-kicker { display:block; margin-bottom:9px; color:var(--blue); font-size:12px; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.catalog-card h3 { font-size:22px; }
.catalog-card p { margin:14px 0 0; color:var(--muted); }
.card-link { display:inline-block; margin-top:18px; color:var(--blue); font-weight:850; }
.catalog-card.compact .catalog-card-body { padding:21px; }
.catalog-card.compact p { font-size:14px; }
.solutions-section { background:#fff; }
.solution-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.solution-card { overflow:hidden; border:1px solid var(--line); border-radius:24px; background:var(--soft); }
.solution-image { display:block; aspect-ratio:16/10; overflow:hidden; background:#fff; }
.solution-image img { width:100%; height:100%; object-fit:cover; }
.solution-body { padding:26px; }
.solution-body p { color:var(--muted); }
.brand-card-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.brand-card > a { display:block; height:100%; padding:26px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:0 10px 32px rgba(29,55,88,.05); transition:transform .2s ease; }
.brand-card > a:hover { transform:translateY(-4px); }
.brand-card p { color:var(--muted); }
.brand-initial { display:grid; place-items:center; width:54px; height:54px; margin-bottom:22px; border-radius:17px; color:#fff; background:linear-gradient(135deg,var(--blue),var(--blue-dark)); font-size:28px; font-weight:900; }
.social-proof-section { background:var(--soft); }
.seo-copy-section { background:linear-gradient(135deg,#f7fbff,#fff9ee); }
.seo-copy-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:80px; align-items:start; }
.prose { color:var(--muted); font-size:18px; }
.prose h2 { margin:42px 0 16px; color:var(--ink); font-size:34px; }
.prose h2:first-child { margin-top:0; }
.prose h3 { margin:30px 0 12px; color:var(--ink); }
.prose p { margin:0 0 20px; }
.prose ul,.prose ol { display:grid; gap:10px; padding-left:24px; }
.compact-prose p:last-child { margin-bottom:0; }
.guides-section { background:#fff; }
.guide-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.guide-card > a { display:grid; grid-template-columns:180px 1fr; min-height:240px; overflow:hidden; border:1px solid var(--line); border-radius:24px; background:#fff; box-shadow:0 12px 38px rgba(29,55,88,.06); }
.guide-card img { width:100%; height:100%; object-fit:cover; }
.guide-card div { padding:26px; }
.guide-card p { color:var(--muted); }
.instagram-section { background:linear-gradient(135deg,#fff4f6,#f3f0ff); }
.instagram-gallery { display:grid; grid-template-columns:repeat(6,1fr); gap:12px; }
.instagram-gallery a { overflow:hidden; aspect-ratio:1/1; border-radius:18px; box-shadow:0 12px 30px rgba(86,39,106,.1); }
.instagram-gallery img { width:100%; height:100%; object-fit:cover; transition:transform .3s ease; }
.instagram-gallery a:hover img { transform:scale(1.04); }
.faq-section { background:#fff; }
.faq-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; align-items:start; }
.faq-list { display:grid; gap:12px; }
.faq-list details { border:1px solid var(--line); border-radius:18px; background:#fff; }
.faq-list summary { cursor:pointer; padding:20px 54px 20px 22px; list-style:none; font-weight:850; position:relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:'+'; position:absolute; right:22px; top:17px; color:var(--blue); font-size:25px; }
.faq-list details[open] summary::after { content:'–'; }
.faq-list details p { margin:0; padding:0 22px 22px; color:var(--muted); }
.breadcrumb { padding-top:22px; padding-bottom:8px; }
.breadcrumb ol { display:flex; flex-wrap:wrap; gap:8px; margin:0; padding:0; list-style:none; color:var(--muted); font-size:13px; }
.breadcrumb li:not(:last-child)::after { content:'›'; margin-left:8px; color:#aab3bf; }
.breadcrumb a:hover { color:var(--blue); }
.subhero,.detail-hero,.article-hero { position:relative; overflow:hidden; padding:74px 0 86px; background:linear-gradient(135deg,#f7fbff 0%,#fff 58%,#fff9ee 100%); }
.subhero::before,.detail-hero::before,.article-hero::before { content:''; position:absolute; width:420px; height:420px; right:-130px; top:-190px; border-radius:50%; background:radial-gradient(circle,rgba(255,201,40,.24),rgba(255,201,40,0) 70%); }
.subhero-grid,.detail-grid,.article-hero-grid { position:relative; display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:center; }
.subhero h1,.detail-copy h1,.article-hero h1 { font-size:clamp(46px,5.7vw,74px); }
.subhero-image,.detail-media,.article-hero-image { width:min(520px,100%); aspect-ratio:1/1; justify-self:end; padding:18px; border-radius:30px; background:#fff; box-shadow:var(--shadow); transform:rotate(1deg); }
.subhero-image img,.detail-media img,.article-hero-image img { width:100%; height:100%; aspect-ratio:1/1; object-fit:cover; border-radius:20px; }
.brand-hero-mark { display:grid; place-items:center; justify-self:end; width:430px; max-width:100%; aspect-ratio:1/1; border-radius:38% 62% 52% 48% / 49% 37% 63% 51%; color:#fff; background:linear-gradient(145deg,var(--blue),var(--blue-dark)); box-shadow:var(--shadow); }
.brand-hero-mark span { font-size:160px; line-height:1; font-weight:950; opacity:.22; }
.brand-hero-mark strong { margin-top:-80px; font-size:38px; }
.stock-note { color:var(--muted); font-size:14px; }
.content-section { background:#fff; }
.content-layout { display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:80px; align-items:start; }
.info-panel { padding:28px; border:1px solid var(--line); border-radius:22px; background:var(--soft); }
.info-panel h3 { margin-bottom:12px; }
.info-panel p { color:var(--muted); }
.info-panel dl { margin:0 0 25px; }
.info-panel dl div { display:grid; grid-template-columns:100px 1fr; gap:14px; padding:13px 0; border-bottom:1px solid var(--line); }
.info-panel dt { color:var(--muted); font-size:13px; font-weight:800; text-transform:uppercase; }
.info-panel dd { margin:0; font-weight:750; }
.info-panel .button { width:100%; }
.related-section { background:var(--soft); }
.article-section { background:#fff; }
.article-layout { display:grid; grid-template-columns:minmax(0,780px) 300px; gap:90px; align-items:start; }
.article-prose { font-size:19px; }
.lead-paragraph { color:var(--ink); font-size:24px; line-height:1.5; }
.article-callout { margin-top:50px; padding:34px; border-radius:24px; background:linear-gradient(135deg,#eaf5ff,#fff8e9); }
.article-callout h2 { margin-top:0; }
.article-aside .info-panel { display:grid; gap:12px; }
.article-aside .info-panel a:not(.button) { padding:12px 0; border-bottom:1px solid var(--line); font-weight:750; }
.sticky-panel { position:sticky; top:110px; }
.not-found { min-height:65vh; display:grid; align-items:center; text-align:center; background:linear-gradient(135deg,#f7fbff,#fff9ee); }
.not-found .hero-lead { margin-left:auto; margin-right:auto; }
.not-found .hero-actions { justify-content:center; }

.category-jump { display:flex; flex-wrap:wrap; gap:12px; padding-top:34px; padding-bottom:34px; }
.category-jump a { padding:11px 17px; border:1px solid var(--line); border-radius:999px; color:var(--blue-dark); background:#fff; font-weight:800; box-shadow:0 8px 24px rgba(29,55,88,.05); }
.category-jump a:hover,.category-jump a:focus-visible { color:#fff; background:var(--blue); }
.product-index-group { padding-top:62px; padding-bottom:62px; }
.product-index-group:nth-of-type(even) { background:var(--soft); }
.store-gallery-section { background:var(--soft); }
.store-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.store-gallery figure { overflow:hidden; margin:0; border:1px solid var(--line); border-radius:24px; background:#fff; box-shadow:0 14px 42px rgba(29,55,88,.07); }
.store-gallery img { width:100%; aspect-ratio:1/1; object-fit:cover; }
.store-gallery figcaption { padding:18px 22px; color:var(--ink); font-weight:800; }
.location-card > p:not(.eyebrow) { margin-top:18px; color:var(--muted); }

@media (max-width:1020px) {
  .catalog-grid,.solution-grid { grid-template-columns:repeat(2,1fr); }
  .brand-card-grid { grid-template-columns:repeat(3,1fr); }
  .instagram-gallery { grid-template-columns:repeat(3,1fr); }
  .subhero-grid,.detail-grid,.article-hero-grid,.content-layout,.article-layout { grid-template-columns:1fr; }
  .subhero-image,.detail-media,.article-hero-image,.brand-hero-mark { justify-self:center; }
  .article-aside { max-width:620px; }
  .sticky-panel { position:static; }
}
@media (max-width:720px) {
  .catalog-grid,.solution-grid,.brand-card-grid,.guide-grid { grid-template-columns:1fr; }
  .guide-card > a { grid-template-columns:1fr; }
  .guide-card img { height:250px; }
  .instagram-gallery { grid-template-columns:repeat(2,1fr); }
  .seo-copy-grid,.faq-grid { grid-template-columns:1fr; gap:34px; }
  .subhero,.detail-hero,.article-hero { padding:50px 0 62px; }
  .subhero-grid,.detail-grid,.article-hero-grid { gap:42px; }
  .brand-hero-mark { width:300px; }
  .brand-hero-mark span { font-size:110px; }
  .brand-hero-mark strong { margin-top:-55px; font-size:29px; }
  .content-layout,.article-layout { gap:42px; }
  .prose { font-size:17px; }
  .prose h2 { font-size:30px; }
  .info-panel dl div { grid-template-columns:1fr; gap:2px; }
  .store-gallery { grid-template-columns:1fr; }
  .category-jump { overflow-x:auto; flex-wrap:nowrap; padding-top:24px; padding-bottom:24px; }
  .category-jump a { flex:0 0 auto; }
}
