/* ============================================
   株式会社佐建塗工 - Official Website CSS
   Design: Industrial / Garage Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/* === VARIABLES === */
:root {
  --accent:       #1C5090;
  --accent-dark:  #143d70;
  --accent-light: #3a72b8;
  --dark:         #1a1a1a;
  --dark-2:       #2c2c2c;
  --gray-bg:      #f5f5f3;
  --gray-mid:     #e4e3df;
  --border:       #dddbd6;
  --text:         #1e1e1e;
  --text-light:   #6b6b66;
  --white:        #ffffff;
  --header-h:     72px;
  --radius:       2px;
  --transition:   0.22s ease;
}

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--gray {
  background: var(--gray-bg);
}

/* === TYPOGRAPHY UTILITIES === */
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title--white {
  color: var(--white);
}
.section-lead {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 600px;
}
.text-center {
  text-align: center;
}
.text-center .section-lead {
  margin: 0 auto;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
.site-logo {
  flex-shrink: 0;
  line-height: 0;
}
.site-logo img {
  height: 46px;
  width: auto;
}
.site-nav {
  flex: 1;
}
.nav-list {
  display: flex;
  gap: 2px;
  justify-content: flex-start;
}
.nav-list a {
  display: block;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list a.current {
  color: var(--accent);
  background: rgba(28, 80, 144, 0.08);
}
.header-tel-wrap {
  flex-shrink: 0;
}
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.header-tel:hover {
  background: var(--accent-dark);
}
.header-tel svg {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 20px;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 6px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--accent-light);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 64px;
  background: var(--dark);
  color: var(--white);
}
.page-hero-en {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.page-hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* === HERO (top page) === */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/saken.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
  border: 1px solid rgba(58, 114, 184, 0.5);
  padding: 5px 14px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent-light);
}
.hero-title {
  font-size: clamp(34px, 6.5vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: normal;
  color: var(--accent-light);
}
.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
  margin-bottom: 52px;
  line-height: 1.85;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-area {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-area-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-area-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-area-value {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 80, 144, 0.3);
}
.btn--outline-white {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
}
.btn--outline-dark {
  border-color: var(--dark);
  color: var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn svg {
  transition: transform var(--transition);
}
.btn:hover svg {
  transform: translateX(3px);
}

/* === SERVICES GRID (top) === */
.services-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.service-intro-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}
.service-intro-card:last-child {
  border-right: none;
}
.service-intro-card:hover {
  background: var(--gray-bg);
}
.service-intro-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.service-intro-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-intro-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
}
.service-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 20px;
  transition: gap var(--transition);
}
.service-intro-link:hover {
  gap: 10px;
}

/* === STRENGTHS === */
.strengths-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.strength-item {
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}
.strength-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.strength-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.strength-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
}

/* === COMMUNITY === */
.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.community-img {
  position: relative;
}
.community-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.community-img::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid rgba(58, 114, 184, 0.35);
  z-index: 0;
}
.community-img img {
  position: relative;
  z-index: 1;
}
.community-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin-top: 24px;
}

/* === WORKS PREVIEW === */
.works-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.works-preview-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
}
.works-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.works-preview-card:hover img {
  transform: scale(1.06);
}
.works-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.works-preview-label {
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
}
.works-more {
  text-align: center;
  margin-top: 48px;
}

