/* ===================================================
   KOMACHI精機 - Precision Mold Engineering
   Color: White #FFFFFF + Charcoal #1A1A1A + Rose Gold #B76E79
   Font: DM Sans (EN) + Noto Sans JP (body)
   =================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color .3s;
}

ul, ol {
  list-style: none;
}

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

/* ---------- UTILITY ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #B76E79;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.section-desc {
  font-size: 1rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 2px;
  transition: all .35s;
  cursor: pointer;
  border: none;
  letter-spacing: .04em;
  font-family: inherit;
}

.btn-primary {
  background: #1A1A1A;
  color: #fff;
}

.btn-primary:hover {
  background: #B76E79;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(183, 110, 121, .25);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  border-color: #B76E79;
  color: #B76E79;
}

.btn-full {
  width: 100%;
}

/* ---------- SAMPLE BANNER ---------- */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #B76E79;
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  transition: all .4s;
}

.header.scrolled {
  top: 32px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-en {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.logo-jp {
  font-size: .85rem;
  font-weight: 600;
  color: #B76E79;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  padding: 4px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #B76E79;
  transition: width .3s;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a.active::after {
  width: 100%;
}

.nav-cta {
  background: #1A1A1A;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 2px;
  transition: background .3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #B76E79;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #1A1A1A;
  transition: all .3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .4s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .3s;
}

.mobile-nav-links a:hover {
  color: #B76E79;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, .78) 0%,
    rgba(26, 26, 26, .45) 50%,
    rgba(183, 110, 121, .15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 800px;
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  margin-bottom: 24px;
  opacity: .8;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: .08em;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 40px;
  opacity: .9;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  z-index: 2;
}

.hero-scroll span {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  letter-spacing: .15em;
  opacity: .6;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #B76E79;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ---------- ABOUT ---------- */
.about {
  background: #FAFAFA;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-icon-wrap {
  position: absolute;
  top: -30px;
  left: -20px;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}

.about-img {
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.about-text .section-label {
  display: block;
  margin-bottom: 12px;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.signature-line {
  width: 40px;
  height: 1px;
  background: #B76E79;
}

.about-signature span {
  font-size: .85rem;
  font-weight: 500;
  color: #888;
}

/* ---------- TECHNOLOGY ---------- */
.technology {
  background: #fff;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.tech-card {
  background: #FAFAFA;
  padding: 40px 28px;
  border-radius: 4px;
  position: relative;
  transition: all .4s;
  border: 1px solid transparent;
}

.tech-card:hover {
  border-color: rgba(183, 110, 121, .2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}

.tech-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(183, 110, 121, .1);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.tech-icon {
  margin-bottom: 20px;
}

.tech-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.tech-card p {
  font-size: .88rem;
  color: #666;
  line-height: 1.8;
}

/* Tech Process Bar */
.tech-process {
  background: #1A1A1A;
  color: #fff;
  border-radius: 4px;
  padding: 48px;
  text-align: center;
}

.tech-process-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 36px;
  letter-spacing: .04em;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}

.process-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #B76E79;
  background: transparent;
  transition: background .3s;
}

.process-step:hover .process-dot {
  background: #B76E79;
}

.process-label {
  font-size: .85rem;
  font-weight: 600;
}

.process-detail {
  font-size: .72rem;
  color: #999;
  letter-spacing: .02em;
}

.process-line {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  margin: 0 4px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 5px;
}

/* ---------- SERVICES ---------- */
.services {
  background: #FAFAFA;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: #fff;
  padding: 48px 36px;
  border-radius: 4px;
  border: 1px solid #eee;
  transition: all .4s;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.service-card:hover {
  border-color: rgba(183, 110, 121, .3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .05);
  transform: translateY(-2px);
}

.service-icon {
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: .88rem;
  color: #666;
  line-height: 1.8;
}

/* ---------- WORKS ---------- */
.works {
  background: #fff;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.work-card {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: all .4s;
}

.work-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  transform: translateY(-4px);
}

.work-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.work-card:hover .work-img img {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .5));
}

.work-tag {
  font-size: .72rem;
  color: #fff;
  background: rgba(183, 110, 121, .85);
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: .02em;
}

.work-info {
  padding: 24px;
}

.work-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.work-info p {
  font-size: .85rem;
  color: #666;
  line-height: 1.7;
}

/* ---------- NUMBERS ---------- */
.numbers {
  background: #1A1A1A;
  color: #fff;
}

.numbers .section-label {
  color: #B76E79;
}

.numbers .section-title {
  color: #fff;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.number-item {
  position: relative;
}

.number-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
}

.number-item:last-child::after {
  display: none;
}

.number-value {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: #B76E79;
}

.number-unit {
  font-size: .5em;
  font-weight: 400;
  opacity: .8;
  color: #fff;
}

.number-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 300;
}

/* ---------- FLOW ---------- */
.flow {
  background: #FAFAFA;
}

.flow-timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 1px;
  height: 100%;
  background: #ddd;
}

.flow-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.flow-item:last-child {
  margin-bottom: 0;
}

.flow-marker {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #B76E79;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: all .3s;
}

.flow-item:hover .flow-marker {
  background: #B76E79;
}

.flow-item:hover .flow-num {
  color: #fff;
}

.flow-num {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: #B76E79;
  transition: color .3s;
}

.flow-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding-top: 4px;
}

