:root {
  --blue-left: #1f6ef2;
  --blue-right: #46d6f6;
  --deep-blue: #1f6be8;
  --deep-navy: #111e34;
  --panel: #f5f5f5;
  --text: #111827;
  --muted: #4b5563;
  --line: rgba(42, 94, 188, 0.28);
  --wrap: 1120px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  background: linear-gradient(90deg, var(--blue-left) 0%, var(--blue-right) 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

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

.page-bg {
  min-height: 100vh;
  overflow-x: hidden;
}

/* ローダー */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-left) 0%, var(--blue-right) 100%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader__logo {
  width: 64px;
  height: auto;
  object-fit: contain;
  animation: loaderLogo 1.2s ease-in-out infinite;
}
@keyframes loaderLogo {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.loader__text {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.95;
}
.loader__bar {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  overflow: hidden;
}
.loader__bar-inner {
  display: block;
  height: 100%;
  width: 40%;
  background: #fff;
  border-radius: 3px;
  animation: loaderBar 1.2s ease-in-out infinite;
}
@keyframes loaderBar {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(150%); }
  100% { transform: translateX(-100%); }
}

/* 表示アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-body {
  animation: fadeIn 0.8s ease-out;
}
.hero-copy {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-inview {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-inview.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.panel-section.animate-inview .about-grid,
.panel-section.animate-inview .business-cards,
.panel-section.animate-inview .company-grid,
.panel-section.animate-inview .thinking-cards { transition-delay: 0.1s; }
.panel-section.animate-inview .thinking-card,
.panel-section.animate-inview .business-card { transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.25s ease; }
.panel-section.animate-inview .thinking-card:hover,
.panel-section.animate-inview .business-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }

.hero {
  padding: 0 0 0;
  padding-top: 56px; /* 固定ナビの高さ分 */
}

.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--blue-left) 0%, var(--blue-right) 100%);
  padding: 20px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-left: auto;
}

.nav-links-entry {
  display: none;
}

.header-entry {
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--deep-blue);
  font-size: 11px;
  font-weight: 800;
}

.hero-body {
  position: relative;
  min-height: 370px;
  overflow: visible;
}

.hero-image {
  display: block;
  width: min(640px, 68%);
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  top: 60px;
}

.hero-copy {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 90%;
  width: max-content;
  box-sizing: border-box;
  overflow: visible;
}

.copy-line {
  display: inline-block;
  background: rgba(255,255,255,.95);
  color: var(--deep-blue);
  font-size: clamp(22px, 2.8vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  padding: 4px 24px 8px 18px;
  margin-bottom: 6px;
  box-shadow: 0 2px 0 rgba(41,111,233,.3);
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.copy-line--1 {
  margin-left: 0;
  align-self: flex-end;
}

.copy-line--2 {
  white-space: nowrap;
}

.hero-sub {
  margin: 2px 0 0 0;
  align-self: flex-end;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  letter-spacing: .16em;
}

.panel-section {
  padding: 0 0 18px;
}

.panel-wrap {
  position: relative;
  background: var(--panel);
  border-radius: var(--radius-xl);
  padding: 28px 42px 34px;
}

/* ABOUT US / BUSINESS / COMPANY の白枠を横幅いっぱい・四隅を丸く */
.about-panel .panel-wrap,
.business-panel .panel-wrap,
.company-panel .panel-wrap {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  border-radius: var(--radius-xl);
  padding-left: max(24px, calc((100vw - var(--wrap)) / 2));
  padding-right: max(24px, calc((100vw - var(--wrap)) / 2));
  box-sizing: border-box;
}

.section-heading {
  font-family: "Jost", sans-serif;
  color: var(--deep-blue);
  font-size: clamp(48px, 6vw, 120px);
  line-height: .95;
  font-weight: 500;
  letter-spacing: .02em;
  margin-bottom: 18px;
}

.section-heading--right {
  text-align: right;
}

.about-panel .section-heading,
.business-panel .section-heading,
.company-panel .section-heading {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--blue-left) 65%, var(--blue-right) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.business-panel .section-heading,
.company-panel .section-heading {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--blue-left) 5%, var(--blue-right) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-subhead {
  font-size: 31px;
  font-weight: 500;
  margin: 4px 0 26px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 20px;
}

.about-copy {
  max-width: 550px;
}

.about-copy h2 {
  margin: 8px 0 22px;
  font-size: clamp(30px, 2.8vw, 43px);
  line-height: 1.35;
  font-weight: 500;
}

.about-copy p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.about-visual {
  width: min(540px, 92%);
  margin-left: auto;
  margin-top: -36px;
  position: relative;
  z-index: 2;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 60% 40% 60% 40% / 60% 40% 60% 40%;
  box-shadow: 0 14px 28px rgba(41,111,233,.16);
}


.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thinking-section {
  position: relative;
  padding: 48px 0 54px;
  color: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(90deg, var(--blue-left) 0%, var(--blue-right) 100%);
}

.thinking-watermark {
  font-family: "Jost", sans-serif;
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: .03em;
  color: rgba(255,255,255,.12);
  margin-bottom: 34px;
}

.thinking-subtitle {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin: -6px 0 34px;
}

.thinking-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.thinking-card img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.thinking-card h3 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 500;
}

.thinking-card p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
}

