:root {
  --red: #a90b13;
  --red-dark: #76050b;
  --gold: #c89545;
  --ink: #151515;
  --muted: #646464;
  --paper: #ffffff;
  --soft: #f7f3ee;
  --night: #0c0d0e;
  --line: rgba(20, 20, 20, .14);
  --shadow: 0 24px 60px rgba(14, 14, 14, .16);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 116px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.9;
  letter-spacing: .03em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(22px, 4vw, 58px);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  backdrop-filter: blur(14px);
}
.brand img {
  width: 215px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}
.global-nav {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 4px;
}
.global-nav a {
  position: relative;
  min-width: 86px;
  padding: 23px 10px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .28s ease;
}
.global-nav a:hover::after,
.global-nav a.is-current::after { transform: scaleX(1); }
.global-nav small {
  display: block;
  margin-top: 2px;
  color: #4c4c4c;
  font-size: 8px;
  letter-spacing: .08em;
}
.header-contact,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}
.header-contact,
.btn-red {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #8c060d);
  box-shadow: 0 10px 26px rgba(169, 11, 19, .18);
}
.header-contact.is-current,
.header-contact:hover,
.btn-red:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #bd1018, var(--red-dark));
  box-shadow: 0 18px 34px rgba(169, 11, 19, .28);
}
.btn::after,
.header-contact::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn-outline,
.btn-line {
  color: #9a671f;
  background: rgba(255, 255, 255, .58);
  border-color: rgba(154, 103, 31, .58);
}
.btn-outline:hover,
.btn-line:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}
.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); }
.mail-icon,
.envelope::before {
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  position: relative;
}
.mail-icon::before,
.envelope::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  padding-top: 86px;
  overflow: hidden;
  display: grid;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 86px 0 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.82) 29%, rgba(255,255,255,.16) 57%, rgba(0,0,0,.24) 100%),
    url("../assets/hero.png") center / cover no-repeat;
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 36px;
}
.hero-title {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.55;
  letter-spacing: .15em;
}
.hero-title span { color: var(--red); }
.hero-lead { margin: 0 0 30px; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 56px;
  bottom: 52px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 56px;
  margin: 12px auto 0;
  background: rgba(255,255,255,.75);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.section { padding: 86px 0; }
.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.split {
  display: grid;
  grid-template-columns: .84fr 1.56fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}
.text-block h1,
.text-block h2,
.center-title h2,
.reason-head h2,
.promo h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .08em;
}
.text-block h1,
.text-block h2 { font-size: clamp(31px, 4vw, 44px); }
.section-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .18em;
}
.text-block h1::after,
.text-block h2::after,
.center-title h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin: 18px 0 0;
  background: var(--red);
}
.center-title { text-align: center; }
.center-title h2::after { margin-left: auto; margin-right: auto; }
.image-panel {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-panel img,
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}
.image-panel:hover img,
.work-item:hover img,
.promo:hover { transform: translateY(-4px); }
.image-panel:hover img,
.work-item:hover img { transform: scale(1.06); filter: saturate(1.05) contrast(1.04); }

.reasons {
  padding: 72px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 136, 54, .22), transparent 42%),
    linear-gradient(135deg, #160908, #050505 54%, #17110c);
}
.reason-head { text-align: center; }
.reason-head h2 { font-size: clamp(28px, 4vw, 42px); }
.reason-head span { color: var(--gold); font-size: 1.28em; }
.reason-head p { margin: -4px 0 36px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.reason-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.reason-card {
  padding: 18px clamp(26px, 4vw, 62px);
  text-align: center;
  border-right: 1px solid rgba(200,149,69,.58);
}
.reason-card:last-child { border-right: 0; }
.reason-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin: 0 auto 18px;
  filter: saturate(1.2);
}
.reason-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 21px;
}
.reason-card p { margin: 0; font-size: 13px; }

.works-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}
.works-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.work-item {
  margin: 0;
  aspect-ratio: 1.12;
  overflow: hidden;
  background: #ddd;
}

.flow {
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(247,243,238,.84), rgba(255,255,255,.98)),
    url("../assets/hero.png") center / cover fixed;
}
.flow-list {
  list-style: none;
  padding: 28px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.flow-list li {
  position: relative;
  min-height: 176px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}
.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 52%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: rotate(45deg);
}
.flow-list span { color: var(--gold); font-family: Georgia, serif; font-size: 20px; font-weight: 700; }
.flow-list i {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 48px rgba(108,82,48,.1);
}
.flow-list p { margin: 0; font-size: 12px; font-weight: 700; }
.icon { position: relative; display: grid; place-items: center; }
.clipboard::before,
.tools::before,
.house::before,
.hands::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
}
.clipboard::before { border-radius: 3px; box-shadow: inset 0 8px 0 rgba(200,149,69,.16); }
.tools::before { width: 34px; height: 4px; transform: rotate(45deg); border-radius: 8px; box-shadow: 0 0 0 2px currentColor; }
.house::before { width: 31px; height: 27px; transform: rotate(45deg); border-left: 0; border-bottom: 0; }
.hands::before { width: 38px; height: 22px; transform: skewX(-18deg); border-radius: 5px; }

