:root {
  --navy: #0b2f4b;
  --navy-deep: #062238;
  --blue: #0964ad;
  --blue-bright: #118dcc;
  --blue-soft: #eaf5fb;
  --green: #4e7b62;
  --green-soft: #edf5ee;
  --yellow: #f7c53b;
  --ink: #172a38;
  --muted: #61717d;
  --line: #dce5e9;
  --cloud: #f4f7f8;
  --warm: #f7f5ef;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 18px 55px rgb(12 47 75 / 10%);
}

/* Keep the three desktop service-card titles on one readable line. */
@media (min-width: 761px) {
  .service-grid-three .service-card .service-content {
    container-type: inline-size;
  }

  .service-grid-three .service-card .service-content h3 {
    font-size: 17px;
    font-size: clamp(17px, 6.15cqi, 25px);
    letter-spacing: -.02em;
    white-space: nowrap;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-noto-sans-jp), "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  border-radius: 0;
}

:focus-visible {
  outline: 3px solid #004a7c;
  outline-offset: 3px;
}

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

.header-social-mobile,
.hero-cta-mobile-label,
.mobile-title-break,
.hero-title-mobile-layout,
.service-title-mobile {
  display: none;
}

.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-deep);
}

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

.utility-bar {
  color: #e6f4fb;
  background: var(--navy-deep);
  font-size: 12px;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(8 60 95 / 9%);
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 13px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
}

.brand span {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  color: var(--navy);
  font-size: 18px;
  letter-spacing: .07em;
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav > a:not(.nav-phone) {
  position: relative;
  padding: 31px 0 28px;
  color: #314957;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.nav-phone)::after {
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: left .2s, right .2s;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  right: 0;
  left: 0;
}

.main-nav > a.active {
  color: var(--blue);
}

.nav-phone {
  display: grid;
  align-self: stretch;
  align-content: center;
  min-width: 190px;
  margin-right: 0;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #087fc5);
  text-align: center;
}

.nav-phone small {
  font-size: 10px;
  letter-spacing: .08em;
}

.nav-phone strong {
  font-size: 18px;
  letter-spacing: .05em;
}

.menu-toggle {
  display: none;
}

.section {
  padding: 110px 0;
}

/* Content is visible by default. JavaScript adds the pending state only when
   IntersectionObserver is available, so SSR and no-script visits stay usable. */
[data-scroll-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 2480ms ease-out var(--reveal-delay, 0ms),
    transform 2480ms cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
}

[data-scroll-reveal="pending"] {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

[data-scroll-reveal="pending"][data-scroll-reveal-initial="true"] {
  opacity: .78;
  transform: translateY(10px);
}

[data-scroll-reveal="visible"] {
  will-change: auto;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-heading h2,
.representative-copy h2,
.prose h2,
.philosophy-grid h2,
.form-intro h2,
.catalog-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1.45;
  letter-spacing: .03em;
}

.section-heading > p:last-child,
.split-heading > p,
.catalog-intro > p {
  color: var(--muted);
}

.split-heading,
.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 48px;
}

.split-heading > p,
.catalog-intro > p {
  margin: 0;
}

.centered-heading {
  max-width: 750px;
  margin: 0 auto 55px;
  text-align: center;
}

.centered-heading > p:last-child {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.button[hidden],
.admin-delete-help[hidden] {
  display: none !important;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgb(8 73 116 / 16%);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0b84c6);
}

.button-secondary {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--white);
}

.button-light {
  color: var(--navy);
  border-color: rgb(11 47 75 / 25%);
  background: rgb(255 255 255 / 92%);
}

.button-line {
  color: var(--white);
  background: #2aa764;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgb(9 100 173 / 25%);
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #eef6f9;
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, #f9fcfd 0%, rgb(249 252 253 / 98%) 35%, rgb(249 252 253 / 72%) 58%, rgb(249 252 253 / 5%) 82%);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 690px;
}

.hero-copy {
  width: min(740px, 66%);
  padding: 64px 0 92px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(39px, 4.3vw, 63px);
  line-height: 1.38;
  letter-spacing: .025em;
}

.hero-title-character {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1840ms ease-out,
    transform 1840ms cubic-bezier(.22, 1, .36, 1);
}

.hero-title-character[data-hero-character="pending"] {
  opacity: 0;
  transform: translateY(12px);
}

/* Hide only JS-enabled motion characters before hydration, preventing an initial flash. */
html[data-sho-prehydration] .hero-title-character:not([data-hero-character="visible"]) {
  opacity: 0;
  transform: translateY(12px);
}

.hero-title-highlight {
  position: relative;
  color: var(--blue);
}

.hero-title-highlight::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 12px;
  background: rgb(247 197 59 / 45%);
  content: "";
}

.site-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(247 251 253 / 97%);
  backdrop-filter: blur(5px);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.site-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-card {
  width: min(520px, 100%);
  padding: 24px 28px;
  border: 1px solid #d9e8ef;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 50px rgb(10 60 89 / 14%);
}

.site-loader-copy {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
}

.site-loader-road {
  position: relative;
  display: flex;
  align-items: center;
  height: 78px;
  border-bottom: 4px dashed #a6c8d6;
}

.site-loader-brand {
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: contain;
}

.site-loader-truck-motion {
  position: absolute;
  left: 70px;
  bottom: -8px;
  line-height: 1;
  animation: loader-drive 1.72s cubic-bezier(.3, .8, .35, 1) infinite;
}

.site-loader-truck {
  font-size: 38px;
  line-height: 1;
  display: block;
  transform: scaleX(-1);
}

.site-loader-home {
  position: absolute;
  right: 4px;
  bottom: -3px;
  width: 59px;
  height: 59px;
  object-fit: contain;
}

@keyframes loader-drive {
  0% { transform: translateX(0) translateY(0) rotate(0deg); }
  48% { transform: translateX(calc(min(365px, 62vw) - 110px)) translateY(-4px) rotate(-2deg); }
  52% { transform: translateX(calc(min(365px, 62vw) - 100px)) translateY(0) rotate(1deg); }
  100% { transform: translateX(calc(min(365px, 62vw) - 80px)) translateY(0) rotate(0deg); }
}

.hero-lead {
  margin: 25px 0 30px;
  color: #435867;
  font-size: 17px;
  line-height: 2;
}

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

.hero-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}

.hero-social p {
  margin: 0;
  color: #526775;
  font-size: 12px;
  font-weight: 700;
}

.hero-social > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid rgb(11 47 75 / 20%);
  border-radius: 999px;
  color: var(--navy);
  background: rgb(255 255 255 / 72%);
  font-size: 11px;
  font-weight: 800;
  transition: border-color .2s, color .2s, transform .2s;
}

.hero-social-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.social-link-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  overflow: hidden;
  border-radius: 22%;
  object-fit: contain;
}

.hero-notes {
  display: flex;
  gap: 22px;
  margin-top: 25px;
  color: #526775;
  font-size: 12px;
  font-weight: 700;
}

.hero-notes span::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
}

.trust-strip {
  color: var(--white);
  background: var(--navy);
}

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

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 22px 34px;
  border-right: 1px solid rgb(255 255 255 / 15%);
}

.trust-grid > div:first-child {
  border-left: 1px solid rgb(255 255 255 / 15%);
}

.trust-grid span {
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 25px;
}

.trust-grid p {
  margin: 0;
  color: #bcd0dc;
  font-size: 12px;
  line-height: 1.65;
}

.trust-grid strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.service-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 45px rgb(17 58 86 / 7%);
}

.service-image {
  height: 360px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.service-card:hover .service-image img {
  transform: scale(1.025);
}

.service-blue .service-image img {
  object-position: center 38%;
}

.service-content {
  position: relative;
  padding: 38px 42px 42px;
}

.service-content h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.5;
}

.service-content > p:not(.eyebrow) {
  color: var(--muted);
}

