/* ==========================================================================
   Coffee Shop — coffee.webmenu.uz
   Visual system: warm paper, espresso ink, window light. Mobile-first.
   ========================================================================== */

:root {
  /* colour */
  --paper: #F5EFE6;        /* warm ivory */
  --paper-2: #EDE4D6;      /* latte */
  --paper-3: #E5D8C5;      /* sand */
  --ink: #2A1F18;          /* espresso (text) */
  --ink-2: #5E5046;        /* warm grey (secondary text) */
  --accent: #8A5A36;       /* roasted brown */
  --crema: #D2A77A;        /* decorative only */
  --line: rgba(58, 40, 28, .13);
  --line-strong: rgba(58, 40, 28, .22);
  --dark: #33271F;         /* used once: website-service card */

  /* type */
  --serif: "Literata", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* layout */
  --wrap: 1180px;
  --gutter: 18px;
  --header-h: 58px;
  --catnav-h: 54px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;

  /* motion */
  --ease: cubic-bezier(.22, .7, .12, 1);
  --slow: 1.1s;

  --shadow-soft: 0 1px 1px rgba(42, 31, 24, .04), 0 10px 30px -14px rgba(42, 31, 24, .22);
}

@media (min-width: 720px) {
  :root { --gutter: 32px; --header-h: 64px; --catnav-h: 58px; }
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--catnav-h) + 8px);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .2 0 0 0 0 .14 0 0 0 0 .1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
svg { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
svg .fill { fill: currentColor; stroke: none; }

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left));
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: top .3s var(--ease);
}
.skip:focus { top: 10px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .6;
}

/* ---------- reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(245, 239, 230, 0);
  border-bottom: 1px solid transparent;
  transition: background .6s var(--ease), border-color .6s var(--ease);
}
.is-scrolled .header {
  background: rgba(245, 239, 230, .9);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  backdrop-filter: saturate(1.2) blur(12px);
  border-bottom-color: var(--line);
}
.nav-stuck .header { border-bottom-color: transparent; }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-right: auto;
  min-height: 44px;
}
.brand__name {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -.01em;
  line-height: 1;
}
.mark { width: 26px; height: 26px; color: var(--accent); stroke-width: 1.4; }
.mark__arc { opacity: .5; }

.header__nav { display: none; }
@media (min-width: 820px) {
  .header__nav { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 500; }
  .header__nav a {
    padding: 8px 12px;
    text-decoration: none;
    color: var(--ink-2);
    border-radius: 999px;
    transition: color .4s var(--ease), background .4s var(--ease);
  }
  .header__nav a:hover { color: var(--ink); background: var(--paper-2); }
  .header__nav .header__svc {
    margin-left: 6px;
    border: 1px solid var(--line-strong);
    color: var(--ink);
  }
}

/* ---------- language switcher ---------- */
.lang {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
}
.lang__btn {
  position: relative;
  min-width: 38px;
  height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .45s var(--ease), color .45s var(--ease);
}
.lang__btn::after { content: ""; position: absolute; inset: -6px -1px; } /* bigger tap target */
.lang__btn:hover { color: var(--ink); }
.lang__btn[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: 18px 0 44px; }
.hero__inner {
  display: grid;
  gap: 30px;
}
.hero__copy { display: grid; gap: 16px; justify-items: start; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 10.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -.025em;
  font-weight: 400;
  max-width: 12ch;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__text {
  max-width: 38ch;
  font-size: 16px;
  color: var(--ink-2);
}
.hero__cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 8px 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background .5s var(--ease), border-color .5s var(--ease);
}
.hero__cta-ic {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ink); color: var(--paper);
}
.hero__cta-ic svg { width: 16px; height: 16px; transition: transform .6s var(--ease); }
.hero__cta:hover { background: var(--paper-2); border-color: var(--ink-2); }
.hero__cta:hover .hero__cta-ic svg { transform: translateY(2px); }

