:root {
  --ink: #063049;
  --ink-soft: #174a62;
  --sea: #86a2b0;
  --sea-deep: #557d91;
  --paper: #fbf4ec;
  --paper-warm: #fffaf4;
  --paper-warmer: #f5e7d6;
  --sand: #ead8c2;
  --rope: #c89155;
  --coral: #d6674d;
  --foam: #e9f1f1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgb(6 48 73 / 16%);
  --shadow-soft: 0 16px 40px rgb(6 48 73 / 10%);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: min(1120px, calc(100% - 40px));
  /* Fine-tune anchors here: lower values move hash targets further up, higher values move them down. */
  --anchor-offset-desktop: 82px;
  --anchor-offset-tablet: 78px;
  --anchor-offset-mobile: 76px;
  /* Fine-tune section whitespace here. */
  --section-space: clamp(52px, 6vw, 84px);
  --section-space-tight: clamp(36px, 4.5vw, 62px);
  /* Mobile text inset: aligns standalone headings with card inner text. */
  --mobile-text-inset: clamp(28px, 4vw, 42px);
  /* Fine-tune the footer wave color here. */
  --footer-wave-fill: var(--paper-warmer);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--ink) var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgb(134 162 176 / 26%), transparent 28rem),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 58%, var(--paper-warmer) 95%, var(--paper-warmer) 100%);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(115deg, rgb(6 48 73 / 4%) 1px, transparent 1px),
    linear-gradient(25deg, rgb(6 48 73 / 3%) 1px, transparent 1px);
  background-size: 56px 56px, 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgb(251 244 236 / 86%);
  box-shadow: 0 10px 30px rgb(6 48 73 / 8%);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  margin-inline: auto;
  padding: 10px 12px;
  border: 1px solid rgb(6 48 73 / 10%);
  border-radius: 999px;
  background: rgb(255 250 244 / 82%);
  box-shadow: 0 16px 50px rgb(6 48 73 / 8%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgb(6 48 73 / 12%);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand em {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.nav__links {
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav__links a {
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--paper-warm);
  background: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--paper);
  cursor: pointer;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  content: "";
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__line::before {
  transform: translateY(-6px);
}

.nav-toggle__line::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
  transform: translateY(-2px) rotate(-90deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 76px;
  right: max(20px, calc((100vw - 1120px) / 2));
  z-index: -1;
  width: min(44vw, 520px);
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle, transparent 57%, rgb(134 162 176 / 36%) 58%, transparent 59%),
    radial-gradient(circle at 48% 54%, rgb(255 255 255 / 52%), transparent 52%);
  border-radius: 50%;
}

.hero__sea {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 230px;
  background:
    radial-gradient(80% 90% at 50% 105%, rgb(134 162 176 / 36%), transparent 64%),
    repeating-radial-gradient(ellipse at 50% 120%, rgb(6 48 73 / 16%) 0 2px, transparent 3px 18px);
  mask-image: linear-gradient(to top, black, transparent 86%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.hero__content {
  position: relative;
}

.hero__content::before {
  position: absolute;
  top: -46px;
  left: -34px;
  z-index: -1;
  width: 118px;
  height: 118px;
  content: "";
  background: var(--coral);
  border-radius: 28% 72% 48% 52% / 36% 38% 62% 64%;
  opacity: 0.16;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--sea-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 2px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 8vw, 7.9rem);
  font-weight: 750;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 750;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 21px;
  font-weight: 900;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--paper-warm);
  background: var(--ink);
  box-shadow: 0 14px 28px rgb(6 48 73 / 20%);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #0d405f;
  box-shadow: 0 18px 38px rgb(6 48 73 / 24%);
}

.button--ghost {
  color: var(--ink);
  background: rgb(255 255 255 / 48%);
  border-color: rgb(6 48 73 / 16%);
}

.hero-card {
  position: relative;
  padding: clamp(16px, 2.6vw, 24px);
  background:
    linear-gradient(var(--paper-warm), var(--paper-warm)) padding-box,
    repeating-linear-gradient(135deg, var(--sea), var(--sea) 8px, var(--paper) 8px, var(--paper) 16px) border-box;
  border: 10px solid transparent;
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(1.3deg);
}

.hero-card::before {
  position: absolute;
  inset: 28px 26px auto auto;
  width: 108px;
  height: 46px;
  content: "";
  background:
    radial-gradient(ellipse at center, transparent 56%, rgb(6 48 73 / 28%) 58%, transparent 61%) 0 0 / 38px 22px repeat-x;
}

.hero-card__badge {
  position: absolute;
  top: -22px;
  left: 28px;
  z-index: 2;
  padding: 9px 14px;
  color: var(--paper-warm);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 14px 24px rgb(214 103 77 / 24%);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1.03;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgb(6 48 73 / 10%);
}

.hero-card__body {
  display: grid;
  gap: 3px;
  padding: 19px 7px 4px;
}

.hero-card__label,
.hero-card__text {
  margin: 0;
  color: var(--sea-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-card__time {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1;
}

.intro-band {
  position: relative;
  z-index: 1;
  margin-top: -42px;
}

.intro-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgb(6 48 73 / 10%);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.intro-band__grid div {
  display: grid;
  gap: 5px;
  min-height: 122px;
  padding: 28px;
  color: var(--paper-warm);
  border-right: 1px solid rgb(251 244 236 / 16%);
}

.intro-band__grid div:last-child {
  border-right: 0;
}

.intro-band__grid strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}

.intro-band__grid span {
  color: rgb(251 244 236 / 76%);
  font-weight: 700;
}

.section {
  padding: clamp(78px, 10vw, 128px) 0;
}

.two-column,
.practical__grid,
.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.section__heading p:not(.eyebrow) {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section__heading--center {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section__heading--center .eyebrow {
  justify-content: center;
}

.story-section {
  position: relative;
}

.story-section::before {
  position: absolute;
  top: 24%;
  left: 0;
  width: 26vw;
  min-width: 240px;
  height: 420px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at left, rgb(134 162 176 / 24%), transparent 72%);
}

.story-card,
.notice-card,
.contact-card,
.hours-card,
.product-card {
  border: 1px solid rgb(6 48 73 / 10%);
  background: rgb(255 250 244 / 78%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.story-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
}

.story-card p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.assortment {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(255 250 244 / 0%) 0%, rgb(233 241 241 / 70%) 45%, rgb(255 250 244 / 0%) 100%);
}

.assortment::before,
.assortment::after {
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  content: "";
  border: 2px solid rgb(134 162 176 / 28%);
  border-radius: 50%;
}

.assortment::before {
  top: 54px;
  left: -90px;
}

.assortment::after {
  right: -110px;
  bottom: 68px;
}

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

.assortment .section__heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.product-card {
  position: relative;
  min-height: 255px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 82px;
  content: "";
  background:
    radial-gradient(ellipse at center, transparent 56%, rgb(134 162 176 / 34%) 58%, transparent 61%) 0 0 / 42px 24px repeat-x;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.product-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 38px;
  padding: 8px 12px;
  margin-bottom: 44px;
  color: var(--paper-warm);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--sea-deep);
  border-radius: 999px;
}

.product-card:nth-child(2) .product-card__icon {
  background: #719b79;
}

.product-card:nth-child(3) .product-card__icon {
  background: var(--coral);
}

.product-card:nth-child(4) .product-card__icon {
  background: var(--ink);
}

.product-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.practical {
  padding-top: 100px;
}

.hours-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.hours-card h2,
.hours-card .card-kicker {
  color: var(--paper-warm);
}

.card-kicker {
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hours-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  color: rgb(251 244 236 / 74%);
  border: 1px solid rgb(251 244 236 / 12%);
  border-radius: 16px;
  background: rgb(255 255 255 / 5%);
}

.hours-list li.is-today {
  color: var(--ink);
  background: var(--paper);
  border-color: transparent;
  box-shadow: 0 14px 28px rgb(0 0 0 / 18%);
}

.hours-list span {
  font-weight: 800;
}

.hours-list strong {
  color: inherit;
  font-weight: 900;
  white-space: nowrap;
}

.notice-card {
  position: relative;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.notice-card::after {
  position: absolute;
  right: -80px;
  bottom: -88px;
  width: 230px;
  height: 230px;
  content: "";
  background: rgb(214 103 77 / 14%);
  border-radius: 50%;
}

.notice-card p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.contact-section {
  padding-top: 72px;
}

.contact-card {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-lg);
}

.contact-card address {
  display: grid;
  gap: 4px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  font-style: normal;
  border-bottom: 1px solid rgb(6 48 73 / 12%);
}

.contact-card address strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.contact-card address span,
.contact-card dd {
  color: var(--ink-soft);
  font-weight: 700;
}

.contact-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-card dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: baseline;
}

.contact-card dt {
  color: var(--sea-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
}

.site-footer {
  position: relative;
  padding: clamp(106px, 10vw, 146px) 0 34px;
  overflow: hidden;
  color: var(--paper-warm);
  background: var(--ink);
}

.site-footer__wave {
  position: absolute;
  inset: 0 0 auto;
  display: block;
  width: 100%;
  height: clamp(88px, 10vw, 142px);
  pointer-events: none;
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.site-footer__grid div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
}

.site-footer span,
.site-footer a {
  color: rgb(251 244 236 / 72%);
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper-warm);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 680ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.reveal--delay,
.reveal--delay-1 {
  animation-delay: 140ms;
}

.reveal--delay-2 {
  animation-delay: 230ms;
}

.reveal--delay-3 {
  animation-delay: 320ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 28px, 720px);
  }

  .nav {
    position: relative;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    visibility: hidden;
    background: var(--paper-warm);
    border: 1px solid rgb(6 48 73 / 10%);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav__links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav__links a {
    padding: 13px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero::before {
    top: 50%;
    right: -160px;
    width: 520px;
  }

  .hero__grid,
  .two-column,
  .practical__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
    margin-inline: auto;
    transform: none;
  }

  .intro-band {
    margin-top: 0;
  }

  .intro-band__grid,
  .assortment__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-band__grid div:nth-child(2) {
    border-right: 0;
  }

  .intro-band__grid div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgb(251 244 236 / 16%);
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 22px, 480px);
  }

  .site-header {
    padding-top: 10px;
  }

  .nav {
    padding: 8px;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.64rem;
  }

  .brand em {
    font-size: 1rem;
  }

  .hero {
    padding: 38px 0 58px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .hero__actions,
  .site-footer__grid {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    border-width: 7px;
    border-radius: 32px;
  }

  .intro-band__grid,
  .assortment__grid {
    grid-template-columns: 1fr;
  }

  .intro-band__grid div,
  .intro-band__grid div:nth-child(2),
  .intro-band__grid div:last-child {
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgb(251 244 236 / 16%);
  }

  .intro-band__grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .product-card {
    min-height: auto;
  }

  .product-card__icon {
    margin-bottom: 30px;
  }

  .hours-list li,
  .contact-card dl div {
    grid-template-columns: 1fr;
  }

  .hours-list li {
    display: grid;
    gap: 2px;
  }
}

