:root {
  --blue: #155fc5;
  --blue-dark: #073a7c;
  --blue-deep: #062957;
  --aqua: #78d8ef;
  --ink: #13243a;
  --muted: #627187;
  --line: #dce6f1;
  --tint: #f3f8fc;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 24px 60px rgb(19 59 102 / 12%);
  --container: min(1120px, calc(100% - 48px));
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--white);
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
}

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

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

.nowrap {
  white-space: nowrap;
}

button {
  font: inherit;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.section--tint {
  background: var(--tint);
}

.section--deep {
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.section-heading {
  max-width: 680px;
}

.section-heading--center {
  margin: 0 auto 56px;
  text-align: center;
}

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

h1,
h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 4.2vw, 52px);
}

h3 {
  line-height: 1.5;
}

.lead {
  color: var(--blue-dark);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.8;
}

.caption {
  color: var(--muted);
  font-size: 12px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
  box-shadow: 0 12px 24px rgb(21 95 197 / 24%);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 32px rgb(21 95 197 / 30%);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.button--small {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 14px;
}

.button--white {
  border-color: var(--white);
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: none;
}

.button--white:hover {
  color: var(--white);
  background: transparent;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: rgb(18 54 94 / 8%);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 4px 30px rgb(8 49 94 / 8%);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(1240px, calc(100% - 48px));
  height: 82px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: block;
  width: 208px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.global-nav > a:not(.button) {
  position: relative;
}

.global-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.global-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  align-items: center;
  margin-bottom: 62px;
  padding: 112px max(48px, calc((100% - 1120px) / 2)) 90px;
  background: url("assets/mv.jpg?260806") 58% 48% / cover no-repeat;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(6 41 87 / 1%) 58%, rgb(6 41 87 / 10%) 100%),
    linear-gradient(90deg, rgb(255 255 255 / 78%) 0%, rgb(255 255 255 / 52%) 28%, rgb(255 255 255 / 8%) 52%, transparent 64%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(600px, 50vw);
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(40px, 3.8vw, 48px);
  line-height: 1.35;
  text-shadow: 0 2px 14px rgb(255 255 255 / 90%);
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 13px;
  background: rgb(120 216 239 / 38%);
  content: "";
}

.hero__lead {
  margin-bottom: 34px;
  font-size: 18px;
  font-weight: 500;
}

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

.hero__facts {
  position: absolute;
  z-index: 2;
  bottom: -56px;
  left: 50%;
  display: flex;
  width: min(1000px, calc(100% - 96px));
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.hero__facts div {
  display: flex;
  flex: 1;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
}

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

.hero__facts strong {
  color: var(--blue);
  font-family: "Shippori Mincho", serif;
  font-size: 31px;
  line-height: 1;
}

.hero__facts span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 50px 80px;
}

.intro__copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.intro__image {
  position: relative;
  grid-column: 1 / -1;
  margin: 0;
}

.intro__image::before {
  position: absolute;
  z-index: -1;
  top: 34px;
  left: -34px;
  width: 60%;
  height: 100%;
  background: var(--tint);
  content: "";
}

.intro__image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 42px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgb(18 59 105 / 7%);
}

.feature-card__number {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #d6e5f4;
  font-family: "Shippori Mincho", serif;
  font-size: 58px;
  line-height: 1;
}

.feature-card__icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-family: "Shippori Mincho", serif;
  font-size: 36px;
}

.feature-card__icon--line {
  color: var(--blue);
  background: #e8f4fb;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.flow .section-heading {
  margin-bottom: 62px;
}

.flow .section-heading > p:last-child {
  color: var(--muted);
}

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

.flow-list li {
  position: relative;
  padding: 34px 30px 14px;
  border-top: 2px solid var(--blue);
}

.flow-list li + li {
  border-left: 1px solid var(--line);
}

.flow-list li::before {
  position: absolute;
  top: -7px;
  left: 28px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
  content: "";
}

.flow-list span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.flow-list h3 {
  margin-block: 8px 12px;
  font-size: 20px;
}

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

