:root {
  --bg: #ffffff;
  --panel: #f7f1e8;
  --card: #f2f2f2;
  --primary: #cf9841;
  --primary-strong: #8a5e3c;
  --primary-light: #e7c894;
  --danger: #7c3030;
  --danger-dark: #541c1c;
  --text: #4a3728;
  --muted: #8b7c6a;
  --border: #c8b39a;
  --border-width: 3px;
  --shadow: 0 18px 48px rgba(138, 94, 60, 0.18);
  --radius: 16px;
  --radius-lg: 22px;
  --font-heading: "Playfair Display", "Raleway", serif;
  --font-body: "Raleway", "Playfair Display", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  cursor: default;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-strong);
  display: inline-block;
}

.lede {
  font-size: 1.05rem;
  margin: 14px 0 24px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #3c2a1e;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: var(--border-width) solid var(--primary-strong);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease,
    translate 0.25s ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.03);
  box-shadow: 0 12px 32px rgba(138, 94, 60, 0.22);
}

.button--ghost {
  background: transparent;
  color: var(--primary-strong);
  border: var(--border-width) solid rgba(138, 94, 60, 0.45);
  box-shadow: none;
}

.button--ghost:hover {
  border-color: rgba(138, 94, 60, 0.9);
  box-shadow: 0 10px 26px rgba(138, 94, 60, 0.18);
  transform: translateY(-2px);
}

.button--invert {
  background: var(--primary-strong);
  color: #fff;
  border: none;
}

.button--invert:hover {
  box-shadow: 0 12px 28px rgba(138, 94, 60, 0.25);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
  position: relative;
  z-index: 1;
}

.section--contrast {
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  margin-top: 42px;
  border: var(--border-width) solid rgba(200, 179, 154, 0.6);
  box-shadow: var(--shadow);
}

.section__header {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}

.section__header h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 8px 0 12px;
}

.body {
  max-width: 720px;
  margin: 0 auto;
}

.desktop-line {
  display: inline;
}

@media (min-width: 1025px) {
  .desktop-line {
    display: block;
  }
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--four {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cards {
  margin-top: 10px;
}

#values .card {
  background: var(--primary-strong);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#values .card h3 {
  color: #fff;
}

#values .card p {
  color: rgba(255, 255, 255, 0.9);
}

#values .card__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: transform 0.25s ease;
}

#values .card:hover {
  transform: translateY(-6px) scale(1.02) rotate(-0.4deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

#values .card:hover .card__icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.05);
}

main {
  position: relative;
  z-index: 1;
}

.card {
  background: #fff;
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, translate 0.25s ease;
}

.card h3 {
  margin: 6px 0 10px;
  font-size: 1.2rem;
  color: var(--primary-strong);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(231, 200, 148, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--primary-strong);
  transition: transform 0.25s ease;
}

.card ul {
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.card li {
  margin-bottom: 6px;
}

.card--feature {
  min-height: 220px;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  border-color: rgba(138, 94, 60, 0.6);
}

.card:hover .card__icon {
  transform: translateY(-2px) scale(1.05);
}

.card--link .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.card--link a {
  padding: 8px 12px;
  border-radius: 12px;
  border: var(--border-width) solid rgba(138, 94, 60, 0.35);
  color: var(--text);
  background: rgba(231, 200, 148, 0.12);
  transition: border-color 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card--link a:hover {
  border-color: rgba(138, 94, 60, 0.8);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.card--media .card__content {
  margin-top: 14px;
}

.cards--media .card {
  padding: 16px;
  overflow: hidden;
}

.media {
  position: relative;
  padding-top: 56.25%;
  background: var(--card);
}

.media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-bottom: var(--border-width) solid var(--border);
}

.card--person {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.card--person img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(138, 94, 60, 0.4);
  transition: transform 0.25s ease;
}

.card--person h3 {
  margin: 0 0 4px;
}

.cards--feature {
  margin-bottom: 28px;
}

.features-section .card {
  border: none;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-section .card:hover {
  border: none;
  transform: translateY(-6px) scale(1.02) rotate(-0.4deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(138, 94, 60, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
  transition: transform 0.25s ease;
}

#team .card {
  background: var(--primary-light);
  border: none;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#team .card h3,
#team .card p {
  color: var(--text);
}

#team .card--person img {
  border-color: rgba(138, 94, 60, 0.5);
}

.card--person:hover img,
#team .card--person:hover img {
  transform: scale(1.05);
}

.features-section .card:hover .feature-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.05);
}

