@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --page: #f1efe9;
  --page-warm: #c3b197;
  --card: #ffffff;
  --surface: #f7f5ef;
  --surface-2: #ebe6dc;
  --ink: #17191d;
  --ink-2: #30343b;
  --text-soft: #746f66;
  --muted: #969087;
  --line: #e1ddd4;
  --charcoal: #15181d;
  --charcoal-2: #262b33;
  --mint: #bfe8c2;
  --mint-strong: #41754f;
  --butter: #f8e471;
  --coral: #f6bcad;
  --radius-card: 8px;
  --radius-control: 8px;
  --shadow-sm: 0 1px 2px rgba(21, 24, 29, 0.05);
  --shadow-md: 0 16px 38px rgba(21, 24, 29, 0.1);
  --shadow-lg: 0 34px 90px rgba(21, 24, 29, 0.24);
  --font:
    "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: var(--charcoal);
  background: var(--mint);
}

.wrap,
.container,
.shell {
  width: min(1168px, calc(100vw - 40px));
  margin-inline: auto;
}

.page-shell {
  min-height: 100svh;
  background:
    linear-gradient(
      180deg,
      rgba(195, 177, 151, 0.24),
      rgba(241, 239, 233, 0) 360px
    ),
    var(--page);
}

h1,
h2,
h3,
h4,
p {
  margin-block-start: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 13.5ch;
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  font-size: clamp(30px, 4.3vw, 52px);
}

h3 {
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.18;
}

p {
  color: var(--text-soft);
}

.eyebrow,
.kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-block-end: 14px;
  color: var(--mint-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before,
.section-label::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.lead {
  max-width: 660px;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.btn,
.button,
.nav-cta a,
.cta-row a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  padding: 12px 18px;
  color: var(--ink);
  background: var(--card);
  box-shadow: none;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease;
}

.btn:hover,
.button:hover,
.nav-cta a:hover,
.cta-row a:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(191, 232, 194, 0.9);
  outline-offset: 3px;
}

.btn-dark,
.button-primary,
.nav-cta .btn-dark {
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 12px 28px rgba(21, 24, 29, 0.24);
}

.btn-dark:hover,
.button-primary:hover,
.nav-cta .btn-dark:hover {
  background: #0f1115;
  box-shadow: 0 16px 34px rgba(21, 24, 29, 0.3);
}

.btn-mint,
.button-accent {
  color: #102317;
  background: var(--mint);
}

.btn-ghost,
.button-secondary,
.nav-cta .btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
}

.logo .mark {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--charcoal);
}

.logo .mark svg {
  width: 22px;
  height: 22px;
}

.logo .name {
  font-size: 22px;
  letter-spacing: 0;
}

header.nav,
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(225, 221, 212, 0);
  background: rgba(241, 239, 233, 0.88);
  backdrop-filter: blur(16px);
}

header.nav.scrolled,
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 26px);
}

.nav-links a,
.nav-links .lnk {
  position: relative;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a::after,
.nav-links .lnk::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--mint-strong);
  content: "";
  transition: transform 150ms ease;
}

.nav-links a:hover,
.nav-links .lnk:hover {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links .lnk:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 70;
  width: min(286px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-panel nav,
.mobile-menu-actions {
  display: grid;
  gap: 8px;
}

.mobile-menu-panel nav a {
  border-radius: var(--radius-control);
  padding: 11px 12px;
  color: var(--ink-2);
  font-weight: 800;
}

.mobile-menu-panel nav a:hover {
  background: var(--surface);
}

.mobile-menu-actions {
  margin-block-start: 10px;
  padding-block-start: 10px;
  border-top: 1px solid var(--line);
}

.mobile-menu-actions .button {
  width: 100%;
}

section {
  padding-block: clamp(62px, 8vw, 112px);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 76px));
  display: grid;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(21, 24, 29, 0.12), rgba(21, 24, 29, 0.76)),
    linear-gradient(
      90deg,
      rgba(21, 24, 29, 0.96),
      rgba(21, 24, 29, 0.42) 70%,
      rgba(21, 24, 29, 0.58)
    );
  content: "";
}

