/* =====================================================
   Zendia – Japanese Corporate Site
   Design System / Shared Stylesheet
   白基調・コーポレート・B2B向け
   ===================================================== */

:root {
  --navy:        #00233D;
  --navy-2:      #003460;
  --gold:        #D4AF37;
  --gold-soft:   rgba(212, 175, 55, 0.08);
  --gold-border: rgba(212, 175, 55, 0.28);
  --white:       #FFFFFF;
  --bg-alt:      #F7F8FA;
  --text:        #1D1D1F;
  --muted:       #6B7280;
  --border:      #E4E6E8;
  --border-s:    rgba(0, 35, 61, 0.07);
  --shadow-sm:   0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-md:   0 4px 20px rgba(0, 0, 0, 0.07);
}

/* ── Reset ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: 0.03em;
}

p { line-height: 1.8; }

/* ── Layout ─────────────────────────── */
.cn {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cn-narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cn-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Header ─────────────────────────── */
.c-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #0E162B;
  border-bottom: 2px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.c-header-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.c-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.c-logo img { height: 70px; }
.c-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: #EDE4C8;
  line-height: 1;
}

.c-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.c-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
.c-nav a:hover { background: transparent; color: #D4AF37; }
.c-nav a.active { background: transparent; color: #D4AF37; font-weight: 500; }

.c-nav-cta {
  margin-left: 0.75rem;
  padding: 0.45rem 1.1rem !important;
  background: #D4AF37 !important;
  color: #0E162B !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.18s !important;
}
.c-nav-cta:hover { background: #C19B2A !important; }

/* Hamburger */
.c-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
  z-index: 10;
}
.c-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #EDE4C8; border-radius: 2px; transition: all 0.3s;
}

/* Mobile nav */
.c-mobile-nav {
  display: none;
  flex-direction: column;
  background: #0E162B;
  border-top: 1px solid rgba(212,175,55,0.3);
  padding: 0.5rem 2rem 1.25rem;
}
.c-mobile-nav.open { display: flex; }
.c-mobile-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.18s;
}
.c-mobile-nav a:last-child { border-bottom: none; }
.c-mobile-nav a:hover { color: #D4AF37; }

/* ── Page Hero ───────────────────────── */
.c-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.c-hero .cn { position: relative; z-index: 1; }

/* ── Hero shimmer lines ── */
.hero-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-shimmer span {
  position: absolute;
  top: -80%;
  width: 1px;
  height: 280%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(212,175,55,0.26) 30%,
    rgba(212,175,55,0.26) 70%,
    transparent 100%
  );
}
.hero-shimmer span.hs-thin {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(212,175,55,0.13) 30%,
    rgba(212,175,55,0.13) 70%,
    transparent 100%
  );
}
.hero-shimmer span.hs-w {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,0.20) 30%,
    rgba(255,255,255,0.20) 70%,
    transparent 100%
  );
}
@keyframes heroLineSweep {
  from { transform: translateX(-60vw) rotate(-22deg); }
  to   { transform: translateX(160vw) rotate(-22deg); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-shimmer span {
    animation: heroLineSweep var(--hs-dur, 11s) linear infinite;
    animation-delay: var(--hs-delay, 0s);
  }
}

.c-hero-label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.c-hero h1 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.c-hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.85;
}

/* Top page hero (more spacious) */
.c-hero-top {
  padding: 5.5rem 0 5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.c-hero-top::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--bg-alt);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.c-hero-top-inner {
  position: relative;
  z-index: 1;
}
.c-hero-top h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 1rem;
  max-width: 560px;
}
.c-hero-top-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.c-hero-top-brand img { height: 52px; opacity: 0.88; }
.c-hero-top p {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 2.25rem;
}
.c-hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Sections ────────────────────────── */
.c-section { padding: 5rem 0; }
.c-section-sm { padding: 3.5rem 0; }
.c-section-alt { background: var(--bg-alt); }
.c-section-navy {
  background: var(--navy);
  color: var(--white);
}
.c-section-navy h2,
.c-section-navy h3,
.c-section-navy .c-section-title { color: var(--white); }
.c-section-navy .c-section-label { color: rgba(212,175,55,0.8); }
.c-section-navy p,
.c-section-navy li { color: rgba(255,255,255,0.75); }

