/* 日本語を文節の切れ目で改行する。Chrome以外では無視されるだけなので安全 */
body { word-break: auto-phrase; }

:root {
  --ink: #191816;
  --ink-soft: #4b4843;
  --cream: #f5f1e9;
  --cream-deep: #e8e0d3;
  --paper: #fffdf8;
  --bronze: #a77b4d;
  --bronze-dark: #7b5734;
  --line: rgba(25, 24, 22, .16);
  --white-line: rgba(255, 255, 255, .2);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  --shadow: 0 24px 64px rgba(30, 24, 17, .12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

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

button { color: inherit; }

.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--bronze-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.3;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light { color: #ddc7a8; }

.section {
  position: relative;
  padding: 132px 0;
  overflow: hidden;
}

.section-heading { margin-bottom: 64px; }

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow { justify-content: center; }

.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.42;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 28px auto 0;
  color: var(--ink-soft);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr);
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}

.inverse { color: #fff; }
.inverse > p:last-child { color: rgba(255, 255, 255, .7); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: #fff;
  transition: color .35s ease, background-color .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 1px 0 rgba(25, 24, 22, .1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
}

.brand-name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
}

.global-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); }

.global-nav > a:not(.nav-cta) {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
}

.global-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.global-nav > a:not(.nav-cta):hover::after,
.global-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(25, 24, 22, .22);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.site-header.scrolled .nav-cta {
  border-color: var(--ink);
  background: var(--ink);
}

.nav-cta:hover, .nav-cta:focus-visible { color: var(--ink); background: #fff; }

.menu-button { display: none; border: 0; background: transparent; }

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(to right, #000 0%, transparent 58%);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 61%;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 24, 22, 1) 0%, rgba(25, 24, 22, .96) 29%, rgba(25, 24, 22, .64) 52%, rgba(25, 24, 22, .16) 78%),
    linear-gradient(0deg, rgba(25, 24, 22, .5) 0%, transparent 42%);
}

.hero-inner { position: relative; z-index: 2; display: flex; min-height: inherit; height: 100%; align-items: center; }

.hero-copy { width: min(660px, 59%); padding: 118px 0 80px; }

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.34;
  text-shadow: 0 3px 28px rgba(0, 0, 0, .24);
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 2;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 14px 22px 14px 26px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

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

.button-primary { color: #fff; background: var(--bronze); }
.button-primary:hover, .button-primary:focus-visible { background: var(--bronze-dark); }

.button-ghost { color: #fff; border-color: rgba(255, 255, 255, .58); background: rgba(25, 24, 22, .22); }
.button-ghost:hover, .button-ghost:focus-visible { color: var(--ink); border-color: #fff; background: #fff; }

.button-mark {
  position: relative;
  width: 26px;
  height: 10px;
  border-bottom: 1px solid currentColor;
}

.button-mark::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  content: "";
  transform: skewX(45deg);
}

.hero-area { margin: 22px 0 0; color: rgba(255, 255, 255, .64); font-size: 12px; letter-spacing: .1em; }

.scroll-guide {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.scroll-guide i { position: relative; width: 1px; height: 64px; overflow: hidden; background: rgba(255, 255, 255, .28); }
.scroll-guide i::after { position: absolute; inset: -100% 0 auto; height: 100%; background: #fff; content: ""; animation: scrollLine 2.2s ease-in-out infinite; }

@keyframes scrollLine { 0% { transform: translateY(0); } 100% { transform: translateY(200%); } }

.concerns { background: var(--cream); }

.concerns::before {
  position: absolute;
  top: -160px;
  left: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(167, 123, 77, .16);
  border-radius: 50%;
  content: "";
}

.concern-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.concern-card {
  position: relative;
  min-height: 430px;
  padding: 48px 38px 42px;
  border: 1px solid rgba(25, 24, 22, .11);
  background: rgba(255, 253, 248, .7);
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease;
}

.concern-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-6px); }

.concern-card img { width: 88px; height: 88px; margin-bottom: 28px; object-fit: contain; filter: sepia(.15) saturate(.6); }

.card-number { margin: 0 0 14px; color: var(--bronze); font-family: Georgia, serif; font-size: 12px; letter-spacing: .18em; }

.concern-card h3,
.strength-copy h3,
.service-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.55;
}

.concern-card h3 { min-height: 76px; font-size: clamp(21px, 2vw, 27px); }
.concern-card > p:last-child { margin: 22px 0 0; color: var(--ink-soft); font-size: 14px; }

.services { background: var(--paper); }

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

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  min-height: 420px;
  border-bottom: 1px solid var(--line);
}

.service-row.reverse { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.service-row.reverse .service-image { order: 2; }

.service-image { min-height: 420px; overflow: hidden; background: var(--cream-deep); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .65, .25, 1); }
.service-row:hover .service-image img { transform: scale(1.035); }

.service-copy { display: flex; flex-direction: column; justify-content: center; padding: 56px clamp(40px, 6vw, 80px); }
.service-copy .service-number { margin: 0 0 20px; color: var(--bronze); font-family: Georgia, serif; font-size: 13px; letter-spacing: .22em; }
.service-copy h3 { font-size: clamp(26px, 3vw, 38px); }
.service-copy > p:last-child { margin: 24px 0 0; color: var(--ink-soft); }

.strengths { color: #fff; background: #1c1b19; }

.strengths::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(167, 123, 77, .14), transparent 38%);
  content: "";
}