.service-number {
  position: absolute;
  top: 30px;
  right: 38px;
  color: rgb(9 100 173 / 15%);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.service-green .eyebrow,
.service-green .text-link {
  color: var(--green);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #425866;
  font-size: 13px;
  list-style: none;
}

.check-list li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.process-section {
  background: var(--cloud);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  counter-reset: none;
  list-style: none;
}

.process-list li {
  position: relative;
  display: flex;
  gap: 19px;
  padding: 28px 40px;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 44px;
  right: -13px;
  width: 26px;
  height: 1px;
  background: var(--blue);
  content: "";
}

.process-list > li > span,
.guide-grid > article > span {
  display: grid;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-family: Georgia, serif;
  font-size: 19px;
}

.process-list strong {
  color: var(--navy);
  font-size: 17px;
}

.process-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.centered-actions {
  margin-top: 45px;
  text-align: center;
}

.featured-section,
.items-catalog {
  background: var(--white);
}

.mock-note {
  padding: 10px 13px;
  border-left: 3px solid var(--yellow);
  color: #596a72 !important;
  background: #fff9e8;
  font-size: 12px !important;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.product-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  transition: transform .25s, box-shadow .25s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / .86;
  overflow: hidden;
  background: var(--warm);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.example-badge,
.stock-badge {
  position: absolute;
  top: 14px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
}

.example-badge {
  left: 14px;
  color: var(--navy);
  background: var(--yellow);
}

.stock-badge {
  right: 14px;
  color: var(--white);
  background: var(--green);
}

.stock-商談中 {
  background: #c2872c !important;
}

.stock-売約済み {
  background: #6b7780 !important;
}

.product-body {
  padding: 24px;
}

.product-category {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.product-body h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.5;
}

.product-body > p:not(.product-category, .price) {
  min-height: 52px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.product-facts {
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-facts > div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  padding: 8px 0;
  font-size: 11px;
}

.product-facts > div + div {
  border-top: 1px dashed var(--line);
}

.product-facts dt {
  color: var(--muted);
}

.product-facts dd {
  margin: 0;
  color: #354b59;
  font-weight: 700;
}

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 19px;
}

.price {
  display: grid;
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.price small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.price span {
  display: inline;
  margin-left: 3px;
  font-size: 9px;
  font-weight: 500;
}

.product-footer .text-link {
  flex: 0 0 auto;
  font-size: 12px;
}

.representative-section {
  background: var(--navy);
}

.representative-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 80px;
}

.representative-photo {
  position: relative;
  height: 590px;
  overflow: hidden;
  border-radius: 12px;
  background: #0876dc;
}

.representative-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.photo-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 16px;
  color: var(--navy);
  background: rgb(255 255 255 / 93%);
  font-size: 13px;
  font-weight: 700;
}

.representative-copy h2 {
  color: var(--white);
}

.representative-copy > p:not(.eyebrow) {
  color: #c8d7e0;
}

.representative-copy .text-link {
  margin-top: 12px;
  color: #7dcaf0;
}

.area-section {
  overflow: hidden;
  background: var(--green-soft);
}

.area-inner {
  position: relative;
  min-height: 320px;
  padding: 76px 0;
}

.area-inner > div {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.area-inner h2 {
  margin: 0;
  color: #284a37;
  font-size: 40px;
}

.area-inner p:last-child {
  color: #50675b;
}

.area-mark {
  position: absolute;
  right: 3%;
  bottom: -66px;
  color: rgb(78 123 98 / 9%);
  font-size: 210px;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
}

.contact-cta {
  color: var(--white);
  background: linear-gradient(135deg, #0a5b9a, #073b65);
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 80px;
  padding: 90px 0;
}

.contact-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: 40px;
  line-height: 1.5;
}

.contact-cta p:not(.eyebrow) {
  color: #d4e6f1;
}

.contact-cta .eyebrow {
  color: #a9dcf4;
}

.contact-cta-actions {
  display: grid;
  gap: 12px;
}

.phone-panel {
  display: grid;
  padding: 18px 26px;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
}

.phone-panel small,
.phone-panel span {
  color: #cfe3ef;
  font-size: 11px;
}

.phone-panel strong {
  font-size: 29px;
  line-height: 1.4;
}

.social-inline {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-inline a,
.social-links-large a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.page-hero {
  overflow: hidden;
  background: linear-gradient(135deg, #f1f8fb, #e5f1f6);
}

.page-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 355px;
  padding: 60px 0;
}

.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 67px);
  line-height: 1.3;
}

.page-hero-inner > div:first-child > p:last-child {
  margin: 18px 0 0;
  color: #4e6574;
  font-size: 16px;
}

.page-hero-logo {
  width: 260px;
  height: 260px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-title-row {
  display: contents;
}

.page-hero-logo-mobile {
  display: none;
}

.about-message-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 86px;
}

.about-portrait {
  position: sticky;
  top: 120px;
}

.about-portrait img {
  width: 100%;
  max-height: 700px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 24%;
}

.about-portrait > div {
  display: grid;
  margin: -65px 20px 0;
  padding: 20px;
  position: relative;
  color: var(--white);
  background: var(--navy);
}

.about-portrait span {
  color: #92cce8;
  font-size: 10px;
  letter-spacing: .14em;
}

.about-portrait strong {
  font-size: 18px;
}

.prose > p:not(.eyebrow) {
  color: #4e6370;
  line-height: 2.2;
}

.about-copy-mobile {
  display: none;
}

.prose h2 {
  margin-bottom: 30px;
}

.signature {
  display: grid;
  justify-items: end;
  margin-top: 30px;
  color: var(--navy);
}

.signature span {
  font-size: 12px;
}

.signature strong {
  font-size: 20px;
}

.philosophy-section {
  background: var(--cloud);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
}

.philosophy-card {
  position: relative;
  padding: 45px 52px;
  border-left: 4px solid var(--green);
  background: var(--white);
  box-shadow: var(--shadow);
}

.philosophy-card p {
  color: #455b68;
  font-size: 16px;
  line-height: 2.1;
}

.quote-mark {
  position: absolute;
  top: -15px;
  right: 30px;
  color: rgb(78 123 98 / 13%);
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
}

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

.values-grid article {
  padding: 30px;
  border-top: 2px solid var(--blue);
  background: var(--white);
}

.values-grid span {
  color: var(--blue);
  font-family: Georgia, serif;
}

.values-grid h3 {
  margin: 5px 0;
  color: var(--navy);
  font-size: 24px;
}

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

.company-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 80px;
}

.company-work-image {
  width: 100%;
  max-height: 315px;
  margin-top: 32px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 35%;
}

.company-table {
  margin: 0;
  border-top: 2px solid var(--navy);
}

.company-table > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  border-bottom: 1px solid var(--line);
}

.company-table dt,
.company-table dd {
  padding: 20px 24px;
}

.company-table dt {
  color: var(--navy);
  background: var(--cloud);
  font-size: 13px;
  font-weight: 800;
}

.company-table dd {
  margin: 0;
  color: #415765;
  font-size: 14px;
}

.company-table a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mini-cta {
  color: var(--white);
  background: var(--blue);
}

.mini-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 220px;
}

.mini-cta h2 {
  margin: 0;
  font-size: 31px;
}

.mini-cta .eyebrow {
  color: #b6e1f6;
}

.items-hero {
  background: linear-gradient(135deg, #eef7f1, #e1f0e7);
}

.items-hero-stack {
  position: relative;
  width: 460px;
  height: 300px;
}

.items-hero-stack img {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 8px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.items-hero-stack img:first-child {
  z-index: 1;
  top: 0;
  left: 0;
}

.items-hero-stack img:last-child {
  right: 0;
  bottom: 0;
}

.items-notice {
  padding: 20px 0;
  color: #65572f;
  background: #fff9e7;
}

.items-notice .shell {
  display: flex;
  align-items: center;
  gap: 28px;
}

.items-notice strong {
  flex: 0 0 auto;
  color: #665017;
  font-size: 13px;
}

.items-notice p {
  margin: 0;
  font-size: 11px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-row button {
  min-width: 108px;
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #536875;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.filter-row button.active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.results-count {
  margin: 21px 0;
  color: var(--muted);
  font-size: 12px;
}

.purchase-guide {
  padding: 95px 0;
  background: var(--cloud);
}

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

.guide-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.guide-grid h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 18px;
}

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

.breadcrumb {
  display: flex;
  gap: 10px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 11px;
}

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

.item-detail {
  padding-top: 55px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: start;
  gap: 70px;
}

.detail-gallery {
  position: sticky;
  top: 120px;
}

.detail-main-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: var(--warm);
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-note {
  margin: 14px 0 0;
  padding: 12px 15px;
  border-left: 3px solid var(--blue);
  color: var(--muted);
  background: var(--blue-soft);
  font-size: 11px;
  line-height: 1.8;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 92px);
  gap: 12px;
  margin-top: 15px;
}

.detail-thumbs button {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 7px;
  background: none;
  cursor: pointer;
  opacity: .65;
}

.detail-thumbs button.active {
  border-color: var(--blue);
  opacity: 1;
}

.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-title-row h1 {
  margin: 3px 0 13px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.4;
}

.status-pill {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 26px 0 16px;
}

.detail-price small {
  align-self: center;
  margin-right: 10px;
  color: var(--muted);
  font-size: 10px;
}

.detail-price strong {
  color: var(--navy);
  font-size: 37px;
}

.detail-price span {
  color: var(--muted);
  font-size: 11px;
}

.detail-description {
  color: #455b67;
  line-height: 2;
}

.detail-table {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.detail-table > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--line);
}

.detail-table dt,
.detail-table dd {
  padding: 14px 16px;
  font-size: 12px;
}

.detail-table dt {
  color: var(--navy);
  background: var(--cloud);
  font-weight: 800;
}

.detail-table dd {
  margin: 0;
  color: #445966;
}

.detail-attention {
  padding: 22px 24px;
  border-radius: 8px;
  background: var(--cloud);
}

.detail-attention strong {
  color: var(--navy);
  font-size: 13px;
}

.detail-attention ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 11px;
}

.detail-actions {
  display: grid;
  gap: 10px;
  margin-top: 27px;
}

.sold-message {
  margin: 0;
  padding: 13px 16px;
  border-radius: 6px;
  color: #4b5962;
  background: #edf0f2;
  font-size: 11px;
}