.c-section-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.c-section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.c-divider {
  width: 36px; height: 2px;
  background: var(--gold);
  margin: 1.1rem 0 1.5rem;
}
.c-section-lead {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 640px;
}

/* ── Grid ────────────────────────────── */
.c-grid { display: grid; gap: 1.5rem; }
.c-grid-2 { grid-template-columns: repeat(2, 1fr); }
.c-grid-3 { grid-template-columns: repeat(3, 1fr); }
.c-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Cards ───────────────────────────── */
.c-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}
.c-card-gold-line { border-top: 3px solid var(--gold); }
.c-card h3 {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.c-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}
.c-card-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.c-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-soft);
  margin-bottom: 1rem;
}
.c-card-icon svg { stroke: var(--gold); }

/* Partner Feature Cards */
.c-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.c-feature-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: 0.15rem 0.7rem;
  margin-bottom: 1rem;
  width: fit-content;
}
.c-feature-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.c-feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
}
.c-feature-card .c-link {
  font-size: 0.85rem;
  margin-top: auto;
}

/* ── Company Table ───────────────────── */
.c-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.c-table tr { border-bottom: 1px solid var(--border); }
.c-table tr:first-child { border-top: 1px solid var(--border); }
.c-table th {
  text-align: left;
  padding: 1rem 1.5rem 1rem 0;
  width: 180px;
  color: var(--navy);
  font-weight: 500;
  vertical-align: top;
  white-space: nowrap;
  font-size: 0.88rem;
}
.c-table td {
  padding: 1rem 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9rem;
}

/* ── Process Flow ────────────────────── */
.c-flow {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.c-flow-step {
  flex: 1;
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--white);
  position: relative;
}
.c-flow-step + .c-flow-step { border-left: 1px solid var(--border); }
.c-flow-step-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.c-flow-step-label {
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.4;
}
.c-flow-step-sub {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.3rem;
}

/* ── Language Badges ─────────────────── */
/* ── Phone number bot protection ────── */
.c-tel::after {
  content: attr(data-a) "-" attr(data-b) "-" attr(data-c);
}

.c-lang-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.c-lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}
.c-lang-badge::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Contact Blocks ──────────────────── */
.c-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  border-top: 3px solid var(--gold);
}
.c-contact-card h3 {
  font-size: 0.97rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.c-contact-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.c-contact-card .c-email-link {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.18s, background 0.18s;
}
.c-contact-card .c-email-link:hover {
  border-color: var(--gold-border);
  background: var(--gold-soft);
}

/* ── List Styles ─────────────────────── */
.c-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.c-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.7;
}
.c-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px; height: 1px;
  background: var(--gold);
}

/* ── News ────────────────────────────── */
.c-news-list { display: flex; flex-direction: column; }
.c-news-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}
.c-news-item:first-child { border-top: 1px solid var(--border); }
.c-news-item:hover { background: var(--gold-soft); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; }
.c-news-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.05em;
  width: 130px;
  flex-shrink: 0;
}
.c-news-cat {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: 0.1rem 0.6rem;
  width: 80px;
  text-align: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.c-news-title {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  flex: 1;
}
.c-news-item:hover .c-news-title { color: var(--navy); }

/* ── Buttons ─────────────────────────── */
.c-btn {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.c-btn-primary {
  background: var(--navy);
  color: var(--white);
}
.c-btn-primary:hover { background: var(--navy-2); }
.c-btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.c-btn-outline:hover { background: var(--navy); color: var(--white); }
.c-btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.c-btn-gold:hover { background: #c8a730; }
.c-btn-white-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.c-btn-white-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }

/* ── Text Link ───────────────────────── */
.c-link {
  color: var(--navy);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 1px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.18s, color 0.18s;
}
.c-link:hover { border-bottom-color: var(--gold); color: var(--gold); }
.c-link-arrow::after { content: ' →'; }

/* ── CTA Banner ──────────────────────── */
.c-cta-banner {
  background: var(--navy);
  padding: 2.5rem 0;
  text-align: center;
}
.c-cta-banner h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.c-cta-banner p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ── Footer ──────────────────────────── */
.c-footer {
  background: var(--navy);
  padding: 4rem 0 0;
}
.c-footer-main {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.c-footer-brand img {
  height: 34px;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}
.c-footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
}
.c-footer-brand p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
}

.c-footer-nav-group h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 400;
}
.c-footer-nav-group a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 0.5rem;
  transition: color 0.18s;
}
.c-footer-nav-group a:hover { color: rgba(255,255,255,0.88); }