.bottle-options {
  margin-top: 72px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--tint);
}

.bottle-options__heading {
  text-align: center;
}

.bottle-options__heading h3 {
  margin-block: 8px 12px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(28px, 3.5vw, 42px);
}

.bottle-options__heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.bottle-options__visual {
  overflow: hidden;
  margin: 36px 0 40px;
  border-radius: 16px;
  background: #5fa2dc;
}

.bottle-options__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.bottle-options__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bottle-options__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.bottle-options__list li > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.bottle-options__list li > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.bottle-options__list strong {
  font-size: 14px;
  line-height: 1.45;
}

.bottle-options__list small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.bottle-options > .caption {
  margin: 18px 0 0;
  text-align: right;
}

.design-guide .section-heading > p:last-child {
  color: var(--muted);
}

.design-guide__steps {
  display: grid;
  gap: 24px;
}

.design-step {
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgb(19 59 102 / 8%);
}

.design-step__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}

.design-step__heading > span {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 18px;
  font-weight: 800;
}

.design-step__heading p {
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.design-step__heading h3 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(23px, 3vw, 34px);
}

.design-step__body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: 54px;
}

.design-step__copy ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.design-step__copy li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.design-step__copy li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.design-step__copy p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.design-step__copy p:last-child {
  margin-bottom: 0;
}

.design-step__bottles {
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
  background: #5fa2dc;
}

.design-step__bottles img {
  width: 100%;
}

.design-data-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.design-data-visual > div {
  display: grid;
  min-height: 112px;
  align-content: center;
  justify-items: center;
  padding: 18px;
  border: 1px solid #c9d9ea;
  border-radius: 14px;
  color: var(--blue-dark);
  background: #f5f9fd;
  text-align: center;
}

.design-data-visual > div:last-child {
  grid-column: 1 / -1;
}

.design-data-visual strong {
  font-size: clamp(20px, 2.7vw, 30px);
  letter-spacing: .06em;
}

.design-data-visual span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.white-ink-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid #dce6ef;
  border-radius: 16px;
  background: #f8f4ed;
  box-shadow: 0 18px 36px rgb(20 61 104 / 10%);
}

.white-ink-visual img {
  width: 100%;
}

.white-ink-compare {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(145deg, #dcc4a4, #f5e9d8);
}

.white-ink-sample {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 70%);
  text-align: center;
}

