:root {
  --ink: #111318;
  --muted: #5c6472;
  --line: #dce1e8;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --black: #0c1018;
  --red: #d51422;
  --gold: #f3bd20;
  --gold-dark: #b47a00;
  --shadow: 0 18px 48px rgba(12, 16, 24, .12);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(12, 16, 24, .08);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  transition: box-shadow .18s ease, background .18s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(12, 16, 24, .08);
  background: rgba(255, 255, 255, .96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
  font-size: 18px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 22px;
  overflow: hidden;
  border: 1px solid rgba(12, 16, 24, .14);
}

.brand-mark span:nth-child(1) { background: var(--black); }
.brand-mark span:nth-child(2) { background: var(--red); }
.brand-mark span:nth-child(3) { background: var(--gold); }

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

.site-nav a {
  text-decoration: none;
  color: #252a33;
}

.site-nav a:hover {
  color: var(--red);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 82svh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 9vw, 104px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 43%, rgba(255,255,255,.66) 66%, rgba(255,255,255,.92) 100%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f4 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 14px;
  background: linear-gradient(90deg, var(--black) 0 33.33%, var(--red) 33.33% 66.66%, var(--gold) 66.66% 100%);
  z-index: -1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: .98;
}

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

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.hero-copy p {
  max-width: 710px;
  color: #343b47;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-copy,
.section,
.visual-band,
.cta-section,
.page-main,
.site-header,
.site-footer {
  max-width: 100%;
}

.hero-image {
  position: absolute;
  right: clamp(-220px, -7vw, -70px);
  bottom: clamp(-140px, -9vw, -42px);
  z-index: 1;
  width: min(880px, 66vw);
  filter: drop-shadow(0 30px 42px rgba(12, 16, 24, .18));
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

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

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(213, 20, 34, .24);
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-facts span,
.mini-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(12, 16, 24, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 116px) clamp(18px, 4vw, 34px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.copy-block {
  max-width: 720px;
  color: #28303c;
  font-size: 19px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.feature-list div,
.price-summary div,
.inquiry-grid div,
.contact-aside,
.legal-content,
.notice,
.captcha-box,
.gallery figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-list div {
  padding: 18px;
}

.feature-list dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-list dd {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.visual-band {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #f4f4f2;
}

.visual-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.visual-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 24, .76) 0%, rgba(12, 16, 24, .38) 43%, rgba(12, 16, 24, .02) 100%);
}

.visual-band-text {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: clamp(44px, 7vw, 92px) clamp(20px, 6vw, 78px);
  color: #fff;
}

.visual-band-text .eyebrow {
  color: var(--gold);
}

.visual-band-text p {
  max-width: 560px;
  color: rgba(255, 255, 255, .88);
  font-size: 20px;
}

.price-summary,
.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.price-summary div,
.inquiry-grid div {
  padding: 18px;
}

.price-summary span,
.inquiry-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-summary strong,
.inquiry-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.section-actions {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 12px;
  margin-top: 22px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table th {
  background: var(--black);
  color: #fff;
  text-align: left;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.price-table tbody tr:nth-child(even) {
  background: #f7f8fa;
}

.price-table td:nth-child(2),
.price-table td:nth-child(3) {
  font-weight: 800;
  white-space: nowrap;
}

.best-row {
  color: #8a0f18;
  background: #fff1f1 !important;
  font-weight: 900;
}

.condition-note {
  margin-top: 16px;
  color: var(--muted);
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
  min-width: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  background: #f7f7f7;
}

.gallery figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: #363e4a;
  font-size: 14px;
  font-weight: 900;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto clamp(56px, 8vw, 96px);
  padding: clamp(34px, 5vw, 54px) clamp(18px, 4vw, 34px);
  border-top: 14px solid var(--black);
  background: linear-gradient(90deg, #fff7d7 0%, #ffffff 44%, #fff2f2 100%);
}

.cta-section p {
  max-width: 650px;
  color: #3f4650;
  font-size: 18px;
}

.page-main {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 4vw, 34px) clamp(72px, 8vw, 110px);
}

.page-hero {
  margin-bottom: 36px;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 24px;
  align-items: start;
}

.contact-form {
  padding: 0;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: #2d3440;
  font-size: 14px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cfd6df;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(243, 189, 32, .32);
  border-color: var(--gold-dark);
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.captcha-box {
  margin: 18px 0;
  padding: 16px;
  background: var(--soft);
}

.notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  font-weight: 800;
}

.notice-success {
  border-color: #b7dfc0;
  background: #ecfff0;
  color: #155724;
}

.notice-error {
  border-color: #efc2c6;
  background: #fff0f1;
  color: #8a0f18;
}

.contact-aside {
  padding: 22px;
  box-shadow: var(--shadow);
}

.contact-aside h2 {
  font-size: 28px;
}

.direct-link {
  display: block;
  margin: 10px 0;
  color: var(--red);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.mini-facts {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.legal-main {
  max-width: 900px;
}

.legal-content {
  padding: clamp(24px, 5vw, 42px);
}

.legal-content h2 {
  margin: 24px 0 8px;
  font-size: 22px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #333b47;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--black);
  color: #fff;
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
}

.site-footer span {
  color: rgba(255, 255, 255, .7);
}

.site-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  main,
  section,
  header,
  footer,
  nav,
  form,
  aside,
  figure,
  table,
  div {
    max-width: 100%;
  }

  .site-header,
  .site-footer,
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
    gap: 8px;
  }

  .site-nav a {
    padding: 8px 10px;
    border: 1px solid rgba(12, 16, 24, .1);
    border-radius: 6px;
    background: rgba(255, 255, 255, .75);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding-top: 58px;
    padding-bottom: 0;
  }

  .hero-image {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: min(680px, 100%);
    margin: -10px auto -44px;
  }

  .intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .price-summary,
  .inquiry-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    width: 100%;
    padding-top: 12px;
    padding-right: 14px;
    padding-bottom: 12px;
    padding-left: 14px;
  }

  .brand {
    font-size: 16px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    font-size: 13px;
  }

  .site-nav a {
    text-align: center;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(31px, 10vw, 46px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero-title .line {
    white-space: normal;
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .hero {
    gap: 6px;
    padding-top: 42px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-image {
    justify-self: center;
    width: min(520px, 100%);
    margin: 0 auto -30px;
  }

  .hero-facts,
  .hero-actions,
  .section-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .price-summary,
  .inquiry-grid,
  .gallery,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
  }

  .price-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  .price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .price-table tr {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .price-table tbody tr:nth-child(even) {
    background: #fff;
  }

  .price-table td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 13px;
    border-bottom: 1px solid var(--line);
    text-align: right;
    white-space: normal;
  }

  .price-table td::before {
    content: attr(data-label);
    flex: 0 0 43%;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
  }

  .price-table td:last-child {
    border-bottom: 0;
  }

  .price-table td:nth-child(2),
  .price-table td:nth-child(3) {
    white-space: normal;
  }

  .gallery img {
    aspect-ratio: 1.08 / 1;
  }

  .cta-section {
    margin-bottom: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .visual-band {
    min-height: 520px;
  }

  .visual-band img {
    object-position: 63% 50%;
  }

  .visual-band::after {
    background: linear-gradient(180deg, rgba(12, 16, 24, .08) 0%, rgba(12, 16, 24, .82) 78%);
  }

  .visual-band-text {
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 260px;
  }

  input,
  textarea {
    font-size: 16px;
  }

  .captcha-box {
    padding: 12px;
  }
}

@media (max-width: 420px) {
  .section,
  .page-main,
  .cta-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    gap: 9px;
    font-size: 15px;
  }

  .brand-mark {
    width: 30px;
  }

  .hero-image {
    width: 100%;
    margin-bottom: -24px;
  }

  .hero-facts span,
  .mini-facts span {
    width: 100%;
    justify-content: center;
  }

  .price-table td {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    text-align: left;
  }

  .price-table td::before {
    flex-basis: auto;
  }

  .captcha-box {
    padding: 10px;
  }
}