/* Compact centered text logo and hero wave refinement. */
.nav--center-logo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 68px;
}

.nav__links--left {
  justify-self: start;
}

.nav__links--right {
  justify-self: end;
}

.nav__links--mobile {
  display: none;
}

.text-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 172px;
  color: var(--ink);
  line-height: 1;
  text-align: center;
}

.text-logo__eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--sea-deep);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.text-logo__eyebrow span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.text-logo strong {
  margin-top: 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.text-logo svg {
  width: 64px;
  height: 8px;
  margin-top: 3px;
  color: var(--sea);
}

.hero__wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 210px;
  pointer-events: none;
}

@media (max-width: 980px) {
  .nav--center-logo {
    grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
  }

  .nav__links--desktop {
    display: none !important;
  }

  .nav__links--mobile {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    visibility: hidden;
    background: var(--paper-warm);
    border: 1px solid rgb(6 48 73 / 10%);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav__links--mobile.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-toggle {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .text-logo {
    min-width: 150px;
  }

  .text-logo__eyebrow {
    gap: 6px;
    font-size: 0.48rem;
    letter-spacing: 0.22em;
  }

  .text-logo__eyebrow span {
    width: 16px;
  }

  .text-logo strong {
    font-size: 1.08rem;
  }

  .text-logo svg {
    width: 54px;
  }

  .hero__wave {
    height: 150px;
  }
}

.nav--center-logo .text-logo {
  grid-column: 2;
  grid-row: 1;
}

.nav--center-logo .nav-toggle {
  grid-column: 3;
  grid-row: 1;
}

.nav--center-logo .nav__links--left {
  grid-column: 1;
  grid-row: 1;
}

.nav--center-logo .nav__links--right {
  grid-column: 3;
  grid-row: 1;
}

/* Requested polish pass: tighter scale, cleaner cards, better anchor positioning. */
html {
  scroll-padding-top: 116px;
}

[id] {
  scroll-margin-top: 116px;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6.1vw, 5.85rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.05rem, 4.1vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.section__heading p:not(.eyebrow),
.story-card p,
.notice-card p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.72;
}

.hero {
  min-height: 660px;
  padding: 74px 0 64px;
}

.hero__intro {
  max-width: 610px;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}

.hero-card::before,
.product-card::after {
  display: none;
  content: none;
}

.intro-band {
  margin-top: -28px;
}

.intro-band__grid {
  border-radius: 26px;
}

.intro-band__grid div {
  min-height: 84px;
  padding: 18px 24px;
}

.intro-band__grid strong {
  font-size: 1.35rem;
}

.intro-band__grid span {
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-footer__wave path {
  fill: var(--paper-warmer);
}

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

  [id] {
    scroll-margin-top: 102px;
  }

  .hero {
    padding-top: 52px;
  }
}

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

  [id] {
    scroll-margin-top: 94px;
  }

  .hero {
    padding: 34px 0 48px;
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.45rem);
    line-height: 0.98;
    letter-spacing: -0.048em;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.72rem);
    line-height: 0.98;
  }

  h3 {
    font-size: 1.25rem;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.66rem;
    letter-spacing: 0.15em;
  }

  .hero__intro,
  .section__heading p:not(.eyebrow),
  .story-card p,
  .notice-card p:not(.eyebrow),
  .product-card p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .intro-band__grid div,
  .intro-band__grid div:nth-child(2),
  .intro-band__grid div:last-child {
    min-height: auto;
    padding: 15px 20px;
  }

  .intro-band__grid strong {
    font-size: 1.18rem;
  }

  .intro-band__grid span {
    font-size: 0.84rem;
  }

  .hours-list li {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
  }

  .hours-list strong {
    font-size: 0.92rem;
    text-align: right;
  }

  .hours-card .card-kicker,
  .hours-card h2 {
    padding-inline: 16px;
  }

  .contact__grid > .section__heading {
    padding-inline: clamp(28px, 4vw, 42px);
  }
}

