:root {
  --navy: #012c67;
  --navy-deep: #001f4a;
  --orange: #fb5e07;
  --orange-light: #ff8a4c;
  --paper: #f7f5ef;
  --white: #ffffff;
  --mint: #b8e8d3;
  --lime: #d9f36c;
  --ink: #0c1a2b;
  --muted: #566274;
  --line: rgba(1, 44, 103, 0.18);
  --shadow: 0 18px 50px rgba(1, 31, 74, 0.16);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 86px;
  background: rgba(247, 245, 239, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  flex: 0 0 auto;
  width: 214px;
}

.brand img {
  width: 100%;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.header-cta) {
  position: relative;
}

.main-nav > a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.language {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.language svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
}

.language select {
  width: 54px;
  height: 36px;
  padding: 0 20px 0 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.header-cta {
  min-height: 44px;
  color: var(--white);
  background: var(--orange);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 4px;
  place-items: center;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  min-height: min(730px, calc(100svh - 86px));
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(730px, calc(100svh - 86px));
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.72fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 32px 60px;
  padding-block: 54px 30px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.section-tag {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 0;
  color: var(--orange-light);
  background: transparent;
  letter-spacing: 0.08em;
}

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

h1,
h2 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(46px, 5.4vw, 78px);
}

h1 em {
  color: var(--orange-light);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
}

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

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  margin-left: 9px;
}

.button-primary {
  color: #001F4A;
  background: var(--orange);
}

.button-primary:hover {
  background: #e94f00;
}

.button-quiet {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.hero-offer {
  display: grid;
  max-width: 610px;
  grid-template-columns: 145px 1fr 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-offer > * {
  padding: 14px 18px;
}

.hero-offer > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-offer strong {
  padding-left: 0;
  color: var(--orange-light);
  font-family: "Archivo Black", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.hero-offer span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.45;
}

.hero-offer b {
  color: var(--white);
}

.site-specimen {
  position: relative;
  align-self: end;
  width: min(100%, 430px);
  margin-bottom: 34px;
  transform: rotate(2deg);
  box-shadow: var(--shadow);
}

.specimen-topbar {
  display: flex;
  align-items: center;
  height: 34px;
  gap: 6px;
  padding: 0 12px;
  color: var(--muted);
  background: var(--white);
  border-radius: 5px 5px 0 0;
}

.specimen-topbar span {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.specimen-topbar span:nth-child(2) { background: var(--mint); }
.specimen-topbar span:nth-child(3) { background: var(--mint); }

.specimen-topbar small {
  margin-left: auto;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
}

.specimen-screen {
  display: flex;
  min-height: 300px;
  padding: 50px 36px 38px;
  flex-direction: column;
  justify-content: center;
  color: var(--navy-deep);
  background: var(--mint);
}

.specimen-kicker {
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 800;
}

.specimen-screen strong {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.02;
}

.specimen-link {
  width: max-content;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.specimen-label {
  padding: 10px 16px;
  color: var(--white);
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.occasion-line {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.occasion-line span {
  margin-inline: 10px;
  color: var(--orange);
}

.hero-trust {
  margin: 14px 0 0;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: rgba(247, 245, 239, 0.65);
}

.pixel-ribbon {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 25%;
  width: 34px;
  height: 100%;
  background: var(--orange);
  opacity: 0.94;
  transform: skewX(-8deg);
  transform-origin: top;
}

.pixel-ribbon span {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--orange);
}

.pixel-ribbon span:nth-child(1) { right: -28px; bottom: 78px; }
.pixel-ribbon span:nth-child(2) { left: -28px; bottom: 44px; }
.pixel-ribbon span:nth-child(3) { right: -56px; bottom: 28px; }
.pixel-ribbon span:nth-child(4) { left: -56px; bottom: 6px; }
.pixel-ribbon span:nth-child(5) { right: -84px; bottom: 0; }
.pixel-ribbon span:nth-child(6) { left: -84px; bottom: 0; }

.anti-cliche {
  padding: 84px 0;
  background: var(--mint);
}

.anti-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 70px;
}

.anti-copy h2,
.offer h2,
.section-heading h2,
.faq h2,
.final-cta h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 66px);
}

.anti-copy h2 span {
  color: var(--orange);
}

.anti-copy p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: #23445d;
}

.old-gifts {
  display: grid;
  grid-template-columns: repeat(3, minmax(105px, 1fr)) 50px minmax(160px, 1.2fr);
  align-items: center;
  gap: 12px;
}

.old-gifts figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 5px;
  transform: rotate(-2deg);
}

.old-gifts figure:nth-child(2) { transform: rotate(2deg); }
.old-gifts figure:nth-child(3) { transform: rotate(-1deg); }

.old-gifts figure::after {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 4px;
  background: var(--orange);
  content: "";
  transform: rotate(-12deg);
}

.old-gifts img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
}

