/* ===========================================================================
   portocard.com — main stylesheet
   See components.md for the authoritative class list.
   ========================================================================= */

:root {
  --c-tinto:    #6b1a2a;
  --c-tinto-d:  #4a0f1d;
  --c-tinto-l:  #8d2f43;
  --c-ink:      #1a1416;
  --c-mute:     #6a6068;
  --c-cream:    #faf6f0;
  --c-cream-2:  #f3ece1;
  --c-line:     #e3d9c8;
  --c-azulejo:  #2c5f8d;
  --c-gold:     #c89b3c;
  --c-ok:       #2e7d4f;
  --c-warn-bg:  #fff5e0;
  --c-warn-bd:  #e8c870;
  --c-white:    #ffffff;

  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
  --s-9: 96px;

  --fs-base: 16px;
  --fs-sm:   14px;
  --fs-lg:   18px;
  --fs-xl:   clamp(20px, 2.4vw, 26px);
  --fs-h2:   clamp(24px, 3vw, 34px);
  --fs-h1:   clamp(30px, 4.6vw, 48px);

  --r-1: 6px;
  --r-2: 12px;
  --r-3: 18px;
  --shadow-1: 0 1px 2px rgba(20, 10, 10, .06), 0 4px 16px rgba(20, 10, 10, .06);
  --shadow-2: 0 6px 24px rgba(20, 10, 10, .12);

  --stickybar-h: 76px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--c-ink);
  background: var(--c-white);
  font-size: var(--fs-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--stickybar-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--c-ink);
}

p { margin: 0; }
a { color: var(--c-tinto); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--c-tinto-d); }

/* -------- Layout ---------------------------------------------------------- */
.pc-container { max-width: 1080px; margin: 0 auto; padding: 0 var(--s-5); }
.pc-section { padding: clamp(var(--s-7), 6vw, var(--s-9)) 0; }
.pc-section--cream { background: var(--c-cream); }
.pc-section--tinto { background: var(--c-tinto); color: var(--c-white); }
.pc-section--tinto h2, .pc-section--tinto p, .pc-section--tinto a { color: var(--c-white); }

.pc-h2 { font-size: var(--fs-h2); margin-bottom: var(--s-3); }
.pc-h3 { font-size: var(--fs-lg); margin-bottom: var(--s-2); }
.pc-lead { color: var(--c-mute); font-size: var(--fs-lg); margin-bottom: var(--s-6); max-width: 70ch; }
.pc-muted { color: var(--c-mute); }
.pc-strike { color: var(--c-mute); text-decoration: line-through; margin-right: var(--s-2); font-weight: 500; }
.pc-eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: var(--fs-sm); color: var(--c-tinto); font-weight: 600; }
.pc-visually-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* -------- Header ---------------------------------------------------------- */
.pc-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  position: sticky; top: 0;
  z-index: 50;
}
.pc-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--s-3); padding-bottom: var(--s-3);
  gap: var(--s-4);
}
.pc-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--c-ink); text-decoration: none;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.pc-logo__mark {
  width: 36px; height: 36px;
  display: block; flex-shrink: 0;
}
.pc-logo__txt { display: inline-block; }
.pc-logo__dot { color: var(--c-tinto); }
.pc-logo:hover { color: var(--c-tinto); }
.pc-logo:hover .pc-logo__dot { color: var(--c-tinto-d); }

.pc-langswitch { display: flex; gap: var(--s-1); }
.pc-langswitch__item {
  font-size: 13px; padding: 4px 8px; color: var(--c-mute);
  text-decoration: none; border-radius: var(--r-1);
}
.pc-langswitch__item--active { background: var(--c-cream-2); color: var(--c-ink); font-weight: 600; }
.pc-langswitch-mobile { display: none; }
@media (max-width: 768px) {
  .pc-langswitch { display: none; }
  .pc-langswitch-mobile {
    display: inline-block;
    padding: 6px 8px;
    border: 1px solid var(--c-line);
    border-radius: var(--r-1);
    background: var(--c-white);
    font-size: 13px;
    color: var(--c-ink);
  }
}