.white-ink-sample::after {
  position: absolute;
  right: -5%;
  bottom: -42px;
  left: -5%;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(90deg, #77d8ef, #1689dd 55%, #95e7f3);
  content: "";
  opacity: .8;
}

.white-ink-sample--full {
  background: rgb(255 255 255 / 96%);
}

.white-ink-sample--clear {
  background: rgb(255 255 255 / 30%);
  backdrop-filter: blur(2px);
}

.white-ink-sample > span {
  position: absolute;
  top: 7px;
  right: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.white-ink-sample strong,
.white-ink-sample small {
  position: relative;
  z-index: 1;
}

.white-ink-sample strong {
  color: var(--blue);
  font-size: 18px;
}

.white-ink-sample small {
  color: var(--muted);
  font-size: 10px;
}

.split-delivery {
  padding-top: 36px;
}

.split-delivery__heading {
  margin-bottom: 64px;
}

.split-delivery__heading > p:last-child {
  max-width: 760px;
  color: var(--muted);
}

.split-delivery__diagram {
  margin: 0 0 82px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.split-delivery__diagram img {
  width: 100%;
  border-radius: 10px;
}

.split-delivery__diagram figcaption {
  padding: 14px 10px 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.delivery-flow-mobile {
  display: none;
}

.split-delivery__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 80px;
}

.split-delivery__image {
  position: relative;
}

.split-delivery__image img {
  width: 100%;
  min-height: 480px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-delivery__image span {
  position: absolute;
  bottom: -22px;
  left: -18px;
  padding: 16px 24px;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.split-delivery__copy h3 {
  margin-bottom: 18px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(26px, 3vw, 36px);
}

.split-delivery__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 18px;
  margin-block: 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 38px;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: .35em;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  content: "✓";
  font-size: 12px;
}

.split-delivery__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.delivery-panel {
  padding: 36px 38px;
  border-radius: var(--radius);
}

.delivery-panel--problem {
  border: 1px solid #d9e1ea;
  background: #f7f9fb;
}

.delivery-panel--solution {
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.delivery-panel__label {
  margin-bottom: 24px;
  font-size: 19px;
  font-weight: 700;
}

.delivery-panel ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-panel li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
}

.delivery-panel li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  content: "？";
  font-weight: 800;
}

.delivery-panel--solution li::before {
  color: var(--aqua);
  content: "✓";
}

.split-delivery__caption {
  margin: 24px 0 48px;
  text-align: right;
}

.printing .section-heading > p:last-child {
  color: var(--muted);
}

.printing__machine {
  display: grid;
  justify-items: center;
  margin: 0 auto 58px;
}

.printing__machine img {
  width: min(760px, 82%);
  filter: drop-shadow(0 24px 24px rgb(6 41 87 / 12%));
}

.printing__machine figcaption {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.printing__machine figcaption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.printing__machine figcaption strong {
  color: var(--blue-dark);
  font-size: clamp(22px, 3vw, 32px);
}

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

.printing-card {
  position: relative;
  min-height: 330px;
  padding: 40px 32px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.printing-card__number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #dbe9f7;
  font-family: "Shippori Mincho", serif;
  font-size: 54px;
  line-height: 1;
}

.printing-card h3 {
  position: relative;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: 21px;
}

.printing-card p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.premium-water {
  overflow: hidden;
}

.premium-water__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 72px;
}

.premium-water__copy h2 {
  margin-bottom: 28px;
}

.premium-water__copy h3 {
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.8vw, 30px);
}

.premium-water__copy > p:not(.eyebrow) {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.premium-water__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.premium-water__facts > div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--tint);
}

.premium-water__facts strong {
  color: var(--blue);
  font-size: 18px;
}

.premium-water__facts span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
}

.premium-water__image {
  position: relative;
  margin: 0;
}

.premium-water__image::before {
  position: absolute;
  z-index: -1;
  top: 38px;
  right: -48px;
  width: 76%;
  height: 100%;
  border-radius: var(--radius);
  background: #e8f3fb;
  content: "";
}

.premium-water__image img {
  width: 100%;
  min-height: 560px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.premium-water__image figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgb(6 41 87 / 78%);
  font-size: 10px;
  font-weight: 700;
}

.quality {
  position: relative;
}

.quality::before {
  position: absolute;
  top: -180px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgb(120 216 239 / 18%);
  border-radius: 50%;
  content: "";
}

.quality .eyebrow {
  color: var(--aqua);
}

.quality__heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.quality__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -56px;
}

.quality__heading h2 {
  margin-bottom: 0;
}

.quality__heading > p:last-child {
  margin: 0;
  color: rgb(255 255 255 / 70%);
}

.quality__gallery {
  display: grid;
  grid-template-columns: .8fr 1.2fr .8fr;
  gap: 14px;
}

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

.quality__gallery img:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.quality__gallery img:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quality__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.quality__badges > div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
}

.quality__badges > div + div {
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.quality__badges strong {
  color: var(--aqua);
  font-family: "Shippori Mincho", serif;
  font-size: 27px;
}

.quality__badges span {
  color: rgb(255 255 255 / 72%);
  font-size: 11px;
  line-height: 1.6;
}

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

.use-cases__title {
  font-size: clamp(25px, 4vw, 52px);
  white-space: nowrap;
}

.case-card__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.case-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease;
}

.case-card:hover img {
  transform: scale(1.04);
}

.case-card__image span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
}

.case-card h3 {
  margin: 24px 0 8px;
  font-size: 21px;
}

.case-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.faq .section-heading p:last-child {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 52px;
}

.faq-group {
  border-top: 1px solid var(--line);
}

