:root {
  --bg: #080909;
  --bg-soft: #0e100f;
  --panel: #121413;
  --panel-warm: #17120d;
  --line: rgba(238, 228, 211, 0.15);
  --line-strong: rgba(198, 132, 62, 0.52);
  --text: #f4efe7;
  --muted: #c4b9aa;
  --muted-2: #918779;
  --gold: #bf7c35;
  --gold-2: #d5a15e;
  --gold-dark: #7d4d22;
  --green: #8d9a78;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(12, 13, 12, 0.94), rgba(6, 7, 7, 1) 540px),
    radial-gradient(circle at 20% 0%, rgba(127, 80, 36, 0.16), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(191, 124, 53, 0.42);
  color: #fff;
}

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

.narrow {
  width: min(840px, calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  color: #fff;
}

.site-header.is-solid {
  position: sticky;
  background: rgba(7, 8, 8, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.has-demo-banner .site-header {
  top: 34px;
}

.has-demo-banner .site-header.is-solid {
  top: 0;
}

.header-inner {
  width: min(1240px, calc(100% - 64px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

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

.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 50% 66%, rgba(255, 255, 255, 0.9) 0 5%, transparent 6%),
    conic-gradient(from 205deg at 50% 76%, transparent 0 8deg, rgba(255,255,255,.88) 9deg 13deg, transparent 14deg 24deg, rgba(255,255,255,.74) 25deg 29deg, transparent 30deg 42deg, rgba(255,255,255,.78) 43deg 47deg, transparent 48deg 60deg, rgba(255,255,255,.82) 61deg 65deg, transparent 66deg 78deg, rgba(255,255,255,.8) 79deg 83deg, transparent 84deg 360deg),
    #12110e;
  box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
}

.brand-name {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-copy {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
  font-size: 14px;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  transition: color .18s ease;
}

.global-nav a:hover,
.global-nav a.is-active {
  color: var(--gold-2);
}

.global-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 26px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.header-cta {
  min-width: 118px;
  padding: 11px 19px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  text-align: center;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 27px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -8px;
}

.menu-lines::after {
  top: 8px;
}

.nav-open .menu-lines {
  transform: rotate(45deg);
}

.nav-open .menu-lines::before {
  transform: translateY(8px) rotate(90deg);
}

.nav-open .menu-lines::after {
  opacity: 0;
}

.mobile-panel {
  position: fixed;
  z-index: 25;
  inset: 0;
  padding: 106px 28px 40px;
  background: rgba(6, 7, 7, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

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

.mobile-panel nav {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.mobile-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 17px;
}

.mobile-panel a::after {
  content: "->";
  color: var(--gold);
  font-family: var(--sans);
}

.hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0a0b0b;
}

.home-hero {
  min-height: 630px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center right;
  opacity: .96;
  filter: saturate(.96) contrast(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 4, .94) 0%, rgba(3,4,4,.74) 31%, rgba(3,4,4,.34) 58%, rgba(3,4,4,.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.42), transparent 40%, rgba(0,0,0,.68));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 54px;
}

.hero-kicker,
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: var(--gold-2);
}

.breadcrumb span + span::before,
.breadcrumb a + span::before,
.breadcrumb a + a::before {
  content: ">";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.34);
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 650px;
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 2.1;
  overflow-wrap: anywhere;
}

.hero-sub {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
}

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

.section {
  padding: 74px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-title {
  margin: 0;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.45;
  font-weight: 500;
}

.section-title::after,
.mini-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin-top: 10px;
  background: var(--gold);
}

.section-copy {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.text-link {
  color: var(--gold-2);
  font-size: 14px;
  white-space: nowrap;
}

.text-link::after {
  content: " ->";
  margin-left: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  text-align: center;
  line-height: 1.3;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn::after {
  content: "->";
  color: inherit;
  font-family: var(--sans);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #d29a58, #8d5524);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 18px 36px rgba(106, 64, 26, .22);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.2);
}

.btn-small {
  min-height: 42px;
  padding: 0 22px;
  font-size: 13px;
}

.btn-wide {
  width: 100%;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: var(--shadow);
}

.case-card {
  position: relative;
  min-width: 0;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
  background: #171717;
}

.case-card-body {
  padding: 18px 0 0;
}

.case-card h2,
.case-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.case-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.7;
}

.case-card .arrow-link {
  position: absolute;
  right: 2px;
  bottom: 3px;
  color: var(--gold);
  font-family: var(--sans);
}

.strength-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength-item {
  min-width: 0;
  padding: 30px 24px 26px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.strength-item:first-child {
  border-left: 0;
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0;
  line-height: 1;
  text-shadow: 0 0 18px rgba(191, 124, 53, .18);
}

.line-icon svg {
  width: 54px;
  height: 54px;
  display: block;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 1.95;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 0 10px rgba(191, 124, 53, .16));
}

.strength-item:hover .line-icon,
.performance-card:hover .line-icon,
.gallery-card:hover .line-icon {
  color: var(--gold-2);
}

.strength-item h2,
.strength-item h3,
.info-card h3,
.feature-card h3,
.staff-card h2,
.staff-card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
}

.strength-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.strength-card img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  margin-top: 18px;
}

.feature-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 180px;
  overflow: hidden;
}

.feature-card .feature-body {
  padding: 30px;
}

.feature-card p {
  margin: 10px 0 18px;
  color: var(--muted);
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 124, 53, 0.42);
  background:
    linear-gradient(90deg, rgba(132, 81, 36, .76), rgba(20, 18, 15, .84) 36%, rgba(15, 16, 15, .95)),
    var(--panel);
}

.cta-band.has-image {
  background: none;
}

.cta-band.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cta-image);
  background-size: cover;
  background-position: center;
  opacity: .58;
  filter: saturate(.88);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 11, .95), rgba(12, 12, 11, .56), rgba(7, 7, 7, .92));
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 28px 36px;
}

