:root {
  --ink: #2d2722;
  --muted: #6e6258;
  --line: #e7dcce;
  --paper: #ffffff;
  --soft: #faf4ec;
  --deep: #2d2722;
  --green: #84977c;
  --sun: #ce7b37;
  --sun-soft: #e8a86a;
  --coral: #a75e27;
  --cream: #faf4ec;
  --warm-line: #efe6d9;
  --shadow: 0 20px 60px rgba(45, 39, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #faf9f5;
  font-family:
    "Zen Kaku Gothic New",
    "Noto Sans JP",
    "Yu Gothic",
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  line-height: 1.75;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.top-anchor {
  position: absolute;
  top: 0;
}

.text-line {
  display: block;
}

.nowrap {
  white-space: nowrap;
}

.section-heading h2 .text-line,
.story-intro h2 .text-line,
.representative-copy h2 .text-line,
.contact h2 .text-line {
  white-space: nowrap;
}

.hero h1,
.section-heading h2,
.story-intro h2,
.representative-copy h2,
.service-card h3,
.reason-list h3,
.menu-card h3,
.property-card h3,
.voice-card h3,
.flow-list h3,
.privacy-inner h2,
.office-heading h2 {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #fff;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(250, 249, 245, 0.96);
  box-shadow: 0 10px 30px rgba(45, 39, 34, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(239, 230, 217, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(45, 39, 34, 0.12);
}

.brand-logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.brand-symbol {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--sun);
}

.brand-symbol::before {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 31px;
  height: 31px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

.brand-symbol::after {
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 24px;
  border: 4px solid currentColor;
  border-top: 0;
  background:
    linear-gradient(currentColor 0 0) 50% 100% / 4px 12px no-repeat,
    rgba(255, 255, 255, 0.12);
  content: "";
}

.brand-name {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-name span {
  color: var(--sun);
}

.brand-name::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), rgba(255, 255, 255, 0.3));
  content: "";
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  content: "";
}

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

.header-cta {
  min-width: max-content;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(45, 39, 34, 0.82), rgba(45, 39, 34, 0.42) 45%, rgba(45, 39, 34, 0.14)),
    linear-gradient(0deg, rgba(45, 39, 34, 0.48), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92vh;
  max-width: 1180px;
  margin: 0 auto;
  padding: 150px 24px 132px;
  flex-direction: column;
  justify-content: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .section-kicker {
  color: var(--sun);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(46px, 5.7vw, 72px);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero h1 .text-line {
  white-space: nowrap;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(16px, 2vw, 20px);
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.25;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button::after {
  margin-left: 10px;
  content: "→";
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 12px 30px rgba(206, 123, 55, 0.28);
}

.button.primary.dark {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 12px 30px rgba(45, 39, 34, 0.2);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button.line {
  color: var(--deep);
  border-color: var(--deep);
}

.hero-status {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: 24px;
  left: clamp(18px, 4vw, 48px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(45, 39, 34, 0.76);
  backdrop-filter: blur(14px);
}

.hero-status span {
  padding: 16px 20px;
  text-align: center;
  font-weight: 800;
}

.hero-status span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.lead-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--deep);
  color: #fff;
}

.lead-strip a {
  padding: 28px clamp(18px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.lead-strip span,
.lead-strip strong {
  display: block;
}

.lead-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.lead-strip strong {
  margin-top: 4px;
  color: var(--sun);
  font-size: clamp(20px, 2.5vw, 30px);
}

.brand-message {
  padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 48px);
  background:
    linear-gradient(180deg, #fff, var(--cream));
}

.brand-message img {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--warm-line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(45, 39, 34, 0.14);
}

.story-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: clamp(48px, 6vw, 84px) clamp(18px, 4vw, 48px);
  background: #fff;
  align-items: center;
}

.story-intro {
  max-width: 980px;
}

.story-intro h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.25;
}

.story-track {
  display: grid;
  grid-auto-columns: clamp(168px, 17vw, 236px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

.story-track::-webkit-scrollbar {
  height: 8px;
}

.story-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(206, 123, 55, 0.45);
}

.story-track img {
  aspect-ratio: 288 / 561;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(45, 39, 34, 0.16);
  object-fit: cover;
  scroll-snap-align: start;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 4vw, 48px);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 38px;
}

.section-heading.narrow {
  max-width: 760px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading h2::after,
.story-intro h2::after,
.representative-copy h2::after,
.contact h2::after {
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), var(--green));
  content: "";
}

.section-heading.narrow h2::after {
  margin-right: auto;
  margin-left: auto;
}

.section-heading.narrow h2 {
  font-size: clamp(30px, 3.5vw, 42px);
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.about {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.about-copy {
  columns: 2 280px;
  column-gap: 36px;
  color: #4b443d;
  font-size: 17px;
}

.about-copy p {
  margin: 0 0 1em;
}

.feature-panel {
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.feature-panel dl,
.property-card dl {
  margin: 0;
}

.feature-panel div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-panel div:first-child {
  padding-top: 0;
}

.feature-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-panel dt {
  color: var(--sun);
  font-weight: 800;
  font-size: 22px;
}

.feature-panel dd {
  margin: 0;
  color: rgba(250, 244, 236, 0.78);
}

.services,
.properties {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sun), var(--green));
  content: "";
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(45, 39, 34, 0.1);
}

.service-card span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sun);
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  font-size: 18px;
}

.reason-list strong,
.flow-list span {
  color: var(--coral);
  font-weight: 900;
  font-size: 13px;
}

.service-card h3,
.reason-list h3,
.menu-card h3,
.property-card h3,
.flow-list h3 {
  margin: 12px 0 10px;
  line-height: 1.35;
}

.service-card p,
.reason-list p,
.menu-card p,
.flow-list p {
  margin: 0;
  color: var(--muted);
}

.representative {
  background: #fff;
}

.representative-inner {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.representative-photo {
  display: grid;
  min-height: 420px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--deep);
  background:
    repeating-linear-gradient(135deg, rgba(246, 236, 221, 0.9), rgba(246, 236, 221, 0.9) 12px, rgba(241, 227, 207, 0.9) 12px, rgba(241, 227, 207, 0.9) 24px),
    linear-gradient(135deg, rgba(206, 123, 55, 0.16), rgba(132, 151, 124, 0.12)),
    var(--soft);
  text-align: center;
}

.representative-photo span {
  display: block;
  font-weight: 900;
  font-size: 28px;
}

.representative-photo small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.representative-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.18;
}

.representative-copy > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #4b443d;
  font-size: 17px;
}

.profile-list {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin: 28px 0 0;
}

.profile-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.profile-list dt {
  color: var(--coral);
  font-weight: 900;
}

.profile-list dd {
  margin: 0;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
  margin-top: 26px;
}

.trust-stats div {
  padding: 18px;
  border: 1px solid var(--warm-line);
  border-radius: 8px;
  background: var(--soft);
}

.trust-stats strong,
.trust-stats span {
  display: block;
}

.trust-stats strong {
  color: var(--coral);
  font-size: 13px;
}

.trust-stats span {
  margin-top: 4px;
  font-weight: 900;
}

.reasons {
  background: var(--ink);
  color: #fff;
}

.reasons .section-heading h2 {
  color: #fff;
}

.reason-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.reason-layout img {
  height: 100%;
  min-height: 520px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.reason-list {
  display: grid;
  gap: 16px;
}

.reason-list article {
  padding: 28px;
  border: 1px solid rgba(239, 230, 217, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.reason-list p {
  color: rgba(250, 244, 236, 0.72);
}

.sell-menu,
.flow {
  background: var(--soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--warm-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(45, 39, 34, 0.08);
}

.menu-card img {
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center 32%;
}

.menu-card div {
  display: flex;
  padding: 28px;
  flex-direction: column;
  justify-content: center;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.property-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
}

.property-card > div {
  padding: 24px;
}

.price {
  margin: 0;
  color: var(--coral);
  font-weight: 900;
  font-size: 24px;
}

.property-card h3 {
  margin-top: 4px;
}

.property-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.property-card dd {
  margin: 0;
  color: var(--ink);
  text-align: right;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--warm-line);
  border-top: 4px solid var(--sun);
  border-radius: 8px;
  background: #fff;
}

.news {
  background: #fff;
}

.voices {
  background: #fff;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.voice-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.voice-meta {
  margin: 0;
  color: var(--coral);
  font-weight: 900;
  font-size: 13px;
}

.voice-card h3 {
  margin: 12px 0 10px;
}

.voice-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.news-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--green);
  font-weight: 800;
}

.contact {
  padding-bottom: clamp(78px, 10vw, 140px);
  background: var(--deep);
  color: #fff;
}

.contact .section-kicker {
  color: var(--sun);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 520px);
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.contact h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.2;
}

.contact p {
  max-width: 650px;
  color: rgba(250, 244, 236, 0.78);
}

.contact-profile {
  display: grid;
  gap: 10px;
  max-width: 660px;
  margin: 28px 0 0;
}

.contact-profile div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-profile dt {
  color: var(--sun);
  font-weight: 900;
}

.contact-profile dd {
  margin: 0;
  color: rgba(250, 244, 236, 0.86);
}

.contact .button.line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #4b443d;
  font-weight: 800;
  font-size: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: #faf9f5;
}