.faq-group > h3 {
  margin: 0;
  padding: 22px 0 18px;
  color: var(--blue-dark);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px, 2.8vw, 32px);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 42px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  position: absolute;
  left: 4px;
  color: var(--blue);
  content: "Q";
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "+";
  color: var(--blue);
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 20px 26px 42px;
  color: var(--muted);
  font-size: 14px;
}

.faq-bottle-counts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin: 0;
  padding: 0 20px 20px 42px;
  list-style: none;
}

.faq-bottle-counts li {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--white);
}

.faq-bottle-counts strong {
  color: var(--ink);
  font-size: 12px;
}

.faq-bottle-counts span {
  color: var(--muted);
  font-size: 11px;
}

.faq-list details .faq-note {
  margin: 0 20px 26px 42px;
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  color: var(--blue-dark);
  background: #eaf3fc;
  font-weight: 700;
}

.company {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgb(120 216 239 / 16%), transparent 28%),
    linear-gradient(180deg, #fff, #f2f7fc);
}

.company__heading {
  margin-bottom: 54px;
}

.company__heading .eyebrow {
  color: var(--blue);
}

.company__name {
  margin: 0;
  color: var(--blue-dark);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 2.7vw, 30px);
  font-weight: 700;
}

.company__name span {
  display: inline-block;
}

.company__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
}
.company__grid_f {
  margin-bottom: 40px;
}

.company-card {
  position: relative;
  overflow: hidden;
  padding: 38px 40px 40px;
  border: 1px solid #d8e4ef;
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 20px 50px rgb(18 59 105 / 9%);
}

.company-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgb(31 105 202 / 10%);
  border-radius: 50%;
  content: "";
}

.company-card__title {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.company-card__title span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.company-card__title h3 {
  margin: 0;
  color: var(--blue-dark);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 2.2vw, 27px);
}

.company-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  margin: 0;
}

.company-card dl > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
}

.company-card dt {
  padding-top: 2px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.company-card dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.9;
}

.company-card dd a {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
}

.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgb(120 216 239 / 24%), transparent 28%),
    linear-gradient(135deg, #285dbf, #123e91 58%, #082f70);
}

.contact .eyebrow {
  color: var(--aqua);
}

.contact__shell {
  display: grid;
  gap: 54px;
}

.contact__top {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}

.contact__intro {
  padding: 34px 38px;
  border: 1px solid rgb(255 255 255 / 12%);
  background: rgb(6 41 87 / 22%);
  box-shadow: 0 20px 50px rgb(6 25 64 / 13%);
}

.contact h2 {
  font-size: clamp(30px, 3.7vw, 48px);
}

.contact__line {
  display: block;
  white-space: nowrap;
}

.contact__intro > p:last-child {
  margin-bottom: 0;
  color: rgb(255 255 255 / 75%);
}

