:root {
  --paper: #f5f3ee;
  --ink: #252b28;
  --muted: #60665f;
  --line: #d8dbd2;
  --olive: #596847;
  --soft: #e9ede4;
  --white: #fff;
  --sans: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
  --gutter: clamp(24px, 4.5vw, 80px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  border: 0;
  background: none;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #8f4f24;
  outline-offset: 6px;
}
::selection {
  background: #d4dec9;
  color: #252b28;
}
[hidden] {
  display: none !important;
}
.section-shell {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-space {
  padding-block: 110px;
}
.eyebrow {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 1.8px;
  font-weight: 650;
}
.small-square {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--olive);
  margin-right: 8px;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
}
h2 {
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.16;
  letter-spacing: -2.5px;
}
h3 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.7px;
}
.serif-word {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -3px;
  color: var(--olive);
}
.muted-heading {
  color: #7a8274;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 17px 24px;
  min-height: 54px;
  font-size: 13px;
  font-weight: 550;
  border: 1px solid transparent;
  border-radius: 3px;
  transition:
    background 0.2s,
    color 0.2s;
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button-dark:hover {
  background: var(--olive);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: #dfe5d6;
}
.button-outline {
  border-color: #6c7864;
}
.button-outline:hover {
  background: #e0e7d9;
}
.text-link {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding: 13px 0;
  font-size: 13px;
  font-weight: 600;
}
.text-link span {
  font-size: 22px;
}
.text-link:hover {
  color: var(--olive);
  border-color: var(--olive);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.site-header {
  height: 100px;
  padding: 0 var(--gutter);
  max-width: 1600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
  background: var(--paper);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 750;
  line-height: 1.2;
  flex-shrink: 0;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 3px;
}
.brand-sub {
  display: block;
  font-size: 8px;
  letter-spacing: 1.9px;
  font-weight: 500;
  margin-top: 7px;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
}
.desktop-nav a {
  padding: 12px 0;
}
.desktop-nav a:hover {
  color: var(--olive);
}
.header-cta {
  border-bottom: 1px solid var(--ink);
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  padding: 8px 0;
}
.header-cta span {
  font-size: 24px;
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  padding: 18px var(--gutter) 28px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 15px #252b2810;
}
.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero-copy {
  padding: 34px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: clamp(48px, 5.35vw, 82px);
  letter-spacing: -4.8px;
  line-height: 1.1;
  margin: 38px 0 27px;
}
.hero h1 .serif-word {
  font-size: 1.1em;
}
.hero-description {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: auto;
  padding: 40px 28px 2px 0;
}
.hero-bottom > span {
  font-size: 9px;
  letter-spacing: 1.5px;
  line-height: 1.8;
  color: var(--muted);
}
.hero-bottom > a {
  width: 42px;
  height: 42px;
  border: 1px solid #b8bfb3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.hero-bottom > a:hover {
  background: var(--soft);
}
.hero-visual {
  position: relative;
  min-height: 625px;
  border-radius: 4px;
  overflow: hidden;
  background: #d9d6cf;
}
.hero-visual > img {
  height: 100%;
  position: absolute;
  object-position: 61% center;
}
.image-label {
  position: absolute;
  top: 22px;
  left: 24px;
  background: #f5f3eeed;
  border-radius: 2px;
  padding: 9px 13px;
  font-size: 8px;
  letter-spacing: 1.8px;
  font-weight: 600;
}
.hero-visual figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 70px 28px 26px;
  background: linear-gradient(transparent, #151d18b0);
  color: white;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.8px;
}
.caption-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff80;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
}
.intro-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-block: 29px 33px;
}
.intro-band p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.intro-band strong {
  font-weight: 500;
  color: var(--ink);
}
.intro-band > span {
  font-size: 10px;
  letter-spacing: 1.6px;
  font-weight: 550;
  display: flex;
  align-items: center;
  gap: 22px;
}
.intro-band > span:before {
  content: "✳";
  font-size: 23px;
  font-weight: 400;
  color: var(--olive);
}
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.approach h2 {
  margin-top: 24px;
}
.approach-copy {
  padding-top: 32px;
  max-width: 530px;
}
.approach-copy .large-copy {
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 24px;
}
.approach-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.approach-copy .text-link {
  margin-top: 19px;
}
.focus-section {
  background: #eaece5;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 38px;
}
.section-heading h2 {
  margin-top: 21px;
}
.section-heading > p {
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 3px;
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid #cbd0c4;
  padding-bottom: 22px;
  margin-bottom: 35px;
}
.filter {
  border: 1px solid #c3cabd;
  border-radius: 50px;
  padding: 11px 23px;
  font-size: 12px;
  font-weight: 500;
  min-height: 44px;
  transition:
    background 0.2s,
    color 0.2s;
}
.filter:hover {
  background: #d9dfd1;
}
.filter.active {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}
.filter span {
  font-size: 9px;
  opacity: 0.8;
  margin-left: 9px;
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.property-photo {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 1.1;
  border-radius: 3px;
  overflow: hidden;
  background: #d0d4ca;
  text-align: left;
}
.property-photo img {
  height: 100%;
  transition: transform 0.6s;
}
.property-photo:hover img {
  transform: scale(1.035);
}
.photo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #f5f3eef0;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 1.1px;
  padding: 7px 11px;
  border-radius: 2px;
}
.round-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  font-size: 24px;
}
.property-meta {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #535d4c;
  margin: 22px 0 13px;
}
.property-card h3 {
  font-size: 22px;
  letter-spacing: -0.8px;
}
.property-card h3 button {
  padding: 0;
  text-align: left;
  font: inherit;
  line-height: 1.35;
}
.property-card h3 button:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.property-card > p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 12px;
  color: var(--muted);
  max-width: 320px;
}
.image-note {
  font-size: 11px;
  line-height: 1.7;
  color: #5f655b;
  margin-top: 30px;
}
.perspective {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}
.perspective figure {
  position: relative;
  align-self: stretch;
  min-height: 640px;
  border-radius: 3px;
  overflow: hidden;
}
.perspective figure img {
  height: 100%;
  position: absolute;
  object-position: 52% center;
}
.perspective figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--paper);
  padding: 10px 15px;
  font-size: 8px;
  letter-spacing: 1.2px;
}
.perspective h2 {
  margin: 24px 0;
}
.perspective-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  max-width: 430px;
  line-height: 1.9;
  margin-bottom: 29px;
}
.principle {
  display: flex;
  gap: 23px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.principle > span {
  font-size: 10px;
  color: var(--olive);
  padding-top: 4px;
}
.principle h3 {
  font: 550 15px var(--sans);
  letter-spacing: 0;
}
.principle p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.process {
  background: var(--soft);
}
.process .section-heading {
  margin-bottom: 60px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step {
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: -2px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c3ccba;
  padding-bottom: 18px;
  margin-bottom: 25px;
}
.step span {
  font-size: 25px;
  letter-spacing: 0;
  color: var(--olive);
}
.process-grid h3 {
  font-size: 23px;
}
.process-grid p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 15px;
  max-width: 330px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
}
.faq h2 {
  margin-top: 24px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 550;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 24px;
  font-weight: 400;
  color: var(--olive);
  flex-shrink: 0;
}
details[open] summary > span {
  transform: rotate(45deg);
}
details > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  padding: 0 35px 24px 0;
}
details > p a {
  text-decoration: underline;
}
.contact {
  margin-bottom: 28px;
}
.contact-inner {
  background: #303c2f;
  color: var(--paper);
  padding: 65px 70px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact h2 {
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -3px;
  margin: 25px 0;
}
.contact .serif-word {
  color: #d5dfbd;
}
.contact-inner > div > p:not(.eyebrow) {
  font-size: 14px;
  color: #d3d9ce;
}
.contact-action {
  padding-top: 23px;
}
.contact-action > .eyebrow {
  color: #c6cebf;
}
.phone-link {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 40px);
  letter-spacing: -1px;
  border-bottom: 1px solid #71816a;
  padding: 14px 0 22px;
}
.phone-link > span {
  font-size: 32px;
}
.contact-action .button {
  margin-top: 25px;
}
.contact-action p {
  margin-top: 22px;
  font-size: 11px !important;
  line-height: 1.8;
}
.site-footer {
  padding-top: 45px;
  padding-bottom: 25px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 43px;
  border-bottom: 1px solid var(--line);
}
.footer-main > p {
  font-size: 12px;
  color: var(--muted);
}
.back-top {
  display: flex;
  gap: 20px;
  font-size: 12px;
  align-items: center;
  min-height: 44px;
}
.back-top span {
  font-size: 20px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
  padding-top: 18px;
}
.footer-bottom button {
  padding: 12px 0;
  min-height: 44px;
}
.footer-bottom button:hover {
  text-decoration: underline;
}
.footer-fine {
  font-size: 10px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 760px;
  line-height: 1.7;
}
dialog {
  border: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  max-height: 90dvh;
  overflow: auto;
  border-radius: 5px;
  box-shadow: 0 30px 100px #0004;
  width: min(680px, calc(100% - 32px));
}
dialog::backdrop {
  background: #172019a6;
  backdrop-filter: blur(4px);
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  z-index: 1;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}
.detail-dialog > img {
  height: 260px;
}
.detail-copy {
  padding: 35px;
}
.detail-copy h2 {
  font-size: 36px;
  margin: 15px 0 20px;
  letter-spacing: -1.5px;
}
.detail-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.detail-copy ul {
  padding-left: 20px;
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
}
.detail-copy .button {
  margin-top: 25px;
}
.disclosure-dialog {
  padding: 45px;
  max-width: 800px;
}
.disclosure-dialog h2 {
  font-size: 34px;
  margin: 18px 0 25px;
  letter-spacing: -1px;
}
.disclosure-body {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.disclosure-body p {
  margin-bottom: 20px;
}
.disclosure-dialog form {
  margin-top: 25px;
}
@media (min-width: 1600px) {
  .hero-visual {
    min-height: 720px;
  }
  .hero h1 {
    margin-top: 54px;
  }
  .hero-copy {
    padding-top: 50px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 19px;
  }
  .hero h1 {
    letter-spacing: -3px;
    font-size: clamp(45px, 5.5vw, 65px);
  }
  .hero-visual {
    min-height: 590px;
  }
  .hero h1 .serif-word {
    letter-spacing: -2px;
  }
  .hero-visual figcaption {
    font-size: 20px;
    padding-inline: 20px;
  }
  .intro-band > span {
    font-size: 8px;
    gap: 9px;
  }
  .approach,
  .perspective {
    gap: 45px;
  }
  .section-space {
    padding-block: 80px;
  }
  .contact-inner {
    padding: 50px 40px;
    gap: 40px;
  }
  .faq {
    gap: 40px;
  }
  .property-grid {
    gap: 20px;
  }
  .property-card h3 {
    font-size: 19px;
  }
  .perspective figure {
    min-height: 620px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 25px;
  }
  .site-header {
    height: 80px;
    gap: 18px;
  }
  .brand {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .brand-sub {
    font-size: 7px;
    letter-spacing: 1.1px;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 10px;
  }
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 27px;
    padding-bottom: 25px;
  }
  .hero-copy {
    padding-top: 10px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
  .hero h1 {
    font-size: clamp(46px, 9.7vw, 72px);
    letter-spacing: -2.8px;
    line-height: 1.06;
    margin: 28px 0 23px;
  }
  .hero-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .hero-bottom {
    display: none;
  }
  .hero-visual {
    min-height: 430px;
  }
  .hero-visual > img {
    object-position: 60% center;
  }
  .hero-visual figcaption {
    font-size: 23px;
    padding: 60px 23px 23px;
  }
  .image-label {
    left: 18px;
    top: 18px;
    font-size: 7px;
  }
  .intro-band {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px 24px;
    padding-block: 17px 29px;
  }
  .intro-band p {
    width: 100%;
    font-size: 13px;
  }
  .intro-band p br {
    display: none;
  }
  .intro-band p strong {
    margin-left: 4px;
  }
  .intro-band > span {
    font-size: 8px;
    letter-spacing: 0.8px;
    gap: 8px;
  }
  .intro-band > span:before {
    font-size: 16px;
  }
  .section-space {
    padding-block: 64px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.8px;
  }
  .approach,
  .perspective,
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .approach-copy {
    padding-top: 0;
    max-width: none;
  }
  .approach-copy .large-copy {
    font-size: 20px;
  }
  .approach-copy > p {
    font-size: 15px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .section-heading > p {
    margin-top: 23px;
    font-size: 14px;
  }
  .filter-bar {
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 22px;
  }
  .filter {
    font-size: 11px;
    padding: 10px 17px;
  }
  .property-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .property-photo {
    aspect-ratio: 1.15;
  }
  .property-card > p {
    font-size: 15px;
    max-width: 440px;
  }
  .property-card h3 {
    font-size: 24px;
  }
  .property-meta {
    font-size: 9px;
    margin-top: 18px;
  }
  .photo-tag {
    font-size: 9px;
  }
  .image-note {
    font-size: 12px;
  }
  .perspective figure {
    min-height: 440px;
    order: 2;
    margin-top: 15px;
  }
  .perspective-copy > p:not(.eyebrow) {
    font-size: 15px;
    max-width: none;
  }
  .principle {
    padding: 22px 0;
  }
  .principle h3 {
    font-size: 16px;
  }
  .principle p {
    font-size: 14px;
  }
  .perspective-copy .eyebrow {
    font-size: 10px;
  }
  .process .section-heading {
    margin-bottom: 35px;
  }
  .process .button {
    margin-top: 27px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .step {
    font-size: 36px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .process-grid h3 {
    font-size: 25px;
  }
  .process-grid p {
    font-size: 15px;
    max-width: none;
  }
  .faq {
    gap: 32px;
  }
  summary {
    font-size: 15px;
  }
  details > p {
    font-size: 15px;
    padding-right: 15px;
  }
  .contact {
    padding-inline: 16px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 40px 26px;
  }
  .contact h2 {
    font-size: 56px;
    letter-spacing: -2px;
  }
  .contact-inner > div > p:not(.eyebrow) {
    font-size: 15px;
  }
  .contact-action {
    padding-top: 15px;
  }
  .phone-link {
    font-size: 30px;
  }
  .contact-action .button {
    width: 100%;
  }
  .contact-action p {
    font-size: 12px !important;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 23px;
    padding-bottom: 23px;
  }
  .footer-main > p {
    width: 100%;
    order: 3;
    font-size: 13px;
  }
  .back-top {
    margin-left: auto;
    font-size: 11px;
    gap: 12px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
  }
  .footer-bottom > span:nth-child(2) {
    width: 100%;
    order: 3;
  }
  .footer-fine {
    font-size: 11px;
    margin-top: 20px;
  }
  .site-footer {
    padding-top: 20px;
  }
  .detail-copy {
    padding: 28px 24px;
  }
  .detail-copy h2 {
    font-size: 30px;
  }
  .disclosure-dialog {
    padding: 55px 25px 30px;
  }
  .disclosure-body {
    font-size: 14px;
  }
  .disclosure-dialog h2 {
    font-size: 29px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 43px;
  }
  .hero-visual {
    min-height: 350px;
  }
  .hero-visual figcaption {
    font-size: 19px;
  }
  .filter {
    padding-inline: 13px;
  }
  .contact h2 {
    font-size: 48px;
  }
  .phone-link {
    font-size: 25px;
  }
  .back-top {
    margin-left: 0;
  }
  .intro-band > span {
    font-size: 7px;
  }
  .brand {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