#team .card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.app-peek-visual {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.app-peek-visual img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.paw-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-image: url("./images/paw.png"), url("./images/paw.png"),
    url("./images/paw.png"), url("./images/paw.png"), url("./images/paw.png"),
    url("./images/paw.png"), url("./images/paw.png"), url("./images/paw.png"),
    url("./images/paw.png"), url("./images/paw.png"), url("./images/paw.png"),
    url("./images/paw.png"), url("./images/paw.png"), url("./images/paw.png"),
    url("./images/paw.png"), url("./images/paw.png");
  background-size: 260px, 220px, 200px, 180px, 160px, 150px, 140px, 130px, 120px,
    115px, 110px, 105px, 100px, 95px, 90px, 85px;
  background-position: -80px 5%, 78% 12%, 12% 28%, 86% 40%, 18% 52%, 72% 60%,
    44% 68%, 8% 82%, 90% 86%, 32% 44%, 54% 30%, 62% 78%, 18% 92%, 74% 94%,
    42% 97%, 88% 90%;
  opacity: 0.2;
}

.scroll-hint {
  margin-top: 12px;
  text-align: right;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.cards--process {
  display: grid;
  grid-template-columns: unset;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 540px);
  overflow-x: auto;
  overflow-y: hidden;
  gap: 18px;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-top: 20px;
}

.cards--process .card {
  scroll-snap-align: start;
  background: var(--primary-strong);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  max-width: 96vw;
}

.cards--process::-webkit-scrollbar {
  height: 8px;
}

.cards--process::-webkit-scrollbar-thumb {
  background: rgba(124, 48, 48, 0.35);
  border-radius: 12px;
}

.cards--process .card h3 {
  color: #fff;
}

.cards--process .card p {
  color: rgba(255, 255, 255, 0.9);
}

.cards--process .card .links a {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: var(--border-width) solid rgba(255, 255, 255, 0.35);
}

.cards--process .card .links a:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.feature-visual {
  margin-top: 18px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-visual--grid {
  display: flex;
  gap: 14px;
  background: #fff;
  padding: 14px;
}

.feature-visual--grid img {
  flex: 1 1 calc((100% - 70px) / 6);
  width: calc((100% - 70px) / 6);
  max-width: none;
  height: auto;
  border-radius: 12px;
  box-shadow: none;
  border: none;
  background: transparent;
  opacity: 0;
  transform: translateY(-20px);
  transition: transform 0.25s ease;
}

.feature-visual--grid.is-visible img {
  animation: dropIn 0.8s ease forwards;
}

.feature-visual--grid.is-visible img:nth-child(1) {
  animation-delay: 0s;
}
.feature-visual--grid.is-visible img:nth-child(2) {
  animation-delay: 0.16s;
}
.feature-visual--grid.is-visible img:nth-child(3) {
  animation-delay: 0.32s;
}
.feature-visual--grid.is-visible img:nth-child(4) {
  animation-delay: 0.48s;
}
.feature-visual--grid.is-visible img:nth-child(5) {
  animation-delay: 0.64s;
}
.feature-visual--grid.is-visible img:nth-child(6) {
  animation-delay: 0.8s;
}

.feature-visual--mobile {
  display: none;
}

.feature-visual:not(.feature-visual--grid) img {
  width: 100%;
  height: auto;
  display: block;
}

.margin-bottom {
  margin-bottom: 20px;
}
.feature-visual:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: none;
}

.hero {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 24px 24px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hero__logo {
  max-width: min(20vw, 250px);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.95rem, 3vw, 2.6rem);
  margin: 6px 0 10px;
  transition: transform 0.3s ease, scale 0.3s ease;
  display: block;
  will-change: transform;
  white-space: nowrap;
}

.hero h1:hover {
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 140px;
  height: 140px;
  background: url("./images/paw.png") no-repeat center/contain;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.hero__line {
  display: inline-block;
}

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

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: var(--border-width) solid rgba(138, 94, 60, 0.25);
  background: rgba(138, 94, 60, 0.08);
  color: var(--primary-strong);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero__tags span::before {
  content: "✓";
  font-weight: 700;
  color: var(--primary-strong);
}

.hero__tags span:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(138, 94, 60, 0.6);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .button {
  border: none;
  color: #fff;
}

.hero .button--ghost {
  border: var(--border-width) solid var(--primary-strong);
  color: var(--primary-strong);
  background: transparent;
}

.hero__image {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 0;
  border: none;
  box-shadow: none;
}

.hero__image img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  animation: floatSlow 8s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: static;
  margin: 10px 0 6px;
  padding: 0;
  border-radius: 0;
  border: none;
  font-weight: 800;
  color: var(--primary-strong);
  box-shadow: none;
  text-align: left;
  animation: fadeUp 0.8s ease forwards;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s ease forwards;
}

.hero__content .eyebrow {
  animation-delay: 0.05s;
}
.hero__content h1 {
  animation-delay: 0.12s;
}
.hero__content .lede {
  animation-delay: 0.18s;
}
.hero__badge {
  animation-delay: 0.16s;
}
.hero__actions {
  animation-delay: 0.24s;
}
.hero__tags {
  animation-delay: 0.32s;
}

.hero__badge-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  background: #fff6e5;
  border-radius: 50%;
  border: none;
  box-shadow: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: var(--border-width) solid rgba(200, 179, 154, 0.7);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand img {
  width: 64px;
  height: auto;
}