.c-footer-bottom {
  max-width: 1060px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.c-footer-bottom small {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.28);
}
.c-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.c-footer-bottom-links a {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.18s;
}
.c-footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ── Article (news detail) ───────────── */
.c-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.c-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.c-article-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.c-article h1 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.45;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.c-article-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
}
.c-article-body p { margin-bottom: 1.5rem; }
.c-article-body h2 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.c-article-body ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.c-article-body ul li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.c-article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px; height: 1px;
  background: var(--gold);
}
.c-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  transition: color 0.18s;
}
.c-article-back:hover { color: var(--navy); }

/* ── Privacy ─────────────────────────── */
.c-privacy-body h2 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
}
.c-privacy-body p,
.c-privacy-body li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
}
.c-privacy-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.c-privacy-body ul li { margin-bottom: 0.3rem; }

/* ── Utilities ───────────────────────── */
.u-tc  { text-align: center; }
.u-mt1 { margin-top: 1rem; }
.u-mt2 { margin-top: 1.5rem; }
.u-mt3 { margin-top: 2.5rem; }
.u-mt4 { margin-top: 4rem; }
.u-mb1 { margin-bottom: 0.75rem; }
.u-mb2 { margin-bottom: 1.5rem; }
.u-mb3 { margin-bottom: 2.5rem; }
.u-gap { display: flex; flex-direction: column; gap: 0.5rem; }

/* ── Responsive ──────────────────────── */
@media (max-width: 860px) {
  .c-nav { display: none; }
  .c-hamburger { display: flex; }
  .c-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .c-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .c-footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .c-flow { flex-direction: column; }
  .c-flow-step + .c-flow-step { border-left: none; border-top: 1px solid var(--border); }
  .c-hero-top::before { display: none; }
}

@media (max-width: 600px) {
  .c-hero { padding: 2.5rem 0 2rem; }
  .c-hero-top { padding: 3.5rem 0 3rem; }
  .c-section { padding: 3.5rem 0; }
  .c-section-sm { padding: 2.5rem 0; }
  .c-grid-2 { grid-template-columns: 1fr; }
  .c-grid-3 { grid-template-columns: 1fr; }
  .c-grid-4 { grid-template-columns: 1fr; }
  .c-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .c-table th { width: 120px; font-size: 0.83rem; }
  .c-news-item { flex-wrap: wrap; gap: 0.4rem; }
  .c-news-date { width: auto; }
  .c-footer { padding-top: 2rem; }
  .c-footer-main {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem !important;
    padding-bottom: 1.75rem;
  }
  .c-footer-brand {
    grid-column: 1 / -1 !important;
    grid-row: 1;
  }
  .c-footer-brand > div:last-child { margin-top: 0.75rem !important; padding-top: 0.75rem !important; }
  .c-footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .c-footer-bottom-links { flex-wrap: wrap; gap: 0.5rem; }
  .c-hero-top-brand { font-size: 2rem; }
  .c-hero-cta-group { flex-direction: column; }
  .c-hero-cta-group .c-btn { width: 100%; text-align: center; }
  .c-contact-card { padding: 1.5rem; }
  .c-article { padding: 2.5rem 1.25rem; }
  .c-info-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cn, .cn-narrow, .cn-wide { padding-left: 1.25rem; padding-right: 1.25rem; }
}