/* -------- Buttons --------------------------------------------------------- */
.pc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-base);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  line-height: 1;
}
.pc-btn--primary {
  background: var(--c-tinto);
  color: var(--c-white) !important;
  box-shadow: var(--shadow-1);
}
.pc-btn--primary:hover {
  background: var(--c-tinto-d);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.pc-btn--secondary {
  background: var(--c-white);
  color: var(--c-ink);
  border-color: var(--c-tinto);
}
.pc-btn--secondary:hover { background: var(--c-cream); }
.pc-btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.pc-btn--block { width: 100%; }
.pc-btn__price { font-weight: 500; opacity: 0.9; }

/* Ghost button on dark/hero/closing backgrounds — white text, white border */
.pc-hero .pc-btn--ghost,
.pc-section--tinto .pc-btn--ghost {
  color: var(--c-white) !important;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}
.pc-hero .pc-btn--ghost:hover,
.pc-section--tinto .pc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Closing CTA: primary button needs to stand out from tinto background.
   Switch to inverted style — cream button, tinto text. */
.pc-section--tinto .pc-btn--primary {
  background: var(--c-cream);
  color: var(--c-tinto-d) !important;
  border-color: var(--c-cream);
}
.pc-section--tinto .pc-btn--primary:hover {
  background: var(--c-white);
  color: var(--c-tinto-d) !important;
}

/* -------- Hero ------------------------------------------------------------ */
.pc-hero {
  position: relative;
  color: var(--c-white);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(var(--s-8), 9vw, 140px) 0 clamp(var(--s-7), 7vw, var(--s-9));
}
.pc-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(20,8,12,0.45) 0%, rgba(20,8,12,0.7) 100%),
    url('/assets/img/porto-1.jpg');
  background-size: cover;
  background-position: center 35%;
}
.pc-hero__inner { max-width: 760px; }
.pc-hero__eyebrow { color: rgba(255, 255, 255, 0.9); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; margin-bottom: var(--s-3); }
.pc-hero__title { font-size: var(--fs-h1); color: var(--c-white); margin-bottom: var(--s-4); }
.pc-hero__sub { color: rgba(255,255,255,0.92); font-size: var(--fs-lg); margin-bottom: var(--s-5); max-width: 60ch; }
.pc-hero__sub strong { color: var(--c-white); font-weight: 700; }
.pc-hero__cta-row { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; margin-bottom: var(--s-4); }
.pc-hero__disclaimer { color: rgba(255,255,255,0.75); font-size: 13px; }

/* -------- Trust Bar ------------------------------------------------------- */
.pc-trustbar {
  background: var(--c-cream-2);
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-4) 0;
  color: var(--c-ink);
}
.pc-trustbar__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-4);
}
.pc-trustbar__item {
  display: flex; align-items: center; gap: var(--s-2);
  font-size: var(--fs-sm);
  color: var(--c-ink);
}
.pc-trustbar__icon { color: var(--c-tinto); font-size: 18px; }
@media (max-width: 700px) {
  .pc-trustbar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
}

/* -------- Saving Calculator ---------------------------------------------- */
.pc-calc__intro { max-width: 65ch; }
.pc-calc__controls {
  display: grid; grid-template-columns: 1fr; gap: var(--s-5);
  margin-bottom: var(--s-5);
}
@media (min-width: 700px) {
  .pc-calc__controls { grid-template-columns: 220px 1fr; align-items: start; }
}
.pc-calc__group-label {
  display: block; font-weight: 600; margin-bottom: var(--s-2); color: var(--c-ink);
}
.pc-calc__duration {
  display: flex; flex-direction: column; gap: var(--s-2);
  max-width: 240px;
}
.pc-calc__radio {
  position: relative;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 12px 16px;
  border: 1.5px solid var(--c-line); background: var(--c-white);
  border-radius: var(--r-1);
  cursor: pointer; font-weight: 600;
  color: var(--c-ink);
  transition: border-color .15s, background .15s;
  width: 100%;
}
.pc-calc__radio input { position: absolute; opacity: 0; }
.pc-calc__radio:has(input:checked) { border-color: var(--c-tinto); background: var(--c-tinto); color: var(--c-white); }

.pc-calc__check-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-2);
}
@media (min-width: 700px) { .pc-calc__check-grid { grid-template-columns: 1fr 1fr; } }
.pc-calc__check {
  display: flex; align-items: center; gap: var(--s-3);
  padding: 12px var(--s-4);
  border: 1.5px solid var(--c-line);
  background: var(--c-white);
  border-radius: var(--r-1);
  cursor: pointer;
  color: var(--c-ink);
  transition: border-color .15s, background .15s;
}
.pc-calc__check:hover { border-color: var(--c-tinto-l); }
.pc-calc__check input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--c-tinto); flex-shrink: 0;
}
.pc-calc__check-label { flex: 1; font-size: var(--fs-sm); color: var(--c-ink); }
.pc-calc__check-price { font-weight: 600; color: var(--c-mute); font-size: var(--fs-sm); }
.pc-calc__check:has(input:checked) { border-color: var(--c-tinto); background: var(--c-cream-2); }