.contact__tel {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: rgb(6 41 87 / 30%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
  transition: background .25s ease, transform .25s ease;
}

.contact__tel:hover {
  background: rgb(6 41 87 / 44%);
  transform: translateY(-2px);
}

.contact__tel span,
.contact__tel small {
  color: rgb(255 255 255 / 72%);
  font-size: 11px;
}

.contact__tel strong {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.4;
  letter-spacing: .04em;
}

.contact__tel .contact__tel-note {
  max-width: 420px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgb(255 255 255 / 18%);
  color: rgb(255 255 255 / 84%);
  line-height: 1.7;
  font-size: 16px;
}

.contact-form {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 38px 44px;
  padding: 44px 48px;
  border: 1px solid rgb(255 255 255 / 42%);
  color: var(--ink);
  background: linear-gradient(135deg, #effaff, #aadcf4 54%, #79b6e7);
  box-shadow: 0 26px 70px rgb(5 30 75 / 28%);
}

.contact-form__heading .eyebrow {
  color: var(--blue);
}

.contact-form__heading h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(25px, 3vw, 34px);
}

.contact-form__heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-form__fields {
  display: grid;
  gap: 14px;
}

.contact-form__fields label {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 16px;
}

.contact-form__fields label > span {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.contact-form__fields em {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 9px;
  font-style: normal;
}

.contact-form__fields input,
.contact-form__fields textarea {
  width: 100%;
  border: 1px solid rgb(7 58 124 / 18%);
  border-radius: 5px;
  color: var(--ink);
  background: rgb(255 255 255 / 96%);
  font: inherit;
  box-shadow: inset 0 1px 3px rgb(6 41 87 / 8%);
}

.contact-form__fields input {
  min-height: 44px;
  padding: 8px 12px;
}

.contact-form__fields textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.contact-form__fields input:focus,
.contact-form__fields textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgb(21 95 197 / 18%);
}

.contact-form .button {
  grid-column: 2;
  min-width: 300px;
  justify-self: end;
  border: 0;
  cursor: pointer;
}

.contact-form .button span {
  margin-left: 10px;
}

.site-footer {
  padding-block: 54px;
  background: var(--white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.site-footer img {
  width: 180px;
}

.site-footer p,
.site-footer small {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

.confirm-body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgb(120 216 239 / 32%), transparent 25%),
    linear-gradient(145deg, #eef8ff, #f8fbfe 54%, #e8f3fb);
}

.confirm-header {
  display: flex;
  width: min(1120px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding-block: 24px;
}

.confirm-header img {
  width: 180px;
}

.confirm-header > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}

.confirm-main {
  display: grid;
  min-height: calc(100vh - 174px);
  place-items: center;
  padding: 44px 24px 80px;
}

.confirm-card {
  position: relative;
  width: min(880px, 100%);
  padding: 58px 64px 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 30px 90px rgb(18 59 105 / 16%);
}

.confirm-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  content: "";
}

.confirm-card__heading {
  max-width: 650px;
  margin-bottom: 42px;
}

.confirm-card__heading h1 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.45;
}

.confirm-card__heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.confirm-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.confirm-details > div {
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.confirm-details dt,
.confirm-details dd {
  margin: 0;
  padding: 17px 20px;
}

.confirm-details dt {
  color: var(--blue-dark);
  background: #eaf4fc;
  font-size: 13px;
  font-weight: 700;
}

.confirm-details dd {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.confirm-details__message dd {
  min-height: 130px;
  white-space: pre-wrap;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 14px;
  margin-top: 34px;
}

.confirm-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.confirm-button--back {
  color: var(--blue);
  background: var(--white);
}

.confirm-button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgb(21 95 197 / 24%);
}

.confirm-button--primary span {
  margin-left: 10px;
}

.confirm-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.confirm-footer {
  padding: 0 24px 34px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.thanks-card {
  position: relative;
  width: min(760px, 100%);
  padding: 68px 56px 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgb(255 255 255 / 95%);
  box-shadow: 0 30px 90px rgb(18 59 105 / 16%);
  text-align: center;
}

.thanks-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  content: "";
}

.thanks-card__icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), #56c8e7);
  font-size: 32px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgb(21 95 197 / 25%);
}

.thanks-card h1 {
  margin: 0 0 24px;
  color: var(--blue-dark);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.5;
}

.thanks-card__message {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 600;
}

