:root {
  --navy: #102033;
  --navy-deep: #091829;
  --navy-soft: #18314d;
  --off-white: #FAF8F4;
  --beige: #F5F1EA;
  --gold: #B79A5B;
  --gold-dark: #92753d;
  --text: #1F2933;
  --muted: #5E6874;
  --line: #E5DFD4;
  --white: #FFFFFF;
  --green: #2FB344;
  --shadow: 0 18px 50px rgba(16, 32, 51, 0.14);
  --section-y: 92px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding-top: 76px;
  color: var(--text);
  background: var(--off-white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.hero-lead,
.section-lead,
.focus-story,
.company-table td,
.btn {
  overflow-wrap: anywhere;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(16, 32, 51, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 24, 41, 0.98);
  box-shadow: 0 14px 32px rgba(9, 24, 41, 0.18);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  width: min(252px, calc(100vw - 116px));
  height: auto;
  filter: brightness(0) invert(1);
  transition: opacity 180ms ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  opacity: 0.82;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.site-nav a {
  position: relative;
  padding: 27px 0;
  color: rgba(255, 255, 255, 0.92);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 28px;
  margin-right: -24px;
  background: linear-gradient(135deg, var(--gold), #c7ab6e);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: linear-gradient(135deg, #c4a863, var(--gold-dark));
}

.phone-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M6.62%2010.79c1.44%202.83%203.76%205.14%206.59%206.59l2.2-2.2c.27-.27.67-.36%201.02-.24%201.12.37%202.33.57%203.57.57.55%200%201%20.45%201%201V20c0%20.55-.45%201-1%201C10.61%2021%203%2013.39%203%204c0-.55.45-1%201-1h3.5c.55%200%201%20.45%201%201%200%201.24.2%202.45.57%203.57.11.35.03.74-.25%201.02l-2.2%202.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M6.62%2010.79c1.44%202.83%203.76%205.14%206.59%206.59l2.2-2.2c.27-.27.67-.36%201.02-.24%201.12.37%202.33.57%203.57.57.55%200%201%20.45%201%201V20c0%20.55-.45%201-1%201C10.61%2021%203%2013.39%203%204c0-.55.45-1%201-1h3.5c.55%200%201%20.45%201%201%200%201.24.2%202.45.57%203.57.11.35.03.74-.25%201.02l-2.2%202.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  padding: 12px 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 7px;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(38deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-38deg);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #dce5eb;
}

.hero-visual,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.92) 0%, rgba(250, 248, 244, 0.78) 34%, rgba(250, 248, 244, 0.18) 72%),
    linear-gradient(0deg, rgba(16, 32, 51, 0.16), rgba(16, 32, 51, 0.02));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 110px 0 120px;
}

.hero h1 {
  max-width: 780px;
  margin-top: 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 42px;
  line-height: 1.65;
  font-weight: 700;
}

.hero-lead {
  max-width: 560px;
  margin-top: 30px;
  color: #25384c;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.mobile-only {
  display: none;
}

.section {
  padding: var(--section-y) 0;
}

.section-heading {
  margin-bottom: 42px;
}

.centered {
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

h2 {
  margin-top: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 34px;
  line-height: 1.55;
  font-weight: 700;
}

h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 800;
}

.section-lead {
  max-width: 820px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 2;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c6aa70);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(183, 154, 91, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #c7ab6f, var(--gold-dark));
  box-shadow: 0 22px 36px rgba(183, 154, 91, 0.34);
}