.cards-band { background: #f8f8f8; }
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promo {
  min-height: 285px;
  padding: 38px;
  transition: transform .28s ease, box-shadow .28s ease;
  box-shadow: 0 16px 44px rgba(0,0,0,.05);
}
.promo h2 { font-size: 30px; }
.recruit {
  color: #fff;
  background:
    linear-gradient(105deg, rgba(139, 4, 11, .95) 0 48%, rgba(139, 4, 11, .58) 48% 53%, rgba(0,0,0,.06) 53%),
    url("../assets/recruit-photo.png") 66% center / cover;
}
.news { background: #fff; }
.news dl,
.news div { margin: 0; }
.news div { display: grid; grid-template-columns: 92px 1fr; gap: 10px; font-size: 13px; }
.news dt { font-weight: 700; }
.news dd { margin: 0; }
.contact-card {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5,8,11,.88), rgba(5,8,11,.44)),
    url("../assets/hero.png") center / cover;
}

.contact-section { background: linear-gradient(180deg, #fff, #f7f3ee); }
.contact-section .text-block h2 {
  font-size: clamp(30px, 3vw, 38px);
  letter-spacing: .04em;
}
.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  align-content: start;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
}
.contact-form label span {
  display: inline-block;
  width: fit-content;
  margin-left: 8px;
  padding: 0 7px;
  color: #fff;
  background: var(--red);
  font-size: 10px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  height: 54px;
  border: 1px solid #ded7cf;
  background: #fbfaf8;
  padding: 13px 14px;
  outline: none;
  border-radius: 2px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea { height: auto; min-height: 168px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200,149,69,.14);
}
.full { grid-column: 1 / -1; }
.privacy {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
}
.privacy input { width: 18px; height: 18px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-message {
  padding: 14px 16px;
  font-weight: 700;
  border-left: 4px solid;
}
.form-message.success { background: #f0fbf4; border-color: #218b4f; }
.form-message.error { background: #fff2f2; border-color: var(--red); }

.site-footer {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9,11,13,.96), rgba(15,19,22,.98)),
    url("../assets/hero.png") center / cover;
}
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 36px;
  align-items: start;
}
.footer-brand img {
  width: 230px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.32));
}
.footer-brand p { margin: 22px 0 0; color: rgba(255,255,255,.78); font-size: 13px; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 10px 28px;
  padding: 6px 38px;
  border-left: 1px solid rgba(255,255,255,.22);
  border-right: 1px solid rgba(255,255,255,.22);
}
.footer-nav a { color: rgba(255,255,255,.82); font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.copyright {
  margin: 0 auto;
  width: min(1180px, calc(100% - 48px));
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.045) translate3d(-1.2%, 0, 0); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(.35); transform-origin: top; opacity: .45; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 980px) {
  [id] { scroll-margin-top: 98px; }
  .site-header {
    height: 74px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .brand img { width: 188px; height: 48px; }
  .header-contact { display: none; }
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    padding: 10px;
  }
  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .global-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 24px;
    color: #fff;
    background:
      radial-gradient(circle at 88% 0%, rgba(200,149,69,.26), transparent 42%),
      linear-gradient(135deg, rgba(10, 8, 8, .99), rgba(30, 16, 13, .99));
    border-top: 1px solid rgba(200,149,69,.48);
    box-shadow: 0 24px 54px rgba(0,0,0,.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(-100% - 20px));
    transition: transform .32s ease, opacity .24s ease, visibility 0s linear .32s;
  }
  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform .32s ease, opacity .24s ease;
  }
  .global-nav a {
    min-width: 0;
    padding: 15px 8px;
    text-align: left;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .global-nav a::after {
    left: 0;
    right: auto;
    bottom: 8px;
    width: 42px;
    background: var(--gold);
  }
  .global-nav small {
    display: inline;
    margin-left: 10px;
    color: rgba(228,184,100,.86);
  }
  .hero { min-height: 670px; padding-top: 74px; }
  .hero-bg { inset: 74px 0 0; background-position: 58% center; }
  .hero-copy { width: min(100% - 42px, 760px); }
  .scroll-cue { display: none; }
  .split,
  .works-layout,
  .contact-layout,
  .footer-inner { grid-template-columns: 1fr; }
  .works-gallery,
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { gap: 0; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .flow-list li:not(:last-child)::after { display: none; }
}

@media (max-width: 640px) {
  body { line-height: 1.8; }
  .site-header { padding: 0 18px; }
  .brand img { width: 174px; height: 46px; }
  .hero {
    min-height: 625px;
    align-items: end;
  }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.96) 68%, rgba(255,255,255,1)),
      url("../assets/hero.png") 64% center / cover no-repeat;
  }
  .hero-copy { padding: 0 0 58px; }
  .hero-title { font-size: 38px; letter-spacing: .08em; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 62px 0; }
  .section-inner { width: min(100% - 34px, 560px); }
  .works-gallery,
  .promo-grid,
  .reason-grid,
  .contact-form,
  .flow-list { grid-template-columns: 1fr; }
  .reason-card {
    border-right: 0;
    border-bottom: 1px solid rgba(200,149,69,.4);
    padding: 28px 18px;
  }
  .reason-card:last-child { border-bottom: 0; }
  .promo { padding: 28px; min-height: 245px; }
  .news div { grid-template-columns: 1fr; gap: 0; margin-bottom: 10px; }
  .footer-nav {
    grid-template-columns: 1fr;
    padding: 24px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
}

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