.thanks-card__note {
  max-width: 570px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.thanks-card__button {
  width: min(330px, 100%);
  margin-top: 36px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 960px) {
  .section {
    padding-block: 88px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 0;
    color: var(--blue-dark);
    background: transparent;
    cursor: pointer;
  }

  .menu-button__label {
    position: absolute;
    bottom: 1px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
  }

  .menu-button__icon,
  .menu-button__icon::before,
  .menu-button__icon::after {
    position: absolute;
    width: 26px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform .25s ease, opacity .25s ease;
  }

  .menu-button__icon::before {
    transform: translateY(-8px);
  }

  .menu-button__icon::after {
    transform: translateY(8px);
  }

  .menu-button[aria-expanded="true"] .menu-button__icon {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] .menu-button__icon::before {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button__icon::after {
    transform: rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    background: rgb(255 255 255 / 98%);
    font-size: 18px;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .global-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .hero {
    min-height: 760px;
    padding-inline: 32px;
    background-position: 61% 50%;
  }

  .hero__content {
    width: min(540px, 66vw);
  }

  .hero__facts {
    right: auto;
    left: 50%;
    width: min(760px, calc(100% - 64px));
  }

  .intro__grid,
  .split-delivery__grid,
  .contact__shell {
    gap: 50px;
  }

  .feature-grid,
  .case-grid {
    gap: 16px;
  }

  .flow-list {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }

  .bottle-options__list {
    grid-template-columns: 1fr 1fr;
  }

  .design-step__body {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .quality__heading {
    gap: 40px;
  }

  .quality__badges > div {
    display: grid;
    gap: 8px;
    padding: 24px 18px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 40px);
  }

  body {
    padding-bottom: 64px;
    font-size: 15px;
  }

  .section {
    padding-block: 72px;
  }

  .header-inner {
    width: calc(100% - 32px);
    height: 68px;
  }

  .brand {
    width: 160px;
  }

  .hero {
    min-height: 760px;
    align-items: start;
    margin-bottom: 72px;
    padding: 112px 20px 76px;
    background-position: 69% 50%;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgb(255 255 255 / 72%) 0%, rgb(255 255 255 / 40%) 31%, transparent 54%, rgb(6 41 87 / 7%) 100%);
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 27px;
    letter-spacing: 0;
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .hero__lead span {
    display: block;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero__actions .button {
    min-height: 52px;
    padding-inline: 24px;
  }

  .hero__facts {
    right: auto;
    bottom: -58px;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% - 40px);
    transform: translateX(-50%);
  }

  .hero__facts div {
    display: grid;
    min-height: 86px;
    align-content: center;
    gap: 7px;
    padding: 14px 8px;
    text-align: center;
  }

  .hero__facts strong {
    font-size: 29px;
  }

  .hero__facts span {
    font-size: 9px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 18px;
  }

  .intro__grid,
  .split-delivery__grid,
  .split-delivery__details,
  .premium-water__grid,
  .quality__heading,
  .faq__grid,
  .contact__top {
    grid-template-columns: 1fr;
  }

  .intro__grid {
    gap: 32px;
  }

  .intro__copy {
    order: 2;
  }

  .intro__image {
    order: 3;
  }

  .intro__image img {
    aspect-ratio: 4 / 3;
  }

  .premium-water__grid {
    gap: 42px;
  }

  .premium-water__image img {
    min-height: 340px;
  }

  .premium-water__image::before {
    right: -20px;
  }

  .feature-grid,
  .printing__features,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .printing__machine img {
    width: 100%;
  }

  .printing__features {
    gap: 16px;
  }

  .printing-card {
    min-height: 0;
  }

  .feature-card {
    min-height: 0;
  }

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

  .flow-list li + li {
    border-left: 0;
  }

  .bottle-options {
    margin-top: 48px;
    padding: 30px 20px;
  }

  .bottle-options__visual {
    margin: 28px -10px 30px;
    border-radius: 12px;
  }

  .bottle-options__list {
    grid-template-columns: 1fr;
  }

  .bottle-options > .caption {
    text-align: left;
  }

  .design-step {
    padding: 30px 22px;
  }

  .design-step__heading {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
  }

  .design-step__heading > span {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    font-size: 14px;
  }

  .design-step__heading h3 {
    font-size: 23px;
  }

  .design-step__body {
    gap: 28px;
  }

  .design-step__copy li,
  .design-step__copy p {
    font-size: 13px;
  }

  .design-data-visual {
    grid-template-columns: 1fr;
  }

  .design-data-visual > div:last-child {
    grid-column: auto;
  }

  .split-delivery {
    padding-top: 0;
  }

  .split-delivery__grid {
    gap: 60px;
  }

  .split-delivery__heading {
    margin-bottom: 46px;
  }

  .split-delivery__diagram {
    display: none;
  }

  .delivery-flow-mobile {
    display: block;
    margin-bottom: 60px;
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #f8fbff, #fff);
    box-shadow: 0 14px 40px rgb(18 59 105 / 8%);
  }

  .delivery-flow-mobile__summary {
    display: grid;
    gap: 4px;
    margin-bottom: 28px;
    padding: 18px;
    border: 2px solid var(--blue);
    border-radius: 12px;
    color: var(--blue-dark);
    text-align: center;
  }

  .delivery-flow-mobile__summary strong {
    font-size: 17px;
  }

  .delivery-flow-mobile__summary span {
    font-size: 13px;
    font-weight: 600;
  }

  .delivery-flow-mobile ol {
    display: grid;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .delivery-flow-mobile li {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 17px 18px;
    border-radius: 12px;
    background: var(--tint);
  }

  .delivery-flow-mobile li:not(:last-child)::after {
    position: absolute;
    bottom: -25px;
    left: 50%;
    color: var(--blue);
    content: "↓";
    font-size: 21px;
    font-weight: 800;
    transform: translateX(-50%);
  }

  .delivery-flow-mobile li span {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--white);
    background: var(--blue);
    font-size: 10px;
    font-weight: 700;
  }

  .delivery-flow-mobile li strong {
    color: var(--blue-dark);
    font-size: 16px;
  }

  .delivery-flow-mobile__end {
    margin: 26px 0 0;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  .split-delivery__image img {
    min-height: 300px;
  }

  .split-delivery__details {
    gap: 16px;
    margin-top: 32px;
  }

  .delivery-panel {
    padding: 28px 24px;
  }

  .split-delivery__caption {
    margin-bottom: 36px;
    text-align: left;
  }

  .quality__heading {
    gap: 20px;
  }

  .quality__heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

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

  .quality__gallery img {
    height: 220px;
    border-radius: 12px !important;
  }

  .quality__gallery img:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 1;
  }

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

  .quality__badges > div {
    grid-template-columns: 120px 1fr;
  }

  .quality__badges > div + div {
    border-top: 1px solid rgb(255 255 255 / 18%);
    border-left: 0;
  }

  .case-grid {
    gap: 42px;
  }

  .faq__grid,
  .contact__shell {
    gap: 42px;
  }

  .faq-bottle-counts {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .faq-list details .faq-note {
    margin-right: 0;
  }

  .company__heading {
    margin-bottom: 38px;
  }

  .company__grid {
    grid-template-columns: 1fr;
  }
  .company__grid_f {
    margin-bottom: 30px;
  }

  .company-card {
    padding: 30px 24px;
  }

  .company-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact {
    text-align: center;
  }

  .contact__top {
    gap: 24px;
  }

  .contact__intro {
    padding: 28px 22px;
  }

  .contact__tel {
    min-height: 148px;
    padding: 24px 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 20px;
    text-align: left;
  }

  .contact-form__heading {
    text-align: center;
  }

  .contact-form__fields label {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contact-form__fields label > span {
    text-align: left;
  }

  .contact-form .button {
    grid-column: auto;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .contact h2 {
    font-size: clamp(24px, 7.6vw, 29px);
  }

  .confirm-header {
    width: calc(100% - 40px);
    padding-block: 18px;
  }

  .confirm-header img {
    width: 150px;
  }

  .confirm-main {
    min-height: auto;
    padding: 28px 20px 56px;
  }

  .confirm-card {
    padding: 42px 20px 32px;
    border-radius: 16px;
  }

  .confirm-card__heading {
    margin-bottom: 30px;
  }

  .confirm-card__heading h1 {
    font-size: 28px;
  }

  .confirm-details > div {
    grid-template-columns: 1fr;
  }

  .confirm-details dt,
  .confirm-details dd {
    padding: 13px 15px;
  }

  .confirm-details__message dd {
    min-height: 110px;
  }

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

  .confirm-button--primary {
    order: -1;
  }

  .thanks-card {
    padding: 50px 20px 40px;
    border-radius: 16px;
  }

  .thanks-card__icon {
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    font-size: 27px;
  }

  .thanks-card h1 {
    font-size: 30px;
  }

  .thanks-card__message {
    font-size: 16px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer small {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: grid;
    min-height: 54px;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: var(--blue);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 32px rgb(6 41 87 / 32%);
  }
}

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

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

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