.btn-outline {
  color: var(--navy);
  border-color: rgba(16, 32, 51, 0.72);
  background: rgba(250, 248, 244, 0.58);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.btn-phone {
  width: min(100%, 310px);
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(183, 154, 91, 0.24);
}

.btn-phone:hover,
.btn-phone:focus-visible {
  background: var(--gold-dark);
  box-shadow: 0 20px 34px rgba(183, 154, 91, 0.30);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 76px;
  align-items: center;
}

.section-copy {
  max-width: 530px;
}

.prose {
  margin-top: 24px;
  color: var(--text);
  font-size: 15px;
}

.prose p + p {
  margin-top: 14px;
}

.photo-frame,
.card-photo {
  position: relative;
  overflow: hidden;
  background: #d8d8d4;
  background-position: center;
  background-size: cover;
}

.photo-frame {
  min-height: 330px;
  aspect-ratio: 1.45 / 1;
  box-shadow: var(--shadow);
}

.image-loader span {
  display: none;
}

.hero-visual {
  background: #dce5eb;
  background-position: center;
  background-size: cover;
}

.business-section {
  background: var(--off-white);
}

.business-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.business-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 16px 40px;
}

.business-card + .business-card {
  border-left: 1px solid rgba(16, 32, 51, 0.25);
}

.business-card p,
.area-card p,
.focus-card p,
.project-body p,
.contact-panel p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.icon-circle {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(16, 32, 51, 0.14);
}

.icon-circle svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(183, 154, 91, 0.12), transparent 27%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 54%, #132842);
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.area-section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.area-grid,
.project-grid,
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.area-card,
.project-card {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.card-photo {
  aspect-ratio: 1.78 / 1;
}

.area-card-body,
.project-body {
  padding: 22px 24px 24px;
}

.area-card-body h3,
.project-body h3 {
  color: var(--navy);
}

.area-media {
  margin-top: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.20);
}

.area-media-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: rgba(250, 248, 244, 0.12);
}

.area-media-gallery {
  display: grid;
  gap: 16px;
}

.area-media-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.area-media-photo-article img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
}

.area-media-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 11px;
  background: rgba(16, 32, 51, 0.82);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.area-media-content {
  max-width: 520px;
}

.area-media-content h3 {
  margin-top: 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 27px;
  line-height: 1.65;
}

.area-media-content p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(250, 248, 244, 0.86);
  font-size: 15px;
  line-height: 2;
}

.eniwa-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--off-white) 0%, #fbfaf6 48%, var(--beige) 100%);
}

.eniwa-section .section-heading {
  margin-bottom: 34px;
}

.focus-story {
  max-width: 900px;
  margin: 0 auto 44px;
  padding: 38px 0;
  border-top: 1px solid rgba(16, 32, 51, 0.12);
  border-bottom: 1px solid rgba(16, 32, 51, 0.12);
}

.focus-story-main {
  max-width: 760px;
  margin: 0 auto;
}

.focus-story-main h3 {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 28px;
  line-height: 1.65;
}

.focus-story-main p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 2;
}

.focus-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 34px rgba(16, 32, 51, 0.10);
}

.focus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(183, 154, 91, 0.22));
}

.focus-card h3 {
  margin-top: 0;
}

.focus-card p {
  grid-column: auto;
  margin-top: 0;
}

.focus-card-label {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.focus-card .focus-card-label {
  margin-top: 0;
}

.projects-section {
  padding-top: 74px;
  padding-bottom: 82px;
}

.project-body {
  position: relative;
  min-height: 134px;
  padding-left: 108px;
}

.project-area {
  position: absolute;
  left: 22px;
  top: 25px;
  min-width: 68px;
  margin: 0;
  padding: 8px 10px;
  background: #E9E5DE;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.project-body .project-area + h3 {
  margin-top: 0;
}

.project-ownership-note {
  display: inline-block;
  margin-top: 14px;
  color: rgba(250, 248, 244, 0.70);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.project-body h3 + p {
  margin-top: 12px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.project-area-list {
  max-width: 940px;
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  color: var(--white);
}

.project-area-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.project-area-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-area-list li {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.company-contact-section {
  background: var(--off-white);
  padding: 62px 0;
}

.company-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 50px;
  align-items: stretch;
}

.company-panel {
  display: block;
}

.company-content h2,
.contact-content h2 {
  font-size: 28px;
  line-height: 1.45;
}

.company-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.company-table th,
.company-table td {
  border-bottom: 1px solid var(--line);
  padding: 11px 14px;
  vertical-align: top;
}

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

.company-table th {
  width: 108px;
  color: var(--navy);
  background: rgba(245, 241, 234, 0.76);
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
}

.company-table a {
  color: #1d63aa;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-panel {
  padding-left: 48px;
  border-left: 1px solid rgba(16, 32, 51, 0.28);
}

.contact-panel p {
  margin-top: 14px;
}

.contact-panel .btn {
  margin-top: 24px;
}

.phone-modal[hidden] {
  display: none;
}

.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.phone-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 41, 0.64);
  backdrop-filter: blur(4px);
}

.phone-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: 40px;
  background: var(--off-white);
  color: var(--text);
  box-shadow: 0 28px 80px rgba(9, 24, 41, 0.30);
}

