:root {
  --bg: #f4f2ee;
  --surface: #ffffff;
  --fg: #111111;
  --muted: #6b6b6b;
  --line: #e4e1db;
  --accent: #c8362d;
  --accent-dark: #a52a21;
  --max: 1280px;
  --gutter: 32px;
  --display: "Marcellus", "Times New Roman", serif;
  --label: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html,
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

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

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (width <= 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* ---------- Placeholder image ---------- */
.ph {
  background-color: #ddd8d0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.05) 0 1px,
    transparent 1px 14px
  );
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}
.ph.ph-dark {
  background-color: #2a2826;
}
.ph.ph-dark::before {
  color: rgba(255, 255, 255, 0.55);
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
body.dark-mode .brand-logo,
body.dark-mode .footer-logo {
  filter: invert(1) brightness(1.2);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  height: 68px;
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (width <= 991px) {
  .site-header {
    height: 52px;
  }
  .site-header .container {
    padding-right: 0;
    padding-left: 1rem;
  }
}
.header-left {
  display: flex;
  align-items: center;
  gap: 48px;
}
.brand {
  margin: 0;
  font-family: var(--label);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.brand .brand-mark {
  font-size: 18px;
  letter-spacing: 0.08em;
}
.brand small {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-actions > li {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--fg);
  position: relative;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 0.55;
}

.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    opacity 0.2s;
}
.nav-tel:hover {
  background: #000;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--accent-dark);
}
#nav-cta-icon,
#nav-tel-icon {
  display: flex;
  align-items: center;
}

@media (width <= 991px) {
  .nav-cta,
  .nav-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    padding: 0;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }
  .nav-btn-text {
    display: none;
  }
}

.nav-burger {
  display: none;
  width: 52px;
  height: 52px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.nav-burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 49;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-inner {
  background: var(--surface);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  transform: translateY(-12px);
  transition: transform 0.3s;
}
.mobile-menu.is-open .mobile-menu-inner {
  transform: translateY(0);
}
.mobile-menu-inner a {
  font-family: var(--label);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-inner a:last-child {
  border-bottom: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  padding-top: 68px;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 68px 0 0 0;
}
.hero-image .ph {
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 68px 0 0 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
@media (width <= 991px) {
  .hero-image,
  .hero-overlay {
    inset: 52px 0 0 0;
  }
}
.hero-tag {
  position: absolute;
  top: 140px;
  right: var(--gutter);
  margin: 0;
  color: #fff;
  font-family: var(--body);
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  max-width: 480px;
}

@media (width >= 769px) {
  .hero-tag br {
    display: none;
  }
}
@media (width <= 768px) {
  .hero-tag {
    top: 90px;
    right: 1rem;
  }
  .hero-tag br {
    display: block;
  }
}
.hero-wordmark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 200px;
  font-family: var(--label);
  font-weight: 800;
  font-size: clamp(80px, 22vw, 380px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
  opacity: 0.95;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  text-align: center;
}
.hero-search {
  position: absolute;
  left: 50%;
  bottom: 130px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 64px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.hero-search .menu-label {
  font-weight: 700;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}
.hero-search .menu-items {
  display: flex;
  gap: 22px;
  color: var(--muted);
}
.hero-search .menu-items span {
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
}
.hero-search .menu-items span:hover {
  color: var(--fg);
}
.hero-search .menu-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
.hero-search .menu-arrow::before,
.hero-search .menu-arrow::after {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--muted);
}
.hero-search .menu-arrow::before {
  transform: rotate(45deg) translateY(3px) translateX(3px);
  transform-origin: right;
}
.hero-search .menu-arrow::after {
  transform: rotate(-45deg) translateY(3px) translateX(-3px);
  transform-origin: left;
}
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, #fff, transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%,
  100% {
    transform: scaleY(0.4);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ---------- Section base ---------- */
section {
  padding: 120px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 72px;
}
.section-head .display {
  font-family: var(--label);
  font-weight: 800;
  font-size: clamp(52px, 7vw, 88px);
  letter-spacing: 0.02em;
  line-height: 1;
}
.section-head .ja-label {
  margin: 0;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--muted);
  text-indent: 0.5em;
}
.section-head .lead {
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: #333;
  line-height: 2;
}
.section-head .lead:first-of-type {
  margin-top: 28px;
}
.section-head .lead + .lead {
  margin-top: 0.75em;
}

/* ---------- Message ---------- */
.message {
  background: var(--bg);
  padding: 140px 0 120px;
}
.message-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.message-eyebrow {
  margin: 0;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--fg);
  padding-top: 16px;
  display: inline-block;
}
.message-eyebrow strong {
  display: block;
  font-family: var(--display);
  color: var(--fg);
  font-size: 36px;
  letter-spacing: 0.04em;
  margin-top: 6px;
  font-weight: 400;
}
.message-body h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
  color: var(--fg);
}
.message-body p {
  margin: 0;
  color: #2a2a2a;
  font-size: 15px;
  line-height: 2.1;
  max-width: 720px;
}
.message-body p + p {
  margin-top: 1.1em;
}
.message-cta {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.message-cta-text {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.circle-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fg);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.circle-arrow:hover {
  background: var(--accent);
  transform: translateX(4px);
}

/* ---------- Service ---------- */
.service {
  background: var(--bg);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.service-row {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 380px;
}
.service-row.reverse {
  grid-template-columns: 1fr 1fr;
}
.service-row.reverse .service-img {
  order: 2;
}
.service-row .service-img {
  position: relative;
}
.service-img .ph {
  width: 100%;
  height: 100%;
  min-height: 380px;
}
.service-img .num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 2px;
}
.service-content {
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-content .num-en {
  font-family: var(--label);
  font-size: 64px;
  font-weight: 200;
  color: var(--line);
  line-height: 1;
  letter-spacing: 0.02em;
}
.service-content h3 {
  font-family: var(--body);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
  margin-top: 12px;
}
.service-content p.en-sub {
  margin: 0;
  margin-top: 6px;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
}
.service-content p.service-desc {
  margin: 0;
  margin-top: 24px;
  color: #333;
  font-size: 14px;
  line-height: 2;
}
.service-content .more {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.service-content .more span {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ---------- Works ---------- */
.works {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
}
.work {
  display: flex;
  flex-direction: column;
}
.work-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  margin-bottom: 20px;
}
.work-img {
  aspect-ratio: 4 / 3;
  position: relative;
}
.work-img .ph {
  width: 100%;
  height: 100%;
}
.work-img-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 700;
  padding: 4px 10px;
  z-index: 2;
  text-transform: uppercase;
}
.work-img-tag.after {
  background: var(--fg);
  color: #fff;
}
.work-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.work-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
}
.work-num {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.work-cat {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--fg);
  padding: 3px 8px;
  text-transform: uppercase;
}
.work h3 {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}
.work-desc {
  font-size: 13.5px;
  line-height: 1.95;
  color: #333;
  margin-bottom: 14px;
}
.work-detail {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.work-detail .work-detail-title {
  margin: 0 0 4px;
  font-family: var(--label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  flex-basis: 100%;
}
.work-detail .chip {
  font-size: 11.5px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 999px;
  color: #333;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--bg);
  padding: 140px 0;
}
.contact-card {
  background: var(--fg);
  color: #fff;
  border-radius: 4px;
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0 1px,
    transparent 1px 18px
  );
  pointer-events: none;
}
.contact-left {
  position: relative;
  z-index: 1;
}
.contact-left .display {
  font-family: var(--label);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}
.contact-left .ja-label {
  margin: 0;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.6);
}
.contact-left .pitch {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  max-width: 380px;
}
.contact-left .pitch:first-of-type {
  margin-top: 28px;
}
.contact-left .pitch + .pitch {
  margin-top: 0.85em;
}
.contact-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.contact-row:last-child {
  border-bottom: none;
}
.contact-row .key {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.contact-row .val {
  font-family: var(--label);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  word-break: break-all;
}
.contact-row.email .val {
  font-size: 16px;
}
.contact-row .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  padding: 18px 32px;
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  align-self: flex-start;
  transition:
    background 0.2s,
    transform 0.2s;
}
.contact-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
@media (width <= 768px) {
  .contact-cta {
    margin-inline: auto;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  font-size: 12.5px;
  color: var(--muted);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand .name {
  font-family: var(--label);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.footer-brand small {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-left: 6px;
  font-family: var(--body);
  font-weight: 400;
}
.footer-brand .addr {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 28px;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-links a:hover {
  color: var(--fg);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Tweaks helpers ---------- */
body.dark-mode {
  --bg: #14130f;
  --surface: #1c1b17;
  --fg: #f4f2ee;
  --muted: #8a8780;
  --line: #2a2925;
}
body.dark-mode .nav-tel {
  background: #fff;
  color: #111;
}
body.dark-mode .work-cat {
  background: #fff;
  color: #111;
}
body.dark-mode .work-img-tag {
  background: rgba(20, 19, 15, 0.95);
  color: #fff;
}
body.dark-mode .work-img-tag.after {
  background: #fff;
  color: #111;
}
body.dark-mode .contact-card {
  background: #2a2925;
}
body.dark-mode .circle-arrow {
  background: var(--fg);
  color: var(--bg);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .nav {
    gap: 10px;
  }
  .nav-actions {
    gap: 5px;
  }
  .nav-btn-text {
    display: none;
  }
  .nav-tel,
  .nav-cta {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
  .message-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }
  .service-row.reverse .service-img {
    order: 0;
  }
  .service-content {
    padding: 32px;
  }
  .works-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 32px;
  }
  .contact-row {
    grid-template-columns: 80px 1fr auto;
    gap: 12px;
  }
  section {
    padding: 80px 0;
  }
}
@media (width <= 768px) {
  .contact-row {
    grid-template-columns: 40px 1fr auto;
  }
}
