*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--pw-font);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  word-spacing: 0.05em;
  color: var(--pw-river-stone);
  background: var(--pw-glass-frost);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--pw-crystal-blue);
  text-decoration: none;
  transition: color var(--pw-transition);
}

a:hover {
  color: var(--pw-fresh-aqua);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  color: var(--pw-deep-ocean);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.025em;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  max-width: 65ch;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

p + p {
  margin-top: 0.75em;
}

li,
label,
.hint,
.form-control,
.form-error,
.order-notice p,
.policy-content p,
.policy-content li {
  line-height: 1.75;
  letter-spacing: 0.025em;
}

.container {
  width: min(100% - 2rem, var(--pw-container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(var(--pw-space-2xl), 8vw, var(--pw-space-4xl));
}

.section-header {
  text-align: center;
  margin-bottom: var(--pw-space-3xl);
}

.section-header p {
  margin: var(--pw-space-md) auto 0;
  color: var(--pw-river-stone);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pw-fresh-aqua);
  margin-bottom: var(--pw-space-sm);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