.logo-hover {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.logo-hover:hover {
  transform: scale(1.06);
}

.brand__name {
  font-size: 1.25rem;
  display: block;
  color: var(--text);
}

.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__links a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(231, 200, 148, 0.24);
  transform: translateY(-2px);
}

.nav__burger,
.nav__toggle {
  display: none;
}

.nav__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.footer {
  border-top: var(--border-width) solid rgba(200, 179, 154, 0.6);
  margin-top: 60px;
  padding: 28px 24px 40px;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand img {
  width: 120px;
  height: auto;
}

.footer__brand p {
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__links a {
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.footer__links a:hover {
  color: var(--text);
  background: rgba(231, 200, 148, 0.18);
}

.qr-fab {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 12;
  display: grid;
  gap: 10px;
  justify-items: end;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.qr-fab__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-strong);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qr-fab__toggle:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(138, 94, 60, 0.22);
}

.qr-fab__chevron {
  font-size: 0.85rem;
  opacity: 0.9;
}

.qr-fab__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  width: 210px;
  padding: 14px;
  background: #fff;
  border: var(--border-width) solid rgba(138, 94, 60, 0.2);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  align-items: center;
}

.qr-fab__card img {
  width: 100%;
  border-radius: 12px;
  border: var(--border-width) solid rgba(138, 94, 60, 0.25);
}

.qr-fab__help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: smaller;
  background: var(--primary);
  border-radius: 999px;
  padding: 6px 8px;
  font-weight: 800;
  text-decoration: none;
  margin: 6px 0 10px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease,
    translate 0.25s ease;
  align-self: center;
}
.mobile-help {
  padding: 12px 28px;
  font-size: medium;
  margin-top: 30px;
}

.qr-fab__help-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  background: #fff6e5;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
}

.qr-fab__help:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.03);
  box-shadow: 0 12px 32px rgba(138, 94, 60, 0.22);
}

.qr-fab__title {
  font-weight: 700;
  color: var(--text);
}

.qr-fab__hint {
  font-size: 0.9rem;
  margin: 4px 0 10px;
}

.qr-fab.is-open .qr-fab__card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.qr-fab.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.qr-inline {
  display: none;
  padding-top: 40px;
  padding-bottom: 0;
}

.qr-inline__card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.qr-inline__card h3 {
  margin: 8px 0 10px;
  color: var(--primary-strong);
}

.qr-inline__card img {
  width: 160px;
  justify-self: end;
  border-radius: 12px;
  border: var(--border-width) solid rgba(138, 94, 60, 0.25);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSlow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero__badge {
    position: static;
    margin-top: 12px;
  }

  .hero__logo {
    max-width: 40vw;
  }

  .hero::after {
    width: 110px;
    height: 110px;
    top: -10px;
    right: -8px;
  }
}

@media (max-width: 768px) {
  .qr-fab {
    display: none;
  }

  .qr-inline {
    display: block;
    padding-top: 12px;
  }

  .qr-inline__card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
    justify-items: center;
  }

  .qr-inline__card img {
    width: 100%;
    max-width: 320px;
    justify-self: center;
  }

  .cards--process {
    grid-auto-columns: minmax(calc(100% - 32px), 520px);
  }

  .hero__line {
    display: block;
  }

  .hero .eyebrow {
    display: block;
  }

  .hero h1 {
    display: block;
    width: 100%;
    font-size: clamp(2.2rem, 7vw, 3rem);
    white-space: normal;
  }

  .feature-visual--grid {
    display: none;
  }

  .feature-visual--mobile {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: var(--border-width) solid rgba(200, 179, 154, 0.8);
    display: none;
  }

  .nav__burger {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    border: var(--border-width) solid rgba(200, 179, 154, 0.7);
  }

  .nav__burger span {
    width: 20px;
    height: 2px;
    background: var(--primary-strong);
    display: block;
  }

  .nav__toggle:checked + .nav__burger + .nav__links {
    display: flex;
  }

  .nav__links .button {
    width: 100%;
    justify-content: center;
  }

  .card--person {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .card--person img {
    margin: 0 auto;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer__brand {
    flex-direction: column;
  }

  .footer__brand img {
    width: 100px;
  }

  .footer__links {
    justify-content: center;
  }

  .qr-fab {
    right: 12px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    justify-items: end;
    max-width: calc(100% - 24px);
  }

  .qr-fab__toggle {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .qr-fab__card {
    width: min(240px, 90vw);
    padding: 12px;
  }

  .qr-fab__hint {
    font-size: 0.85rem;
  }
}

@media (max-width: 560px) {
  .section,
  .hero {
    padding: 70px 16px;
  }

  .nav__inner {
    padding: 12px 16px;
  }

  .hero {
    margin-top: 40px;
  }

  .footer {
    padding: 24px 16px 32px;
  }

  .footer__links a {
    width: 100%;
    text-align: center;
  }
}
