/* Firewall Makeover — luxury spa for tired next-gen firewalls */

:root {
  --bg: #f7f1ea;
  --bg-alt: #efe6db;
  --bg-dark: #1a1410;
  --bg-dark-2: #2a211c;
  --ink: #1f1712;
  --ink-soft: #5c4d42;
  --muted: #7a6a5d;
  --line: rgba(31, 23, 18, 0.12);
  --line-strong: rgba(31, 23, 18, 0.22);
  --coral: #e85d2a;
  --coral-deep: #c4471a;
  --coral-soft: #f3a07c;
  --gold: #c9a227;
  --cream: #fffaf4;
  --white: #ffffff;
  --success: #2f6b4f;
  --shadow: 0 18px 50px rgba(26, 20, 16, 0.12);
  --shadow-sm: 0 8px 24px rgba(26, 20, 16, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --max: 1120px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(232, 93, 42, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 162, 39, 0.12), transparent 50%),
    var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--coral-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--bg-dark);
  color: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* Ticker */
.ticker {
  background: var(--bg-dark);
  color: #f0e4d7;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-track {
  display: inline-flex;
  gap: 1.25rem;
  padding: 0.55rem 0;
  animation: ticker 42s linear infinite;
}

.ticker-track span {
  opacity: 0.88;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 241, 234, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(232, 93, 42, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--coral-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--cream);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 1.45rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(180deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(196, 71, 26, 0.28);
}

.btn-primary:hover {
  color: #fff;
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  border-color: var(--coral-soft);
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(232, 93, 42, 0.1), transparent),
    linear-gradient(180deg, transparent 70%, var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
}

.hero h1,
.section-head h2,
.book-copy h2,
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral-deep);
}

.lead,
.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 52ch;
}

.lead {
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  min-width: 7rem;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1.1;
  color: var(--ink);
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-figure {
  margin: 0;
  position: relative;
}

.hero-figure img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-figure figcaption,
.ba-figure figcaption,
.salon-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

/* Strip */
.strip {
  padding: 0 0 1rem;
}

.strip-inner {
  background: var(--bg-dark);
  color: #f3e9df;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.strip-inner p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.strip-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(232, 93, 42, 0.18);
  color: var(--coral-soft);
  border: 1px solid rgba(232, 93, 42, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.55), rgba(239, 230, 219, 0.75));
  border-block: 1px solid var(--line);
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.section-head .section-sub {
  margin: 0.5rem auto 0;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.service-card,
.package-card,
.ba-card,
.testimonial,
.faq-item,
.book-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-card {
  padding: 1.35rem 1.3rem 1.4rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 93, 42, 0.28);
}

.service-card.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.25rem 1.25rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(232, 93, 42, 0.08), transparent 45%),
    var(--cream);
  border-color: rgba(232, 93, 42, 0.3);
}

.service-card.featured h3,
.service-card.featured p {
  grid-column: 2;
}

.service-card.featured .price {
  grid-column: 3;
  grid-row: 2 / 4;
  align-self: center;
  text-align: right;
  margin: 0;
  font-size: 1.05rem;
}