.hero__figure { margin: 0; }
.hero__frame {
  position: relative;
  aspect-ratio: 1 / 1.02;
  border-radius: 110px var(--r-lg) var(--r-lg) var(--r-lg);
  overflow: hidden;
  background: var(--paper-3);
  box-shadow: var(--shadow-soft);
  clip-path: inset(0 0 0 0 round 110px var(--r-lg) var(--r-lg) var(--r-lg));
}
.hero__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
}
/* drifting window light */
.hero__light {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    repeating-linear-gradient(118deg,
      rgba(255, 248, 235, 0) 0 9%,
      rgba(255, 248, 235, .22) 12% 20%,
      rgba(255, 248, 235, 0) 23% 34%);
  mix-blend-mode: soft-light;
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, 0, 0); }
  to   { transform: translate3d(3%, 1.5%, 0); }
}
.hero__figure figcaption {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__figure figcaption::before { content: ""; width: 18px; height: 1px; background: var(--line-strong); }

/* hero reveal */
.hero__figure:not(.is-in) .hero__frame { clip-path: inset(100% 0 0 0 round 110px var(--r-lg) var(--r-lg) var(--r-lg)); }
.hero__figure:not(.is-in) .hero__frame img { transform: scale(1.08); }
.hero__figure:not(.is-in) figcaption { opacity: 0; }
.hero__frame { transition: clip-path 1.7s var(--ease) .15s; }
.hero__frame img { transition: transform 2.4s var(--ease) .15s; }
.hero__figure figcaption { transition: opacity 1.2s var(--ease) 1.1s; }

@media (min-width: 720px) {
  .hero { padding: 36px 0 72px; }
  .hero__frame { aspect-ratio: 4 / 3.4; }
}
@media (min-width: 960px) {
  .hero { padding: 48px 0 96px; }
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 64px;
  }
  .hero__copy { gap: 22px; padding-bottom: 36px; }
  .hero__text { font-size: 17px; }
  .hero__frame {
    aspect-ratio: 4 / 4.6;
    max-height: calc(100vh - var(--header-h) - 120px);
    min-height: 460px;
    width: 100%;
    border-radius: 200px var(--r-lg) var(--r-lg) var(--r-lg);
    clip-path: inset(0 0 0 0 round 200px var(--r-lg) var(--r-lg) var(--r-lg));
  }
  .hero__figure:not(.is-in) .hero__frame { clip-path: inset(100% 0 0 0 round 200px var(--r-lg) var(--r-lg) var(--r-lg)); }
}

/* ==========================================================================
   Menu
   ========================================================================== */
.menu { padding-top: 8px; }
.menu__intro { display: grid; gap: 10px; padding-bottom: 20px; }
.menu__title {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.12;
  letter-spacing: -.02em;
}

/* ---------- category navigation ---------- */
.catnav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(245, 239, 230, .92);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  backdrop-filter: saturate(1.2) blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.catnav__track {
  position: relative;
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* fade edges hint at more content on phones */
}
@media (max-width: 1099px) {
  .catnav__track {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 28px), transparent 100%);
  }
}
.catnav__track::-webkit-scrollbar { display: none; }
.catnav__list {
  display: flex;
  gap: 2px;
  margin: 0 auto;
  padding: 7px 0;
  width: max-content;
}
.catnav__list li:last-child { padding-right: 18px; }
.catnav__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .6s var(--ease);
}
.catnav__link:hover { color: var(--ink); }
.catnav__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--accent);
  transition: color .6s var(--ease);
}
.catnav__link.is-active { color: var(--paper); }
.catnav__link.is-active .catnav__num { color: var(--crema); }
.catnav__pill {
  position: absolute;
  left: 0; top: 7px;
  height: 40px;
  width: 0;
  border-radius: 999px;
  z-index: 0;
  background: var(--ink);
  opacity: 0;
  transition: transform .7s var(--ease), width .7s var(--ease), opacity .4s;
}
.nav-stuck .catnav { box-shadow: 0 12px 24px -20px rgba(42, 31, 24, .5); }

/* ---------- category section ---------- */
.menu__body { padding-bottom: 24px; }
.cat {
  padding-top: 44px;
  scroll-margin-top: calc(var(--header-h) + var(--catnav-h) + 4px);
}
.cat__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.cat__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
}
.cat__title {
  font-family: var(--serif);
  font-size: clamp(26px, 6.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -.015em;
}
.cat__rule {
  flex: 1;
  height: 1px;
  background: var(--line);
  align-self: center;
  transform-origin: left;
}

@media (min-width: 720px) {
  .cat { padding-top: 64px; }
  .cat__head { margin-bottom: 28px; gap: 16px; }
}

/* ---------- product grid & card ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 14px;
}
@media (min-width: 720px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 24px; } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px 28px; } }

.card { display: flex; flex-direction: column; min-width: 0; }
.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-2);
  isolation: isolate;
}
.card__media::after {         /* hairline inner edge, like a printed photo */
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(42, 31, 24, .06);
  pointer-events: none;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
@media (hover: hover) {
  .card:hover .card__media img { transform: scale(1.04); }
}
.card__placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(255, 250, 240, .7), transparent 60%),
    var(--paper-2);
}
.card__placeholder .mark { width: 44px; height: 44px; opacity: .35; }

.card__body { display: flex; flex-direction: column; flex: 1; padding-top: 12px; gap: 5px; }
.card__name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.005em;
  overflow-wrap: anywhere;
}
.card__desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__price {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}
.card__price::before {        /* quiet menu leader */
  content: "";
  flex: 0 0 18px;
  height: 1px;
  background: var(--crema);
  align-self: center;
}
.card__amount { font-size: 15px; font-weight: 600; letter-spacing: .01em; }
.card__cur { font-size: 12px; color: var(--ink-2); font-weight: 500; }