.cta-title {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.5;
}

.cta-inner p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 34px;
  background: #070808;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 34px;
  align-items: start;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: var(--muted);
  font-size: 13px;
}

.footer small {
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 11px;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.comparison-table .data-table {
  table-layout: fixed;
  min-width: 720px;
}

.comparison-table .comparison-topic {
  width: 24%;
}

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

.data-table th {
  width: 28%;
  color: var(--muted);
  font-weight: 500;
  background: rgba(255,255,255,.018);
}

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

.data-table th:first-child,
.data-table td:first-child {
  border-left: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 54px;
  align-items: start;
}

.split > *,
.media-text > *,
.detail-visual > *,
.contact-layout > * {
  min-width: 0;
}

.media-text {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.media-text img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.mini-title {
  margin: 0 0 18px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.55;
}

.eyebrow {
  color: var(--gold-2);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}

.flow-item {
  position: relative;
  min-width: 0;
  padding: 28px 18px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.flow-item:first-child {
  border-left: 0;
}

.flow-num {
  color: var(--gold-2);
  font-size: 22px;
}

.flow-item h3 {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

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

.voice-card img {
  width: 96px;
  height: 76px;
  object-fit: cover;
}

.voice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.filter-btn {
  min-width: 120px;
  padding: 16px 18px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--text);
}

.filter-btn.is-active {
  color: var(--gold-2);
  border-bottom-color: var(--gold);
}

.sort-select,
.field select,
.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(238, 228, 211, .28);
  border-radius: 0;
  background: rgba(255,255,255,.02);
  color: var(--text);
  min-height: 46px;
  padding: 0 14px;
}

.sort-select {
  width: 170px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 46px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--muted);
}

.pagination a.is-active {
  background: var(--gold);
  color: #fff;
}

.detail-lead {
  padding-top: 118px;
}

.detail-visual {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: start;
}

.detail-main-image img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.meta-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
}

.meta-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  color: var(--muted);
}