.related-section {
  background: var(--cloud);
}

.contact-page-hero {
  background: linear-gradient(135deg, #eef6fb, #dceef7);
}

.contact-hero-card {
  display: flex;
  align-items: center;
  min-width: 350px;
  padding: 14px 20px 14px 14px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-hero-card img {
  width: 86px;
  height: 86px;
  margin-right: 16px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
}

.contact-hero-card p {
  display: grid;
  margin: 0;
}

.contact-hero-card small {
  color: var(--muted);
  font-size: 10px;
}

.contact-hero-card strong {
  color: var(--navy);
}

.contact-options {
  margin-top: -25px;
}

.contact-option-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-option {
  display: block;
  min-height: 215px;
  padding: 34px;
  color: var(--navy);
  background: var(--white);
}

.contact-option + .contact-option {
  border-left: 1px solid var(--line);
}

.option-label {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.contact-option h2 {
  margin: 8px 0 2px;
  font-size: 26px;
}

.contact-option p {
  min-height: 30px;
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 12px;
}

.contact-option strong {
  color: var(--blue);
  font-size: 12px;
}

.line-option {
  color: var(--white);
  background: #2aa764;
}

.line-option .option-label,
.line-option h2,
.line-option p,
.line-option strong {
  color: var(--white);
}

.form-section {
  padding-top: 125px;
  scroll-margin-top: 90px;
}

.form-layout {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  align-items: start;
  gap: 80px;
}

.form-intro {
  position: sticky;
  top: 120px;
}

.form-intro > p:not(.eyebrow, .mock-note) {
  color: var(--muted);
}

.response-note {
  margin: 28px 0;
  padding: 20px;
  border-left: 3px solid var(--blue);
  background: var(--blue-soft);
}

.response-note strong {
  color: var(--navy);
  font-size: 13px;
}

.response-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.contact-form {
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cloud);
}

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

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.required {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 3px;
  color: var(--white);
  background: #c64d48;
  font-size: 9px;
  vertical-align: middle;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #c8d4da;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

.field input,
.field select {
  min-height: 51px;
  padding: 10px 13px;
}

.field input[type="file"] {
  padding: 10px;
  font-size: 12px;
}

.field textarea {
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgb(9 100 173 / 14%);
}

.field-hint {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.field-error {
  margin: 5px 0 0;
  color: #b83d38;
  font-size: 11px;
  font-weight: 700;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #536672;
  font-size: 11px;
}

.check-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.submit-button {
  width: 100%;
  margin-top: 24px;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit-error {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid #e5aaa6;
  border-radius: 6px;
  color: #87322e;
  background: #fff3f2;
  font-size: 12px;
  font-weight: 700;
}

.error-summary {
  margin-bottom: 25px;
  padding: 16px 20px;
  border: 1px solid #e5aaa6;
  border-radius: 6px;
  color: #87322e;
  background: #fff3f2;
  font-size: 12px;
}

.error-summary ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.form-success {
  padding: 60px 45px;
  border: 1px solid #bdd9c4;
  border-radius: 14px;
  background: var(--green-soft);
  text-align: center;
}

.form-success > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 30px;
}

.form-success h2 {
  color: var(--navy);
}

.form-success > p:not(.eyebrow) {
  color: var(--muted);
}

.social-section {
  background: var(--navy);
}

.social-section .shell {
  display: flex;
  flex-direction: column;
}

.social-section .section-heading {
  order: 1;
}

.social-section .social-links-large {
  order: 2;
}

.social-section .social-scroll {
  order: 3;
}

.social-section .social-hint {
  order: 4;
}

.social-section h2,
.social-section .split-heading > p {
  color: var(--white);
}

.social-section .eyebrow {
  color: #81cdee;
}

.social-links-large {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.social-links-large a {
  padding: 10px 18px;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.social-scroll {
  display: grid;
  grid-auto-columns: minmax(300px, 31.5%);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 5px 5px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-color: #4d7b97 transparent;
}

.social-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  scroll-snap-align: start;
}

.social-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.social-card > span {
  display: grid;
  padding: 18px;
}

.social-card small {
  color: var(--blue);
  font-size: 9px;
  font-style: normal;
}

.social-card strong {
  color: var(--navy);
  font-size: 14px;
}

.social-card em {
  margin-top: 9px;
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.social-hint {
  color: #9fb8c7;
  font-size: 10px;
  text-align: right;
}

.site-footer {
  padding-top: 70px;
  color: #a9becb;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .5fr .9fr;
  gap: 80px;
  padding-bottom: 55px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand img {
  flex: 0 0 auto;
  border-radius: 8px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand p {
  max-width: 430px;
  margin: 10px 0 0;
  font-size: 12px;
}

.footer-title {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.footer-links {
  display: grid;
  gap: 5px;
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 10px;
}

@media (min-width: 1181px) {
  .header-inner {
    width: 100%;
    padding-left: max(24px, calc((100% - 1240px) / 2));
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 16px;
  }

  .nav-phone {
    min-width: 175px;
    margin-right: 0;
  }

  .hero-copy {
    width: 70%;
  }

}

@media (max-width: 960px) {
  .utility-bar {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 16px;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 0;
    border-radius: 6px;
    background: var(--blue-soft);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: auto;
    background: var(--navy);
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 40px rgb(7 45 72 / 13%);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a:not(.nav-phone) {
    padding: 14px 5px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.nav-phone)::after {
    display: none;
  }

  .nav-phone {
    align-self: auto;
    min-height: 65px;
    margin-top: 15px;
  }

  .section {
    padding: 85px 0;
  }

  .hero,
  .hero-inner {
    min-height: 640px;
  }

  .hero-background {
    object-position: 67% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, #f9fcfd 0%, rgb(249 252 253 / 96%) 48%, rgb(249 252 253 / 38%) 100%);
  }

  .hero-copy {
    width: 77%;
  }

  .trust-grid > div {
    padding: 20px;
  }

  .service-grid,
  .product-grid,
  .values-grid,
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-image {
    height: 300px;
  }

  .service-content {
    padding: 32px;
  }

  .representative-grid,
  .about-message-grid,
  .company-grid,
  .detail-grid,
  .form-layout {
    gap: 45px;
  }

  .representative-photo {
    height: 520px;
  }

  .philosophy-grid {
    gap: 40px;
  }

  .items-hero-stack {
    width: 380px;
  }

  .items-hero-stack img {
    width: 210px;
    height: 210px;
  }

  .contact-option {
    padding: 25px;
  }

  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 300;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: calc(70px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #b6c8d2;
    background: var(--white);
    box-shadow: 0 -10px 28px rgb(6 34 56 / 14%);
  }

  .mobile-action-bar a {
    display: grid;
    place-content: center;
    min-width: 0;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
  }

  .mobile-action-bar a + a {
    border-left: 1px solid var(--line);
  }

  .mobile-action-bar a:nth-child(2) {
    color: var(--white);
    background: #218d54;
  }

  .mobile-action-bar a:nth-child(3) {
    color: var(--white);
    background: var(--blue);
  }

  .mobile-action-bar span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
  }

  .mobile-action-bar strong {
    font-size: 13px;
  }
  .shell {
    width: min(100% - 34px, 620px);
  }

  .desktop-only {
    display: none;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 14px;
  }

  .section {
    padding: 68px 0;
  }

  .split-heading,
  .catalog-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .representative-copy h2,
  .prose h2,
  .philosophy-grid h2,
  .form-intro h2,
  .catalog-intro h2 {
    font-size: 29px;
  }

  .button {
    min-height: 53px;
  }

  .hero {
    min-height: 720px;
    padding-bottom: 0;
  }

  .hero-background {
    top: auto;
    bottom: 0;
    height: 275px;
    object-position: center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, #f9fcfd 0%, #f9fcfd 61%, rgb(249 252 253 / 12%) 86%);
  }

  .hero-inner {
    align-items: flex-start;
    min-height: 720px;
  }

  .hero-copy {
    width: 100%;
    padding: 50px 0 0;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 45px);
    line-height: 1.35;
  }

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

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

  .hero-actions .button {
    padding: 10px;
    font-size: 12px;
  }

  .hero-notes {
    flex-wrap: wrap;
    gap: 4px 15px;
    margin-top: 16px;
    font-size: 10px;
  }

  .hero-social {
    gap: 8px 10px;
    margin-top: 14px;
  }

  .hero-social p {
    width: 100%;
    font-size: 10px;
  }

  .hero-social-link {
    min-height: 30px;
    padding: 4px 9px;
    font-size: 10px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 90px;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
  }

  .service-grid,
  .product-grid,
  .values-grid,
  .guide-grid,
  .product-grid-two {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 310px;
  }

  .service-content {
    padding: 28px 24px 32px;
  }

  .service-content h3 {
    font-size: 21px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    padding: 17px 10px;
  }

  .process-list li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -7px;
    left: 31px;
    width: 1px;
    height: 22px;
  }

  .product-grid {
    gap: 18px;
  }

  .product-image {
    aspect-ratio: 1/.78;
  }

  .representative-grid,
  .about-message-grid,
  .philosophy-grid,
  .company-grid,
  .detail-grid,
  .form-layout,
  .contact-cta-inner {
    grid-template-columns: 1fr;
  }

  .representative-grid {
    gap: 36px;
  }

  .representative-photo {
    height: 480px;
  }

  .representative-photo img {
    object-fit: contain;
    object-position: center;
  }

  .area-inner {
    min-height: 330px;
  }

  .area-inner h2 {
    font-size: 31px;
  }

  .area-mark {
    right: -15px;
    font-size: 130px;
  }

  .contact-cta-inner {
    gap: 30px;
    padding: 65px 0;
  }

  .contact-cta h2 {
    font-size: 29px;
  }

  .page-hero-inner {
    min-height: 300px;
  }

  .page-hero h1 {
    font-size: 43px;
  }

  .page-hero-logo {
    position: absolute;
    right: -40px;
    width: 190px;
    height: 190px;
    opacity: .3;
  }

  .about-portrait,
  .detail-gallery,
  .form-intro {
    position: static;
  }

  .about-message-grid,
  .philosophy-grid,
  .company-grid {
    gap: 45px;
  }

  .about-portrait img {
    height: min(600px, 155vw);
    max-height: 600px;
    object-fit: contain;
    object-position: center;
    background: #0876dc;
  }

  .philosophy-card {
    padding: 30px 25px;
  }

  .company-table > div {
    grid-template-columns: 105px 1fr;
  }

  .company-table dt,
  .company-table dd {
    padding: 15px 12px;
    overflow-wrap: anywhere;
  }

  .mini-cta-inner {
    display: grid;
    padding: 45px 0;
  }

  .mini-cta h2 {
    font-size: 25px;
  }

  .items-hero-stack {
    position: absolute;
    right: -80px;
    width: 250px;
    height: 230px;
    opacity: .35;
  }

  .items-hero-stack img {
    width: 150px;
    height: 150px;
  }

  .items-notice .shell {
    display: block;
  }

  .items-notice strong {
    display: block;
    margin-bottom: 5px;
  }

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

  .filter-row button {
    min-width: 0;
  }

  .detail-grid {
    gap: 35px;
  }

  .detail-thumbs {
    grid-template-columns: repeat(3, 74px);
  }

  .detail-table > div {
    grid-template-columns: 100px 1fr;
  }

  .contact-hero-card {
    position: absolute;
    right: -30px;
    bottom: 22px;
    min-width: 260px;
    opacity: .92;
  }

  .contact-hero-card img {
    width: 65px;
    height: 65px;
  }

  .contact-option-grid {
    grid-template-columns: 1fr;
  }

  .contact-option {
    min-height: 175px;
  }

  .contact-option + .contact-option {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .form-section {
    padding-top: 85px;
  }

  .contact-form {
    padding: 23px 18px;
  }

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

  .social-scroll {
    grid-auto-columns: 84%;
  }

  .social-card img {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 5px;
  }
}

/* Xserver PHP runtime parity additions */
body.site-loader-active {
  overflow: hidden;
}

body.site-loader-active > :not(.site-loader):not(script) {
  opacity: 0;
}

body.site-loader-active.site-loader-ready {
  overflow: auto;
}

body.site-loader-active.site-loader-ready > :not(.site-loader):not(script) {
  opacity: 1;
  transition: opacity 480ms ease;
}

html.site-loader-skip body.site-loader-active {
  overflow: auto;
}

html.site-loader-skip body.site-loader-active .site-loader {
  display: none;
}

html.site-loader-skip body.site-loader-active > :not(.site-loader):not(script) {
  opacity: 1;
}

.product-card-actions {
  display: grid;
  gap: 9px;
}

.product-card-actions .button,
.detail-actions .button {
  width: 100%;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: .68;
}

.admin-heading form {
  display: inline-flex;
  margin: 0;
}

.admin-form .field-grid {
  margin-top: 16px;
}

.admin-account-layout {
  display: grid;
  place-items: start center;
}

.admin-account-form {
  width: min(100%, 760px);
}

.admin-account-form .field small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.temporary-credentials-warning {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 2px solid #d38a00;
  border-radius: 10px;
  color: #5d3b00;
  background: #fff5d6;
}

.temporary-credentials-warning p {
  margin: 5px 0 0;
}

.temporary-credentials-warning a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
}

.admin-login-url {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 12px;
}

.form-submit-success {
  padding: 13px 15px;
  border-left: 4px solid var(--green);
  color: #17563f;
  background: #eefaf5;
  font-weight: 700;
}

.inquiry-detail h3 {
  margin-top: 28px;
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  html.site-loader-skip body.site-loader-active,
  html.site-loader-skip body.site-loader-active > :not(.site-loader):not(script) {
    overflow: auto;
    opacity: 1;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 31px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 270px;
  }

  .product-footer {
    align-items: start;
    flex-direction: column;
  }

  .contact-hero-card {
    min-width: 230px;
  }

  .contact-hero-card small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-scroll-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-title-character {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .site-loader-truck-motion {
    animation: none !important;
  }
}

/* Updated service, commerce, and protected admin surfaces */
.service-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid-three .service-image {
  height: 260px;
}

.service-grid-three .service-content {
  padding: 32px 30px 36px;
}

.service-grid-three .check-list {
  grid-template-columns: 1fr;
}

.service-auction .eyebrow,
.service-auction .text-link {
  color: #9a6621;
}

.service-footnote {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.pricing-section {
  background: linear-gradient(145deg, #eef6fa, #f8faf7);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-grid article {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 30px 26px;
  border: 1px solid #d7e4e8;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 38px rgb(11 47 75 / 6%);
}

.price-grid small {
  min-height: 54px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.6;
}

.price-grid strong {
  margin: 12px 0;
  color: var(--blue);
  font-size: 31px;
  line-height: 1.25;
}

.price-grid em {
  margin-left: 3px;
  font-size: 14px;
  font-style: normal;
}

.price-grid p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 12px;
}

.price-notice,
.purchase-policy {
  margin-top: 24px;
  padding: 26px 30px;
  border-left: 4px solid var(--yellow);
  background: var(--white);
}

.price-notice p,
.purchase-policy p {
  color: var(--muted);
  font-size: 12px;
}

.price-notice .button {
  margin-top: 6px;
}

.stock-sold-out {
  background: #59656d !important;
}

.stock-available {
  background: var(--green) !important;
}

.product-card-actions {
  margin-top: 18px;
}

.product-card-actions .button {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  font-size: 12px;
}

.detail-sold-overlay {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  padding: 12px 28px;
  border: 4px solid rgb(255 255 255 / 90%);
  color: var(--white);
  background: rgb(45 55 62 / 82%);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.detail-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.detail-thumbnails a {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-shell {
  min-height: 75vh;
  padding: 52px 0 100px;
  background: #f3f6f7;
}

.admin-access-card,
.admin-dashboard {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}

.admin-access-card {
  max-width: 720px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-access-card h1,
.admin-heading h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
}

.admin-access-card .button,
.admin-access-card .text-link {
  margin: 12px 14px 0 0;
}

.admin-help {
  padding: 14px;
  border-left: 3px solid var(--yellow);
  background: #fff9e8;
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.admin-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.admin-heading > div:last-child {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-inquiry-link {
  position: relative;
}

.admin-notification-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--white);
  background: #c7443f;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

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

.admin-list,
.admin-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 35px rgb(12 47 75 / 6%);
}

.admin-list {
  position: sticky;
  top: 104px;
  overflow: hidden;
}

.admin-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-list-heading h2 {
  margin: 0;
  font-size: 18px;
}

.admin-list-heading .button {
  min-height: 38px;
  padding: 7px 13px;
  font-size: 11px;
}

.admin-product {
  display: flex;
  width: 100%;
  gap: 12px;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.admin-product.active {
  background: var(--blue-soft);
}

.admin-product img {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: cover;
}

.admin-product span {
  display: grid;
  align-content: center;
  min-width: 0;
}

.admin-product strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-product small {
  color: var(--muted);
  font-size: 10px;
}

.admin-form {
  padding: 34px;
}

.admin-form-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.admin-form-title h2 {
  margin: 0;
  color: var(--navy);
}

.admin-switches {
  display: flex;
  gap: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--cloud);
  font-size: 12px;
  font-weight: 700;
}

.admin-switches label,
.admin-switches input {
  cursor: pointer;
}

.dimension-fieldset {
  min-width: 0;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dimension-fieldset legend {
  padding: 0 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.dimension-fieldset > small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(90px, .65fr);
  gap: 12px;
}

.dimension-grid label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.dimension-grid input,
.dimension-grid select {
  width: 100%;
  min-height: 48px;
  padding: 9px 11px;
  border: 1px solid #c8d4da;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

.shipping-explanation {
  margin: 16px 0;
  padding: 12px 15px;
  border-left: 3px solid var(--green);
  color: #3f5d50;
  background: var(--green-soft);
  font-size: 13px;
  line-height: 1.8;
}

.admin-images {
  margin: 30px 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.admin-images h3 {
  color: var(--navy);
}

.admin-image-list {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.admin-image-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: grab;
}

.admin-image-row.is-dragging {
  opacity: .55;
}

.admin-image-row img {
  width: 72px;
  height: 72px;
  border-radius: 5px;
  object-fit: cover;
}

.admin-image-row span {
  display: grid;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.admin-image-row small {
  color: var(--muted);
}

.admin-image-drag-handle {
  white-space: nowrap;
}

.admin-image-order-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.admin-image-order-actions .button {
  min-width: 0;
  min-height: 34px;
  margin: 0;
  padding: 5px 8px;
  font-size: 12px;
}

.admin-image-order-actions .button-danger {
  border-color: #b73535;
  color: var(--white);
  background: #b73535;
}

.admin-image-order-help {
  color: var(--muted);
  font-size: 12px;
}

.admin-image-row button {
  min-width: 38px;
  min-height: 38px;
  margin-left: 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
}

.admin-notice {
  padding: 12px 16px;
  border-left: 3px solid var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
}

.admin-file-selection,
.admin-delete-help {
  color: var(--muted);
  font-size: 11px;
}

.admin-delete-help {
  flex: 1 1 100%;
  margin: 0;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-danger {
  color: #9f2530;
  border-color: #cf9ba0;
  background: #fff;
}

.button-danger:hover {
  color: #fff;
  border-color: #9f2530;
  background: #9f2530;
}

.button:disabled,
.admin-image-row button:disabled {
  cursor: not-allowed;
  opacity: .5;
  transform: none;
  box-shadow: none;
}

.inquiry-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 26px rgb(12 47 75 / 5%);
}

.inquiry-alert.has-unread {
  border-color: #efc977;
  border-left-color: #d59215;
  background: #fffaf0;
}

.inquiry-alert div {
  display: grid;
  gap: 3px;
}

.inquiry-alert strong {
  color: var(--navy);
  font-size: 15px;
}

.inquiry-alert span {
  color: var(--muted);
  font-size: 11px;
}

.inquiry-alert .button {
  min-height: 42px;
  padding: 8px 16px;
  font-size: 11px;
}

.inquiry-layout {
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
}

.inquiry-list {
  max-height: calc(100vh - 135px);
  overflow-y: auto;
}

.inquiry-list .admin-list-heading span {
  color: var(--muted);
  font-size: 11px;
}

.admin-inquiry-item {
  display: grid;
  width: 100%;
  gap: 4px;
  padding: 17px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.admin-inquiry-item:hover,
.admin-inquiry-item.active {
  background: var(--blue-soft);
}

.admin-inquiry-item.unread {
  box-shadow: inset 4px 0 0 var(--blue);
  background: #f4faff;
}

.inquiry-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-inquiry-item strong {
  color: var(--navy);
  font-size: 13px;
}

.admin-inquiry-item em {
  flex: 0 0 auto;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.admin-inquiry-item > span:not(.inquiry-item-top),
.admin-inquiry-item small {
  font-size: 10px;
}

.inquiry-preview {
  display: -webkit-box;
  overflow: hidden;
  color: #50636e;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.inquiry-empty {
  padding: 24px 18px;
  color: var(--muted);
  font-size: 12px;
}

.inquiry-detail {
  min-height: 520px;
}

.inquiry-detail-empty {
  display: grid;
  min-height: 430px;
  place-content: center;
  text-align: center;
}

.inquiry-detail-empty h2 {
  margin: 0;
  color: var(--navy);
}

.inquiry-detail-empty p:last-child,
.inquiry-detail .admin-form-title p {
  color: var(--muted);
  font-size: 11px;
}

.inquiry-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.inquiry-meta > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inquiry-meta dt,
.inquiry-meta dd {
  margin: 0;
  padding: 13px 14px;
  overflow-wrap: anywhere;
  font-size: 11px;
}

.inquiry-meta dt {
  color: var(--navy);
  background: var(--cloud);
  font-weight: 800;
}

.inquiry-meta dd {
  color: #405561;
}

.inquiry-meta a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inquiry-message,
.inquiry-photo {
  margin-top: 28px;
}

.inquiry-message h3,
.inquiry-photo h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 15px;
}

.inquiry-message p {
  min-height: 150px;
  margin: 0;
  padding: 20px;
  border-radius: 8px;
  color: #405561;
  background: var(--cloud);
  line-height: 1.9;
  white-space: pre-wrap;
}

.inquiry-photo img {
  width: min(100%, 640px);
  max-height: 560px;
  border-radius: 9px;
  object-fit: contain;
  background: var(--cloud);
}

.inquiry-photo p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.inquiry-reply-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .service-grid-three,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .inquiry-layout {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  }

  .inquiry-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-grid-three,
  .price-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .price-grid article {
    min-height: 0;
  }

  .admin-access-card,
  .admin-dashboard {
    width: min(100% - 28px, 1380px);
  }

  .admin-access-card,
  .admin-form {
    padding: 23px 18px;
  }

  .admin-heading,
  .admin-heading > div:last-child,
  .admin-form-title {
    display: grid;
    align-items: start;
  }

  .admin-list {
    position: static;
  }

  .inquiry-alert {
    align-items: stretch;
    flex-direction: column;
  }

  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-list {
    max-height: 440px;
  }

  .inquiry-detail {
    min-height: 0;
  }

  .inquiry-detail-empty {
    min-height: 230px;
  }

  .inquiry-meta > div {
    grid-template-columns: 95px minmax(0, 1fr);
  }

  .admin-switches {
    flex-wrap: wrap;
  }

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

  .admin-image-row {
    grid-template-columns: 58px 1fr;
  }

  .admin-image-row img {
    width: 58px;
    height: 58px;
  }

  .admin-image-row > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .page-hero-about .page-hero-inner,
  .contact-page-hero .page-hero-inner {
    display: grid;
    min-height: auto;
    padding: 45px 0 38px;
  }

  .page-hero-about .page-hero-logo {
    position: relative;
    right: auto;
    justify-self: end;
    width: 118px;
    height: 118px;
    margin-top: 22px;
    opacity: .62;
  }

  .contact-page-hero .contact-hero-card {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 24px;
    opacity: 1;
  }

  .contact-page-hero .contact-hero-card small {
    display: block;
  }

  .contact-options {
    margin-top: 0;
  }
}

/*
 * Compact phone layout.
 * Keep every existing tablet/desktop rule untouched and only refine 600px and below.
 */
@media (max-width: 600px) {
  main {
    line-break: strict;
    overflow-wrap: normal;
    word-break: normal;
  }

  .desktop-break {
    display: none;
  }

  .hero-title-phrase {
    display: inline-block;
    white-space: nowrap;
  }

  .hero-copy h1,
  .section-heading h2,
  .representative-copy h2,
  .contact-cta h2,
  .page-hero h1,
  .prose h2,
  .philosophy-grid h2,
  .form-intro h2,
  .catalog-intro h2,
  .mini-cta h2,
  .detail-title-row h1 {
    text-wrap: balance;
  }

  .shell {
    width: min(100% - 28px, 540px);
  }

  .section {
    padding: 52px 0;
  }

  .section-heading h2,
  .representative-copy h2,
  .prose h2,
  .philosophy-grid h2,
  .form-intro h2,
  .catalog-intro h2 {
    font-size: clamp(25px, 7.5vw, 27px);
  }

  .text-link,
  .hero-social-link,
  .social-links-large a {
    min-height: 44px;
  }

  .hero-actions > :last-child {
    grid-column: 1 / -1;
  }

  .service-grid,
  .service-grid-three {
    max-width: 540px;
    margin-inline: auto;
    gap: 14px;
  }

  .service-card {
    border-radius: 12px;
  }

  .service-image,
  .service-grid-three .service-image {
    height: clamp(190px, 55vw, 210px);
  }

  .service-content,
  .service-grid-three .service-content {
    padding: 22px 20px 24px;
  }

  .service-content h3 {
    margin-bottom: 12px;
    font-size: 19px;
  }

  .service-number {
    top: 20px;
    right: 20px;
    font-size: 42px;
  }

  .check-list,
  .service-grid-three .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 10px;
    padding: 14px 0;
    font-size: 11px;
  }

  .check-list li {
    min-width: 0;
  }

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

  .price-grid article {
    min-width: 0;
    min-height: 0;
    padding: 18px 16px;
    border-radius: 10px;
  }

  .price-grid small {
    min-height: 0;
    font-size: 11px;
  }

  .price-grid strong {
    margin: 8px 0;
    font-size: clamp(24px, 7.5vw, 27px);
    overflow-wrap: anywhere;
  }

  .price-grid em {
    font-size: 11px;
  }

  .price-grid p {
    font-size: 10px;
    line-height: 1.65;
  }

  .price-notice,
  .purchase-policy {
    margin-top: 18px;
    padding: 18px;
  }

  .representative-grid {
    gap: 28px;
  }

  .representative-photo {
    width: min(100%, 430px);
    height: clamp(360px, 108vw, 400px);
    margin-inline: auto;
  }

  .about-portrait {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .about-portrait img {
    height: clamp(380px, 120vw, 430px);
    max-height: 430px;
  }

  .about-portrait > div {
    margin: -54px 14px 0;
    padding: 16px;
  }

  .company-work-image {
    height: clamp(190px, 55vw, 210px);
    margin-top: 24px;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    width: min(100%, 540px);
    margin-inline: auto;
    border-radius: 12px;
  }

  .product-image {
    height: clamp(190px, 55vw, 210px);
    aspect-ratio: auto;
  }

  .product-body {
    padding: 19px 18px;
  }

  .product-body h3 {
    margin-bottom: 9px;
    font-size: 17px;
  }

  .product-body > p:not(.product-category, .price) {
    min-height: 0;
    margin-bottom: 13px;
  }

  .product-footer {
    margin-top: 15px;
  }

  .purchase-guide {
    padding: 52px 0;
  }

  .guide-grid {
    gap: 10px;
  }

  .guide-grid article {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    min-height: 110px;
    padding: 17px 18px;
  }

  .guide-grid > article > span {
    grid-row: 1 / span 2;
    align-self: center;
  }

  .guide-grid h3 {
    align-self: end;
    margin: 0 0 4px;
    font-size: 16px;
  }

  .guide-grid p {
    align-self: start;
    font-size: 11px;
    line-height: 1.65;
  }

  .social-links-large {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .social-links-large a {
    padding: 8px 14px;
  }

  .social-scroll {
    grid-auto-columns: min(80vw, 420px);
    gap: 14px;
    padding-inline: 0;
  }

  .social-card img {
    height: clamp(220px, 65vw, 260px);
  }

  .social-card > span {
    padding: 14px;
  }

  .contact-page-hero .page-hero-inner {
    display: grid;
    min-height: auto;
    gap: 22px;
    padding: 44px 0 36px;
  }

  .contact-page-hero .contact-hero-card {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 10px 14px 10px 10px;
    opacity: 1;
  }

  .contact-page-hero .contact-hero-card img {
    width: 58px;
    height: 58px;
    margin-right: 12px;
  }

  .contact-page-hero .contact-hero-card small {
    display: block;
  }

  .contact-options {
    margin-top: 0;
  }

  .contact-option-grid {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .contact-option {
    min-height: 0;
    padding: 20px;
  }

  .contact-option h2 {
    margin-top: 5px;
    font-size: clamp(20px, 6.5vw, 23px);
    overflow-wrap: anywhere;
  }

  .contact-option p {
    min-height: 0;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
  }

  .form-section {
    padding-top: 52px;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .field {
    margin-bottom: 18px;
  }

  .items-hero .page-hero-inner {
    min-height: 280px;
    overflow: hidden;
    isolation: isolate;
  }

  .items-hero .page-hero-inner > div:first-child {
    position: relative;
    z-index: 1;
  }

  .items-hero-stack {
    top: 50%;
    right: 0;
    bottom: auto;
    width: 180px;
    height: 165px;
    transform: translateY(-50%);
    opacity: .24;
  }

  .items-hero-stack img {
    width: 112px;
    height: 112px;
    border-width: 4px;
  }
}

/* Keep every hero action above the fixed mobile bar on short phone screens. */
@media (max-width: 600px) and (max-height: 740px) {
  .hero-copy {
    padding-top: 24px;
  }

  .hero-copy h1 {
    line-height: 1.22;
  }

  .hero-lead {
    margin: 12px 0 14px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 7px 8px;
    line-height: 1.35;
  }

  .hero-social {
    gap: 5px 8px;
    margin-top: 8px;
  }

  .hero-social p {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero-social > div {
    gap: 6px;
  }

  .hero-notes {
    gap: 2px 12px;
    margin-top: 4px;
    line-height: 1.45;
  }
}

/*
 * Final public mobile density pass.
 * Everything in this section is capped at 760px so the 761px+ composition
 * remains byte-for-byte governed by the desktop/tablet rules above.
 */
@media (max-width: 760px) {
  main {
    line-break: strict;
    overflow-wrap: normal;
    word-break: normal;
  }

  .desktop-break {
    display: none;
  }

  .hero-title-phrase {
    display: inline-block;
    white-space: nowrap;
  }

  .shell {
    width: min(100% - 34px, 620px);
  }

  .section {
    padding: 44px 0;
  }

  .split-heading,
  .catalog-intro {
    gap: 16px;
    margin-bottom: 26px;
  }

  .centered-heading {
    margin-bottom: 28px;
  }

  .centered-heading > p:last-child {
    margin-top: 10px;
  }

  .section-heading h2,
  .representative-copy h2,
  .prose h2,
  .philosophy-grid h2,
  .form-intro h2,
  .catalog-intro h2 {
    font-size: clamp(26px, 4.4vw, 31px);
  }

  .button,
  .text-link,
  .hero-social-link,
  .social-links-large a,
  .filter-row button {
    min-height: 44px;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-background {
    top: auto;
    bottom: 0;
    height: 255px;
    object-position: center 68%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, #f9fcfd 0%, #f9fcfd 52%, rgb(249 252 253 / 96%) 61%, rgb(249 252 253 / 42%) 80%, rgb(249 252 253 / 4%) 100%);
  }

  .hero-copy {
    width: 100%;
    padding: 30px 0 0;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 5.3vw, 40px);
    line-height: 1.3;
  }

  .hero-lead {
    margin: 14px 0 16px;
    font-size: 13px;
    line-height: 1.65;
  }

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

  .hero-actions > :last-child {
    grid-column: 1 / -1;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.4;
  }

  .hero-social {
    gap: 6px 8px;
    margin-top: 10px;
  }

  .hero-social p {
    width: 100%;
    font-size: 10px;
  }

  .hero-social-link {
    padding: 5px 10px;
    font-size: 10px;
  }

  .hero-notes {
    gap: 3px 12px;
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.5;
  }

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 72px;
    padding: 14px 18px;
  }

  .service-grid,
  .service-grid-three,
  .product-grid,
  .values-grid,
  .guide-grid,
  .product-grid-two {
    width: min(100%, 620px);
    max-width: 620px;
    margin-inline: auto;
    gap: 24px;
  }

  .service-card,
  .product-card {
    border-radius: 12px;
  }

  .service-image,
  .service-grid-three .service-image,
  .product-image {
    height: clamp(176px, 25vw, 190px);
    aspect-ratio: auto;
  }

  .service-content,
  .service-grid-three .service-content {
    padding: 18px;
  }

  .service-content h3 {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .service-content > p:not(.eyebrow) {
    margin-block: 8px;
  }

  .service-number {
    top: 17px;
    right: 18px;
    font-size: 38px;
  }

  .check-list,
  .service-grid-three .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
    padding: 12px 0;
    font-size: 11px;
  }

  .service-footnote {
    margin-top: 16px;
  }

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

  .price-grid article {
    min-height: 0;
    padding: 16px;
  }

  .price-grid small {
    min-height: 0;
  }

  .price-grid strong {
    margin: 8px 0;
    font-size: clamp(24px, 4.4vw, 28px);
  }

  .price-notice,
  .purchase-policy {
    margin-top: 18px;
    padding: 17px;
  }

  .process-list {
    gap: 4px;
  }

  .process-list li {
    padding: 14px 8px;
  }

  .centered-actions {
    margin-top: 28px;
  }

  .product-grid {
    gap: 24px;
  }

  .product-body {
    padding: 16px;
  }

  .product-body h3 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .product-body > p:not(.product-category, .price) {
    min-height: 0;
    margin-bottom: 12px;
  }

  .product-footer {
    margin-top: 14px;
  }

  .representative-grid,
  .about-message-grid,
  .philosophy-grid,
  .company-grid,
  .detail-grid,
  .form-layout,
  .contact-cta-inner {
    gap: 26px;
  }

  .representative-photo,
  .about-portrait {
    width: min(100%, 370px);
    margin-inline: auto;
  }

  .representative-photo {
    height: clamp(340px, 50vw, 370px);
  }

  .about-portrait img {
    height: clamp(340px, 50vw, 370px);
    max-height: 370px;
  }

  .about-portrait > div {
    margin: -50px 12px 0;
    padding: 14px;
  }

  .values-grid {
    gap: 12px;
    margin-top: 28px;
  }

  .values-grid article {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    min-height: 110px;
    padding: 14px 16px;
  }

  .values-grid span {
    grid-row: 1 / span 2;
    align-self: center;
  }

  .values-grid h3 {
    align-self: end;
    margin: 0 0 3px;
    font-size: 18px;
  }

  .values-grid p {
    align-self: start;
    font-size: 11px;
    line-height: 1.6;
  }

  .philosophy-card {
    padding: 22px 20px;
  }

  .philosophy-card p {
    font-size: 14px;
    line-height: 1.85;
  }

  .company-work-image {
    height: clamp(176px, 25vw, 190px);
    margin-top: 20px;
  }

  .company-table > div {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .company-table dt,
  .company-table dd {
    padding: 12px 10px;
  }

  .area-inner {
    min-height: 0;
    padding: 44px 0;
  }

  .area-mark {
    right: -10px;
    bottom: -28px;
    font-size: 108px;
  }

  .contact-cta-inner {
    padding: 44px 0;
  }

  .contact-cta h2 {
    font-size: clamp(25px, 4.4vw, 29px);
  }

  .phone-panel {
    min-height: 72px;
    padding: 13px 18px;
  }

  .mini-cta-inner {
    min-height: 0;
    padding: 42px 0;
  }

  .page-hero-inner {
    min-height: 250px;
    padding: 42px 0;
  }

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

  .page-hero-inner > div:first-child > p:last-child {
    margin-top: 12px;
  }

  .page-hero-about .page-hero-inner {
    display: flex;
    min-height: 250px;
    padding: 42px 0;
  }

  .page-hero-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .page-hero-about .page-hero-logo {
    display: none;
  }

  .page-hero-logo-mobile {
    display: block;
    width: 71px;
    height: 71px;
    flex: 0 0 71px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 24px rgb(10 60 89 / 12%);
    opacity: .7;
  }

  .page-hero-logo-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .purchase-guide {
    padding: 44px 0;
  }

  .guide-grid {
    gap: 10px;
  }

  .guide-grid article {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 13px;
    min-height: 104px;
    padding: 15px 16px;
  }

  .guide-grid > article > span {
    grid-row: 1 / span 2;
    align-self: center;
  }

  .guide-grid h3 {
    align-self: end;
    margin: 0 0 3px;
    font-size: 16px;
  }

  .guide-grid p {
    align-self: start;
    font-size: 11px;
    line-height: 1.6;
  }

  .items-hero .page-hero-inner {
    min-height: 250px;
  }

  .items-hero-stack {
    right: 0;
    width: 170px;
    height: 155px;
  }

  .items-hero-stack img {
    width: 106px;
    height: 106px;
  }

  .contact-page-hero .page-hero-inner {
    display: grid;
    min-height: auto;
    gap: 18px;
    padding: 38px 0 32px;
  }

  .contact-page-hero .contact-hero-card {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 9px 13px 9px 9px;
    opacity: 1;
  }

  .contact-page-hero .contact-hero-card img {
    width: 54px;
    height: 54px;
    margin-right: 11px;
  }

  .contact-page-hero .contact-hero-card small {
    display: block;
  }

  .contact-options {
    margin-top: 0;
  }

  .contact-option-grid {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .contact-option {
    min-height: 130px;
    padding: 14px 16px;
  }

  .contact-option h2 {
    margin: 2px 0;
    font-size: clamp(20px, 4.2vw, 24px);
  }

  .contact-option p {
    min-height: 0;
    margin-bottom: 6px;
  }

  .form-section {
    padding-top: 44px;
  }

  .form-layout {
    gap: 24px;
  }

  .contact-form {
    padding: 18px;
  }

  .field {
    margin-bottom: 18px;
  }

  .social-links-large {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
  }

  .social-links-large a {
    padding: 7px 13px;
  }

  .social-scroll {
    grid-auto-columns: min(76vw, 360px);
    gap: 12px;
    padding-inline: 0;
  }

  .social-card img {
    height: 190px;
  }

  .social-card > span {
    padding: 13px;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 540px);
  }

  .section {
    padding: 42px 0;
  }

  .section-heading h2,
  .representative-copy h2,
  .prose h2,
  .philosophy-grid h2,
  .form-intro h2,
  .catalog-intro h2 {
    font-size: clamp(25px, 7.5vw, 27px);
  }

  .service-grid,
  .service-grid-three,
  .product-grid,
  .values-grid,
  .guide-grid,
  .product-grid-two {
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(31px, 8.3vw, 37px);
  }

  .hero-actions .button {
    font-size: 10px;
  }

  .contact-form {
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: 30px;
    line-height: 1.24;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions > :last-child {
    grid-column: auto;
  }

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

  .hero-social > div {
    gap: 5px;
  }

  .check-list,
  .service-grid-three .check-list,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-about .page-hero-inner {
    display: flex;
    min-height: 230px;
    padding: 36px 0;
  }

  .page-hero-title-row {
    gap: 10px;
  }

  .page-hero h1 {
    font-size: 35px;
  }

  .company-table > div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .company-table dt,
  .company-table dd {
    padding: 11px 8px;
    font-size: 11px;
  }

  .contact-option {
    min-height: 124px;
  }

  .social-scroll {
    grid-auto-columns: 82vw;
  }
}

/* Short phones keep all actions visible within the compact 620px hero. */
@media (max-width: 600px) and (max-height: 740px) {
  .hero-copy {
    padding-top: 20px;
  }

  .hero-copy h1 {
    line-height: 1.2;
  }

  .hero-lead {
    margin: 9px 0 11px;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 6px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 6px 8px;
  }

  .hero-social {
    gap: 4px 7px;
    margin-top: 6px;
  }

  .hero-social-link {
    min-height: 44px;
    padding-block: 4px;
  }

  .hero-notes {
    gap: 1px 10px;
    margin-top: 2px;
    line-height: 1.35;
  }
}

/* Final compact home composition. Keep every rule scoped below the 760px boundary. */
@media (max-width: 760px) {
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .header-inner {
    gap: 8px;
  }

  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .header-social-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }

  .header-social-mobile a {
    display: block;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
  }

  .header-social-mobile img {
    display: block;
    width: 34px;
    height: 34px;
    overflow: hidden;
    border-radius: 8px;
    object-fit: cover;
  }

  .header-social-mobile a:last-child img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .mobile-action-bar {
    min-height: calc(60px + env(safe-area-inset-bottom));
  }

  .mobile-action-bar a {
    min-height: 60px;
  }

  .hero,
  .hero-inner {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
  }

  .hero-background {
    right: auto;
    left: 12.5px;
    width: calc(100% - 25px);
    height: 375px;
    object-position: center 68%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, #f9fcfd 0%, #f9fcfd 34%, rgb(249 252 253 / 96%) 45%, rgb(249 252 253 / 68%) 68%, rgb(249 252 253 / 12%) 100%);
  }

  .hero-copy {
    width: 100%;
    padding: 0;
    transform: translateY(18px);
  }

  .hero-copy .eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(23px, 6.9vw, 30px);
    line-height: 1.34;
    letter-spacing: 0;
  }

  .mobile-title-break {
    display: block;
  }

  .hero-lead {
    margin: 10px 0 12px;
    font-size: 12px;
    line-height: 1.55;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 46px;
    padding: 7px 9px;
    font-size: 12px;
  }

  .hero-cta-desktop-label,
  .hero-line-action,
  .hero-social {
    display: none;
  }

  .hero-cta-mobile-label {
    display: inline;
  }

  .hero-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin-top: 8px;
    font-size: 8.5px;
    line-height: 1.35;
    text-align: center;
  }

  .hero-notes span {
    min-width: 0;
  }

  .hero-notes span::before {
    margin-right: 3px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2px;
    min-width: 0;
    min-height: 76px;
    padding: 8px 6px;
    border-right: 1px solid rgb(255 255 255 / 12%);
    border-bottom: 0;
    text-align: center;
  }

  .trust-grid > div:last-child {
    border-right: 0;
  }

  .trust-grid span {
    font-size: 15px;
    line-height: 1;
  }

  .trust-grid p {
    font-size: 8px;
    line-height: 1.4;
  }

  .trust-grid strong {
    font-size: 9px;
  }

  .pricing-section .section-heading.split-heading > p {
    display: none;
  }

  .product-grid,
  .product-grid-two {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 620px;
    gap: 8px;
  }

  .product-card {
    min-width: 0;
    border-radius: 8px;
  }

  .product-image {
    height: auto;
    aspect-ratio: 1;
  }

  .example-badge,
  .stock-badge {
    top: 4px;
    padding: 2px 4px;
    font-size: 7px;
    letter-spacing: 0;
  }

  .example-badge {
    left: 4px;
  }

  .stock-badge {
    right: 4px;
  }

  .product-body {
    min-width: 0;
    padding: 8px;
  }

  .product-category,
  .product-body > p:not(.product-category, .price),
  .product-facts,
  .product-footer .text-link,
  .product-card-actions {
    display: none;
  }

  .product-body h3 {
    display: -webkit-box;
    min-height: 2.7em;
    margin: 0;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-footer {
    display: block;
    margin-top: 5px;
  }

  .price {
    font-size: 12px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .price small {
    font-size: 7px;
  }

  .representative-grid {
    grid-template-columns: minmax(0, 35%) minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .representative-photo {
    width: 100%;
    height: clamp(210px, 35vw, 260px);
    margin: 0;
    border-radius: 8px;
  }

  .representative-photo img {
    object-fit: cover;
    object-position: center 22%;
  }

  .photo-caption {
    right: 5px;
    bottom: 5px;
    padding: 3px 5px;
    font-size: 8px;
  }

  .representative-copy {
    min-width: 0;
  }

  .representative-copy .eyebrow {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .representative-copy h2 {
    font-size: clamp(17px, 3vw, 21px);
    line-height: 1.45;
  }

  .representative-copy > p:not(.eyebrow) {
    margin: 7px 0;
    font-size: clamp(10px, 1.7vw, 12px);
    line-height: 1.62;
  }

  .representative-copy .text-link {
    min-height: 44px;
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.4;
  }

  .contact-cta-inner {
    grid-template-columns: minmax(0, 1fr) minmax(132px, .9fr);
    grid-template-rows: auto auto auto auto;
    align-items: center;
    gap: 10px 12px;
    padding: 36px 0;
  }

  .contact-cta-copy,
  .contact-cta-actions {
    display: contents;
  }

  .contact-cta-heading {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .contact-cta h2 {
    font-size: clamp(17px, 3.4vw, 23px);
    line-height: 1.5;
  }

  .contact-cta-copy > p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    font-size: 11px;
    line-height: 1.65;
  }

  .contact-cta .phone-panel {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    min-width: 0;
    min-height: 74px;
    padding: 11px 8px;
  }

  .contact-cta .phone-panel small,
  .contact-cta .phone-panel span {
    font-size: 9px;
  }

  .contact-cta .phone-panel strong {
    font-size: clamp(15px, 3.2vw, 22px);
    white-space: nowrap;
  }

  .contact-cta-actions > .button {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .contact-cta-actions > .social-inline {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .social-section .shell {
    display: flex;
    flex-direction: column;
  }

  .social-section .section-heading {
    order: 1;
  }

  .social-section .section-heading.split-heading > p,
  .social-section .social-hint {
    display: none;
  }

  .social-section .social-scroll {
    order: 2;
  }

  .social-section .social-links-large {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 3;
    gap: 8px;
    margin: 14px 0 0;
  }

  .social-section .social-links-large a {
    justify-content: center;
    min-width: 0;
    padding: 7px 8px;
    font-size: 10px;
  }

  .social-section .social-links-large .tiktok-link .social-link-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .ja-chunk {
    display: inline-block;
    max-width: 100%;
  }

  main :where(h1, h2, h3, p, li, dt, dd, a, small, strong) {
    line-break: strict;
    word-break: normal;
    text-wrap: pretty;
  }
}

@media (max-width: 420px) {
  .site-header .brand span {
    display: none;
  }

  .site-header .brand img {
    width: 46px;
    height: 46px;
  }
}

/*
 * Final mobile hero/header refinements.
 * Desktop and tablet rendering from 761px upward intentionally remains unchanged.
 */
@keyframes loader-drive-mobile {
  0% {
    left: 70px;
    transform: translateX(0) translateY(0) rotate(0deg);
  }

  48% {
    left: calc(100% - 122px);
    transform: translateY(-4px) rotate(-2deg);
  }

  52% {
    left: calc(100% - 114px);
    transform: translateY(0) rotate(1deg);
  }

  100% {
    left: calc(100% - 108px);
    transform: translateY(0) rotate(0deg);
  }
}

@media (max-width: 760px) {
  .hero-copy {
    position: static;
    padding: 18px 0 0;
    transform: none;
  }

  .hero-title-desktop-layout,
  .service-title-desktop {
    display: none;
  }

  .hero-title-mobile-layout {
    display: block;
  }

  .hero-title-mobile-line {
    display: inline-block;
    white-space: nowrap;
  }

  .hero-copy h1 {
    font-size: clamp(20px, 6.25vw, 30px);
    line-height: 1.34;
  }

  .hero-title-highlight::after {
    display: none;
  }

  .hero-actions {
    position: absolute;
    right: 0;
    bottom: 81px;
    left: 0;
    z-index: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
  }

  .hero-actions .button {
    min-height: 46px;
  }

  .hero-notes {
    position: absolute;
    right: 0;
    bottom: 62px;
    left: 0;
    z-index: 2;
    margin: 0;
  }

  .service-title-mobile {
    display: inline;
  }

  .service-title-mobile > span {
    display: inline-block;
    white-space: nowrap;
  }

  .service-section .section-heading h2 {
    font-size: clamp(20px, 4vw, 27px);
    line-height: 1.55;
    letter-spacing: 0;
  }

  .site-loader-home {
    right: 0;
  }

  .site-loader-truck-motion {
    animation-name: loader-drive-mobile;
  }

  .about-message .prose > p:not(.eyebrow) {
    margin: 12px 0;
    font-size: clamp(13px, 2vw, 14px);
    line-height: 1.76;
    text-wrap: pretty;
  }

  .about-copy-desktop {
    display: none;
  }

  .about-copy-mobile {
    display: inline;
  }
}

@media (max-width: 420px) {
  .site-header .header-inner {
    gap: 5px;
  }

  .site-header .brand {
    gap: 6px;
  }

  .site-header .brand span {
    display: grid;
    min-width: 0;
  }

  .site-header .brand strong {
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: .02em;
    white-space: nowrap;
  }

  .site-header .brand img {
    width: 38px;
    height: 38px;
  }

  .header-social-mobile {
    gap: 5px;
  }

  .header-social-mobile a,
  .header-social-mobile img,
  .header-social-mobile a:last-child img {
    width: 26px;
    height: 26px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 9px;
  }
}

/*
 * Targeted Japanese line protection and compact mobile hero.
 * Keep these rules local to the requested phrases instead of applying
 * word-break: keep-all globally, which creates overflow in longer copy.
 */
.ja-keep {
  display: inline;
  white-space: normal;
}

.shipping-policy-mobile,
.contact-hero-lead-mobile {
  display: none;
}

@media (max-width: 760px) {
  .ja-keep {
    display: inline-block;
    white-space: nowrap;
  }

  .hero,
  .hero-inner {
    height: 320px;
    min-height: 320px;
    max-height: 320px;
  }

  .hero {
    overflow: visible;
  }

  .hero-background {
    right: 0;
    left: 0;
    width: 100%;
    height: 320px;
    object-position: center 56%;
  }

  .hero-overlay {
    height: 320px;
    background: linear-gradient(180deg, #f9fcfd 0%, #f9fcfd 30%, rgb(249 252 253 / 96%) 40%, rgb(249 252 253 / 64%) 64%, rgb(249 252 253 / 10%) 100%);
  }

  .hero-copy {
    padding-top: 23px;
    transform: none;
  }

  .hero-copy .eyebrow {
    margin-bottom: 3px;
  }

  .hero-lead {
    margin: 5px 0 0;
    line-height: 1.42;
  }

  .hero-actions {
    top: 323px;
    bottom: auto;
  }

  .hero-notes {
    top: 296px;
    bottom: auto;
  }

  .trust-strip {
    margin-top: 55px;
  }

  .contact-cta-inner {
    grid-template-columns: minmax(0, 1fr) minmax(132px, .9fr);
    grid-template-rows: auto auto auto auto;
  }

  .contact-cta-heading {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .contact-cta-first-line {
    display: block;
  }

  .contact-cta-copy > p {
    grid-column: 1;
    grid-row: 2;
  }

  .contact-cta .phone-panel {
    grid-column: 2;
    grid-row: 2;
  }

  .contact-cta-actions > .button {
    grid-row: 3;
  }

  .contact-cta-actions > .social-inline {
    grid-row: 4;
  }

  .philosophy-card .ja-chunk {
    white-space: nowrap;
  }

  .mini-cta-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .mini-cta h2 {
    font-size: clamp(13px, 3.2vw, 18px);
    line-height: 1.35;
    letter-spacing: -.02em;
  }

  .shipping-policy-desktop,
  .contact-hero-lead-desktop {
    display: none;
  }

  .shipping-policy-mobile,
  .contact-hero-lead-mobile {
    display: inline;
  }

  .shipping-policy-mobile > span,
  .contact-hero-lead-mobile > span {
    display: inline-block;
    white-space: nowrap;
  }

  .purchase-policy .shipping-policy {
    font-size: clamp(9.5px, 2.7vw, 11.5px);
    line-height: 1.65;
    letter-spacing: -.045em;
  }

  .purchase-policy {
    padding: 8px;
  }

  .contact-page-hero .page-hero-inner > div:first-child > p.contact-hero-lead {
    font-size: clamp(9px, 2.8vw, 14px);
    line-height: 1.65;
    letter-spacing: -.035em;
  }

  .contact-option-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
  }

  .contact-option {
    min-width: 0;
    min-height: 112px;
    padding: clamp(4px, 1.2vw, 6px);
  }

  .contact-option + .contact-option {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .contact-option h2 {
    margin: 4px 0;
    font-size: clamp(9px, 2.7vw, 14px);
    line-height: 1.25;
    letter-spacing: -.04em;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .contact-option p {
    min-height: 2.8em;
    margin-bottom: 5px;
    font-size: clamp(9px, 2.5vw, 10px);
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .contact-option strong {
    font-size: clamp(9px, 2.5vw, 10px);
    line-height: 1.35;
  }

  .contact-option .option-label {
    font-size: clamp(9px, 2.5vw, 10px);
  }

  .line-option h2,
  .mail-option h2 {
    font-size: clamp(11px, 3.2vw, 14px);
  }

  .footer-brand p .ja-keep {
    white-space: nowrap;
  }
}