/* Final tightening after mobile review. */
h1 {
  max-width: 680px;
  font-size: clamp(2.75rem, 5.15vw, 5rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(1.95rem, 3.65vw, 3.45rem);
}

.hero:target {
  padding-top: 138px;
}

.hero-card::before,
.hero-card::after,
.product-card::before,
.product-card::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

@media (max-width: 980px) {
  .hero:target {
    padding-top: 124px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.08rem, 9vw, 2.9rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.85rem, 7.7vw, 2.42rem);
  }

  .hero:target {
    padding-top: 112px;
  }
}

/* Tuning layer: anchors, tighter sections, compact product cards. */
html {
  scroll-padding-top: var(--anchor-offset-desktop);
}

[id] {
  scroll-margin-top: var(--anchor-offset-desktop);
}

.section {
  padding: var(--section-space) 0;
}

.assortment,
.practical,
.contact-section {
  padding-top: var(--section-space-tight);
  padding-bottom: var(--section-space-tight);
}

.assortment .section__heading {
  margin-bottom: 28px;
}

.product-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 13px;
  row-gap: 12px;
  align-items: center;
  min-height: auto;
  padding: 19px 21px;
}

.product-card__icon {
  min-width: 0;
  min-height: 0;
  padding: 5px 10px;
  margin-bottom: 0;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 1.26rem;
  line-height: 1.08;
}