.old-gifts figcaption {
  padding: 7px 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.gift-arrow {
  display: grid;
  color: var(--orange);
  place-items: center;
}

.gift-arrow svg {
  width: 34px;
  height: 34px;
}

.lasting-gift {
  display: flex;
  min-height: 170px;
  padding: 22px;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px;
}

.lasting-gift span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lasting-gift strong {
  color: var(--orange-light);
  font-family: "Archivo Black", sans-serif;
  font-size: 31px;
  line-height: 1.1;
}

.lasting-gift svg {
  width: 28px;
  height: 28px;
  margin-top: 18px;
  color: var(--orange);
}

.offer {
  padding: 112px 0;
  color: var(--white);
  background: var(--navy);
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.offer .section-tag {
  color: var(--orange-light);
}

.price-lockup {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin: 40px 0 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.price-lockup strong {
  color: var(--orange);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 0.9;
}

.price-lockup span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  color: var(--white);
  border-bottom: 2px solid var(--orange);
  font-weight: 800;
}

.offer-list {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.offer-list > div {
  display: grid;
  padding: 22px 0;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.offer-list svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  color: #001F4A;
  background: var(--orange);
}

.offer-list span {
  display: flex;
  flex-direction: column;
}

.offer-list b {
  margin-bottom: 4px;
  font-size: 17px;
}

.offer-list small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.process {
  padding: 112px 0;
  background: var(--paper);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 62px;
}

.process-line {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  list-style: none;
}

.process-line::before {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--navy);
  content: "";
}

.process-line li {
  position: relative;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--orange);
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  place-items: center;
}

.process-line li:nth-child(2) .step-number { background: var(--navy); }
.process-line li:nth-child(3) .step-number { color: #001F4A; background: var(--orange); }

.process-line h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
}

.process-line p {
  max-width: 325px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.work {
  padding: 112px 0;
  background: var(--white);
}

.work-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.work-heading h2 {
  margin-bottom: 0;
}

.work-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

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

.work-item {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.work-item img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  object-position: top;
}

.work-item > span {
  display: grid;
  padding: 18px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.work-item b,
.work-item small {
  grid-column: 1;
}

.work-item b {
  color: var(--navy);
  font-size: 17px;
}

.work-item small {
  color: var(--muted);
}

.work-item svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--orange);
}

.faq {
  padding: 112px 0;
  background: var(--orange);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 92px;
}

.faq .section-tag {
  color: var(--navy-deep);
}

.faq h2 {
  color: var(--white);
}

.faq-note {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
}

.faq-list {
  border-top: 2px solid var(--navy-deep);
}

.faq-list details {
  border-bottom: 2px solid var(--navy-deep);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-deep);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary svg {
  flex: 0 0 22px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 640px;
  padding-right: 44px;
  color: var(--navy-deep);
}

.final-cta {
  padding: 98px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  align-items: center;
  gap: 80px;
}

.final-cta .section-tag {
  color: var(--orange-light);
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.final-price {
  color: var(--orange);
  font-family: "Archivo Black", sans-serif;
  font-size: 64px;
  line-height: 1;
}

.final-action small {
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
}

.site-footer {
  padding: 32px 0;
  background: var(--paper);
}

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

.footer-grid img {
  width: 190px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

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

.footer-grid div {
  display: flex;
  gap: 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.header-cta) {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.64fr);
    gap: 28px;
  }

  .hero-offer {
    grid-template-columns: 120px 1fr 1fr;
  }

  .anti-grid,
  .offer-grid,
  .faq-grid {
    gap: 50px;
  }

  .old-gifts {
    grid-template-columns: repeat(3, 1fr);
  }

  .gift-arrow {
    display: none;
  }

  .lasting-gift {
    grid-column: 1 / -1;
    min-height: 110px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    height: 70px;
  }

  .brand {
    width: 170px;
  }

  .brand img {
    height: 52px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: calc(100svh - 70px);
    padding: 30px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--white);
    background: var(--navy-deep);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.header-cta) {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 18px;
  }

  .language {
    margin: 22px 0;
    padding: 0;
    border-left: 0;
  }

  .language svg {
    color: var(--orange-light);
  }

  .language select {
    width: 100%;
    color: var(--white);
    background: var(--navy-deep);
    font-size: 16px;
  }

  .header-cta {
    width: 100%;
    margin-top: 8px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    display: flex;
    padding-block: 38px 24px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-lead {
    max-width: 560px;
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .hero-offer {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .hero-offer strong {
    grid-column: 1 / -1;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  }

  .hero-offer span {
    padding: 12px 10px 12px 0;
  }

  .hero-offer span + span {
    padding-left: 14px;
  }

  .site-specimen {
    display: none;
  }

  .occasion-line {
    margin-top: auto;
    font-size: 10px;
  }

  .occasion-line span {
    margin-inline: 5px;
  }

  /* Kitsal ekraanil on sisu täislaiuses — vertikaalne pael ristuks paratamatult
     H1, nuppude ja hinnaga. Peidame; oranž aktsent tuleb eyebrow'st, CTA-st ja hinnast. */
  .pixel-ribbon {
    display: none;
  }

  .anti-cliche,
  .offer,
  .process,
  .work,
  .faq,
  .final-cta {
    padding: 76px 0;
  }

  .anti-grid,
  .offer-grid,
  .faq-grid,
  .final-grid,
  .work-heading {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .anti-copy h2,
  .offer h2,
  .section-heading h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(34px, 10vw, 49px);
  }

  .old-gifts {
    gap: 8px;
  }

  .old-gifts figcaption {
    font-size: 10px;
  }

  .lasting-gift strong {
    font-size: 28px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-line::before {
    top: 0;
    bottom: 0;
    left: 33px;
    width: 2px;
    height: auto;
  }

  .process-line li {
    display: grid;
    min-height: 160px;
    padding-bottom: 28px;
    grid-template-columns: 68px 1fr;
    gap: 20px;
  }

  .step-number {
    margin-bottom: 0;
  }

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

  .work-heading {
    gap: 20px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 14px;
    line-height: 1.4;
  }

  .final-action {
    max-width: 440px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid div {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .hero,
  .hero-inner {
    min-height: 736px;
  }

  .hero .eyebrow {
    font-size: 10px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    margin-bottom: 22px;
  }

  .hero-offer strong {
    font-size: 34px;
  }

  .hero-offer span {
    font-size: 11px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ── Integratsiooni lisad (live-sait): jaluse õigusplokk + menüünupu ikoonivahetus ── */
.menu-toggle .ic-x { display: none; }
body.menu-open .menu-toggle .ic-menu { display: none; }
body.menu-open .menu-toggle .ic-x { display: block; }
.footer-grid { align-items: flex-start; }
.footer-grid > div { display: block; }
.footer-tagline { color: var(--navy); font-weight: 700; font-size: 0.9rem; margin: 0 0 0.65rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem; margin-bottom: 0.5rem; }
.footer-links a { color: var(--navy); text-decoration: none; font-weight: 700; font-size: 0.82rem; }
.footer-links a:hover { color: var(--orange); }
.footer-legal { font-size: 0.82rem; line-height: 1.65; color: var(--muted); }
.footer-legal a { color: var(--navy); font-weight: 600; }
.footer-copyright { margin-top: 0.9rem; font-size: 0.78rem; color: var(--muted); }
.checkout-note { font-size: 0.85rem; color: rgba(247, 245, 239, 0.85); margin-top: 0.5rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
