@charset "UTF-8";

/* ===== 01. Design Tokens ===== */
:root {
  --color-primary: #1f4c8f;
  --color-primary-dark: #17396b;
  --color-accent: #0f766e;
  --color-text: #1f2937;
  --color-muted: #5b6574;
  --color-border: #d8e0ea;
  --color-bg: #f5f8fc;
  --color-bg-soft: #eef4fa;
  --color-white: #ffffff;

  --shadow-sm: 0 8px 24px rgba(18, 40, 72, 0.08);
  --shadow-md: 0 16px 40px rgba(18, 40, 72, 0.12);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1120px;
  --container-narrow: 860px;
}

/* ===== 02. Reset / Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ks26 {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.8;
  font-size: 16px;
}

body.ks26 img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
}

body.ks26 a {
  color: var(--color-primary);
  text-decoration: none;
}

body.ks26 a:hover,
body.ks26 a:focus {
  text-decoration: underline;
}

body.ks26 p,
body.ks26 ul,
body.ks26 ol,
body.ks26 li {
  font-size: 16px;
}

body.ks26 h1,
body.ks26 h2,
body.ks26 h3,
body.ks26 p,
body.ks26 ul,
body.ks26 ol {
  margin-top: 0;
}

/* ===== 03. Accessibility ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--color-primary-dark);
  color: #fff;
  border-radius: var(--radius-sm);
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ===== 04. Layout ===== */
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.container.narrow {
  width: min(calc(100% - 32px), var(--container-narrow));
}

/* ===== 05. Header ===== */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__lead {
  display: none;
}

.site-header__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0 12px;
}

.site-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-brand__office {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-brand__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
}

.site-brand__title a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.site-brand__title a:hover,
.site-brand__title a:focus {
  text-decoration: none;
}

.site-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-contact__tel {
  color: var(--color-primary-dark);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.site-contact__tel:hover,
.site-contact__tel:focus {
  text-decoration: none;
}

.site-contact__hours {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.global-nav {
  padding: 0 0 10px;
}

.global-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.global-nav__list a:hover,
.global-nav__list a:focus {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ===== 06. Hero ===== */
.hero {
  position: relative;
  padding: 72px 0 64px;
  background:
    linear-gradient(135deg, rgba(31, 76, 143, 0.94), rgba(15, 118, 110, 0.90)),
    linear-gradient(180deg, #274f8f 0%, #1f4c8f 100%);
  color: #fff;
  overflow: hidden;
}

.hero .container {
  position: relative;
  min-height: 500px;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  min-width: 0;
  padding-right: 0;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 1080px;
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.35;
}

.hero__lead {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 17px;
}

.check-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
}

.check-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  margin-top: 16px;
  margin-bottom: 0;
 padding-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

/* Hero decorative figure */
.hero .container::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -95px;
  width: min(46vw, 580px);
  height: min(46vw, 580px);
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.08) 38%,
    rgba(255, 255, 255, 0.03) 58%,
    rgba(255, 255, 255, 0) 74%
  );
  z-index: 1;
  pointer-events: none;
}

.hero .container::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -64px;
  width: min(48vw, 660px);
  aspect-ratio: 3 / 4;
  background: url("../images/hero-person.png") no-repeat center bottom / contain;
  z-index: 1;
  pointer-events: none;
  opacity: 0.98;
  filter: drop-shadow(0 18px 36px rgba(8, 23, 46, 0.20));
}

/* ===== 07. Buttons ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.button--primary {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}

.button--ghost {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
}

.button--tel {
  background: rgba(255, 255, 255, 0.86);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.button--tel:hover,
.button--tel:focus {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.88);
}

/* ===== 08. Generic Sections ===== */
.section {
  padding: 56px 0;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section h2 {
  margin-bottom: 24px;
  font-size: 28px;
  line-height: 1.4;
  color: var(--color-primary-dark);
}

.section h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.5;
}

/* ===== 09. Cards ===== */
.link-cards,
.service-list,
.feature-list,
.area-cards {
  display: grid;
  gap: 16px;
}