.meta-row b {
  color: var(--text);
  font-weight: 500;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.thumb-row button {
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
}

.thumb-row button.is-active {
  border-color: var(--gold);
}

.thumb-row img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.property-panel {
  padding: 24px;
}

.property-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.property-grid div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.gallery-card img,
.info-card img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.gallery-card h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.info-card {
  padding: 28px;
}

.info-card img {
  margin-top: 18px;
}

.performance-card {
  padding: 32px 24px;
  text-align: center;
}

.performance-card .line-icon {
  width: 78px;
  height: 78px;
}

.performance-card .line-icon svg {
  width: 58px;
  height: 58px;
}

.gallery-card h3 .line-icon {
  width: 44px;
  height: 44px;
  margin: 0 10px 0 0;
  vertical-align: middle;
}

.gallery-card h3 .line-icon svg {
  width: 34px;
  height: 34px;
}

.performance-card p {
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.accordion-trigger::after {
  content: "+";
  color: var(--gold);
  font-family: var(--sans);
  font-size: 22px;
}

.accordion-item.is-open .accordion-trigger::after {
  content: "-";
}

.accordion-panel {
  display: none;
  padding: 0 0 20px;
  color: var(--muted);
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.staff-card {
  background: var(--panel);
}

.staff-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.staff-card-body {
  padding: 18px;
}

.staff-role {
  color: var(--gold-2);
  font-size: 13px;
}

.staff-name-en {
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 12px;
}

.staff-card p {
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.message-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  border: 1px solid var(--line-strong);
  background: var(--panel);
  overflow: hidden;
}

.message-band .message-text {
  padding: 34px;
}

.message-band img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.timeline-year {
  color: var(--gold-2);
  font-family: var(--sans);
}

.map-frame {
  width: 100%;
  height: 270px;
  border: 1px solid var(--line);
  filter: grayscale(1) invert(.9) contrast(.8);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 58px;
  align-items: start;
}

.contact-side {
  position: sticky;
  top: 24px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}

.contact-method {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.phone-number {
  color: #fff;
  font-size: 29px;
  line-height: 1.2;
  white-space: nowrap;
}

.form {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.field label {
  padding-top: 8px;
}

.required,
.optional {
  margin-left: 8px;
  color: var(--gold-2);
  font-family: var(--sans);
  font-size: 12px;
}

.optional {
  color: var(--muted-2);
}

.field textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.privacy input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.form-message {
  min-height: 26px;
  color: var(--gold-2);
}

.contact-store img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  margin: 16px 0;
}

@media (max-width: 1120px) {
  .header-inner {
    width: min(100% - 44px, 1180px);
  }

  .global-nav {
    gap: 18px;
    font-size: 13px;
  }

  .header-cta {
    min-width: 102px;
    padding-inline: 14px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    min-height: 210px;
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 960px) {
  .container,
  .narrow {
    width: min(100% - 44px, var(--max));
  }

  .site-header {
    height: 78px;
  }

  .global-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: min(calc(100vw - 76px), 314px);
    right: auto;
    top: 18px;
    transform: none;
    z-index: 60;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    min-height: 380px;
  }

  .home-hero {
    min-height: 520px;
  }

  .hero::before {
    background-position: center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(3,4,4,.92), rgba(3,4,4,.48)),
      linear-gradient(180deg, rgba(0,0,0,.36), transparent 42%, rgba(0,0,0,.76));
  }

  .split,
  .media-text,
  .detail-visual,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-side {
    position: static;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .flow-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .flow-item:first-child {
    border-top: 0;
  }

  .filters {
    display: block;
    border-bottom: 0;
  }

  .filter-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
  }

  .filter-btn {
    min-width: 0;
    border: 1px solid var(--line);
  }

  .filter-btn.is-active {
    border-color: var(--gold);
    background: rgba(191, 124, 53, .18);
  }

  .sort-select {
    width: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

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

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy {
    display: none;
  }

  .hero {
    min-height: 360px;
    align-items: end;
  }

  .home-hero {
    min-height: 515px;
  }

  .hero-inner {
    padding: 120px 0 56px;
  }

  .hero h1,
  .page-title {
    font-size: 36px;
    line-height: 1.45;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 2;
  }

  .hero-actions,
  .section-head {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding: 42px 0;
  }

  .comparison-table {
    overflow-x: visible;
    border: 0;
  }

  .comparison-table .data-table,
  .comparison-table .data-table tbody,
  .comparison-table .data-table tr,
  .comparison-table .data-table th,
  .comparison-table .data-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .comparison-table .data-table tbody {
    display: grid;
    gap: 12px;
  }

  .comparison-table .data-table tr {
    border: 1px solid var(--line);
  }

  .comparison-table .data-table th,
  .comparison-table .data-table td {
    border-left: 0;
    padding: 12px 14px;
  }

  .comparison-table .data-table th {
    background: rgba(191, 124, 53, .12);
  }

  .comparison-table .data-table td:last-child {
    border-bottom: 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  [data-case-grid].grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .strength-row {
    border-bottom: 0;
  }

  .strength-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px 18px;
    padding: 24px 0;
    text-align: left;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .strength-item .line-icon {
    grid-row: span 2;
    margin: 0;
  }

  .strength-item p {
    margin-top: 0;
  }

  .strength-card {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 10px 14px;
  }

  .strength-card .line-icon {
    width: 56px;
    height: 56px;
  }

  .strength-card .line-icon svg {
    width: 44px;
    height: 44px;
  }

  .strength-card img {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100% !important;
    height: auto;
    margin-top: 8px !important;
    aspect-ratio: 1.75 / 1 !important;
  }

  .strength-card h2 {
    grid-column: 2;
    grid-row: 1;
  }

  .strength-card p {
    grid-column: 2;
    grid-row: 2;
  }

  .strength-card h2,
  .strength-card p {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .footer {
    padding-bottom: 92px;
  }

  .field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .field label {
    padding-top: 0;
  }

  .filter-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .message-band {
    grid-template-columns: 1fr;
  }

  .staff-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: stretch;
  }

  .staff-card img {
    width: 112px;
    height: 100%;
    min-height: 150px;
    aspect-ratio: auto;
  }

  .staff-card-body {
    padding: 15px;
  }

  .staff-card p {
    margin-bottom: 0;
  }

  .message-band .message-text {
    padding: 24px;
  }

  .property-grid div,
  .meta-row {
    grid-template-columns: 88px minmax(0, 1fr);
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 16px;
  }

  .hero h1,
  .page-title {
    font-size: 31px;
  }

  .btn {
    padding-inline: 18px;
  }

  .phone-number {
    font-size: 25px;
  }

  .filter-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .case-card h3 {
    font-size: 16px;
  }
}