.phone-modal-card h2 {
  font-size: 28px;
}

.phone-modal-card p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.phone-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 32, 51, 0.18);
  background: var(--white);
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.phone-modal-close:hover,
.phone-modal-close:focus-visible {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.phone-number {
  display: inline-flex;
  margin-top: 22px;
  color: var(--navy);
  font-size: clamp(28px, 7vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.phone-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.phone-modal-actions .btn {
  margin-top: 0;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 25px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand .brand-logo {
  width: min(218px, calc(100vw - 48px));
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .company-contact-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: 720px;
  }

  .contact-panel {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(16, 32, 51, 0.22);
    padding-top: 44px;
  }
}

@media (max-width: 880px) {
  :root {
    --section-y: 72px;
  }

  body {
    padding-top: 68px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 34px), var(--container));
  }

  .header-inner {
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 68px;
    display: grid;
    gap: 0;
    justify-items: stretch;
    padding: 18px 24px 28px;
    background: rgba(9, 24, 41, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(9, 24, 41, 0.24);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(250, 248, 244, 0.94) 0%, rgba(250, 248, 244, 0.84) 47%, rgba(250, 248, 244, 0.34) 100%),
      linear-gradient(0deg, rgba(16, 32, 51, 0.12), rgba(16, 32, 51, 0.02));
  }

  .hero-inner {
    padding: 82px 0 96px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.62;
  }

  .hero-lead {
    font-size: 15px;
  }

  h2 {
    font-size: 29px;
  }

  .business-grid,
  .area-grid,
  .project-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .area-media {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .area-media-content {
    max-width: none;
  }

  .business-card {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 26px 0;
    text-align: center;
  }

  .business-card .icon-circle {
    margin: 0 auto;
  }

  .business-card p {
    max-width: 620px;
  }

  .business-card + .business-card {
    border-left: 0;
    border-top: 1px solid rgba(16, 32, 51, 0.18);
  }

  .focus-story {
    padding: 32px 0;
  }

  .focus-story-main {
    max-width: none;
  }

}

@media (max-width: 560px) {
  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-logo {
    width: min(236px, calc(100vw - 112px));
  }

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.65;
  }

  .hero-lead {
    margin-top: 22px;
    line-height: 1.9;
  }

  .area-media {
    margin-top: 32px;
    padding: 18px;
  }

  .area-media-content h3 {
    font-size: 22px;
  }

  .area-media-content p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 54px;
    padding: 0 18px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 17px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline;
  }

  .photo-frame {
    min-height: 240px;
  }

  .focus-story {
    margin-bottom: 34px;
    padding: 28px 0;
  }

  .focus-story-main h3 {
    font-size: 22px;
  }

  .focus-story-main p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.9;
  }

  .business-card,
  .focus-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .focus-card p {
    grid-column: 1;
  }

  .focus-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .project-body {
    padding: 22px 22px 24px;
  }

  .project-area {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
  }

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

  .company-table th {
    border-bottom: 0;
    padding-bottom: 4px;
  }

  .company-table td {
    padding-top: 4px;
  }

  .phone-modal {
    padding: 16px;
  }

  .phone-modal-card {
    padding: 34px 22px 24px;
  }

  .phone-modal-card h2 {
    font-size: 23px;
  }

  .phone-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
