:root {
  --color-262626: #262626;
  --color-ff8228: #ff8228;

  --font-115: clamp(56px, 6vw, 115px);
  --font-72: clamp(28px, 3.9vw, 72px);
  --font-48: clamp(24px, 2.6vw, 48px);
  --font-36: clamp(22px, 1.9vw, 36px);
  --font-22: clamp(16px, 1.15vw, 22px);
  --font-20: clamp(14px, 1.05vw, 20px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-262626);
  background: white;
}

.a14-page {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.a14-hero {
  position: relative;
  padding-top: 7vw;
  background: white;
}

.a14-hero::after {
  position: absolute;
  right: 12.5%;
  bottom: 0;
  left: 12.5%;
  height: 1px;
  background: color-mix(in srgb, var(--color-262626) 46%, white);
  content: "";
}

.a14-title h1 {
  margin: 0 auto;
  font-size: var(--font-115);
  font-weight: 700;
  line-height: .92;
}

.a14-title h1::after {
  display: block;
  width: 20.833vw;
  max-width: 400px;
  height: 1px;
  margin: .04em auto .13em;
  background: var(--color-262626);
  content: "";
}

.a14-title p {
  margin: 0;
  font-size: var(--font-22);
  font-weight: 400;
  line-height: 1.18;
}

.subtitle-tail::before,
.esc-tail::before {
  content: " ";
}

.a14-product {
  width: 100%;
  margin-top: 5vw;
}

.a14-product img {
  display: block;
  width: 100%;
  height: auto;
}

.a14-parts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1200px;
  margin: 7vw auto 0;
  align-items: end;
  padding-bottom: 2vw;
}

.a14-part strong,
.a14-part>span {
  display: block;
}

.a14-part strong span {
  display: inline;
}

.a14-part strong {
  font-size: var(--font-48);
  font-weight: 400;
  line-height: .96;
}

.a14-part>span {
  margin-top: .22em;
  color: color-mix(in srgb, var(--color-262626) 58%, white);
  font-size: var(--font-20);
  font-weight: 400;
  line-height: 1.1;
}

.a14-recommendations {
  padding-top: 8vw;
  padding-bottom: 8vw;
  background: white;
}

.a14-recommendations h2 {
  margin: 0;
  font-size: var(--font-72);
  font-weight: 700;
  line-height: 1;
}

.a14-rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1280px;
  margin: 5.2vw auto 0;
}

.a14-rec-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
}

.a14-rec-item {
  min-height: 4.5vw;
  padding: 0 .7vw;
  text-align: center;
}

.a14-rec-item+.a14-rec-item {
  position: relative;
}

.a14-rec-item+.a14-rec-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: clamp(28px, 2.5vw, 48px);
  background: color-mix(in srgb, var(--color-262626) 54%, white);
  transform: translateY(-50%);
}

.a14-rec-item p,
.a14-rec-item span {
  margin: 0;
  color: color-mix(in srgb, var(--color-262626) 62%, white);
  font-size: var(--font-20);
  font-weight: 400;
  line-height: 1.2;
}

.rec-caption span {
  display: inline;
}

.caption-tail::before {
  content: " ";
}

.a14-rec-item strong {
  display: block;
  margin: .38em 0 .32em;
  color: var(--color-ff8228);
  font-size: var(--font-48);
  font-weight: 400;
  line-height: .95;
}

@media (max-width: 750px) {
  .a14-hero {
    padding-top: 120px;
  }

  .a14-hero::after {
    display: none;
  }

  .a14-title h1 {
    font-size: var(--font-115);
    line-height: .9;
  }

  .a14-title h1::after {
    width: 250px;
    margin: .18em auto .12em;
  }

  .a14-title p {
    font-size: var(--font-20);
    line-height: 1.4;
  }

  .subtitle-tail {
    display: block;
  }

  .subtitle-tail::before {
    content: "";
  }

  .a14-product {
    margin-top: 100px;
  }

  .a14-product img {
    width: 400vw;
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .a14-parts {
    width: 100%;
    max-width: none;
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 0 5%;
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .a14-part strong {
    font-size: var(--font-48);
    line-height: 1.05;
  }

  .a14-part>span {
    margin-top: .3em;
    font-size: var(--font-20);
    line-height: 1.2;
  }

  .a14-part-esc .esc-tail {
    display: block;
  }

  .a14-part-esc .esc-tail::before {
    content: "";
  }

  .a14-recommendations {
    padding-top: 90px;
    background: color-mix(in srgb, var(--color-262626) 4%, white);
  }



  .a14-recommendations h2 span {
    display: none;
  }

  .a14-rec-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: none;
    margin-top: 80px;
    padding: 0 5% 80px 5%;
    row-gap: 40px;
  }

  .a14-rec-item {
    padding: 0;
  }

  .a14-rec-item+.a14-rec-item {
    position: static;
  }

  .a14-rec-item+.a14-rec-item::before {
    display: none;
  }

  .a14-rec-item:nth-child(1) {
    order: 1;
  }

  .a14-rec-item:nth-child(3) {
    order: 2;
  }

  .a14-rec-item:nth-child(2) {
    order: 3;
  }

  .a14-rec-item:nth-child(4) {
    order: 4;
  }

  .a14-rec-item p,
  .a14-rec-item span {
    font-size: var(--font-22);
    line-height: 1.25;
  }

  .a14-rec-item span {
    display: block;
    max-width: none;
    margin: 0 auto;
  }

  .rec-caption span {
    display: block;
  }

  .caption-tail::before {
    content: "";
  }

  .a14-rec-item strong {
    margin: 3vw 0;
    font-size: var(--font-48);
    line-height: .95;
  }
}