.pc-calc__result {
  padding: var(--s-5);
  background: var(--c-white);
  border: 1.5px dashed var(--c-line);
  border-radius: var(--r-2);
  margin-bottom: var(--s-4);
  color: var(--c-ink);
  min-height: 76px;
  display: flex; align-items: center;
}
.pc-calc__result strong { color: var(--c-tinto); }
.pc-calc__result--ok { border-color: var(--c-ok); border-style: solid; background: #f3faf5; }
.pc-calc__result--bad { border-color: var(--c-gold); border-style: solid; background: #fff8ec; }

.pc-calc__honest {
  display: flex; align-items: flex-start; gap: var(--s-2);
  background: var(--c-warn-bg);
  border: 1px solid var(--c-warn-bd);
  border-radius: var(--r-2);
  padding: var(--s-3) var(--s-4);
  font-size: var(--fs-sm);
  color: var(--c-ink);
}
.pc-calc__honest-icon { color: var(--c-gold); font-weight: 700; }

/* -------- Tabs / Included ------------------------------------------------- */
.pc-tabs__list {
  display: flex; gap: var(--s-2); border-bottom: 1px solid var(--c-line);
  margin-bottom: var(--s-5); flex-wrap: wrap;
}
.pc-tabs__btn {
  background: none; border: none; border-bottom: 2px solid transparent;
  padding: 10px 14px; font: inherit; font-weight: 600; cursor: pointer;
  color: var(--c-mute);
}
.pc-tabs__btn--active { color: var(--c-tinto); border-bottom-color: var(--c-tinto); }
.pc-tabs__panel { display: none; }
.pc-tabs__panel--active { display: block; }
.pc-included-list, .pc-notinc { margin: 0; padding-left: 1.4em; }
.pc-included-list li, .pc-notinc li { margin-bottom: var(--s-2); color: var(--c-ink); }
.pc-discount-table { list-style: none; padding: 0; margin: 0; }
.pc-discount-table li {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s-3) 0; border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
}
.pc-discount-table__pct { font-weight: 600; color: var(--c-tinto); }
.pc-discount-table__official {
  margin-top: var(--s-4);
  padding: var(--s-3) var(--s-4);
  background: var(--c-cream);
  border-radius: var(--r-1);
  font-size: var(--fs-sm);
  color: var(--c-mute);
}
.pc-discount-table__official a { color: var(--c-tinto); font-weight: 500; }
.pc-discount-table__official a:hover { color: var(--c-tinto-d); }

/* -------- Legal pages (Imprint, Privacy) --------------------------------- */
.pc-legal h2.pc-h3 {
  margin-top: var(--s-7);
  margin-bottom: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
}
.pc-legal h2.pc-h3:first-of-type { border-top: none; padding-top: 0; }
.pc-legal h1.pc-h2 { margin-bottom: var(--s-3); }
.pc-legal .pc-legal__h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
  color: var(--c-ink);
  line-height: 1.3;
}
.pc-legal .pc-legal__h5 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  margin-top: var(--s-4);
  margin-bottom: var(--s-2);
  color: var(--c-ink);
}
.pc-legal p { margin-bottom: var(--s-3); line-height: 1.65; }
.pc-legal ul { margin-bottom: var(--s-3); padding-left: 1.4em; }
.pc-legal ul li { margin-bottom: var(--s-2); }
.pc-legal a { color: var(--c-tinto); }
.pc-legal a:hover { color: var(--c-tinto-d); }
/* Soften ALL-CAPS GDPR objection blocks slightly so they aren't shouting */
.pc-legal p[style*="uppercase"] {
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  background: var(--c-cream);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-1);
  border-left: 3px solid var(--c-gold);
}

/* -------- Pricing --------------------------------------------------------- */
.pc-pricing__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3);
  margin-bottom: var(--s-5);
}
@media (min-width: 700px) { .pc-pricing__grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); } }
.pc-pricing__card {
  position: relative;
  background: var(--c-white);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-2);
  padding: var(--s-5) var(--s-4);
  text-align: center;
  color: var(--c-ink);
}
.pc-pricing__card--featured {
  border-color: var(--c-tinto);
  box-shadow: var(--shadow-1);
  padding-top: calc(var(--s-5) + 6px);
}
.pc-pricing__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--c-tinto); color: var(--c-white);
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em;
  white-space: nowrap; line-height: 1.4;
  max-width: 95%;
}
.pc-pricing__days { font-size: var(--fs-sm); color: var(--c-mute); margin-bottom: var(--s-2); }
.pc-pricing__price { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 700; color: var(--c-ink); margin-bottom: var(--s-2); }
.pc-pricing__hint { font-size: 13px; color: var(--c-ok); }
.pc-pricing__cta-row { text-align: center; }

/* -------- How it works (steps) ------------------------------------------- */
.pc-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .pc-steps { grid-template-columns: repeat(4, 1fr); } }
.pc-steps__item { color: var(--c-ink); }
.pc-steps__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: var(--c-tinto); color: var(--c-white);
  border-radius: 999px; font-weight: 700; margin-bottom: var(--s-3);
}
.pc-steps__title { font-size: var(--fs-lg); margin-bottom: var(--s-2); }
.pc-steps__text { color: var(--c-mute); font-size: var(--fs-sm); }