.hero-grid {
  width: min(1168px, calc(100vw - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-block: clamp(74px, 10vw, 128px) clamp(36px, 7vw, 86px);
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero .logo,
.hero .lead {
  color: #fff;
}

.hero .eyebrow,
.hero .kicker,
.hero .section-label {
  color: var(--mint);
}

.hero h1 {
  margin-block: 0 22px;
}

.hero h1 .hl,
.hero .accent {
  color: var(--mint);
}

.hero p.lead,
.hero .lead {
  max-width: 37rem;
  color: rgba(255, 255, 255, 0.86);
}

.cta-row,
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 30px;
}

.hero .btn-ghost,
.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.hero .meta,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin-block-start: 27px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.hero .meta b,
.trust-row b {
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.hero-proof,
.proof-card {
  width: min(100%, 360px);
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  padding: 20px;
  color: #fff;
  background: rgba(21, 24, 29, 0.72);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.proof-kicker {
  display: block;
  margin-block-end: 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-proof strong,
.proof-card strong {
  display: block;
  margin-block-end: 16px;
  color: #fff;
  font-size: 21px;
  line-height: 1.18;
}

.proof-slots,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.proof-slots span,
.stat-pill {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.proof-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.sec-head,
.section-header {
  max-width: 720px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.sec-head .eyebrow,
.section-header .eyebrow,
.sec-head .kicker,
.section-header .kicker {
  justify-content: center;
}

.sec-head h2,
.section-header h2 {
  margin-block: 0 16px;
}

.sec-head p,
.section-header p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--ink-2);
  font-size: 18px;
}

.features,
.band,
.content-band {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.feat-grid,
.feature-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feat,
.feature-card,
.card,
.step,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.feat,
.feature-card,
.card {
  padding: clamp(22px, 3vw, 30px);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease;
}

.feat:hover,
.feature-card:hover,
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(65, 117, 79, 0.35);
  box-shadow: var(--shadow-md);
}

.feat .ic,
.feature-card .icon,
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-block-end: 18px;
  border-radius: var(--radius-card);
  color: var(--mint-strong);
  background: color-mix(in srgb, var(--mint) 58%, white);
}

.feat .ic svg,
.feature-card .icon svg,
.card-icon svg {
  width: 25px;
  height: 25px;
}

.feat h3,
.feature-card h3,
.card h3 {
  margin-block-end: 9px;
}

.feat p,
.feature-card p,
.card p {
  margin: 0;
  font-size: 15px;
}

.feature-card a {
  display: inline-flex;
  align-items: center;
  margin-block-start: 18px;
  color: var(--mint-strong);
  font-size: 14px;
  font-weight: 800;
}

.feature-card a::after {
  margin-inline-start: 8px;
  content: ">";
}

.photo-story-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    var(--surface);
}

.photo-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
}

.photo-story-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(21, 24, 29, 0.08);
  border-radius: var(--radius-card);
  margin: 0;
  background: var(--charcoal);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.photo-story-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-story-card:nth-child(2) {
  grid-column: span 2;
}

.photo-story-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 58%;
  background: linear-gradient(180deg, rgba(21, 24, 29, 0), rgba(21, 24, 29, 0.76));
  content: "";
  pointer-events: none;
}

.photo-story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.photo-story-card:hover img {
  transform: scale(1.035);
}

.photo-story-team {
  background: url("assets/home-team-reservations.webp") 42% center / cover no-repeat;
}

.photo-story-room {
  background: url("assets/home-dining-room.webp") center / cover no-repeat;
}

.photo-story-floor {
  background: url("assets/home-floorplan-tablet.webp") 42% center / cover no-repeat;
}

.photo-story-mobile {
  background: url("assets/home-mobile-booking.webp") 54% center / cover no-repeat;
}

.photo-story-card > img {
  opacity: 0;
}

.photo-story-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  z-index: 2;
  color: #fff;
}