/* 事業内容エリア: 見出しを「事業内容」メインに */
.business-panel .section-heading {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  margin-bottom: 4px;
  opacity: 0.85;
}
.business-panel .section-subhead {
  font-family: "Jost", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: #1f2d3d;
  margin: 0 0 28px;
  text-align: left;
}

.business-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.business-card {
  font-family: "Jost", sans-serif;
  border: 1px solid #4285F4;
  border-radius: 16px;
  padding: 28px 24px 32px;
  background: #fff;
  text-align: left;
  min-height: 0;
}

.business-card h3 {
  margin: 0 0 14px;
  color: #1A73E8;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 700;
}

.business-card__intro {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
  font-weight: 400;
}

.business-card__list {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}

.business-card__list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 12px;
  font-size: 13px;
  line-height: 1.75;
  color: #333;
}
.business-card__list li:last-child {
  margin-bottom: 0;
}
.business-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1A73E8;
  transform: translateY(-50%);
}
.business-card__list strong {
  display: block;
  font-weight: 700;
  color: #1f2d3d;
  margin-bottom: 4px;
  font-size: 18px;
}
.business-card__list span {
  display: block;
  font-weight: 400;
  color: #333;
}

.business-card--textonly .business-card__intro {
  margin-bottom: 0;
}

.recruit-section {
  padding: 34px 0 44px;
  color: #fff;
}

.recruit-wrap {
  position: relative;
}

.recruit-heading {
  text-align: right;
  font-size: clamp(48px, 6vw, 120px);
  line-height: .95;
  font-weight: 500;
  margin-bottom: 22px;
}

.recruit-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 48px;
  align-items: center;
}

.recruit-image {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.recruit-kicker {
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 500;
}

.recruit-text {
  max-width: 520px;
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.9;
}

.recruit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 36px;
  border-radius: 999px;
  background: #fff;
  color: var(--deep-blue);
  font-size: 12px;
  font-weight: 800;
}

.company-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}

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

.company-table th,
.company-table td {
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 12px 8px;
  text-align: left;
  font-size: 12px;
  line-height: 1.8;
}

.company-table th {
  width: 110px;
  font-weight: 800;
}

.company-map {
  margin-top: 10px;
  width: 100%;
  aspect-ratio: 1.15 / 1;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.38);
  font-size: 18px;
}

.contact-section {
  padding: 18px 0 28px;
}

.contact-heading {
  text-align: right;
  color: #fff;
  font-size: clamp(48px, 6vw, 120px);
  line-height: .95;
  font-weight: 500;
  margin-bottom: 22px;
}

.contact-card {
  width: min(980px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 34px 42px 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.contact-type-row {
  margin-bottom: 24px;
}

.contact-type-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.contact-type-radios {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
}

.contact-radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-left);
}

.contact-radio-label:has(input:checked) {
  color: var(--blue-left);
}

.contact-fields {
  margin-top: 8px;
}

.contact-label-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.contact-grid .label-text {
  font-weight: 700;
  color: #333;
}

.contact-grid .required-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 4px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.contact-grid .required-badge--blue {
  background: var(--blue-left);
}

.contact-grid .optional-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 4px;
  background: #9e9e9e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.contact-file-desc {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 8px;
  font-weight: 500;
}

.contact-file-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-file-inputs input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.contact-file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 5px;
  background: #9e9e9e;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-file-btn:hover {
  background: #757575;
}

.contact-file-status {
  font-size: 13px;
  color: #6b7280;
}

/* 求人エントリー: ラベル左・入力右 */
.contact-grid--entry {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-grid--entry .contact-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
}

.contact-grid--entry .contact-row--full {
  grid-template-columns: 180px 1fr;
}

.contact-grid--entry .contact-row .contact-label-inner {
  padding-top: 12px;
}

.contact-grid--entry .contact-input,
.contact-grid--entry .contact-input-group {
  min-width: 0;
}

.contact-grid--entry .contact-input-group {
  display: flex;
  flex-direction: column;
}

.contact-grid--entry textarea.contact-input {
  min-height: 140px;
  resize: vertical;
}

.contact-grid {
  /* display: grid; */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
}

/* 企業様お問い合わせ: ラベル左・テキストフィールド右 */
.contact-grid--company {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.contact-grid--company label {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.contact-grid .full {
  grid-column: 1 / -1;
}

.contact-grid input,
.contact-grid textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.contact-grid input::placeholder,
.contact-grid textarea::placeholder {
  color: #999;
}

.contact-grid input:focus,
.contact-grid textarea:focus {
  border-color: var(--blue-left);
}

.contact-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  font-size: 13px;
  color: #333;
}

.privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue-left);
}