/* -------- Upsell (pass cards) -------------------------------------------- */
.pc-upsell__grid {
  display: grid; gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .pc-upsell__grid { grid-template-columns: repeat(3, 1fr); } }
.pc-passcard {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-2);
  overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--c-ink);
  box-shadow: var(--shadow-1);
}
.pc-passcard__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-2);
}
.pc-passcard__img--placeholder {
  background-image: linear-gradient(135deg, var(--c-cream-2) 0%, var(--c-line) 100%);
}
.pc-passcard__body { padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; color: var(--c-ink); }
.pc-passcard__title { font-size: var(--fs-lg); color: var(--c-ink); }
.pc-passcard__sub { font-size: var(--fs-sm); color: var(--c-mute); flex: 1; }
.pc-passcard__meta { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); padding: var(--s-2) 0; color: var(--c-ink); }
.pc-passcard__price strong { font-family: 'Fraunces', serif; font-size: 22px; color: var(--c-ink); }
.pc-passcard__cta { margin-top: var(--s-2); }

/* -------- Top attractions ------------------------------------------------- */
.pc-attractions__grid {
  display: grid; gap: var(--s-4);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .pc-attractions__grid { grid-template-columns: repeat(3, 1fr); } }
.pc-attrcard {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-2);
  overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--c-ink);
}
.pc-attrcard__img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-2);
}
.pc-attrcard__body { padding: var(--s-3); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; color: var(--c-ink); }
.pc-attrcard__title { font-size: var(--fs-base); color: var(--c-ink); font-weight: 600; }
.pc-attrcard__meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-2); color: var(--c-ink); font-size: var(--fs-sm); }
.pc-attrcard__price { font-weight: 700; color: var(--c-tinto); }

/* -------- Stars ----------------------------------------------------------- */
.pc-stars { color: var(--c-gold); font-size: var(--fs-sm); display: inline-flex; align-items: center; gap: 4px; }
.pc-stars__num { color: var(--c-ink); font-weight: 700; }
.pc-stars__count { color: var(--c-mute); font-weight: 400; }

/* -------- FAQ ------------------------------------------------------------- */
.pc-faq__item {
  border-top: 1px solid var(--c-line);
  padding: var(--s-3) 0;
  color: var(--c-ink);
}
.pc-faq__item:last-child { border-bottom: 1px solid var(--c-line); }
.pc-faq__q {
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-lg);
  padding: var(--s-2) 0;
  color: var(--c-ink);
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.pc-faq__q::-webkit-details-marker { display: none; }
.pc-faq__q::after {
  content: '+';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--c-tinto);
  transition: transform .15s ease;
}
.pc-faq__item[open] .pc-faq__q::after { content: '−'; }
.pc-faq__a { color: var(--c-ink); padding: var(--s-2) 0 var(--s-3); max-width: 75ch; }

/* -------- Closing --------------------------------------------------------- */
.pc-closing { text-align: center; }
.pc-closing__title { font-size: var(--fs-h2); margin-bottom: var(--s-3); }
.pc-closing__sub { color: rgba(255, 255, 255, 0.9); margin-bottom: var(--s-5); max-width: 60ch; margin-left: auto; margin-right: auto; }
.pc-closing__row { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }
/* (Closing ghost button styles moved up — near .pc-btn--ghost base) */

/* -------- Sticky Bar (mobile only) --------------------------------------- */
.pc-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--c-tinto-d);
  border-top: 1px solid var(--c-tinto);
  padding: var(--s-2) var(--s-3);
  padding-bottom: calc(var(--s-2) + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
}
.pc-sticky__inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center; justify-content: space-between;
  gap: var(--s-3);
  max-width: 1080px; margin: 0 auto;
}
.pc-sticky__price { color: var(--c-white); display: flex; flex-direction: column; line-height: 1.1; }
.pc-sticky__price-from { font-size: 12px; opacity: 0.8; }
.pc-sticky__price-val { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; }
.pc-sticky__cta { padding: 10px 16px; font-size: var(--fs-sm); }
@media (min-width: 900px) {
  .pc-sticky { display: none; }
}

/* On mobile: hide hero CTA + disclaimer (would duplicate sticky) — keep title + sub */
@media (max-width: 899px) {
  /* sticky is enough on mobile, but keep hero CTA visible — it's tappable above the fold */
}

/* -------- Footer ---------------------------------------------------------- */
.pc-footer {
  background: var(--c-cream-2);
  padding: var(--s-7) 0;
  font-size: var(--fs-sm);
  color: var(--c-mute);
}
.pc-footer__disclaimer { max-width: 80ch; margin-bottom: var(--s-5); }
.pc-footer__row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.pc-footer__links { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--s-4); }
.pc-footer__links a { color: var(--c-ink); }
.pc-footer__copy { color: var(--c-mute); }