.contact-form textarea {
  resize: vertical;
}

.privacy-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  font-size: 13px;
}

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

.office {
  background: var(--soft);
}

.office-heading {
  margin-bottom: 24px;
}

.office-heading h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.35;
}

.office-heading p:last-child {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--deep);
  background: #fff;
  font-weight: 800;
}

.office-layout {
  max-width: 1180px;
  margin: 0 auto;
}

.map-embed {
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 31, 28, 0.1);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.mobile-call-bar {
  display: none;
}

.privacy {
  background: #fff;
}

.privacy-inner {
  max-width: 960px;
  margin: 0 auto;
}

.privacy-inner h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.35;
}

.privacy-inner > p {
  margin: 18px 0 0;
  color: var(--muted);
}

.privacy-details {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.privacy-details summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--deep);
  font-weight: 900;
}

.privacy-body {
  padding: 0 22px 24px;
}

.privacy-body h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.privacy-body p,
.privacy-body li {
  color: #4b443d;
}

.privacy-body p {
  margin: 0;
}

.privacy-body ul {
  margin: 8px 0 0;
  padding-left: 1.25em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 44px clamp(18px, 4vw, 48px);
  color: #fff;
  background: #211d19;
}

.footer-brand {
  display: inline-flex;
}

.site-footer p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
  justify-content: flex-end;
  font-weight: 800;
  font-size: 13px;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.52);
}

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

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

  .menu-button {
    display: inline-grid;
    justify-self: end;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .reason-layout,
  .representative-inner,
  .office-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .reason-layout img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    padding: 5px 8px;
  }

  .brand-logo {
    height: 38px;
  }

  .hero,
  .hero-inner {
    min-height: 86vh;
  }

  .hero-inner {
    padding: 122px 18px 190px;
  }

  .hero h1 {
    font-size: clamp(32px, 9.6vw, 38px);
    line-height: 1.22;
  }

  .hero-status,
  .lead-strip,
  .story-gallery,
  .service-grid,
  .menu-grid,
  .property-grid,
  .voice-grid,
  .flow-list,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-status {
    right: 18px;
    left: 18px;
    max-width: none;
  }

  .hero-status span {
    padding: 12px 14px;
  }

  .hero-status span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .lead-strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .brand-message {
    padding: 38px 18px;
  }

  .brand-message img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
  }

  .story-gallery {
    padding: 54px 18px;
  }

  .story-intro {
    max-width: none;
  }

  .story-track {
    grid-auto-columns: minmax(172px, 64vw);
    margin-right: -18px;
    margin-left: -2px;
    padding-right: 18px;
  }

  .section {
    padding: 68px 18px;
  }

  .section-heading.narrow {
    text-align: left;
  }

  .section-heading h2,
  .section-heading.narrow h2,
  .story-intro h2,
  .representative-copy h2,
  .contact h2 {
    font-size: clamp(20px, 5.2vw, 21px);
    line-height: 1.32;
  }

  .representative-inner {
    gap: 26px;
  }

  .representative-photo {
    min-height: 260px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .profile-list div,
  .contact-profile div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .menu-card img {
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  body {
    padding-bottom: 74px;
  }

  .mobile-call-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--sun);
    box-shadow: 0 14px 34px rgba(17, 31, 28, 0.28);
  }

  .mobile-call-bar span,
  .mobile-call-bar strong {
    display: block;
    line-height: 1.15;
  }

  .mobile-call-bar span {
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-call-bar strong {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .contact-buttons {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-card,
  .feature-panel,
  .reason-list article,
  .menu-card div,
  .property-card > div,
  .flow-list li,
  .contact-form {
    padding: 22px;
  }
}