@media (min-width: 720px) {
  .card__name { font-size: 19px; }
  .card__desc { font-size: 14px; }
  .card__amount { font-size: 16px; }
}

/* ---------- empty state ---------- */
.empty {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, .25);
}
.empty .mark { flex: none; width: 28px; height: 28px; opacity: .6; }

/* ==========================================================================
   Website service CTA (webmenu.uz) — intentionally distinct from the menu
   ========================================================================== */
.svc { padding: 56px 0 64px; }
.svc__card {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 30px 22px 26px;
  border-radius: var(--r-lg);
  background: var(--dark);
  color: var(--paper);
  overflow: hidden;
}
.svc__card::before {          /* stitched inner edge */
  content: "";
  position: absolute; inset: 8px;
  border: 1px dashed rgba(245, 239, 230, .16);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}
.svc__card::after {           /* soft crema glow */
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  right: -120px; top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 167, 122, .22), transparent 70%);
  pointer-events: none;
}
.svc__copy { position: relative; display: grid; gap: 12px; }
.svc__eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--crema);
}
.svc__title {
  font-family: var(--serif);
  font-size: clamp(26px, 7vw, 40px);
  line-height: 1.12;
  letter-spacing: -.015em;
}
.svc__text { color: rgba(245, 239, 230, .78); max-width: 46ch; font-size: 15px; }
.svc__action { position: relative; display: grid; gap: 12px; justify-items: start; }
.svc__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 20px 12px 22px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  text-decoration: none;
  transition: background .5s var(--ease);
}
.svc__btn svg { flex: none; width: 18px; height: 18px; transition: transform .6s var(--ease); }
.svc__btn:hover { background: #fff; }
.svc__btn:hover svg { transform: translateX(3px); }
.svc__btn:focus-visible { outline-color: var(--crema); }
.svc__note { font-size: 12px; color: rgba(245, 239, 230, .6); }
button.svc__btn { border: 0; cursor: pointer; text-align: left; }
.svc__btn[aria-expanded="true"] svg { transform: rotate(90deg); }

/* contact options revealed by the CTA */
.svc__options {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 239, 230, .14);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.svc__options.is-open { opacity: 1; transform: none; }
.svc__choose { font-size: 13px; color: rgba(245, 239, 230, .7); }
.svc__list { display: grid; gap: 10px; }
.svc__opt {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 10px 18px;
  border: 1px solid rgba(245, 239, 230, .22);
  border-radius: var(--r-md);
  color: var(--paper);
  text-decoration: none;
  transition: background .45s var(--ease), border-color .45s var(--ease);
}
.svc__opt:hover { background: rgba(245, 239, 230, .08); border-color: rgba(245, 239, 230, .45); }
.svc__opt:focus-visible { outline-color: var(--crema); }
.svc__opt svg { flex: none; width: 24px; height: 24px; color: var(--crema); }
.svc__opt span { display: grid; line-height: 1.3; min-width: 0; }
.svc__opt strong { font-weight: 600; font-size: 15px; }
.svc__opt small { font-size: 13px; color: rgba(245, 239, 230, .65); overflow-wrap: anywhere; }
@media (min-width: 720px) {
  .svc__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 860px) {
  .svc { padding: 88px 0 96px; }
  .svc__card {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
    gap: 48px;
    padding: 52px 52px 48px;
  }
  .svc__action { justify-items: end; text-align: right; }
}

/* ==========================================================================
   Footer / contact
   ========================================================================== */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 calc(24px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.footer__grid {
  display: grid;
  gap: 32px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.brand--lg .brand__name { font-size: 34px; }
.brand--lg .mark { width: 34px; height: 34px; }
.footer__tagline {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-2);
}
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
}
.footer__phone svg { width: 22px; height: 22px; color: var(--accent); }
.footer__phone span {
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size .7s var(--ease);
}
.footer__phone:hover span { background-size: 100% 1px; }

.social { display: flex; flex-wrap: wrap; gap: 8px; }
.social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background .45s var(--ease), border-color .45s var(--ease);
}
.social a:hover { background: var(--paper); border-color: var(--ink-2); }
.social svg { width: 20px; height: 20px; }
.social__pending { font-family: var(--serif); font-style: italic; color: var(--ink-2); }

.footer__bar {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--crema);
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color .4s var(--ease);
}
.svc-link:hover { text-decoration-color: var(--ink); }
.svc-link svg { width: 16px; height: 16px; flex: none; }
.footer__top {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
}
.footer__top svg { width: 16px; height: 16px; }
.footer__top:hover { color: var(--ink); }

.footer__legal {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 20px;
  font-size: 12px;
  color: var(--ink-2);
}
.footer__credit a { text-decoration: none; font-weight: 600; color: var(--ink); }
.footer__credit a:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 860px) {
  .footer { padding-top: 72px; }
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; }
  .brand--lg .brand__name { font-size: 42px; }
}

.noscript { padding: 24px; text-align: center; }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