.photo-story-card figcaption strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.18;
}

.photo-story-card figcaption span {
  display: block;
  max-width: 34rem;
  margin-block-start: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.split,
.showcase,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.split.rev .txt,
.showcase.reverse .txt {
  order: 2;
}

.split h2,
.showcase h2,
.two-column h2 {
  margin-block: 0 18px;
}

.split p,
.showcase p,
.two-column p {
  font-size: 17px;
}

.checks,
.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checks li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink-2);
  font-weight: 700;
}

.checks .tick,
.check-list .tick,
.price-card li .tick {
  width: 22px;
  height: 22px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  margin-block-start: 1px;
  border-radius: 6px;
  color: #15351d;
  background: var(--mint);
}

.checks .tick svg,
.check-list .tick svg,
.price-card li .tick svg {
  width: 13px;
  height: 13px;
}

code,
.code-pill {
  display: inline-block;
  max-width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-control);
  padding: 11px 14px;
  color: #dff4e2;
  background: var(--charcoal);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.45;
  white-space: nowrap;
}

.media-card,
.photo-card,
.image-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--charcoal);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.media-card::after,
.photo-card::after,
.image-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    rgba(21, 24, 29, 0),
    rgba(21, 24, 29, 0.64)
  );
  content: "";
  pointer-events: none;
}

.media-card img,
.photo-card img,
.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-card-widget,
.widget-photo {
  background: url("assets/tablio-widget-phone.webp") 38% center / cover
    no-repeat;
}

.media-card-dashboard,
.dashboard-photo {
  background: url("assets/tablio-dashboard-tablet.webp") 64% center / cover
    no-repeat;
}

.media-card-booking {
  background: url("assets/online-reserveren.webp") 42% center / cover no-repeat;
}

.media-card-tables {
  background: url("assets/tafelbeheer.webp") center / cover no-repeat;
}

.media-card-planning {
  background: url("assets/planning-service.webp") 58% center / cover no-repeat;
}

.media-card-widget > img,
.media-card-dashboard > img,
.media-card-booking > img,
.media-card-tables > img,
.media-card-planning > img,
.widget-photo > img,
.dashboard-photo > img {
  opacity: 0;
}

.media-label,
.caption-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  width: min(330px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  padding: 14px 15px;
  color: #fff;
  background: rgba(21, 24, 29, 0.76);
  backdrop-filter: blur(14px);
}

.media-label strong,
.caption-card strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.media-label span,
.caption-card span {
  display: block;
  margin-block-start: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.widget {
  width: min(100%, 380px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--card);
  box-shadow: var(--shadow-lg);
}

.media-card .widget {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  width: min(310px, calc(100% - 40px));
}

.wg-head,
.wg-body,
.wg-cta,
.wg-foot {
  position: relative;
  z-index: 1;
}

.wg-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

.wg-head .tile {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius-card);
  background: var(--charcoal);
}

.wg-head .tile svg {
  width: 20px;
  height: 20px;
}

.wg-head strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.wg-head small {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
}

.wg-body {
  display: grid;
  gap: 10px;
  padding: 15px 16px;
}

.wg-row {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 12px;
  background: var(--surface);
}

.wg-row.active {
  border-color: var(--mint-strong);
  background: #f4fbf5;
}

.wg-row .ic {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: var(--mint-strong);
  background: var(--mint);
}

.wg-row .ic svg {
  width: 17px;
  height: 17px;
}

