/* ==========================================================================
   Progate — Printing & Packaging
   style.css  |  Base tokens, layout, components & section styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --color-red: #c7242a; /* logo red — icons, links, small accents   */
  --color-red-cta: #e01e26; /* vivid red — big CTAs, hero accent, banner */
  --color-red-cta-hover: #c21820;
  --color-navy: #1a233a; /* headings & navy buttons                   */
  --color-navy-hover: #10182b;

  /* Surfaces */
  --color-bg: #ffffff;
  --color-bg-alt: #f3f6fc; /* hero background, how-it-works panel       */
  --color-lavender: #eef1fa; /* digital printing card                     */
  --color-cream: #FFF2F0; /* offset & packaging card                   */
  --color-topbar: #1a233a;
  --color-quote-bg: #172038; /* dark quote card                          */
  --color-footer-bg: #0f1728; /* footer                                    */

  /* Text */
  --color-heading: #1a233a;
  --color-text: #5a6472;
  --color-text-muted: #8a94a6;
  --color-white-70: rgba(255, 255, 255, 0.72);

  /* Lines & borders */
  --color-border: #e6e8ee;
  --color-card-border: #eaecf0;

  /* Service icon tints */
  --tint-blue: #eaf1fe;
  --tint-orange: #fef0e6;
  --tint-green: #e8fbef;
  --tint-purple: #f4ebfe;
  --tint-pink: #fdeaf3;
  --tint-red: #fbeaea;

  /* Radii */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-card: 0 8px 30px rgba(16, 24, 40, 0.06);
  --shadow-icon: 0 10px 25px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(16, 24, 40, 0.14);

  /* Typography */
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --section-y: clamp(56px, 7vw, 96px);
  --nav-h: 80px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  /* App-wide decorative background (ghosted packaging watermark) */
  background: var(--color-bg) url("../assets/landing-bg.png") top center / 100% auto no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.2;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
}

/* Accessibility helpers */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--color-navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid rgba(224, 30, 38, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Layout utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Section heading block (title + subtitle, centered) */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.section-head__title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-head__sub {
  margin-top: 12px;
  font-size: 1.0625rem;
  color: var(--color-text);
}

/* Scroll-reveal animation (progressive enhancement) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-py: 15px;
  --btn-px: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition:
    background-color 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn__arrow {
  transition: transform 0.2s var(--ease);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--navy {
  background: var(--color-navy);
  color: #fff;
}
.btn--navy:hover {
  background: var(--color-navy-hover);
  box-shadow: var(--shadow-icon);
}

.btn--red {
  background: var(--color-red-cta);
  color: #fff;
}
.btn--red:hover {
  background: var(--color-red-cta-hover);
  box-shadow: 0 10px 24px rgba(224, 30, 38, 0.28);
}

.btn--outline {
  background: #fff;
  color: var(--color-navy);
  border-color: #d7dbe4;
}
.btn--outline:hover {
  border-color: var(--color-navy);
  box-shadow: var(--shadow-card);
}

.btn--white {
  background: #fff;
  color: var(--color-navy);
}
.btn--white img {
  width: 20px;
  height: 20px;
}
.btn--white:hover {
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   5. Top header (address + contact)
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--color-topbar);
  color: #fff;
  font-size: 0.875rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding-block: 8px;
}
.topbar__address {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar__label {
  color: var(--color-red);
  font-weight: 600;
}
.topbar__text {
  color: rgba(255, 255, 255, 0.85);
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s var(--ease);
}
.topbar__item img {
  width: 15px;
  height: 16px;
}
.topbar__item:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------
   6. Navigation (sticky)
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow 0.25s var(--ease);
}
.nav.is-stuck {
  box-shadow: 0 6px 24px rgba(16, 24, 40, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-h);
}
.nav__logo img {
  width: 142px;
  height: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-inline: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--color-red);
}
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
}
.nav__caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.7;
}

.nav__cta {
  flex-shrink: 0;
  --btn-py: 12px;
  --btn-px: 26px;
}
.nav__cta-mobile {
  display: none;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}
.nav__toggle-bar {
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-navy);
  border-radius: 2px;
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  background: var(--color-bg-alt);
  padding-block: clamp(40px, 5vw, 72px);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}
.hero__title {
  font-size: clamp(2.25rem, 4.4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero__title-accent {
  display: block;
  color: var(--color-red-cta);
}
.hero__desc {
  max-width: 520px;
  margin-top: 24px;
  font-size: 1.0625rem;
  color: var(--color-text);
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 28px;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.3;
}
.hero__feature img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero__media {
  /* let the product shot grow slightly larger than its column and bleed right */
  margin-right: clamp(-40px, -2vw, 0px);
}
.hero__media img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   8. Choose your service
   -------------------------------------------------------------------------- */
.choose {
  padding-block: var(--section-y);
}

.choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.service-card--lavender {
  background: var(--color-lavender);
}
.service-card--cream {
  background: var(--color-cream);
}

.service-card__body {
  padding: clamp(28px, 3vw, 40px);
}
.service-card__title {
  font-size: 1.75rem;
  font-weight: 700;
}
.service-card__desc {
  margin-top: 10px;
  font-size: 0.9375rem;
  color: var(--color-text);
}
.service-card__list {
  margin-top: 18px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  color: var(--color-heading);
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-navy);
}
.service-card__list--dots li::before {
  background: var(--color-red-cta);
}