.page-hero {
  margin-top: 0;
  padding: 180px 0 86px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, .82), rgba(7, 9, 12, .36)),
    url("../assets/hero.png") center / cover no-repeat;
}
.page-hero .section-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.25;
  letter-spacing: .08em;
}
.page-hero p:not(.section-label) {
  margin: 0;
  font-weight: 700;
}
.contact-cta {
  text-align: center;
  background: linear-gradient(180deg, #fff, #f7f3ee);
}
.contact-cta-inner {
  padding: clamp(38px, 6vw, 70px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.82)),
    url("../assets/hero.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.contact-cta h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: .08em;
}
.contact-cta p:not(.section-label) {
  margin: 0 auto 24px;
  max-width: 680px;
}
.contact-page .contact-layout {
  align-items: start;
}
.contact-page-hero .section-label {
  color: #e4b864;
}
@media (max-width: 640px) {
  .page-hero { margin-top: 0; padding: 150px 0 62px; }
  .contact-cta-inner { padding: 34px 22px; }
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.complete-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.contact-layout.is-complete {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.contact-layout.is-complete .text-block {
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-form.is-hidden {
  display: none;
}

.contact-form select {
  line-height: 1.2;
  appearance: auto;
}


/* Final SP/header overlap fixes */
.page-hero {
  padding-top: 190px !important;
}
@media (max-width: 980px) {
  .site-header {
    z-index: 1000;
  }
  .page-hero {
    padding-top: 156px !important;
  }
  .global-nav:not(.is-open) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: translateY(-120%) !important;
    box-shadow: none !important;
  }
}
@media (max-width: 640px) {
  .page-hero {
    padding-top: 148px !important;
    padding-bottom: 58px !important;
  }
  .page-hero h1 {
    margin-top: 0 !important;
  }
  .global-nav {
    top: 74px !important;
  }
  .global-nav:not(.is-open) {
    height: 0 !important;
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-top: 0 !important;
  }
}


/* Contact and privacy refinements */
.contact-page .contact-layout.is-form-only {
  display: block;
  max-width: 760px;
}
.contact-form-wide {
  width: 100%;
  margin: 0 auto;
}
.contact-form label {
  min-width: 0;
}
.contact-form input,
.contact-form select {
  display: block;
  width: 100% !important;
  max-width: none !important;
  min-height: 54px;
  line-height: 1.4;
}
.contact-form select {
  padding-right: 40px;
}
.privacy {
  align-items: flex-start;
  line-height: 1.7;
}
.privacy a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.policy-content {
  max-width: 880px;
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
  box-shadow: var(--shadow);
}
.policy-content h2 {
  margin: 34px 0 10px;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .04em;
}
.policy-content h2:first-of-type {
  margin-top: 24px;
}
.policy-content p {
  margin: 0 0 14px;
}
@media (max-width: 640px) {
  .contact-page .contact-layout.is-form-only {
    max-width: none;
  }
  .contact-form-wide {
    padding: 26px 20px;
  }
}

.contact-form .privacy .privacy-text {
  display: inline;
  width: auto;
  margin-left: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}


/* Final form column and SP menu alignment fixes */
.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 28px !important;
}
.contact-form label {
  width: 100% !important;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  box-sizing: border-box !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}
@media (min-width: 981px) {
  .contact-form-wide {
    max-width: 760px;
  }
}
@media (max-width: 980px) {
  .global-nav {
    padding-left: clamp(28px, 8vw, 56px) !important;
    padding-right: clamp(28px, 8vw, 56px) !important;
  }
  .global-nav a {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr !important;
  }
  .global-nav {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}


/* Final contact form row alignment */
.contact-form label:not(.privacy) {
  grid-template-rows: 46px auto;
  gap: 8px !important;
}
.contact-form label:not(.privacy) > span {
  align-self: end;
}
.contact-form label:not(.privacy) > input,
.contact-form label:not(.privacy) > select,
.contact-form label:not(.privacy) > textarea {
  align-self: start;
}
.contact-form .full:not(.privacy) {
  grid-template-rows: auto auto;
}
.contact-form .full:not(.privacy) > span {
  align-self: start;
}
.contact-form .privacy {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  justify-content: start;
}
.contact-form .privacy input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 3px 0 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.contact-form .privacy .privacy-text {
  line-height: 1.6;
}
@media (max-width: 640px) {
  .contact-form label:not(.privacy) {
    grid-template-rows: auto auto;
  }
}


/* Required badge inline with field title */
.contact-form label:not(.privacy) {
  grid-template-rows: auto auto !important;
  gap: 8px !important;
}
.contact-form .field-title {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ink) !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 700;
  line-height: 1.5;
}
.contact-form .field-title em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 18px;
  padding: 0 6px;
  color: #fff;
  background: var(--red);
  font-style: normal;
  font-size: 10px;
  line-height: 1;
}
.contact-form label:not(.privacy) > input,
.contact-form label:not(.privacy) > select,
.contact-form label:not(.privacy) > textarea {
  align-self: stretch !important;
}


/* SP drawer and company page */
@media (max-width: 980px) {
  .global-nav {
    left: auto !important;
    right: 0 !important;
    width: min(56vw, 360px) !important;
    min-width: 230px;
    padding-left: 26px !important;
    padding-right: 26px !important;
    transform: translateX(110%) !important;
  }
  .global-nav.is-open {
    transform: translateX(0) !important;
  }
  .global-nav:not(.is-open) {
    transform: translateX(110%) !important;
  }
  .global-nav a {
    max-width: none !important;
    margin: 0 !important;
  }
}
@media (max-width: 640px) {
  .global-nav {
    width: 50vw !important;
    min-width: 205px;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}
.company-message-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.representative {
  margin-top: 24px !important;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}
.representative span {
  margin-left: 12px;
  font-size: 26px;
}
.company-table {
  max-width: 980px;
  margin: 34px auto 0;
  background: #fff;
  box-shadow: var(--shadow);
}
.company-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #e8e0d7;
}
.company-table div:last-child {
  border-bottom: 0;
}
.company-table dt,
.company-table dd {
  margin: 0;
  padding: 22px 26px;
}
.company-table dt {
  color: #7b561d;
  font-weight: 800;
  background: #faf6ef;
}
.company-table dd {
  background: #fff;
}
.company-policy-grid .promo {
  min-height: 245px;
}
@media (max-width: 980px) {
  .company-message-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .company-table div {
    grid-template-columns: 1fr;
  }
  .company-table dt,
  .company-table dd {
    padding: 16px 18px;
  }
}


/* Footer simplification and PC header balance */
@media (min-width: 981px) {
  .site-header {
    height: 104px;
    grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
    justify-content: center;
    gap: 42px;
    padding-left: clamp(34px, 5vw, 74px);
    padding-right: clamp(34px, 5vw, 74px);
  }
  .brand {
    justify-self: start;
  }
  .brand img {
    width: 250px;
    height: 64px;
  }
  .global-nav {
    justify-content: center;
    gap: 12px;
  }
  .global-nav a {
    min-width: 98px;
    padding-top: 30px;
    padding-bottom: 24px;
    font-size: 14px;
  }
  .header-contact {
    justify-self: end;
    min-height: 60px;
    padding-left: 34px;
    padding-right: 34px;
  }
  .hero {
    padding-top: 104px;
  }
  .hero-bg {
    inset: 104px 0 0;
  }
}
.footer-inner {
  grid-template-columns: auto 1fr;
  align-items: center;
}
.footer-brand p {
  display: none;
}
.footer-brand img {
  margin: 0;
}


/* PC header centered container: logo left, nav/contact right */
@media (min-width: 981px) {
  .site-header {
    grid-template-columns: auto auto auto !important;
    justify-content: center !important;
    column-gap: clamp(26px, 4vw, 58px) !important;
    padding-left: max(34px, calc((100vw - 1180px) / 2)) !important;
    padding-right: max(34px, calc((100vw - 1180px) / 2)) !important;
  }
  .brand {
    justify-self: start !important;
    margin-right: clamp(28px, 5vw, 76px) !important;
  }
  .global-nav {
    justify-self: end !important;
    justify-content: flex-end !important;
  }
  .header-contact {
    justify-self: end !important;
  }
}


/* PC hero height and visual framing */
@media (min-width: 981px) {
  .hero {
    min-height: 820px !important;
    height: min(900px, calc(100vh + 120px));
    padding-top: 104px !important;
    align-items: center;
  }
  .hero-bg {
    inset: 104px 0 0 !important;
    background:
      linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.90) 30%, rgba(255,255,255,.42) 48%, rgba(255,255,255,.06) 64%, rgba(0,0,0,.18) 100%),
      url("../assets/hero.png") center 46% / cover no-repeat !important;
  }
  .hero-copy {
    width: min(1180px, calc(100% - 56px));
    padding-top: 0 !important;
    transform: translateY(-12px);
  }
  .hero-title {
    max-width: 760px;
    font-size: clamp(58px, 5.7vw, 82px);
    line-height: 1.45;
    letter-spacing: .12em;
    margin-bottom: 26px;
  }
  .hero-lead {
    max-width: 560px;
    margin-bottom: 28px;
  }
  .scroll-cue {
    right: auto !important;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    color: rgba(255,255,255,.92);
  }
}
@media (min-width: 981px) and (max-height: 820px) {
  .hero {
    min-height: 760px !important;
    height: 760px;
  }
  .hero-title {
    font-size: clamp(52px, 5.2vw, 74px);
    line-height: 1.38;
  }
  .hero-copy {
    transform: translateY(-4px);
  }
}