.product-card p {
  grid-column: 1 / -1;
}

.hero__content::before {
  top: -16px;
}

.hero:target {
  padding-top: 74px;
}

.site-footer__wave path {
  fill: var(--footer-wave-fill);
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: var(--anchor-offset-tablet);
  }

  [id] {
    scroll-margin-top: var(--anchor-offset-tablet);
  }

  .section {
    padding: 56px 0;
  }

  .assortment,
  .practical,
  .contact-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero:target {
    padding-top: 52px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: var(--anchor-offset-mobile);
  }

  [id] {
    scroll-margin-top: var(--anchor-offset-mobile);
  }

  .section {
    padding: 46px 0;
  }

  .assortment,
  .practical,
  .contact-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .assortment .section__heading {
    margin-bottom: 24px;
  }

  .product-card {
    padding: 18px 24px;
  }

  .product-card__icon {
    padding: 5px 9px;
    font-size: 0.6rem;
  }

  .product-card h3 {
    font-size: 1.16rem;
  }

  .hero__content::before {
    top: -4px;
    left: -26px;
  }

  .hero:target {
    padding-top: 34px;
  }
}

/* Mobile visual alignment: standalone text follows the same inset as card content. */
@media (max-width: 640px) {
  .hero__content,
  .story-section .section__heading,
  .assortment .section__heading,
  .contact__grid > .section__heading {
    padding-inline: var(--mobile-text-inset);
  }
}

