/* ==========================================================================
   RR-Hosting - Temporary Maintenance / Coming Soon Page
   Typography: Self-Hosted Manrope Font (GDPR compliant, zero external calls)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Local Font Declarations (Manrope)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-800-normal.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   2. Design Tokens & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --bg-page: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  
  --border-light: #E2E8F0;
  --border-focus: #0F172A;
  
  /* Brand Green from RR-Hosting Logo */
  --brand-green: #3CD372;
  --brand-green-subtle: #EDFAF1;
  --accent-dot: #3CD372;
  --accent-live: #EF4444;
  
  --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 12px 30px -6px rgba(15, 23, 42, 0.08), 0 8px 12px -6px rgba(15, 23, 42, 0.04);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --container-max: 760px;
}

/* --------------------------------------------------------------------------
   3. Base Reset & Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: var(--bg-page);
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   4. Layout Structure
   -------------------------------------------------------------------------- */
.site-wrapper {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
}

.brand-container {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.04));
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-green);
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background-color: var(--brand-green);
  border-radius: 50%;
  opacity: 0.45;
  animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* Main Content Area */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto 0;
  padding: 1.5rem 0 3rem;
}

/* GIF Media Showcase */
.media-container {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background-color: var(--bg-subtle);
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.media-container:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.cat-gif {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Heading & Intro Text */
.page-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.page-description {
  font-size: clamp(1rem, 2vw, 1.0625rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   4b. Office Easter Egg / Live View Teaser
   -------------------------------------------------------------------------- */
.office-teaser-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.office-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
  cursor: pointer;
  max-width: 100%;
  white-space: normal;
}

.office-toggle-btn strong {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--brand-green);
}

.office-toggle-btn:hover {
  border-color: var(--brand-green);
  background-color: var(--bg-card-hover);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.office-toggle-btn:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

.office-btn-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.office-btn-chevron {
  color: var(--text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.office-toggle-btn[aria-expanded="true"] .office-btn-chevron {
  transform: rotate(180deg);
}

/* Office Reveal Wrapper & Card */
.office-reveal-wrapper {
  width: 100%;
  margin-top: 1rem;
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.office-reveal-wrapper[hidden] {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.office-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.office-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.875rem;
}

.office-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.65rem;
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-live);
  border-radius: 50%;
  position: relative;
}

.live-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background-color: var(--accent-live);
  border-radius: 50%;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.office-close-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.office-close-btn:hover {
  background-color: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
}

.office-media-container {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background-color: #000000;
}

.office-gif {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.office-caption {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   4c. Contact Links Grid
   -------------------------------------------------------------------------- */
.contact-section {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.contact-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  width: 100%;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.contact-card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.contact-card:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

.contact-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.contact-card:hover .contact-icon-wrapper {
  background-color: var(--brand-green);
  color: #FFFFFF;
  border-color: var(--brand-green);
}

.contact-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  word-break: break-word;
}

/* --------------------------------------------------------------------------
   4d. Website Inspector Teaser
   -------------------------------------------------------------------------- */
.inspector-teaser {
  width: 100%;
  margin-top: 0;
  padding: 1.5rem;
  border: 1px solid #BFEECF;
  border-radius: var(--radius-lg);
  background-color: var(--brand-green-subtle);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.5rem;
  text-align: left;
}

.section-kicker {
  margin-bottom: 0.45rem;
  color: #1B7A40;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inspector-teaser h2 {
  margin-bottom: 0.6rem;
  color: var(--text-primary);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.inspector-teaser-copy > p:not(.section-kicker, .release-note) {
  max-width: 520px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.release-note {
  margin-top: 0.7rem;
  color: #166534;
  font-size: 0.8125rem;
  font-weight: 700;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.primary-link {
  background-color: var(--text-primary);
  color: #FFFFFF;
}

.primary-link:hover {
  background-color: #1E293B;
  transform: translateY(-1px);
}

.secondary-link {
  border: 1px solid var(--border-light);
  background-color: var(--bg-card);
  color: var(--text-primary);
}

.secondary-link:hover {
  border-color: var(--brand-green);
  background-color: var(--bg-card-hover);
}

.primary-link:focus-visible,
.secondary-link:focus-visible,
.footer-nav a:focus-visible,
.brand-link:focus-visible,
.back-link:focus-visible,
.inline-link:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   5. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-logo-mini {
  height: 18px;
  width: auto;
}

.footer-copy {
  color: var(--text-muted);
}

.footer-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-nav a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--text-primary);
  text-decoration-color: var(--brand-green);
}

/* --------------------------------------------------------------------------
   5b. Shared Subpages - RR-Hosting Cohesive Design
   -------------------------------------------------------------------------- */
.subpage-body {
  justify-content: flex-start;
}

.subpage-wrapper {
  max-width: var(--container-max);
  gap: 0;
}

.subpage-wrapper .site-header {
  padding-bottom: 2.5rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition-fast);
}

.brand-link:hover {
  opacity: 0.9;
}

/* Zurück-Button im Stil der Status-Pille der Startseite */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.back-link::before {
  content: '←';
  display: inline-block;
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.back-link:hover {
  border-color: var(--brand-green);
  background-color: var(--bg-card-hover);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.back-link:hover::before {
  transform: translateX(-3px);
}

/* Subpage Main & Hero */
.subpage-main {
  width: 100%;
  padding: 0 0 3.5rem;
}

.subpage-hero {
  padding: 0.5rem 0 2rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.subpage-kicker {
  margin-bottom: 0.55rem;
  color: #1B7A40;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.subpage-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.subpage-lead {
  font-size: clamp(1rem, 2vw, 1.0625rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
  text-wrap: pretty;
}

/* Subpage Hero Grid für Website Inspector */
.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.hero-brand-panel {
  padding: 1.25rem 1.75rem;
  border: 1px solid #BFEECF;
  border-radius: var(--radius-lg);
  background-color: var(--brand-green-subtle);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-subtle);
  flex-shrink: 0;
}

.hero-brand-panel img {
  width: 130px;
  height: auto;
}

/* Content Sections */
.content-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
}

.content-section:first-of-type {
  border-top: none;
  padding-top: 0.5rem;
}

.content-section h2 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.content-section h3 {
  margin: 1.5rem 0 0.45rem;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.content-section p,
.content-section li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.content-section p + p {
  margin-top: 0.85rem;
}

.content-section ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}

.content-section li + li {
  margin-top: 0.45rem;
}

/* Inline Code Badges für technische Angaben in Datenschutz */
.content-section code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 0.15rem 0.4rem;
}

/* Adress- und Infoboxen im Card-Stil */
.legal-content {
  width: 100%;
}

.legal-content address {
  display: block;
  padding: 1.25rem 1.4rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  color: var(--text-secondary);
  font-style: normal;
  line-height: 1.75;
  margin-top: 0.75rem;
}

/* Inline Links */
.inline-link {
  color: #166534;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--brand-green);
  text-underline-offset: 3px;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.inline-link:hover {
  color: var(--text-primary);
  text-decoration-color: var(--text-primary);
}

/* Feature Grid (Website Inspector) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  padding: 1.35rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-card);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  border-color: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.feature-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 0.90625rem;
  line-height: 1.6;
}

/* Notice Box (Website Inspector) */
.notice-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid #BFEECF;
  border-left: 4px solid var(--brand-green);
  border-radius: var(--radius-md);
  background-color: var(--brand-green-subtle);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Status Box (Website Inspector) */
.status-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background-color: var(--bg-card);
  box-shadow: var(--shadow-subtle);
}

.status-box strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

/* Contact Options Grid (Kontaktseite) */
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-option {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-card);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.contact-option:hover {
  border-color: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.contact-option h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.contact-option p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  flex-grow: 1;
  font-size: 0.9375rem;
}

.contact-option .primary-link,
.contact-option .secondary-link {
  width: 100%;
  text-align: center;
}

/* --------------------------------------------------------------------------
   6. Responsive Adaptations
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .site-wrapper {
    padding: 1.5rem 1rem;
  }
  
  .site-header {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding-bottom: 1.75rem;
  }

  .brand-logo {
    height: 44px;
  }
  
  .media-container {
    max-width: 240px;
    margin-bottom: 1.5rem;
  }

  .office-toggle-btn {
    font-size: 0.8125rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 0.5rem;
    line-height: 1.4;
    white-space: normal;
  }

  .office-toggle-btn > span:not(.office-btn-icon) {
    flex: 1 1 auto;
    text-align: center;
    min-width: 0;
  }

  .office-btn-chevron,
  .office-btn-icon {
    flex-shrink: 0;
  }

  .office-card {
    padding: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .contact-card {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem 1.25rem;
    gap: 1rem;
    text-align: left;
  }
  
  .contact-icon-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .contact-card-details {
    display: flex;
    flex-direction: column;
  }

  .inspector-teaser { grid-template-columns: 1fr; align-items: start; padding: 1.25rem; }
  .primary-link, .secondary-link { width: 100%; white-space: normal; text-align: center; }
  
  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }

  .footer-end { align-items: center; }
  .footer-nav { justify-content: center; }
  .subpage-main { padding-bottom: 2.5rem; }
  .subpage-wrapper .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
  }
  .subpage-hero { padding: 0.5rem 0 1.5rem; }
  .subpage-hero-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-brand-panel { padding: 1.25rem; order: -1; }
  .hero-brand-panel img { width: 100px; }
  .feature-grid, .contact-options { grid-template-columns: 1fr; }
  .status-box { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .status-box .secondary-link { width: 100%; text-align: center; }
  .content-section { padding: 1.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
