:root {
  --wss-stack-primary: #C00301;
  --wss-stack-accent: #027AFD;
  --wss-stack-ink: #1a1a1a;
  --wss-stack-ink-soft: #555;
  --wss-stack-bg: #ffffff;
  --wss-stack-bg-alt: #f6f6f6;
  --wss-stack-border: #e6e6e6;
  --wss-stack-max-width: 1140px;
  --wss-stack-radius: 10px;
  --wss-stack-font-heading: "Montserrat", system-ui, -apple-system, sans-serif;
  --wss-stack-font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--wss-stack-font-body);
  color: var(--wss-stack-ink);
  background: var(--wss-stack-bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--wss-stack-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--wss-stack-font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

.wss-stack__container {
  width: 100%;
  max-width: var(--wss-stack-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.wss-stack__header {
  background: #fff;
  border-bottom: 1px solid var(--wss-stack-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.wss-stack__header .wss-stack__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.wss-stack__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--wss-stack-ink);
}
.wss-stack__brand:hover { text-decoration: none; }
.wss-stack__logo { width: auto; height: 44px; }
.wss-stack__brand-name { font-size: 1.05rem; }
.wss-stack__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.wss-stack__nav-link {
  color: var(--wss-stack-ink);
  font-weight: 500;
}
.wss-stack__phone {
  background: var(--wss-stack-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--wss-stack-radius);
  font-weight: 600;
}
.wss-stack__phone:hover { text-decoration: none; opacity: 0.92; }

/* Hero */
.wss-stack__hero {
  padding: 64px 0;
  background: var(--wss-stack-bg-alt);
}
.wss-stack__hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.wss-stack__hero-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 0.4em;
}
.wss-stack__hero-intro {
  font-size: 1.1rem;
  color: var(--wss-stack-ink-soft);
  margin-bottom: 1.5em;
}
.wss-stack__hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.wss-stack__btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--wss-stack-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.15s ease;
}
.wss-stack__btn--primary { background: var(--wss-stack-primary); color: #fff; }
.wss-stack__btn--primary:hover { text-decoration: none; opacity: 0.9; }
.wss-stack__btn--ghost {
  background: transparent;
  color: var(--wss-stack-primary);
  border: 2px solid var(--wss-stack-primary);
}
.wss-stack__btn--ghost:hover { text-decoration: none; background: var(--wss-stack-primary); color: #fff; }
.wss-stack__hero-image img { border-radius: var(--wss-stack-radius); }

/* Anchor nav */
.wss-stack__anchor-nav {
  border-bottom: 1px solid var(--wss-stack-border);
  background: #fff;
  overflow-x: auto;
}
.wss-stack__anchor-list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 14px 0;
  white-space: nowrap;
}
.wss-stack__anchor-list a {
  color: var(--wss-stack-ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}
.wss-stack__anchor-list a:hover { color: var(--wss-stack-primary); }

/* Sections */
.wss-stack__section { padding: 56px 0; }
.wss-stack__section--alt { background: var(--wss-stack-bg-alt); }
.wss-stack__section-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 0.8em;
}
.wss-stack__section-body p {
  font-size: 1.05rem;
  color: var(--wss-stack-ink-soft);
  margin: 0 0 1em;
}
.wss-stack__section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.wss-stack__section-grid--reverse .wss-stack__section-image { order: -1; }
.wss-stack__section-image img { border-radius: var(--wss-stack-radius); }

/* Service list */
.wss-stack__service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.wss-stack__service-card {
  background: var(--wss-stack-bg-alt);
  border: 1px solid var(--wss-stack-border);
  border-radius: var(--wss-stack-radius);
  padding: 20px;
}
.wss-stack__service-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4em;
  color: var(--wss-stack-ink);
}
.wss-stack__service-card p {
  margin: 0;
  color: var(--wss-stack-ink-soft);
  font-size: 0.95rem;
}

/* Embeds */
.wss-stack__embeds {
  padding: 56px 0;
  background: #fff;
}
.wss-stack__embed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.wss-stack__wiki-card {
  display: flex;
  gap: 18px;
  background: var(--wss-stack-bg-alt);
  border: 1px solid var(--wss-stack-border);
  border-radius: var(--wss-stack-radius);
  padding: 18px;
  align-items: flex-start;
}
.wss-stack__wiki-thumb {
  flex: 0 0 110px;
  border-radius: var(--wss-stack-radius);
  overflow: hidden;
}
.wss-stack__wiki-thumb img {
  width: 110px;
  height: 110px;
  object-fit: cover;
}
.wss-stack__wiki-thumb:empty { display: none; }
.wss-stack__wiki-body { flex: 1; min-width: 0; }
.wss-stack__wiki-eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wss-stack-ink-soft);
  margin-bottom: 0.4em;
}
.wss-stack__wiki-title {
  font-size: 1.15rem;
  margin: 0 0 0.4em;
}
.wss-stack__wiki-extract {
  margin: 0 0 0.6em;
  color: var(--wss-stack-ink-soft);
  font-size: 0.95rem;
}
.wss-stack__wiki-link {
  font-weight: 600;
  color: var(--wss-stack-primary);
}

/* Map */
.wss-stack__map-address {
  color: var(--wss-stack-ink-soft);
  margin-bottom: 1em;
}
.wss-stack__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--wss-stack-radius);
  overflow: hidden;
  border: 1px solid var(--wss-stack-border);
}
.wss-stack__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.wss-stack__footer {
  background: #1a1a1a;
  color: #ddd;
  padding: 48px 0 24px;
  margin-top: 0;
}
.wss-stack__footer a { color: #fff; }
.wss-stack__footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333;
}
.wss-stack__footer-heading {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 0.8em;
}
.wss-stack__address {
  font-style: normal;
  color: #bbb;
  margin-bottom: 0.8em;
}
.wss-stack__hours { color: #bbb; margin: 0; font-size: 0.95rem; }
.wss-stack__footer-links,
.wss-stack__social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wss-stack__footer-links li,
.wss-stack__social-list li { margin-bottom: 0.4em; }
.wss-stack__footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  color: #aaa;
}
.wss-stack__footer-bottom a { color: #ddd; }

/* Mobile */
@media (max-width: 768px) {
  .wss-stack__hero { padding: 40px 0; }
  .wss-stack__hero-inner,
  .wss-stack__section-grid,
  .wss-stack__embed-grid { grid-template-columns: 1fr; gap: 24px; }
  .wss-stack__section-grid--reverse .wss-stack__section-image { order: 0; }
  .wss-stack__nav { gap: 14px; }
  .wss-stack__nav-link { display: none; }
  .wss-stack__brand-name { display: none; }
  .wss-stack__wiki-card { flex-direction: column; gap: 12px; }
  .wss-stack__wiki-thumb,
  .wss-stack__wiki-thumb img { width: 100%; height: auto; max-height: 200px; }
}