/* Flow image replacement */
.flow-list li {
  min-height: 188px;
  gap: 10px;
}

.flow-list li:not(:last-child)::after {
  top: 54%;
}

.flow-list span {
  position: absolute;
  top: 2px;
  left: 50%;
  z-index: 2;
  color: #9a6619;
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .72), 0 8px 20px rgba(154, 102, 25, .18);
  transform: translateX(-50%);
}

.flow-icon {
  width: 128px;
  height: 128px;
  margin: 24px auto 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 48px rgba(108, 82, 48, .13);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.flow-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .flow-list li {
    min-height: 174px;
  }

  .flow-list span {
    top: 0;
  }

  .flow-icon {
    width: 118px;
    height: 118px;
  }
}

/* Readability and wide screen refinement */
body {
  font-size: 16px;
}

p,
.text-block,
.contact-lead,
.news dd,
.footer-nav a {
  font-size: 15px;
}

.section-label,
.reason-head p,
.center-title p {
  font-size: 13px;
}

.global-nav a {
  font-size: 14px;
}

.global-nav small {
  font-size: 9px;
}

.header-contact,
.btn {
  font-size: 15px;
}

.hero-lead {
  font-size: 16px;
}

.text-block h1,
.text-block h2 {
  font-size: clamp(34px, 3.4vw, 50px);
}