.wg-row .t {
  flex: 1;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.wg-row .chev {
  color: var(--muted);
}

.slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.slot {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  color: var(--ink);
  background: var(--card);
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.slot.on {
  border-color: var(--charcoal);
  color: #fff;
  background: var(--charcoal);
}

.wg-cta {
  padding: 0 16px 14px;
}

.wg-cta .btn {
  width: 100%;
}

.wg-foot {
  padding: 0 16px 14px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.wg-foot b {
  color: var(--mint-strong);
}

.steps,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  padding: clamp(22px, 3vw, 30px);
}

.step .n {
  counter-increment: step;
  margin-block-end: 10px;
  color: var(--mint-strong);
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.step .n::before {
  content: "0" counter(step);
}

.step h3 {
  margin-block-end: 9px;
}

.step p {
  margin: 0;
  font-size: 15px;
}

.price-card,
.pricing-card {
  width: min(100%, 478px);
  margin-inline: auto;
  padding: clamp(28px, 4vw, 42px);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.price-card .amt,
.price {
  color: var(--ink);
  font-size: clamp(44px, 6vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.price-card .amt span,
.price span {
  color: var(--text-soft);
  font-size: 18px;
  font-weight: 700;
}

.price-card .per,
.pricing-card .per {
  margin-block: 8px 24px;
  color: var(--text-soft);
}

.price-note {
  margin: -10px 0 22px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  text-align: left;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-weight: 700;
}

.price-card .btn,
.price-card .button {
  width: 100%;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-block-start: 22px;
}

.pricing-option {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.pricing-option h3 {
  margin-block-end: 12px;
}

.pricing-option .price {
  font-size: clamp(34px, 4vw, 44px);
}

.pricing-option .per {
  margin-block: 6px 14px;
  color: var(--text-soft);
  font-weight: 700;
}

.pricing-option .price-total {
  margin-block: -4px 14px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

.pricing-option p:last-child {
  margin: 0;
  font-size: 15px;
}

.price-badge {
  display: inline-flex;
  margin-block-end: 14px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #15351d;
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.faq-section {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  width: 24px;
  height: 24px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  content: "+";
  font-weight: 800;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-2);
}

.cta-band,
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  padding: clamp(38px, 6vw, 70px) clamp(22px, 5vw, 56px);
  color: #fff;
  background:
    linear-gradient(
      120deg,
      rgba(191, 232, 194, 0.18),
      rgba(191, 232, 194, 0) 42%
    ),
    var(--charcoal);
  text-align: center;
}

.cta-band h2,
.cta-panel h2 {
  margin-block-end: 14px;
  color: #fff;
}

.cta-band p,
.cta-panel p {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.cta-band .btn-ghost,
.cta-panel .btn-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

footer,
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding-block: clamp(54px, 8vw, 96px) 34px;
  color: var(--text-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    var(--surface);
}

.footer-wordmark {
  position: absolute;
  right: max(22px, calc((100vw - 1168px) / 2));
  bottom: 88px;
  z-index: -1;
  color: rgba(21, 24, 29, 0.035);
  font-size: clamp(92px, 18vw, 270px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.8;
  pointer-events: none;
}

.footer-cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  padding-block-end: clamp(34px, 6vw, 72px);
  border-bottom: 1px solid rgba(21, 24, 29, 0.12);
}

.footer-cta-row .eyebrow {
  margin-block-end: 10px;
}

.footer-cta-row h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(34px, 6vw, 76px);
}

.footer-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2.2fr);
  gap: clamp(34px, 6vw, 84px);
  padding-block: clamp(34px, 5vw, 66px);
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .logo {
  margin-block-end: 18px;
}

.footer-brand p {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-block-start: 28px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 800;
}

.footer-contact a:hover {
  color: var(--mint-strong);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1.45fr 0.9fr 0.85fr;
  gap: clamp(22px, 4vw, 52px);
}

.footer-column {
  border-top: 1px solid rgba(21, 24, 29, 0.16);
  padding-block-start: 24px;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.footer-column ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  min-height: 28px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-column a::after {
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  content: "";
  transition:
    transform var(--motion-fast, 160ms ease),
    opacity var(--motion-fast, 160ms ease);
}

.footer-column a:hover {
  color: var(--mint-strong);
}

.footer-column a:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px dashed rgba(21, 24, 29, 0.22);
  padding-block-start: 24px;
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-bottom nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--mint-strong);
}

.foot-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.foot-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.copy,
.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-copy,
.narrow-copy {
  max-width: 780px;
}

.legal-item {
  padding-block: 22px;
  border-top: 1px solid var(--line);
}

.legal-item h2 {
  margin-block-end: 10px;
  font-size: clamp(22px, 3vw, 32px);
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal:not(.in) {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-inline-start: auto;
  }

  .hero {
    min-height: auto;
    background-position: 58% center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    padding-block-start: 74px;
  }

  .hero-proof,
  .proof-card {
    width: min(100%, 420px);
    justify-self: start;
  }

  .feat-grid,
  .feature-grid,
  .card-grid,
  .steps,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

  .photo-story-card.large,
  .photo-story-card:nth-child(2) {
    grid-column: span 2;
  }

  .split,
  .showcase,
  .two-column {
    grid-template-columns: 1fr;
  }

  .split.rev .txt,
  .showcase.reverse .txt {
    order: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    max-width: 640px;
  }

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

@media (max-width: 680px) {
  .wrap,
  .container,
  .shell,
  .hero-grid {
    width: min(100% - 28px, 1168px);
  }

  .nav-inner {
    min-height: 68px;
  }

  .logo .name {
    font-size: 20px;
  }

  .nav-cta {
    gap: 7px;
  }

  .nav-cta .button-secondary {
    display: none;
  }

  .nav-cta .btn,
  .nav-cta a {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .mobile-menu-panel {
    position: fixed;
    top: 58px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .hero {
    background-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(21, 24, 29, 0.88),
        rgba(21, 24, 29, 0.64) 48%,
        rgba(21, 24, 29, 0.92)
      ),
      linear-gradient(90deg, rgba(21, 24, 29, 0.88), rgba(21, 24, 29, 0.5));
  }

  h1 {
    max-width: 10.5ch;
  }

  .cta-row,
  .hero .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .button,
  .cta-row a {
    width: 100%;
  }

  .hero .meta,
  .trust-row {
    gap: 10px 14px;
  }

  .proof-slots,
  .stats-grid,
  .feat-grid,
  .feature-grid,
  .card-grid,
  .pricing-options,
  .steps,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .photo-story-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .photo-story-card,
  .photo-story-card.large,
  .photo-story-card:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    min-height: 245px;
  }

  .photo-story-card figcaption {
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

  .photo-story-card figcaption strong {
    font-size: 15px;
  }

  .photo-story-card figcaption span {
    font-size: 12px;
  }

  .media-card,
  .photo-card,
  .image-panel {
    min-height: 360px;
  }

  .media-card .widget {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 190px auto 14px;
  }

  .media-card .widget + .media-label,
  .media-card .widget ~ .media-label {
    position: relative;
    inset: auto;
    width: calc(100% - 28px);
    margin: 0 auto 14px;
  }

  .footer-wordmark {
    display: none;
  }

  .footer-cta-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-cta-row h2 {
    max-width: 11ch;
  }

  .footer-cta-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-brand {
    max-width: none;
    border-top: 1px solid rgba(21, 24, 29, 0.16);
    padding-block-start: 22px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-block-start: 18px;
    font-size: 12px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
  }

  .footer-column:nth-child(2) {
    grid-column: 1 / -1;
  }

  .footer-column:nth-child(2) ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .footer-column {
    padding-block-start: 18px;
  }

  .footer-column h2 {
    margin-block-end: 12px;
    font-size: 16px;
  }

  .footer-column ul {
    gap: 8px;
  }

  .footer-column a {
    display: block;
    min-height: 0;
    color: var(--ink-2);
    font-size: 12px;
    line-height: 1.35;
  }

  .footer-column a::after {
    display: none;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
    border-top-style: solid;
  }

  .footer-bottom nav {
    gap: 14px;
  }
}

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

  .reveal,
  .reveal:not(.in) {
    opacity: 1;
    transform: none;
  }
}