.service-card__media {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.service-card__media img {
  width: 108%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   9. Our services (mini cards)
   -------------------------------------------------------------------------- */
.services {
  padding-block: var(--section-y);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.mini-card {
  text-align: center;
  padding: 32px 22px;
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.mini-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
}
.mini-card__icon img {
  width: 26px;
  height: 26px;
}
.mini-card__icon--blue {
  background: var(--tint-blue);
}
.mini-card__icon--orange {
  background: var(--tint-orange);
}
.mini-card__icon--green {
  background: var(--tint-green);
}
.mini-card__icon--purple {
  background: var(--tint-purple);
}
.mini-card__icon--pink {
  background: var(--tint-pink);
}

.mini-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
}
.mini-card__desc {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--color-text);
}

.services__action {
  margin-top: 44px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   10. How it works
   -------------------------------------------------------------------------- */
.how {
  padding-block: var(--section-y);
}

.how__panel {
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 64px);
}

.how__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* connecting line behind the icons */
.how__steps::before {
  content: "";
  position: absolute;
  top: 36px; /* vertical center of the 72px icon */
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #d7ddec;
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.how-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-icon);
}
.how-step__icon img {
  width: 30px;
  height: 30px;
}
.how-step__title {
  font-size: 1.0625rem;
  font-weight: 700;
}
.how-step__desc {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--color-text);
  max-width: 220px;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   11. Popular products
   -------------------------------------------------------------------------- */
.products {
  padding-block: var(--section-y);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.product-card {
  text-align: center;
}
.product-card__media {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.product-card:hover .product-card__media {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card__label {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
}

.products__action {
  margin-top: 44px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   12. Get your custom quote
   -------------------------------------------------------------------------- */
.quote {
  padding-block: var(--section-y);
}

.quote__card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: var(--color-quote-bg);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 52px);
}
.quote__2_cols {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.quote__title {
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.125rem);
  font-weight: 700;
}
.quote__sub {
  margin-top: 12px;
  font-size: 0.9375rem;
  color: var(--color-white-70);
}
.quote__benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}
.quote__benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}
.quote__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  flex-shrink: 0;
}
.quote__benefit-icon img {
  width: 24px;
  height: 24px;
}
.quote__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  flex: 2;
}
.quote__intro {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: space-between;
  flex: 1;
}
/* Form */
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
}
.field__label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
/* Filled control: label sits inside the white box in the design → we emulate
   with a bordered white box holding the tiny label + a borderless control. */
.field {
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 16px;
  transition: box-shadow 0.2s var(--ease);
}
.field:focus-within {
  box-shadow: 0 0 0 2px rgba(224, 30, 38, 0.35);
}
.field__control {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 0.9375rem;
  color: var(--color-heading);
  padding: 2px 0;
}
.field__control::placeholder {
  color: var(--color-text-muted);
}
.field__control:focus {
  outline: none;
}
select.field__control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A94A6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}

/* File field */
.field__file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 2px 0;
}
.field__file-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.field__file img {
  width: 16px;
  height: 16px;
}
.field__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Submit cell — matches input height, no white box padding */
.field--submit {
  background: transparent;
  padding: 0;
}
.field__submit {
  width: 100%;
  height: 100%;
  min-height: 58px;
}

.field__error {
  color: #ffb3b3;
  font-size: 0.75rem;
  margin-top: 4px;
  min-height: 0;
}
.field.has-error {
  box-shadow: 0 0 0 2px #ff6b6b;
}

.quote__note {
  margin-top: 18px;
  font-size: 0.875rem;
  color: var(--color-white-70);
}
.quote__note.is-success {
  color: #6ee7a8;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   13. Why choose us
   -------------------------------------------------------------------------- */
.why {
  padding-block: var(--section-y);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
}
.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  background: var(--tint-red);
  border-radius: var(--radius-lg);
}
.why-card__icon img {
  width: 28px;
  height: 28px;
}
.why-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
}
.why-card__desc {
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--color-text);
  max-width: 200px;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   14. CTA card (overlaps footer)
   -------------------------------------------------------------------------- */
.cta {
  background: #fff;
  padding-top: clamp(24px, 3vw, 40px);
}
.cta__card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: -64px;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 4vw, 48px);
  background: var(--color-red-cta);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 50px rgba(224, 30, 38, 0.25);
}
.cta__title {
  color: #fff;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 700;
}
.cta__sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
.cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 128px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer__logo img {
  width: 140px;
  height: auto;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.footer__logo-text small {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-red);
}
.footer__about {
  margin-top: 20px;
  max-width: 340px;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transition:
    background-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.footer__social a:hover {
  background: var(--color-red);
  transform: translateY(-3px);
}
.footer__social img {
  width: 16px;
  height: 16px;
}

.footer__heading {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s var(--ease);
}
.footer__links a:hover {
  color: #fff;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__contact-list li,
.footer__contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s var(--ease);
}
.footer__contact-list a:hover {
  color: #fff;
}
.footer__contact-list img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__copy {
  font-size: 0.875rem;
  color: var(--color-red);
}
.footer__legal {
  display: flex;
  gap: 32px;
}
.footer__legal a {
  font-size: 0.875rem;
  color: var(--color-red);
  transition: opacity 0.2s var(--ease);
}
.footer__legal a:hover {
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   16. Back to top
   -------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  background: var(--color-red-cta);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    background-color 0.2s var(--ease);
}
.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:hover {
  background: var(--color-red-cta-hover);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