/* === CTA BAND === */
.cta-band {
  background: var(--dark-2);
  padding: 72px 0;
  border-top: 3px solid var(--accent);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-left .section-label {
  margin-bottom: 10px;
}
.cta-band-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 8px;
}
.cta-band-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.cta-band-right {
  text-align: right;
}
.cta-tel-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.cta-tel-num {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.cta-tel-num a {
  color: inherit;
  transition: color var(--transition);
}
.cta-tel-num a:hover {
  color: var(--accent-light);
}
.cta-tel-hours {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

/* === COMPANY TABLE === */
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table th,
.company-table td {
  padding: 18px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.7;
}
.company-table th {
  width: 220px;
  font-weight: 700;
  color: var(--text-light);
  background: var(--gray-bg);
  white-space: nowrap;
  font-size: 14px;
}
.company-table tr:first-child th,
.company-table tr:first-child td {
  border-top: 1px solid var(--border);
}
.company-highlight {
  background: rgba(28, 80, 144, 0.05);
}
.company-highlight th {
  color: var(--accent-dark);
}
.permit-badge {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* === SERVICE PAGE === */
.service-block {
  padding: 80px 0;
}
.service-block + .service-block {
  border-top: 1px solid var(--border);
}
.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-inner--rev .service-img {
  order: 2;
}
.service-inner--rev .service-body {
  order: 1;
}
.service-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-body .section-title {
  font-size: clamp(22px, 3vw, 32px);
}
.service-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 28px;
}
.service-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
}
.service-point::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

/* === WORKS PAGE === */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.works-item {
  display: block;
}
.works-item-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 14px;
}
.works-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.works-item:hover .works-item-thumb img {
  transform: scale(1.05);
}
.works-item-tag {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.works-item-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.45;
}
.works-item-meta {
  font-size: 13px;
  color: var(--text-light);
}

/* === CONTACT PAGE === */
.contact-main {
  max-width: 680px;
  margin: 0 auto;
}
.contact-box {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 56px 64px;
  text-align: center;
  margin-bottom: 32px;
}
.contact-box-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.contact-tel-num {
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.contact-tel-num a {
  color: var(--dark);
  transition: color var(--transition);
}
.contact-tel-num a:hover {
  color: var(--accent);
}
.contact-hours {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}
.contact-note {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}
.contact-note strong {
  color: var(--text);
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

/* === FOOTER === */
.site-footer {
  background: var(--white);
  color: var(--text-light);
  padding: 72px 0 0;
  border-top: 3px solid var(--dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  margin-bottom: 18px;
}
.footer-logo img {
  height: 48px;
  width: auto;
}
.footer-company-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-company-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.9;
}
.footer-nav-heading {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  font-size: 14px;
  color: var(--text-light);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-nav-list a::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.footer-nav-list a:hover {
  color: var(--accent);
}
.footer-info-heading {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-info-list {
  font-size: 13px;
  color: var(--text-light);
  line-height: 2;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-tel a {
  color: var(--text);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-bottom-tel a:hover {
  color: var(--accent);
}
.footer-copy {
  color: var(--text-light);
}

/* === MOBILE STICKY CTA === */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.mobile-cta-tel {
  background: var(--accent);
  color: var(--white);
}
.mobile-cta-tel:active {
  background: var(--accent-dark);
}

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

/* Tablet */
@media (max-width: 1024px) {
  .services-intro {
    grid-template-columns: 1fr;
  }
  .service-intro-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .service-intro-card:last-child {
    border-bottom: none;
  }
  .strengths-list {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .community-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .community-img::before {
    display: none;
  }
  .works-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band-inner {
    justify-content: center;
    text-align: center;
  }
  .cta-band-right {
    text-align: center;
  }
  .service-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-inner--rev .service-img {
    order: 0;
  }
  .service-inner--rev .service-body {
    order: 0;
  }
  .works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .section {
    padding: 64px 0;
  }

  /* Header mobile */
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 24px 32px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s ease, opacity 0.32s ease;
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  .nav-list a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
  }
  .nav-list a::after {
    content: '→';
    font-size: 14px;
    color: var(--accent);
  }
  .header-tel-wrap {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(28px, 8vw, 44px);
  }
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-area {
    gap: 20px;
  }

  /* Services */
  .services-intro {
    grid-template-columns: 1fr;
  }
  .service-intro-card {
    padding: 32px 24px;
  }

  /* Strengths */
  .strengths-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Works */
  .works-preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* CTA band */
  .cta-band {
    padding: 56px 0 88px;
  }
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .cta-band-right {
    text-align: center;
  }

  /* Company table */
  .company-table th,
  .company-table td {
    display: block;
    padding: 12px 16px;
  }
  .company-table th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 4px;
    font-size: 12px;
  }
  .company-table td {
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }

  /* Contact */
  .contact-box {
    padding: 40px 24px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* Mobile sticky CTA */
  .mobile-cta {
    display: flex;
  }
  body {
    padding-bottom: 58px;
  }
}

@media (max-width: 400px) {
  .works-preview-grid,
  .works-grid {
    grid-template-columns: 1fr;
  }
}