.privacy-row .privacy-link {
  color: var(--blue-left);
  font-weight: 700;
  text-decoration: underline;
}

.privacy-row .privacy-link:hover {
  opacity: 0.85;
}

.submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.submit-row button {
  border: none;
  border-radius: 12px;
  background: var(--blue-left);
  color: #fff;
  padding: 14px 48px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-row button:hover {
  opacity: 0.9;
}

.submit-row button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form-message {
  width: 100%;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.contact-form-message--success {
  background: #d1fae5;
  color: #065f46;
}
.contact-form-message--error {
  background: #fee2e2;
  color: #991b1b;
}

.site-footer {
  background: var(--deep-navy);
  color: #fff;
  padding: 28px 0 40px;
  margin-top: 22px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}

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

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-logo {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

/* note と X は白背景（2番目・3番目） */
/* LINE は緑の円で他と統一 */
.footer-icons a:nth-child(1) {
  background: #06c755;
}

.footer-icons a:nth-child(2),
.footer-icons a:nth-child(3) {
  background: #fff;
}

.footer-icon-img {
  display: block;
  height: 24px;
  width: auto;
  object-fit: contain;
}

/* LINE は円内で他と同程度の見た目になるよう拡大 */
.footer-icon-img--line {
  height: 26px;
}

.footer-copy {
  margin: 0;
  font-size: 10px;
  opacity: .72;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
}

.floating-entry {
  position: fixed;
  right: 14px;
  bottom: 14px;
  min-width: 200px;
  max-width: 220px;
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  border: 2px solid #93c5fd;
  border-radius: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  z-index: 20;
  text-decoration: none;
}

.floating-entry-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #1e3a8a;
  line-height: 1;
  text-align: center;
}

.floating-entry-banner {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  opacity: .95;
}

.floating-entry-body {
  color: #fff;
}

.floating-entry-money {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.floating-entry-money .floating-entry-label {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.floating-entry-amount {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.floating-entry-unit {
  font-size: 14px;
  font-weight: 800;
  margin-left: 2px;
  vertical-align: baseline;
}

.floating-entry-note {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  opacity: .9;
  text-align: center;
}

.floating-entry-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid #93c5fd;
  margin-top: 4px;
  box-sizing: border-box;
}

@media (max-width: 960px) {
  .nav {
    position: relative;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    opacity: 0;
    transform: translateY(-4px);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 1;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    opacity: 0;
    transform: translateY(4px);
  }
  .header-entry {
    display: none;
  }
  .nav-links-entry {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    min-width: 260px;
    margin: 0;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 16px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
  }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    color: var(--deep-blue);
    font-weight: 700;
    transition: background 0.2s;
  }
  .nav-links a:not(.nav-links-entry):hover {
    background: rgba(31, 111, 242, 0.08);
  }
  .nav-links a.nav-links-entry {
    color: #fff;
  }
  .nav-links-entry {
    margin: 12px 16px 0;
    padding: 16px 24px 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    background: linear-gradient(90deg, var(--blue-left) 0%, var(--blue-right) 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(31, 111, 242, 0.35);
  }
  .nav-links-entry:hover {
    opacity: 0.95;
  }
  body.nav-open .nav-links {
    display: flex;
  }
  .hero-image { 
    width: 85%;
    z-index: -1;
   }
  .hero-body { min-height: auto; }
  .hero-copy {
    position: static;
    margin-top: 14px;
    margin-left: auto;
    margin-right: 0;
    max-width: 100%;
    width: max-content;
    left: auto;
    align-items: flex-end;
  }
  .copy-line--1 { margin-left: 0; }
  .copy-line--2 { white-space: normal; }
  .about-copy br {
    display: none;
  }
  .about-grid,
  .business-cards,
  .company-grid,
  .thinking-cards,
  .recruit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid--entry .contact-row {
    grid-template-columns: 1fr;
  }
  .contact-grid--entry .contact-row .contact-label-inner {
    padding-top: 0;
  }
  .contact-grid--company label {
    grid-template-columns: 1fr;
  }
  .panel-wrap { padding: 24px 20px 28px; }
  .section-heading,
  .section-heading--right,
  .recruit-heading,
  .contact-heading { text-align: center; }
  .company-panel .section-heading { text-align: center; }
  .section-subhead { text-align: center; }
  .recruit-kicker { text-align: center; }
  .contact-card h2 { text-align: center; }
  .business-panel .section-subhead { text-align: center; }
  .business-panel .business-card {
    text-align: center;
  }
  .business-panel .business-card ul {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    list-style-position: inside;
  }
  .business-card__list li::before {
    display: none;
  }
  .business-card__list li {
    padding-left: 0;
  }
  .recruit-grid { gap: 24px; }
  .recruit-image { max-width: 100%; }
  .contact-card { padding: 24px 20px; }
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand-block {
    align-items: center;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