.reason-head h2,
.center-title h2 {
  font-size: clamp(32px, 3.2vw, 48px);
}

.reason-card h3 {
  font-size: 23px;
}

.reason-card p,
.news div,
.flow-list p {
  font-size: 14px;
}

.promo h2 {
  font-size: 32px;
}

.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 15px;
}

@media (min-width: 981px) {
  .section-inner {
    width: min(1320px, calc(100% - 72px));
  }

  .site-header {
    padding-left: max(36px, calc((100vw - 1320px) / 2)) !important;
    padding-right: max(36px, calc((100vw - 1320px) / 2)) !important;
  }

  .hero-copy {
    width: min(1320px, calc(100% - 72px));
  }

  .split {
    grid-template-columns: .92fr 1.58fr;
    gap: clamp(48px, 6vw, 112px);
  }

  .works-layout {
    grid-template-columns: 270px 1fr;
    gap: 38px;
  }

  .works-gallery {
    gap: 16px;
  }

  .reason-grid {
    width: min(1210px, 100%);
  }

  .promo-grid {
    gap: 30px;
  }

  .promo {
    min-height: 310px;
    padding: 42px;
  }

  .flow-list {
    gap: 30px;
  }

  .flow-icon {
    width: 144px;
    height: 144px;
  }

  .flow-list li {
    min-height: 206px;
  }

  .flow-list span {
    font-size: 24px;
  }
}

@media (min-width: 1440px) {
  .section-inner {
    width: min(1440px, calc(100% - 96px));
  }

  .site-header {
    padding-left: max(48px, calc((100vw - 1440px) / 2)) !important;
    padding-right: max(48px, calc((100vw - 1440px) / 2)) !important;
    column-gap: clamp(34px, 4vw, 70px) !important;
  }

  .hero-copy {
    width: min(1440px, calc(100% - 96px));
  }

  .hero-title {
    max-width: 840px;
    font-size: clamp(66px, 4.9vw, 90px);
  }

  .hero-lead {
    max-width: 640px;
    font-size: 17px;
  }

  .works-layout {
    grid-template-columns: 300px 1fr;
    gap: 44px;
  }

  .works-gallery {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero-lead,
  p,
  .text-block,
  .contact-lead {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
  }
}

/* Hero/header alignment refinement */
@media (min-width: 981px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    justify-content: stretch !important;
    padding-left: clamp(56px, 5.6vw, 96px) !important;
    padding-right: clamp(56px, 5.6vw, 96px) !important;
    column-gap: clamp(28px, 3.4vw, 58px) !important;
  }

  .brand {
    justify-self: start !important;
    margin-right: 0 !important;
  }

  .global-nav {
    justify-self: end !important;
    justify-content: flex-end !important;
  }

  .header-contact {
    justify-self: end !important;
  }

  .hero-copy {
    width: auto !important;
    max-width: none !important;
    margin-left: clamp(56px, 5.6vw, 96px) !important;
    margin-right: clamp(56px, 5.6vw, 96px) !important;
  }

  .hero-title {
    max-width: 1040px !important;
    font-size: clamp(58px, 5.1vw, 82px) !important;
    line-height: 1.42;
    white-space: normal;
  }

  .scroll-cue {
    left: 50% !important;
    right: auto !important;
    bottom: 88px !important;
    writing-mode: horizontal-tb !important;
    transform: translateX(-50%) !important;
    color: rgba(255, 255, 255, .95);
    letter-spacing: .22em;
  }

  .scroll-cue::after {
    width: 58px;
    height: 1px;
    margin: 8px auto 0;
  }
}

