/* ============================================
   MARS CORP. - Corporate Website
   Color Theme: Mars Red (#DC2626)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #DC2626;
  --color-primary-light: #EF4444;
  --color-primary-dark: #991B1B;
  --color-accent: #F97316;
  --color-accent-warm: #FB923C;
  --color-bg-dark: #0C0C14;
  --color-bg-section: #111118;
  --color-bg-card: #1A1A24;
  --color-text: #E2E8F0;
  --color-text-muted: #94A3B8;
  --color-text-heading: #F8FAFC;
  --color-border: #2D2D3A;
  --color-bg-footer: #080810;
  --color-text-footer: #64748B;
  --font-family: 'Noto Sans JP', 'Segoe UI', sans-serif;
  --header-height: 64px;
  --max-width: 1200px;
  --transition-fast: 0.2s ease;
  --transition-mid: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-padding-top: var(--header-height);
  scrollbar-gutter: stable;
  font-size: 16px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* 共通フォーカススタイル (アクセシビリティ) */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  color: var(--color-text-heading);
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

/* --- Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* デスクトップのみ改行（モバイルで非表示） */
.break-desktop {
  display: none;
}

@media (min-width: 768px) {
  .break-desktop {
    display: block;
  }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(12, 12, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
  z-index: 1000;
  transition: background var(--transition-mid), box-shadow var(--transition-mid);
}

.site-header.scrolled {
  background: rgba(12, 12, 20, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(220, 38, 38, 0.4));
  transition: filter var(--transition-fast);
}

.logo:hover .logo-icon {
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.6));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .company-name-en {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-heading);
  letter-spacing: 0.05em;
}

.logo-text .company-name-jp {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0;
}

.nav-link {
  position: relative;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
  font-family: var(--font-family);
  letter-spacing: 0.02em;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-mid), left var(--transition-mid);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-heading);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
  left: 20%;
}

/* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition-mid), opacity var(--transition-mid);
  border-radius: 2px;
}

/* translateY(7px) = span高さ(2px) + gap(5px) で中央のspanと重なる位置 */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-mid), visibility var(--transition-mid);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh; /* dvh非対応ブラウザ向けフォールバック */
  height: 100dvh;
  background: var(--color-bg-section);
  border-left: 1px solid var(--color-border);
  z-index: 1005;
  transform: translateX(100%);
  transition: transform var(--transition-mid);
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-nav {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  transition: background var(--transition-fast), color var(--transition-fast);
  width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-primary-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(220, 38, 38, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0C0C14 0%, #1a0a0a 50%, #0C0C14 100%);
}

/* 浮遊するパーティクル風の装飾 */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem 1.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary-light);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.9;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  font-family: var(--font-family);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
  color: #fff;
}

.hero-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.25);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.hero-cta:hover svg {
  transform: translateX(3px);
}


/* ============================================
   SECTIONS - Common
   ============================================ */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-title-sm {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* セクション背景(交互) */
.section-alt {
  background: var(--color-bg-section);
}

/* セクション背景装飾 */
.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================
   BUSINESS SECTION
   ============================================ */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.business-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
}

.business-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
}

.business-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(249, 115, 22, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.business-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.business-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* 取扱メーカーリスト */
.maker-section {
  margin-top: 2rem;
}

.maker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.maker-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: border-color var(--transition-fast);
}

.maker-item:hover {
  border-color: rgba(220, 38, 38, 0.25);
}

.maker-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.maker-item-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.maker-item-content p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ============================================
   COMPANY SECTION
   ============================================ */
.company-table-wrapper {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.company-table th {
  background: rgba(220, 38, 38, 0.06);
  color: var(--color-primary-light);
  font-weight: 600;
  white-space: nowrap;
  width: 140px;
  vertical-align: top;
}

.company-table td {
  color: var(--color-text);
}

/* ============================================
   ORIGIN SECTION - 社名の由来
   ============================================ */
.origin-section {
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
    var(--color-bg-section);
  position: relative;
  overflow: hidden;
}

.origin-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

/* 火星風の球体装飾 */
.origin-planet {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(249, 115, 22, 0.7) 0%, transparent 50%),
    radial-gradient(circle at 65% 65%, rgba(153, 27, 27, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, #DC2626 0%, #991B1B 60%, #5b1010 100%);
  box-shadow:
    0 0 40px rgba(220, 38, 38, 0.25),
    0 0 80px rgba(220, 38, 38, 0.1),
    inset -15px -10px 30px rgba(0, 0, 0, 0.4);
  animation: planetGlow 4s ease-in-out infinite alternate;
}

@keyframes planetGlow {
  0% { box-shadow: 0 0 40px rgba(220, 38, 38, 0.2), 0 0 80px rgba(220, 38, 38, 0.08), inset -15px -10px 30px rgba(0, 0, 0, 0.4); }
  100% { box-shadow: 0 0 50px rgba(220, 38, 38, 0.35), 0 0 100px rgba(220, 38, 38, 0.15), inset -15px -10px 30px rgba(0, 0, 0, 0.4); }
}

.origin-content {
  flex: 1;
}

.origin-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-primary-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.origin-heading {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.origin-heading .text-gradient {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.origin-quote {
  border-left: 3px solid var(--color-primary);
  padding-left: 1.25rem;
  margin: 0 0 1.25rem 0;
}

.origin-quote p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 2;
  font-weight: 300;
}

.origin-mission {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

.origin-mission strong {
  color: var(--color-accent-warm);
  font-weight: 600;
}

/* レスポンシブ: 社名由来 */
@media (max-width: 767px) {
  .origin-banner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .origin-planet {
    width: 100px;
    height: 100px;
  }

  .origin-label,
  .origin-heading {
    text-align: center;
  }

  .origin-quote {
    border-left: none;
    border-top: 3px solid var(--color-primary);
    padding-left: 0;
    padding-top: 1rem;
  }
}

/* 主要取引先タグ */
.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.client-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--color-text);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
}

.contact-info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-heading);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-detail-content {
  flex: 1;
}

.contact-detail-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--color-text-heading);
}

.contact-mail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-mail-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
  color: #fff;
}

.contact-mail-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.2);
}

/* Google Map */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  display: block;
  filter: grayscale(0.3) brightness(0.85);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg-footer);
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(220, 38, 38, 0.3));
}

.footer-logo-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--color-text-footer);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* アクセシビリティ: モーション軽減設定 */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4 {
    transition-delay: 0s;
  }

  .hero::before,
  .hero::after {
    animation: none;
  }

  .origin-planet {
    animation: none;
  }

  .business-card {
    transition: border-color var(--transition-mid), box-shadow var(--transition-mid);
  }

  .business-card:hover {
    transform: none;
  }

  .hero-cta,
  .contact-mail-link {
    transition: box-shadow var(--transition-fast);
  }

  .hero-cta:hover,
  .contact-mail-link:hover {
    transform: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (min-width: 768px) {
}

/* Desktop */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  h2 {
    font-size: 2.25rem;
  }

  .section {
    padding: 6rem 0;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  :root {
    --header-height: 56px;
  }

  .logo-text .company-name-en {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }


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

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
  }

  .company-table th {
    padding-bottom: 0.25rem;
    border-bottom: none;
  }

  .company-table td {
    padding-top: 0.25rem;
  }

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

  .contact-map {
    min-height: 280px;
  }

  .contact-map iframe {
    min-height: 280px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