/* Annotation pass: compact vertical rhythm and selected element fixes. */
:root {
  --section-space: clamp(40px, 4.4vw, 66px);
  --section-space-tight: clamp(22px, 3vw, 42px);
  --footer-wave-fill: var(--paper-warmer);
}

.hero {
  padding-top: 38px;
  padding-bottom: 44px;
}

.assortment {
  background: transparent !important;
}

.assortment::before,
.assortment::after {
  z-index: -1;
}

.assortment,
.practical,
.contact-section {
  padding-top: var(--section-space-tight);
  padding-bottom: var(--section-space-tight);
}

.intro-band {
  margin-top: -18px;
}

.intro-band__grid div {
  min-height: auto;
  padding: 14px 24px;
}

.product-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.product-card h3 {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.product-card__icon {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.hours-card {
  padding: clamp(20px, 3vw, 32px);
}

.hours-card .card-kicker,
.hours-card h2 {
  padding-inline: 0 !important;
}

.contact-card dl {
  gap: 10px;
}

.contact-card dl div {
  gap: 6px 12px;
}

.notice-card::after {
  z-index: 0;
  pointer-events: none;
}

.notice-card > * {
  position: relative;
  z-index: 1;
}

.notice-card .button {
  z-index: 2;
}

.site-footer {
  padding: clamp(64px, 6vw, 88px) 0 28px;
}

.site-footer__wave {
  height: clamp(62px, 7vw, 96px);
}

@media (max-width: 980px) {
  .hero {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .assortment,
  .practical,
  .contact-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 17px;
    padding-bottom: 28px;
  }

  .hero-card img {
    display: none;
  }

  .hero-card__body {
    padding-top: 30px;
  }

  .intro-band__grid div,
  .intro-band__grid div:nth-child(2),
  .intro-band__grid div:last-child {
    padding: 12px var(--mobile-text-inset);
  }

  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .assortment,
  .practical,
  .contact-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hours-card {
    padding: 20px 20px 22px;
  }

  .hours-list {
    margin-top: 18px;
  }

  .contact-card dl {
    gap: 9px;
  }

  .contact-card dl div {
    gap: 3px;
  }

  .site-footer {
    padding-top: 58px;
    padding-bottom: 24px;
  }

  .site-footer__wave {
    height: 58px;
  }
}

/* Annotation pass 2: logo refinement, cards rhythm, desktop assortment grid. */
:root {
  --footer-wave-fill: var(--paper-warmer);
}

.text-logo {
  display: grid;
  grid-template-columns: 32px auto;
  grid-template-rows: auto auto auto;
  column-gap: 9px;
  align-items: center;
  min-width: 206px;
}

.text-logo__glyph {
  display: block;
  grid-column: 1;
  grid-row: 1 / 4;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.text-logo__eyebrow {
  grid-column: 2;
  grid-row: 1;
  font-family: "Lato", sans-serif;
  font-size: 0.53rem;
  letter-spacing: 0.26em;
}

.text-logo strong {
  grid-column: 2;
  grid-row: 2;
  font-family: "Playfair Display", serif;
  font-size: 1.32rem;
  letter-spacing: 0.09em;
}

.text-logo svg {
  grid-column: 2;
  grid-row: 3;
  width: 66px;
  height: 9px;
  justify-self: center;
}


.intro-band {
  padding-top: 16px;
  padding-bottom: 18px;
}

.intro-band__grid div {
  padding-top: 18px;
  padding-bottom: 18px;
}

.assortment__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--sea-deep);
  font-size: 0.78rem;
  letter-spacing: 0.17em;
}

.card-kicker::before {
  display: block;
  width: 42px;
  height: 2px;
  content: "";
  background: currentColor;
}

.contact-card dl {
  gap: 18px;
}

.contact-card dl div {
  gap: 2px 12px;
}

@media (max-width: 980px) {
  .assortment__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .text-logo {
    grid-template-columns: 28px auto;
    column-gap: 7px;
    min-width: 178px;
  }

  .text-logo__glyph {
    width: 28px;
    height: 28px;
  }

  .text-logo__eyebrow {
    font-size: 0.45rem;
    letter-spacing: 0.22em;
  }

  .text-logo__eyebrow span {
    width: 14px;
  }

  .text-logo strong {
    font-size: 1.08rem;
  }

  .text-logo svg {
    width: 56px;
  }

  .hero-card {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .hero-card__badge {
    display: none;
  }

  .hero-card__body {
    padding: 16px 12px;
  }

  .intro-band {
    padding-top: 14px;
    padding-bottom: 16px;
  }

  .intro-band__grid div,
  .intro-band__grid div:nth-child(2),
  .intro-band__grid div:last-child {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .card-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.15em;
  }

  .card-kicker::before {
    width: 34px;
  }

  .contact-card dl {
    gap: 14px;
  }

  .contact-card dl div {
    gap: 1px;
  }
}

/* Annotation pass 3: nav glyph placement, stable menu button, extra reveal delays. */
.reveal--delay-4 {
  animation-delay: 410ms;
}

.reveal--delay-5 {
  animation-delay: 500ms;
}

.nav--center-logo {
  grid-template-columns: 58px minmax(0, 1fr) 58px;
}

.text-logo {
  display: flex;
  grid-column: 2;
  min-width: 0;
}

.text-logo__glyph {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 42px;
  height: 42px;
  padding: 3px;
  background: var(--paper-warm);
  border: 1px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  transform: translateY(-50%);
}

.nav--center-logo .nav-toggle {
  grid-column: 3;
  justify-self: end;
  flex: 0 0 auto;
  transform: none !important;
}

.nav-toggle,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: none !important;
}

.site-footer__wave path {
  fill: var(--paper-warmer) !important;
}

@media (max-width: 640px) {
  .nav--center-logo {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
  }

  .text-logo {
    grid-column: 2;
    min-width: 0;
  }

  .text-logo__glyph {
    left: 2px;
    width: 44px;
    height: 44px;
  }

  .nav--center-logo .nav-toggle {
    width: 44px;
    height: 44px;
  }
}

/* Final footer wave color lock: keep this as paper-warmer. */
:root {
  --footer-wave-fill: var(--paper-warmer);
}

.site-footer__wave,
.site-footer__wave path {
  color: var(--paper-warmer);
  fill: var(--paper-warmer) !important;
}

/* Contact card shadow should visually float over the footer wave. */
.contact-section {
  position: relative;
  z-index: 3;
}

.contact-card {
  position: relative;
  z-index: 4;
}

.site-footer {
  position: relative;
  z-index: 1;
}

/* Keep nav glyph vertically centered in the full menu bar. */
.nav--center-logo .text-logo__glyph {
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

/* Match the left glyph placement and size to the right menu button. */
.nav--center-logo .text-logo__glyph {
  position: static !important;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  width: 44px !important;
  height: 44px !important;
  margin: 0;
  padding: 3px;
  transform: none !important;
}

.nav--center-logo .text-logo {
  grid-column: 2;
  grid-row: 1;
}

.nav--center-logo .nav-toggle {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
}

@media (max-width: 640px) {
  .nav--center-logo .text-logo__glyph {
    width: 44px !important;
    height: 44px !important;
  }
}

/* Final nav glyph alignment: mirror the menu button in size and vertical placement. */
.nav--center-logo {
  position: relative;
}

.nav--center-logo .text-logo {
  position: static !important;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.nav--center-logo .text-logo__glyph {
  position: absolute !important;
  top: 50% !important;
  left: 12px !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 3px;
  transform: translateY(-50%) !important;
}

@media (max-width: 640px) {
  .nav--center-logo .text-logo__glyph {
    left: 10px !important;
    width: 44px !important;
    height: 44px !important;
  }
}

/* Mobile nav glyph as its own item, mirroring the hamburger button. */
.nav-glyph {
  display: none;
}

@media (max-width: 980px) {
  .nav--center-logo {
    grid-template-columns: 44px minmax(0, 1fr) 44px !important;
    align-items: center;
  }

  .nav-glyph {
    display: inline-grid;
    grid-column: 1;
    grid-row: 1;
    place-items: center;
    justify-self: start;
    width: 44px;
    height: 44px;
    overflow: hidden;
    background: var(--paper-warm);
    border: 1px solid var(--ink);
    border-radius: 50%;
  }

  .nav-glyph__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .nav--center-logo .text-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .nav--center-logo .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 981px) {
  .nav-glyph {
    display: none !important;
  }
}

/* Final annotation pass: product pills, desktop nav, dynamic badge and footer utilities. */
:root {
  --status-open: #719b79;
  --status-closed: #bd5f55;
  --pill-red: #b95a52;
  --pill-pink: #c98598;
}

.nav__links {
  flex-wrap: nowrap;
}

.nav__links a {
  white-space: nowrap;
}

@media (min-width: 981px) {
  .nav--center-logo {
    grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr) !important;
  }

  .nav__links--left,
  .nav__links--right {
    min-width: max-content;
  }
}

.hero-card img {
  width: min(100%, 286px);
  margin-inline: auto;
}

.product-card:nth-child(5) .product-card__icon {
  background: var(--pill-red);
}

.product-card:nth-child(6) .product-card__icon {
  background: var(--pill-pink);
}

.hero-card__badge.is-open {
  background: var(--status-open);
  box-shadow: 0 14px 24px rgb(113 155 121 / 24%);
}

.hero-card__badge.is-closed {
  background: var(--status-closed);
  box-shadow: 0 14px 24px rgb(189 95 85 / 24%);
}

@media (max-width: 640px) {
  .hero-card__badge {
    display: inline-flex !important;
    top: -18px;
    left: 18px;
  }
}

.site-footer__address {
  margin-top: 10px;
  color: rgb(251 244 236 / 62%);
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer__meta {
  display: grid;
  gap: 5px;
  color: rgb(251 244 236 / 42%);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.site-footer__meta span {
  color: inherit;
  font-weight: inherit;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 80;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--paper-warm);
  font-size: 1.35rem;
  font-weight: 900;
  background: var(--ink);
  border: 1px solid rgb(251 244 236 / 28%);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgb(6 48 73 / 26%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #0d405f;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@media (max-width: 700px) {
  .site-footer__grid {
    align-items: start;
  }

  .site-footer__meta {
    text-align: left;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
  }
}

/* Store status badge replaces the old static hero badge on every viewport. */
.hero-card__badge[data-store-status] {
  position: absolute;
  top: -20px;
  left: clamp(18px, 5vw, 28px);
  z-index: 6;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: calc(100% - 36px);
  min-height: 38px;
  padding: 9px 16px;
  overflow: hidden;
  color: var(--paper-warm);
  font-size: clamp(0.68rem, 1.4vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
}

.hero-card__badge[data-store-status].is-open {
  background: var(--status-open);
  box-shadow: 0 14px 24px rgb(113 155 121 / 24%);
}

.hero-card__badge[data-store-status].is-closed {
  background: var(--status-closed);
  box-shadow: 0 14px 24px rgb(189 95 85 / 24%);
}

/* Final responsive layout polish for desktop/tablet annotations. */
@media (min-width: 981px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: clamp(38px, 5vw, 70px);
  }

  .hero-card {
    justify-self: end;
    width: fit-content;
    max-width: 390px;
  }

  .hero-card img {
    width: clamp(250px, 25vw, 312px);
    max-width: 100%;
  }

  .hero-card__time {
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    white-space: nowrap;
  }

  .practical__grid {
    align-items: stretch;
  }

  .hours-card,
  .notice-card {
    height: 100%;
  }

  .notice-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-card address {
    display: block;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .contact-card address span {
    display: inline;
  }

  .contact-card address span + span::before {
    content: ", ";
  }

  .contact-card dl {
    gap: 8px !important;
  }

  .contact-card dl div {
    gap: 8px 12px !important;
  }

  .site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
  }

  .site-footer__address {
    justify-self: center;
    margin: 0;
    text-align: center;
    white-space: nowrap;
  }

  .site-footer__meta {
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .site-footer__address {
    margin-top: 10px;
  }
}

/* Final mobile footer and back-to-top visibility tweaks. */
.site-footer__meta span:nth-child(1),
.site-footer__meta span:nth-child(2) {
  color: rgb(0 0 0 / 40%) !important;
}

.site-footer__meta span:nth-child(3) {
  color: rgb(0 0 0 / 25%) !important;
}

@media (min-width: 701px) {
  .back-to-top {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer__grid > div:first-child {
    display: contents;
  }

  .site-footer strong {
    order: 1;
  }

  .site-footer__address {
    order: 2;
    margin: 0;
  }

  .site-footer__grid > div:first-child > span {
    order: 3;
  }

  .site-footer__meta {
    order: 4;
    margin-top: 6px;
  }
}

/* Final detail pass: contact wrapping, footer contrast, intro spacing and mobile button color. */
.keep-together {
  white-space: nowrap;
}

@media (min-width: 981px) {
  .contact-card address {
    display: grid;
    gap: 4px;
  }

  .contact-card address span {
    display: inline;
  }

  .contact-card address span + span::before {
    content: "";
  }

  .contact-card address span:first-of-type::after {
    content: ", ";
  }
}

@media (max-width: 700px) {
  .contact-card address {
    gap: 2px;
  }

  .contact-card address span + span {
    margin-top: -2px;
  }

  .intro-band {
    padding-top: 28px;
  }

  .site-footer__grid {
    gap: 8px;
  }

  .site-footer__address {
    margin-top: -2px;
  }

  .site-footer__grid > div:first-child > span {
    margin-top: 6px;
  }

  .site-footer__meta span:nth-child(1),
  .site-footer__meta span:nth-child(2) {
    color: rgb(255 255 255 / 40%) !important;
  }

  .site-footer__meta span:nth-child(3) {
    color: rgb(255 255 255 / 25%) !important;
  }

  .back-to-top {
    color: var(--paper-warm);
    background: var(--sea-deep);
    border-color: rgb(255 255 255 / 28%);
  }

  .back-to-top:hover,
  .back-to-top:focus-visible {
    background: var(--sea);
  }
}

@media (min-width: 701px) {
  .site-footer__meta span:nth-child(1),
  .site-footer__meta span:nth-child(2) {
    color: rgb(255 255 255 / 40%) !important;
  }

  .site-footer__meta span:nth-child(3) {
    color: rgb(255 255 255 / 25%) !important;
  }
}