.link-card,
.service-item,
.feature-item,
.area-card {
  display: block;
  padding: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.link-card,
.area-card {
  color: inherit;
  text-decoration: none;
}

.link-card:hover,
.link-card:focus,
.area-card:hover,
.area-card:focus {
  border-color: var(--color-primary);
  text-decoration: none;
}

.link-card__title,
.area-card__title {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.link-card__text,
.area-card__text {
  display: block;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== 10. Area Section ===== */
.area-intro,
.area-note {
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
}

.area-note {
  color: var(--color-muted);
  font-size: 14px;
}

.area-cards {
  margin-top: 24px;
}

.area-actions {
  margin-top: 24px;
}

/* ===== 11. Tables ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
}

.price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
  padding: 16px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}

.price-table thead th {
  background: #dfeaf6;
  color: var(--color-primary-dark);
  font-size: 15px;
}

.price-table tbody th {
  background: #f8fbff;
  font-weight: 700;
}

.section-note {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 14px;
}

/* ===== 12. Flow ===== */
.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  margin-bottom: 18px;
  padding: 20px 20px 20px 68px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.flow-list li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 20px;
  top: 18px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

.flow-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
  font-size: 18px;
}

/* ===== 13. Profile ===== */
.profile {
  display: grid;
  gap: 24px;
  align-items: center;
}

.profile__image img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.profile__body p {
  margin-bottom: 14px;
}

.profile__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== 14. CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, #153867, #1f4c8f);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
}

.cta-section__text {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 17px;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== 15. Footer ===== */
.site-footer {
  padding: 44px 0 24px;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__grid {
  display: grid;
  gap: 24px;
}

.site-footer__title {
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li {
  margin-bottom: 8px;
  font-size: 15px;
}

.site-footer__copy {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  text-align: center;
}

/* ===== 16. Responsive ===== */
@media (min-width: 768px) {
  .site-header__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-contact {
    align-items: flex-end;
    text-align: right;
  }

  .link-cards,
  .feature-list,
  .area-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 72px 0;
  }
}

@media (min-width: 960px) {
  .link-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile {
    grid-template-columns: 320px 1fr;
  }
}

@media (max-width: 1199px) {
  .hero .container {
    min-height: auto;
  }

  .hero .container::before,
  .hero .container::after {
    display: none;
  }

  .hero h1,
  .hero__lead {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .site-header {
    position: static;
  }

  .site-header__row {
    gap: 8px;
    padding: 8px 0 10px;
  }

  .site-brand__title {
    font-size: 22px;
  }

  .site-brand__office {
    font-size: 12px;
  }

  .site-contact__tel {
    font-size: 20px;
  }

  .global-nav {
    padding: 0 0 8px;
  }

  .global-nav__list {
    gap: 6px;
  }

  .global-nav__list a {
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero {
    padding: 44px 0 36px;
  }

  .hero .container {
    min-height: auto;
  }

  .hero__content {
    width: auto;
    max-width: none;
  }

  .button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .section h2 {
    font-size: 24px;
  }

  .flow-list li {
    padding-left: 60px;
  }

  .price-table {
    min-width: 560px;
  }
}

/* ===== Reasons section ===== */

.reason-intro {
  margin-bottom: 24px;
}

.reason-intro__text {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.9;
}

.reason-grid {
  display: grid;
  gap: 18px;
}

.reason-card {
  position: relative;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.reason-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.reason-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 12px 0;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef4fa;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.reason-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.5;
  color: var(--color-primary-dark);
}

.reason-card p:last-child {
  margin-bottom: 0;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== Warm accent for reasons ===== */

.reason-card__label {
  background: #FFF2E6;
  color: #C9772B;
}

.reason-card::before {
  background: linear-gradient(90deg, #C9772B, #E2A35F);
}
/* ===== Profile badges ===== */

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef4fa;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* ===== Profile simple ===== */

.profile--simple {
  align-items: center;
}

.profile--simple .profile__image img {
  max-width: 300px;
}

.profile--simple .profile__body p {
  max-width: 720px;
}

@media (min-width: 960px) {
  .profile--simple {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }
}

/* ===== FAQ ===== */

.faq-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-index__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.faq-index__link:hover,
.faq-index__link:focus {
  text-decoration: none;
  border-color: var(--color-primary);
}

.faq-section .faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 20px 56px 20px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-primary-dark);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 22px;
  line-height: 1;
  color: var(--color-primary);
}

.faq-item[open] summary::after {
  content: "－";
}

.faq-item__answer {
  padding: 0 20px 20px;
}

.faq-item__answer p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .faq-item summary {
    padding: 18px 50px 18px 18px;
  }

  .faq-item__answer {
    padding: 0 18px 18px;
  }
}

/* ===== Anchor offset for sticky header ===== */

html {
  scroll-padding-top: 110px;
}

.faq-section {
  scroll-margin-top: 110px;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 20px;
  }

  .faq-section {
    scroll-margin-top: 20px;
  }
}

/* ===== Topic links ===== */

.topic-links {
  display: grid;
  gap: 20px;
}

.topic-links__group {
  padding: 22px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.topic-links__title {
  margin-bottom: 14px;
  color: var(--color-primary-dark);
  font-size: 20px;
  line-height: 1.5;
}

.topic-links__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-links__list li + li {
  margin-top: 10px;
}

.topic-links__list a {
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.8;
}

.topic-links__list a:hover,
.topic-links__list a:focus {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .topic-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== Article entry box ===== */

.article-entry-box {
  padding: 28px 30px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.article-entry-box__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef4fa;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.article-entry-box h2 {
  margin-bottom: 14px;
}

.article-entry-box__lead {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--color-muted);
  line-height: 1.9;
}

.article-entry-box__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-entry-box__list li {
  margin: 0;
}

.article-entry-box__list a {
  position: relative;
  display: block;
  padding-left: 18px;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.8;
}

.article-entry-box__list a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.article-entry-box__list a:hover,
.article-entry-box__list a:focus {
  color: var(--color-primary);
  text-decoration: underline;
}

.article-entry-box__actions {
  margin-top: 22px;
}

@media (max-width: 767px) {
  .article-entry-box {
    padding: 22px 20px;
  }

  .article-entry-box__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-entry-box__lead {
    margin-bottom: 16px;
  }

  .article-entry-box__actions {
    margin-top: 18px;
  }
}

/* ===== Office ===== */

.office-summary-table tbody th {
  width: 220px;
  white-space: nowrap;
}

.access-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.access-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .access-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 767px) {
  .office-summary-table tbody th {
    width: 120px;
    white-space: normal;
  }

  .access-map iframe {
    height: 280px;
  }
}

/* ===== Office redesign ===== */

.office-hero {
  padding: 56px 0;
  background:
    linear-gradient(135deg, rgba(31, 76, 143, 0.06), rgba(15, 118, 110, 0.04)),
    var(--color-white);
}

.office-hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.office-hero__lead {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text);
}

.office-hero__text {
  margin-bottom: 18px;
  color: var(--color-muted);
  line-height: 1.9;
}

.office-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.office-hero__points li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(31, 76, 143, 0.08);
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 700;
}

.office-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.office-hero__visual {
  position: relative;
}

.office-photo-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.office-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}


.office-highlight-grid {
  display: grid;
  gap: 18px;
}

.office-highlight-card {
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.office-highlight-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.office-highlight-card p {
  margin-bottom: 0;
  line-height: 1.9;
  color: var(--color-muted);
}

.office-summary-cards {
  display: grid;
  gap: 16px;
}

.office-summary-card {
  padding: 20px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.office-summary-card__term {
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.office-summary-card__value {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.access-panel {
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.access-panel__map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 18px;
}

.access-info-list {
  display: grid;
  gap: 16px;
}

.access-info-item {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.access-info-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.access-info-item__term {
  margin-bottom: 6px;
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 700;
}

.access-info-item__text {
  margin-bottom: 0;
  color: var(--color-text);
  line-height: 1.9;
}

.access-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .office-hero {
    padding: 72px 0;
  }

  .office-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 40px;
  }

  .office-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-summary-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-summary-card--wide {
    grid-column: span 2;
  }

  .access-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }
}

@media (max-width: 767px) {
  .office-hero {
    padding: 44px 0;
  }

  .office-hero__lead {
    font-size: 17px;
  }

  .access-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .access-panel__map iframe {
    height: 280px;
  }
}

/* ===== Voice / Interview ===== */

.voice-intro-box {
  padding: 28px 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.voice-intro-box__body p:last-child {
  margin-bottom: 0;
}

.reference-showcase {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.reference-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}
.reference-showcase--small {
  max-width: 760px;
  margin: 0 auto;
}
.voice-gallery {
  display: grid;
  gap: 18px;
}

.voice-card {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.voice-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
  .voice-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voice-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .voice-intro-box {
    padding: 22px 20px;
  }

  .reference-showcase {
    padding: 14px;
  }

  .voice-card {
    padding: 10px;
  }
}
/* ===== Contact ===== */

.contact-hero-actions {
  margin-top: 18px;
}

.contact-form-box {
  padding: 28px 30px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form-box__lead {
  margin-bottom: 20px;
  color: var(--color-muted);
  line-height: 1.9;
}

.contact-form-embed {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
}

.contact-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 1256px;
  border: 0;
}

@media (max-width: 767px) {
  .contact-form-box {
    padding: 22px 20px;
  }

  .contact-form-embed iframe {
    min-height: 1320px;
  }
}

/* ===== Legal document ===== */

.legal-doc {
  padding: 32px 34px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-doc__section + .legal-doc__section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.legal-doc__section h2 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-primary-dark);
}

.legal-doc__section p:last-child,
.legal-doc__section ul:last-child {
  margin-bottom: 0;
}

.legal-doc__section ul {
  margin: 0;
  padding-left: 1.4em;
}

.legal-doc__section li + li {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .legal-doc {
    padding: 24px 20px;
  }

  .legal-doc__section + .legal-doc__section {
    margin-top: 22px;
    padding-top: 22px;
  }

  .legal-doc__section h2 {
    font-size: 20px;
  }
}