.strengths .container { position: relative; }
.strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.strength-card { border: 1px solid var(--white-line); background: rgba(255, 255, 255, .035); }
.strength-card figure { height: 340px; margin: 0; overflow: hidden; background: #2b2926; }
.strength-card figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: filter .45s ease, transform .7s ease; }
.strength-card:hover figure img { filter: saturate(1); transform: scale(1.035); }
.strength-copy { padding: 36px 32px 40px; }
.strength-copy h3 { font-size: 24px; }
.strength-copy > p:last-child { margin: 20px 0 0; color: rgba(255, 255, 255, .68); font-size: 14px; }

.gallery { padding-bottom: 94px; background: var(--cream); }

.gallery-grid {
  display: grid;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: 1.35fr .9fr .9fr;
  gap: 18px;
}

.gallery-item { position: relative; min-height: 560px; margin: 0; overflow: hidden; background: #d7cdbd; }
.gallery-item-large { min-height: 680px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2, .65, .25, 1); }
.gallery-item:hover img { transform: scale(1.035); }

.gallery-item::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(15, 13, 11, .74));
  content: "";
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  left: 30px;
  color: #fff;
}

.gallery-item figcaption span { display: block; margin-bottom: 8px; color: #ddc7a8; font-family: Georgia, serif; font-size: 11px; letter-spacing: .16em; }
.gallery-item figcaption strong { font-family: var(--serif); font-size: clamp(17px, 1.6vw, 22px); font-weight: 500; letter-spacing: .06em; line-height: 1.55; }
.gallery-note { width: min(1180px, calc(100% - 64px)); margin: 22px auto 0; color: #746e66; font-size: 12px; text-align: right; }

.flow { background: var(--paper); }

.flow-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-card { position: relative; min-height: 350px; padding: 40px 24px 34px; text-align: center; }
.flow-card + .flow-card { border-left: 1px solid var(--line); }
.flow-mark {
  position: relative;
  display: block;
  width: 74px;
  height: 74px;
  margin: 0 auto 28px;
  border: 1px solid rgba(167, 123, 77, .72);
  border-radius: 50%;
}

.flow-mark::before,
.flow-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--bronze);
  content: "";
  transform: translate(-50%, -50%);
}

.flow-mark::before { width: 30px; height: 1px; }
.flow-mark::after { width: 1px; height: 30px; }
.flow-card span { display: block; color: var(--bronze); font-family: Georgia, serif; font-size: 10px; letter-spacing: .18em; }
.flow-card h3 { margin: 12px 0 0; font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.55; }
.flow-card p { margin: 18px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.8; }