.flow-content p {
  font-size: .88rem;
  color: #666;
  line-height: 1.8;
}

/* ---------- COMPANY ---------- */
.company {
  background: #fff;
}

.company-table {
  max-width: 800px;
  margin: 0 auto;
  background: #FAFAFA;
  border-radius: 4px;
  overflow: hidden;
}

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

.company-table th,
.company-table td {
  padding: 20px 28px;
  text-align: left;
  font-size: .9rem;
  border-bottom: 1px solid #eee;
}

.company-table th {
  width: 160px;
  font-weight: 600;
  background: #f5f5f5;
  color: #1A1A1A;
  white-space: nowrap;
}

.company-table td {
  color: #555;
  line-height: 1.8;
}

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

/* ---------- CONTACT ---------- */
.contact {
  background: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-label {
  text-align: left;
}

.contact-info .section-title {
  text-align: left;
}

.contact-info p {
  color: #555;
  margin-bottom: 32px;
  font-size: .95rem;
  line-height: 1.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: #555;
}

.contact-detail svg {
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  background: #FAFAFA;
  padding: 40px;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1A1A1A;
}

.required {
  color: #B76E79;
  font-size: .75rem;
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: .9rem;
  font-family: inherit;
  background: #fff;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #B76E79;
  box-shadow: 0 0 0 3px rgba(183, 110, 121, .08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1A1A1A;
  color: #fff;
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand .logo-en {
  color: #fff;
}

.footer-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  max-width: 280px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #B76E79;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  transition: color .3s;
}

.footer-col a:hover {
  color: #B76E79;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
}

.footer-credit a {
  color: #B76E79;
  transition: opacity .3s;
}

.footer-credit a:hover {
  opacity: .7;
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SELECTION ---------- */
::selection {
  background: rgba(183, 110, 121, .2);
  color: #1A1A1A;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B76E79;
}

/* ---------- RESPONSIVE: TABLET ---------- */
@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .number-item:nth-child(2)::after {
    display: none;
  }

  .about-grid {
    gap: 48px;
  }

  .services-grid {
    gap: 24px;
  }

  .service-card {
    padding: 36px 28px;
  }
}

/* ---------- RESPONSIVE: MOBILE ---------- */
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 600px;
  }

  .hero-title {
    letter-spacing: .04em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 240px;
  }

  .hero-scroll {
    bottom: 24px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Technology */
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tech-card {
    padding: 32px 24px;
  }

  .tech-process {
    padding: 32px 20px;
  }

  .process-steps {
    flex-direction: column;
    gap: 16px;
  }

  .process-line {
    width: 1px;
    height: 24px;
    margin: 0;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
    padding: 32px 24px;
  }

  /* Works */
  .works-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Numbers */
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .number-item::after {
    display: none;
  }

  /* Flow */
  .flow-timeline::before {
    left: 23px;
  }

  .flow-item {
    gap: 24px;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  /* Company */
  .company-table th {
    width: 120px;
    padding: 14px 16px;
  }

  .company-table td {
    padding: 14px 16px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ---------- RESPONSIVE: SMALL MOBILE ---------- */
@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .hero-desc br {
    display: none;
  }

  .section-desc br {
    display: none;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .flow-item {
    gap: 20px;
  }

  .flow-marker {
    width: 42px;
    height: 42px;
  }

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

  .company-table th {
    padding-bottom: 4px;
    border-bottom: none;
    background: transparent;
    font-size: .8rem;
    color: #B76E79;
  }

  .company-table td {
    padding-top: 0;
    padding-bottom: 16px;
  }

  .contact-info p br {
    display: none;
  }

  .about-lead {
    font-size: 1rem;
  }

  .works-grid {
    max-width: 100%;
  }
}