@media (min-width: 1440px) {
  .hero-title {
    max-width: 1120px !important;
    font-size: clamp(64px, 4.6vw, 88px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero-title {
    max-width: 900px !important;
    font-size: clamp(52px, 5vw, 64px) !important;
  }
}

/* Header hero centered balance */
.global-nav small {
  font-size: 10px;
}

.section-label,
.reason-head p,
.center-title p,
.flow-list p {
  font-size: 14px;
}

.scroll-cue,
.footer-copy,
.contact-note,
.form-note,
.privacy-check,
.page-hero .section-label,
.contact-page-hero .section-label {
  font-size: 13px;
}

@media (min-width: 1200px) {
  .site-header {
    padding-left: clamp(92px, 8vw, 144px) !important;
    padding-right: clamp(56px, 5.6vw, 96px) !important;
  }

  .hero-copy {
    margin-left: clamp(92px, 8vw, 144px) !important;
    margin-right: clamp(56px, 5.6vw, 96px) !important;
  }
}

@media (min-width: 981px) {
  .scroll-cue {
    bottom: 82px !important;
    writing-mode: horizontal-tb !important;
  }

  .scroll-cue::after {
    width: 1px !important;
    height: 48px !important;
    margin: 8px auto 0 !important;
  }
}

/* SP footer and hero final balance */
@media (min-width: 1200px) {
  .site-header {
    padding-left: clamp(124px, 9.6vw, 184px) !important;
  }

  .hero-copy {
    margin-left: clamp(124px, 9.6vw, 184px) !important;
  }
}

@media (min-width: 981px) {
  .scroll-cue {
    bottom: 0 !important;
  }

  .scroll-cue::after {
    width: 1px !important;
    height: 64px !important;
    margin: 8px auto 0 !important;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    width: min(100% - 44px, 420px) !important;
    display: block !important;
    grid-template-columns: none !important;
    padding: 42px 0 30px !important;
    text-align: center;
  }

  .footer-brand img {
    width: 230px;
    height: auto;
    margin: 0 auto 26px !important;
    object-position: center;
  }

  .footer-nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 18px !important;
    width: 100% !important;
    padding: 24px 0 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .footer-nav a {
    display: block;
    width: 100%;
    font-size: 14px !important;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
  }

  .footer-nav a[href="privacy"] {
    grid-column: 1 / -1;
  }

  .copyright {
    width: min(100% - 44px, 420px) !important;
    font-size: 12px !important;
  }
}

/* Hero text and SP image update */
@media (min-width: 1200px) {
  .hero-copy {
    margin-left: clamp(150px, 11vw, 220px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .hero-copy {
    margin-left: clamp(100px, 9vw, 132px) !important;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 680px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.36) 34%, rgba(255,255,255,.88) 70%, rgba(255,255,255,1) 100%),
      url("../assets/hero_sp.png") center 55% / cover no-repeat !important;
  }

  .hero-copy {
    width: min(100% - 44px, 560px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-bottom: 66px !important;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 44px) !important;
    line-height: 1.5;
  }
}

/* Tablet header collision fix */
@media (min-width: 981px) and (max-width: 1170px) {
  .site-header {
    padding-left: 34px !important;
    padding-right: 34px !important;
    column-gap: 18px !important;
  }

  .brand img {
    width: 210px !important;
    height: 56px !important;
  }

  .global-nav {
    gap: 4px !important;
  }

  .global-nav a {
    min-width: 78px !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    font-size: 13px !important;
  }

  .global-nav small {
    font-size: 8px !important;
  }

  .header-contact {
    min-height: 54px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    font-size: 14px !important;
  }
}

/* Responsive typography final tuning */
@media (min-width: 981px) {
  body {
    font-size: 17px;
  }

  p,
  .text-block,
  .contact-lead,
  .news dd,
  .footer-nav a,
  .reason-card p,
  .news div,
  .flow-list p {
    font-size: 16px;
  }

  .global-nav a {
    font-size: 15px;
  }

  .global-nav small {
    font-size: 10px;
  }

  .header-contact,
  .btn {
    font-size: 16px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .text-block h1,
  .text-block h2,
  .center-title h2,
  .reason-head h2 {
    font-size: clamp(38px, 3.3vw, 54px);
  }

  .reason-card h3 {
    font-size: 25px;
  }

  .promo h2 {
    font-size: 35px;
  }

  .section-label,
  .reason-head p,
  .center-title p,
  .scroll-cue,
  .page-hero .section-label,
  .contact-page-hero .section-label {
    font-size: 14px;
  }

  .contact-form label,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form .field-title em,
  .form-note,
  .contact-note,
  .copyright {
    font-size: 13px !important;
  }
}

@media (min-width: 981px) and (max-width: 1170px) {
  .global-nav a {
    font-size: 13px !important;
  }

  .global-nav small {
    font-size: 8px !important;
  }

  .header-contact {
    font-size: 14px !important;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px !important;
    line-height: 1.75;
  }

  p,
  .text-block,
  .contact-lead,
  .reason-card p,
  .news div,
  .flow-list p,
  .footer-nav a {
    font-size: 13px !important;
  }

  .hero-title {
    font-size: clamp(31px, 8.7vw, 38px) !important;
    line-height: 1.48;
  }

  .hero-lead {
    font-size: 13px !important;
  }

  .btn {
    font-size: 13px !important;
  }

  .text-block h1,
  .text-block h2,
  .center-title h2,
  .reason-head h2 {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .reason-card h3 {
    font-size: 20px !important;
  }

  .promo h2 {
    font-size: 26px !important;
  }

  .section-label,
  .reason-head p,
  .center-title p,
  .page-hero .section-label,
  .contact-page-hero .section-label {
    font-size: 11px !important;
  }

  .flow-list span {
    font-size: 20px !important;
  }

  .contact-form label,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form .field-title {
    font-size: 13px !important;
  }

  .contact-form .field-title em,
  .form-note,
  .contact-note,
  .privacy-text,
  .copyright {
    font-size: 11px !important;
  }

  .footer-nav a {
    font-size: 13px !important;
  }
}


/* Footer menu color match */
.site-footer {
  background:
    radial-gradient(circle at 82% 0%, rgba(200,149,69,.22), transparent 42%),
    linear-gradient(135deg, rgba(10, 8, 8, .99), rgba(30, 16, 13, .99)) !important;
}

.footer-inner {
  border-top: 1px solid rgba(200,149,69,.22);
}

.footer-nav {
  border-left-color: rgba(200,149,69,.22) !important;
  border-right-color: rgba(200,149,69,.22) !important;
}

.footer-nav a {
  color: rgba(255,255,255,.9) !important;
  font-weight: 700;
}

.footer-nav a::after {
  background: rgba(200,149,69,.55);
}

.copyright {
  border-top-color: rgba(200,149,69,.2) !important;
  color: rgba(255,255,255,.66) !important;
}

@media (max-width: 640px) {
  .footer-nav {
    border-top-color: rgba(200,149,69,.24) !important;
  }
}

/* Archive pages */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.archive-section {
  background: linear-gradient(180deg, #fff, #f8f5f0);
}

.archive-lead {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 6px 30px;
  margin-bottom: 38px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(20, 20, 20, .14);
}

.archive-lead .section-label {
  grid-column: 1 / -1;
}

.archive-lead p {
  margin: 0;
}

.archive-lead p:nth-child(2) {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--red);
  font-family: var(--serif);
}

.archive-lead strong {
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 400;
  line-height: .9;
}

.archive-lead span {
  color: #191919;
  font-size: 18px;
}

.archive-lead p:last-child {
  max-width: 650px;
  justify-self: end;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

@media (min-width: 1320px) {
  .archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archive-card div {
    padding: 26px;
  }

  .archive-card h2 {
    font-size: 23px;
  }
}

.archive-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 14, 10, .08);
  overflow: hidden;
}

.archive-card figure {
  margin: 0;
  aspect-ratio: 1.44;
  overflow: hidden;
}

.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}

.archive-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.04);
}