.faq { background: #ece5da; }
.faq-layout { display: grid; grid-template-columns: .68fr 1fr; gap: 90px; align-items: start; }
.faq-layout .section-heading { position: sticky; top: 130px; margin-bottom: 0; }
.faq-list { border-top: 1px solid rgba(25, 24, 22, .24); }

.faq-list details { border-bottom: 1px solid rgba(25, 24, 22, .24); }
.faq-list summary { position: relative; display: flex; align-items: flex-start; gap: 20px; padding: 28px 52px 28px 4px; cursor: pointer; font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1.65; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span, .answer > span { flex: 0 0 auto; color: var(--bronze-dark); font-family: Georgia, serif; font-size: 18px; font-weight: 700; }

.faq-list summary::before,
.faq-list summary::after { position: absolute; top: 41px; right: 10px; width: 18px; height: 1px; background: var(--ink); content: ""; transition: transform .25s ease; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }

.answer { display: flex; gap: 20px; padding: 0 44px 28px 4px; color: var(--ink-soft); }
.answer p { margin: 0; }

.contact {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.contact-media, .contact-overlay { position: absolute; inset: 0; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); filter: saturate(.7); }
.contact-overlay { background: linear-gradient(90deg, rgba(17, 16, 14, .94) 0%, rgba(17, 16, 14, .78) 52%, rgba(17, 16, 14, .5)); }
.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact-inner .eyebrow { justify-content: center; }
.contact-inner > p:not(.eyebrow) { margin: 28px auto 0; color: rgba(255, 255, 255, .78); }
.button-large { min-width: min(390px, 100%); margin-top: 34px; min-height: 66px; }
.contact-inner small { display: block; margin-top: 14px; color: rgba(255, 255, 255, .58); }

.site-footer { color: #e8e0d3; background: #11110f; }
.footer-main { display: grid; padding: 72px 0 58px; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.footer-brand { color: #fff; }
.footer-main > div > p { max-width: 320px; margin: 24px 0 0; color: rgba(255, 255, 255, .54); font-family: var(--serif); }
.company-data { margin: 0; }
.company-data > div { display: grid; padding: 18px 0; grid-template-columns: 120px 1fr; gap: 24px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.company-data dt { color: #bda681; font-size: 12px; font-weight: 700; }
.company-data dd { margin: 0; color: rgba(255, 255, 255, .68); font-size: 13px; }
.company-data a { text-decoration: underline; text-underline-offset: 5px; }
.footer-bottom { display: flex; padding: 22px 0 28px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .4); font-size: 11px; }
.footer-bottom a { color: rgba(255, 255, 255, .64); }

.mobile-contact { display: none; }

.reveal { opacity: 1; transform: none; }

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, .7, .25, 1);
}

.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

.stagger .reveal:nth-child(2) { transition-delay: .09s; }
.stagger .reveal:nth-child(3) { transition-delay: .18s; }
.stagger .reveal:nth-child(4) { transition-delay: .27s; }
.stagger .reveal:nth-child(5) { transition-delay: .36s; }

:focus-visible { outline: 2px solid #c7955f; outline-offset: 4px; }

@media (max-width: 1080px) {
  .global-nav { gap: 18px; }
  .global-nav > a:not(.nav-cta) { display: none; }
  .hero-copy { width: min(650px, 68%); }
  .concern-card { padding-right: 28px; padding-left: 28px; }
  .strength-copy { padding-right: 24px; padding-left: 24px; }
  .flow-list { grid-template-columns: repeat(3, 1fr); }
  .flow-card:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .flow-card:nth-child(5) { border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  body { font-size: 15px; line-height: 1.85; }
  .container { width: min(100% - 36px, 1180px); }
  .section { padding: 88px 0; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2, .contact h2 { font-size: clamp(31px, 9vw, 44px); line-height: 1.46; }
  .section-heading > p:last-child { margin-top: 20px; }
  .split-heading { display: block; }
  .split-heading > p { margin-top: 24px; }

  .header-inner { min-height: 72px; }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 20px; }
  .menu-button { position: relative; z-index: 102; display: flex; align-items: center; gap: 12px; padding: 8px 0 8px 12px; cursor: pointer; }
  .menu-button-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; }
  .menu-lines { position: relative; display: block; width: 26px; height: 18px; }
  .menu-lines span { position: absolute; right: 0; width: 26px; height: 1px; background: currentColor; transition: top .25s ease, transform .25s ease; }
  .menu-lines span:first-child { top: 5px; }
  .menu-lines span:last-child { top: 13px; }
  .menu-button[aria-expanded="true"] .menu-lines span:first-child { top: 9px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-lines span:last-child { top: 9px; transform: rotate(-45deg); }

  .global-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 112px 30px 44px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    color: #fff;
    background: rgba(20, 19, 17, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .global-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .global-nav > a:not(.nav-cta) { display: block; padding: 17px 4px; border-bottom: 1px solid rgba(255, 255, 255, .16); font-family: var(--serif); font-size: 20px; }
  .global-nav > a:not(.nav-cta)::after { display: none; }
  .global-nav .nav-cta { margin-top: 28px; padding: 18px 20px; color: #fff; border-color: var(--bronze); background: var(--bronze); text-align: center; }
  .site-header.scrolled .global-nav .nav-cta { border-color: var(--bronze); background: var(--bronze); }
  body.menu-open .site-header { color: #fff; }

  .hero { min-height: 720px; height: 100svh; }
  .hero-media { inset: 0; width: 100%; }
  .hero-media img { object-position: center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(18, 17, 15, .96) 0%, rgba(18, 17, 15, .66) 57%, rgba(18, 17, 15, .36) 100%); }
  .hero::before { display: none; }
  .hero-inner { align-items: flex-end; }
  .hero-copy { width: 100%; padding: 120px 0 88px; }
  .hero h1 { font-size: clamp(46px, 15vw, 64px); letter-spacing: .07em; }
  .hero-lead br { display: none; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-area { margin-top: 16px; line-height: 1.65; }
  .scroll-guide { display: none; }

  .concern-grid, .strength-grid { grid-template-columns: 1fr; }
  .concern-card { min-height: auto; padding: 34px 28px; }
  .concern-card img { width: 72px; height: 72px; }
  .concern-card h3 { min-height: auto; }

  .service-row, .service-row.reverse { display: block; min-height: 0; }
  .service-row.reverse .service-image { order: 0; }
  .service-image { min-height: 0; aspect-ratio: 4 / 3; }
  .service-copy { padding: 34px 6px 42px; }
  .service-copy h3 { font-size: 28px; }

  .strength-card figure { height: 370px; }
  .strength-copy { padding: 30px 26px 34px; }

  .gallery-grid { width: min(100% - 24px, 1440px); grid-template-columns: 1fr; }
  .gallery-item, .gallery-item-large { min-height: 0; aspect-ratio: 4 / 5; }
  .gallery-note { width: min(100% - 36px, 1180px); text-align: left; }

  .flow-list { grid-template-columns: 1fr; border-bottom: 0; }
  .flow-card { display: grid; min-height: 0; padding: 26px 10px; grid-template-columns: 80px 1fr; column-gap: 22px; text-align: left; }
  .flow-card + .flow-card, .flow-card:nth-child(4), .flow-card:nth-child(5) { border-top: 1px solid var(--line); border-left: 0; }
  .flow-mark { width: 62px; height: 62px; margin: 0; grid-row: 1 / 4; }
  .flow-card span { align-self: end; }
  .flow-card h3 { margin-top: 4px; }
  .flow-card p { margin-top: 8px; }

  .faq-layout { display: block; }
  .faq-layout .section-heading { position: static; margin-bottom: 44px; }
  .faq-list summary { padding: 24px 44px 24px 0; gap: 14px; font-size: 16px; }
  .faq-list summary::before, .faq-list summary::after { top: 37px; right: 4px; }
  .answer { padding: 0 8px 24px 0; gap: 14px; }

  .contact { min-height: 650px; }
  .contact-overlay { background: rgba(17, 16, 14, .78); }
  .contact-inner > p:not(.eyebrow) br { display: none; }

  .footer-main { display: block; padding: 54px 0 42px; }
  .company-data { margin-top: 44px; }
  .company-data > div { display: block; }
  .company-data dd { margin-top: 7px; }
  .footer-bottom { padding-bottom: 90px; }

  .mobile-contact {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 15px 18px;
    color: #fff;
    background: var(--bronze);
    box-shadow: 0 10px 34px rgba(25, 24, 22, .24);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