.service-card.featured .card-badge {
  grid-column: 2;
  justify-self: start;
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(232, 93, 42, 0.1);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.service-card h3,
.package-card h3,
.ba-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.service-card p,
.package-card p,
.ba-card p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.price {
  margin: 0;
  font-weight: 600;
  color: var(--coral-deep);
  font-size: 0.9rem;
}

.card-badge {
  display: inline-flex;
  margin: 0 0 0.55rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(232, 93, 42, 0.12);
  color: var(--coral-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.package-card {
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
}

.package-popular {
  background:
    linear-gradient(180deg, rgba(232, 93, 42, 0.1), transparent 40%),
    var(--cream);
  border-color: rgba(232, 93, 42, 0.35);
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.package-model {
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  margin-bottom: 1rem !important;
}

.package-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  flex: 1;
}

.package-card li {
  margin-bottom: 0.45rem;
}

.package-card .price {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.package-card .btn {
  align-self: stretch;
}

/* Before / after */
.ba-figure,
.salon-figure {
  margin: 0 auto 2rem;
  max-width: 960px;
}

.ba-figure img,
.salon-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ba-card {
  padding: 1.2rem 1.25rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem 1.4rem;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0 0 1.1rem;
  color: var(--ink);
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial footer span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.steps li {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.steps h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.45rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* Booking */
.section-book {
  padding-bottom: 5rem;
}

.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.book-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.book-notes {
  margin: 1.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.book-notes li {
  margin-bottom: 0.45rem;
}

.book-form {
  padding: 1.6rem 1.5rem 1.4rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.form-row input[type="text"],
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 93, 42, 0.18);
}

.form-row textarea {
  resize: vertical;
  min-height: 88px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.checkbox-row input {
  margin-top: 0.25rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--coral);
}

.checkbox-row label {
  margin: 0;
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.4em;
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: var(--success);
  font-weight: 600;
}

.form-status.error {
  color: #a12d1f;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.25rem;
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--coral);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--ink-soft);
  border-top: 1px solid transparent;
}

/* CTA */
.cta-band {
  background: var(--bg-dark);
  color: #f5ebe1;
  border: none;
  padding: 4rem 0;
}

.cta-inner {
  text-align: center;
  max-width: 720px;
}

.cta-inner h2 {
  color: #fffaf4;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-inner p {
  color: rgba(245, 235, 225, 0.82);
  margin: 0 auto 1.5rem;
  max-width: 48ch;
}

/* Footer */
.site-footer {
  background: #120e0b;
  color: rgba(245, 235, 225, 0.78);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-footer .brand-name {
  color: #fffaf4;
}

.brand-footer .brand-tag {
  color: rgba(245, 235, 225, 0.55);
}

.footer-blurb,
.footer-grid p {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-heading {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 235, 225, 0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--coral-soft);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  background: var(--bg-dark);
  color: #fffaf4;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 100;
  max-width: min(92vw, 480px);
  text-align: center;
  font-size: 0.92rem;
  transition: transform 0.35s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .book-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-column: span 2;
    grid-template-columns: auto 1fr;
  }

  .service-card.featured .price {
    grid-column: 2;
    grid-row: auto;
    text-align: left;
    margin-top: 0.5rem;
  }

  .package-grid,
  .ba-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .package-popular {
    transform: none;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(247, 241, 234, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1rem;
    box-shadow: var(--shadow-sm);
    z-index: 60;
  }

  .suite-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .suite-bar {
    top: var(--header-h);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .service-card.featured .service-icon,
  .service-card.featured h3,
  .service-card.featured p,
  .service-card.featured .card-badge,
  .service-card.featured .price {
    grid-column: 1;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .ba-labels {
    flex-direction: column;
    align-items: flex-start;
  }

  .strip-inner p {
    flex-direction: column;
    align-items: flex-start;
  }

  .suite-grid {
    grid-template-columns: 1fr;
  }

  .suite-label {
    display: none;
  }
}

/* Vendor suite bar — flagship PA stays primary; other brands are side suites */
.suite-bar {
  background: rgba(255, 250, 244, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  backdrop-filter: blur(12px);
}

.suite-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: 48px;
  padding: 0.45rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.suite-label {
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.suite-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: nowrap;
  min-width: min-content;
}

.suite-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.suite-link:hover {
  color: var(--ink);
  border-color: var(--coral-soft);
  background: #fff;
}

.suite-link.is-active {
  background: linear-gradient(180deg, var(--coral) 0%, var(--coral-deep) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(196, 71, 26, 0.22);
}

.suite-link.is-active:hover {
  color: #fff;
  filter: brightness(1.04);
}

.suite-link.flagship::before {
  content: "★";
  font-size: 0.75rem;
  opacity: 0.9;
}

.suite-link.is-active.flagship {
  box-shadow: 0 8px 20px rgba(196, 71, 26, 0.32);
}

/* Other suites grid on home + cross-links */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.suite-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.suite-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 93, 42, 0.3);
  color: inherit;
}

.suite-card-vendor {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 0.4rem;
}

.suite-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.45rem;
  line-height: 1.2;
}

.suite-card p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  flex: 1;
}

.suite-card-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--coral-deep);
}

.suite-note {
  text-align: center;
  margin: 1.25rem auto 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-suites {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-top: 0.75rem;
  padding: 0;
  list-style: none;
}

.footer-suites a {
  color: var(--coral-soft);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-suites a:hover {
  color: #fff;
}

.vendor-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(232, 93, 42, 0.1);
  border: 1px solid rgba(232, 93, 42, 0.22);
  color: var(--coral-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Theme accents per vendor suite (shared spa chrome, different coral stand-in) */
body.theme-cisco {
  --coral: #049fd9;
  --coral-deep: #0076a5;
  --coral-soft: #7ecceb;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(4, 159, 217, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 162, 39, 0.1), transparent 50%),
    var(--bg);
}

body.theme-fortinet {
  --coral: #c0392b;
  --coral-deep: #922b21;
  --coral-soft: #e08a80;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(192, 57, 43, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 162, 39, 0.1), transparent 50%),
    var(--bg);
}

body.theme-juniper {
  --coral: #2e8b57;
  --coral-deep: #1f6b42;
  --coral-soft: #8fcea8;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(46, 139, 87, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 162, 39, 0.1), transparent 50%),
    var(--bg);
}

body.theme-checkpoint {
  --coral: #1a4f9c;
  --coral-deep: #123a75;
  --coral-soft: #8aade0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(26, 79, 156, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(232, 93, 42, 0.08), transparent 50%),
    var(--bg);
}

body.theme-cisco .btn-primary,
body.theme-fortinet .btn-primary,
body.theme-juniper .btn-primary,
body.theme-checkpoint .btn-primary,
body.theme-cisco .suite-link.is-active,
body.theme-fortinet .suite-link.is-active,
body.theme-juniper .suite-link.is-active,
body.theme-checkpoint .suite-link.is-active {
  box-shadow: 0 10px 24px color-mix(in srgb, var(--coral-deep) 30%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card,
  .btn,
  .toast,
  .suite-card {
    transition: none;
  }
}