.archive-card div {
  padding: 30px;
}

.archive-card h2,
.news-list-item h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
}

.archive-card p,
.news-list-item p {
  margin: 0;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-list-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(20,20,20,.14);
}

.news-list-item:first-child {
  border-top: 1px solid rgba(20,20,20,.14);
}

.news-list-item time {
  color: #9a6619;
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: .08em;
}

.under-construction-section {
  background: #fff;
}

@media (max-width: 640px) {
  .cta-actions,
  .archive-grid,
  .news-list-item {
    grid-template-columns: 1fr;
  }

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

  .archive-lead {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 26px;
  }

  .archive-lead .section-label {
    grid-column: auto;
  }

  .archive-lead p:last-child {
    justify-self: start;
  }

  .archive-lead strong {
    font-size: 52px;
  }

  .archive-grid {
    gap: 20px;
  }

  .archive-card div {
    padding: 24px;
  }

  .archive-card h2,
  .news-list-item h2 {
    font-size: 22px !important;
  }

  .news-list-item {
    gap: 8px;
    padding: 24px 0;
  }
}
/* Text wrap refinements */
.text-nowrap {
  white-space: nowrap;
}

.contact-cta p:not(.section-label) {
  max-width: 920px !important;
}

.page-hero p:not(.section-label),
.contact-cta p:not(.section-label),
.archive-card p,
.news-list-item p,
.text-block p {
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

@media (min-width: 981px) {
  .page-hero p:not(.section-label) {
    max-width: 920px;
  }

  .text-block p {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .text-nowrap {
    white-space: normal;
  }

  .contact-cta p:not(.section-label) {
    max-width: none !important;
  }
}
/* FAQ page */
.faq-section {
  background: linear-gradient(180deg, #fff, #f8f5f0);
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.faq-item {
  padding: 28px 32px;
  background: #fff;
  border-left: 3px solid var(--gold);
  box-shadow: 0 16px 46px rgba(18, 14, 10, .07);
}

.faq-item h2 {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}

.faq-item h2 span {
  color: #9a6619;
  font-family: Georgia, serif;
  font-size: 1.25em;
  line-height: 1;
}

.faq-item p {
  margin: 0;
  line-break: strict;
  text-wrap: pretty;
}

@media (max-width: 640px) {
  .faq-list {
    gap: 14px;
  }

  .faq-item {
    padding: 22px 20px;
  }

  .faq-item h2 {
    gap: 10px;
    font-size: 19px !important;
  }
}
/* Photo-only works gallery and larger desktop typography */
.archive-photo-grid .archive-card {
  display: block;
  margin: 0;
  aspect-ratio: 1.38;
  background: #e9e6e1;
  box-shadow: 0 18px 50px rgba(18, 14, 10, .1);
}

.archive-photo-grid .archive-card figure {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

@media (min-width: 981px) {
  body {
    font-size: 18px;
  }

  p,
  .text-block,
  .contact-lead,
  .news dd,
  .footer-nav a,
  .reason-card p,
  .news div,
  .flow-list p {
    font-size: 17px;
  }

  .global-nav a {
    font-size: 16px;
  }

  .global-nav small {
    font-size: 11px;
  }

  .header-contact,
  .btn {
    font-size: 17px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .text-block h1,
  .text-block h2,
  .center-title h2,
  .reason-head h2 {
    font-size: clamp(42px, 3.5vw, 58px);
  }

  .page-hero h1 {
    font-size: clamp(48px, 6vw, 76px);
  }

  .page-hero p:not(.section-label),
  .contact-cta p:not(.section-label) {
    font-size: 18px;
  }

  .reason-card h3 {
    font-size: 27px;
  }

  .promo h2 {
    font-size: 38px;
  }

  .section-label,
  .reason-head p,
  .center-title p,
  .scroll-cue,
  .page-hero .section-label,
  .contact-page-hero .section-label {
    font-size: 15px;
  }

  .contact-form label,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 17px;
  }
}

@media (min-width: 981px) and (max-width: 1170px) {
  .global-nav a {
    font-size: 14px !important;
  }

  .global-nav small {
    font-size: 9px !important;
  }

  .header-contact {
    font-size: 15px !important;
  }
}

@media (max-width: 640px) {
  .archive-photo-grid .archive-card {
    aspect-ratio: 1.3;
  }
}
/* Generous desktop typography and controlled wrapping */
@media (min-width: 981px) {
  body {
    font-size: 20px;
    line-height: 1.85;
  }

  p,
  .text-block,
  .contact-lead,
  .news dd,
  .footer-nav a,
  .reason-card p,
  .news div,
  .flow-list p,
  .company-table dt,
  .company-table dd,
  .policy-content p,
  .faq-item p {
    font-size: 18px;
  }

  .hero-lead {
    font-size: 20px;
    line-height: 1.85;
    white-space: nowrap;
  }

  .header-contact,
  .btn {
    min-height: 58px;
    padding-left: 34px;
    padding-right: 34px;
    font-size: 18px;
    white-space: nowrap;
  }

  .global-nav a {
    font-size: 17px;
    white-space: nowrap;
  }

  .global-nav small {
    font-size: 11px;
  }

  .text-block h1,
  .text-block h2,
  .center-title h2,
  .reason-head h2 {
    font-size: clamp(46px, 3.8vw, 64px);
  }

  .page-hero h1 {
    font-size: clamp(56px, 6.2vw, 84px);
  }

  .contact-cta h2 {
    font-size: clamp(44px, 4.5vw, 64px);
  }

  .promo h2 {
    font-size: 42px;
  }

  .reason-card h3 {
    font-size: 30px;
  }

  .archive-card h2,
  .news-list-item h2,
  .faq-item h2,
  .policy-content h2 {
    font-size: 30px;
  }

  .page-hero p:not(.section-label),
  .contact-cta p:not(.section-label) {
    font-size: 19px;
  }

  .section-label,
  .reason-head p,
  .center-title p,
  .scroll-cue,
  .page-hero .section-label,
  .contact-page-hero .section-label {
    font-size: 16px;
    white-space: nowrap;
  }

  .contact-form label,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form .field-title {
    font-size: 18px !important;
  }

  .contact-form .field-title em {
    font-size: 12px;
  }

  .form-note,
  .contact-note,
  .contact-form .privacy .privacy-text,
  .copyright {
    font-size: 14px !important;
  }

  .text-block h1,
  .text-block h2,
  .center-title h2,
  .reason-head h2,
  .reason-card h3,
  .promo h2,
  .page-hero h1,
  .contact-cta h2,
  .policy-content h2,
  .archive-card h2,
  .news-list-item h2 {
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .reason-card h3,
  .promo h2,
  .flow-list p,
  .text-block h1,
  .text-block h2,
  .center-title h2 {
    white-space: nowrap;
  }

  .page-hero p:not(.section-label),
  .contact-cta p:not(.section-label),
  .text-block p,
  .reason-card p,
  .promo p,
  .news-list-item p,
  .faq-item p,
  .policy-content p {
    line-break: strict;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: pretty;
  }
}

@media (min-width: 981px) and (max-width: 1170px) {
  .global-nav a {
    font-size: 14px !important;
  }

  .global-nav small {
    font-size: 9px !important;
  }

  .header-contact {
    min-height: 54px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 15px !important;
  }
}