/* Fluffy Walks — one-page site styles */
:root {
  --ink: #111615;
  --ink-soft: #1b2421;
  --ink-muted: #69716c;
  --cream: #f5f1e8;
  --cream-deep: #e9e5da;
  --paper: #fffdf8;
  --lime: #d4f77a;
  --lime-bright: #e2ff93;
  --mint: #a8e6ce;
  --peach: #f3b79b;
  --coral: #ef896f;
  --white: #ffffff;
  --line: rgba(17, 22, 21, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 60px rgba(24, 34, 29, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --display: "Space Grotesk", "Arial Black", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  border: 0;
  cursor: pointer;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

/* Small shared UI */
.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  padding: 8px 20px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.announcement strong {
  font-weight: 500;
}

.announcement a {
  margin-left: 8px;
  border-bottom: 1px solid currentColor;
  font-weight: 500;
  transition: opacity 180ms ease;
}

.announcement a:hover {
  opacity: 0.58;
}

.announcement-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(239, 137, 111, 0.2);
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--ink);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: var(--lime);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-name {
  color: var(--white);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1;
}

.brand-name span {
  color: var(--lime);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  margin-left: auto;
  margin-right: clamp(0px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 19px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
  white-space: nowrap;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:active {
  transform: translateY(-1px);
}

.button-arrow {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  transition: transform 220ms var(--ease);
}

.button:hover .button-arrow {
  transform: translate(2px, -2px);
}

.button-small {
  min-height: 42px;
  padding: 0 15px 0 18px;
  gap: 11px;
  font-size: 11px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 10px 24px rgba(212, 247, 122, 0.16);
}

.button-dark .button-arrow {
  color: var(--ink);
  background: var(--lime);
}

.button-dark:hover .button-arrow {
  background: var(--ink);
  color: var(--lime);
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 10px 30px rgba(212, 247, 122, 0.1);
}

.button-lime:hover {
  background: var(--lime-bright);
  box-shadow: 0 14px 34px rgba(212, 247, 122, 0.18);
}

.button-lime .button-arrow {
  color: var(--white);
  background: var(--ink);
}

.button-outline {
  color: var(--ink);
  border-color: rgba(17, 22, 21, 0.28);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.button-outline .button-arrow {
  color: var(--ink);
  background: rgba(17, 22, 21, 0.1);
  transition: transform 220ms var(--ease), color 220ms ease, background 220ms ease;
}

.button-outline:hover .button-arrow {
  color: var(--white);
  background: var(--lime);
}

.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover {
  border-color: var(--lime);
  background: rgba(212, 247, 122, 0.1);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: var(--ink);
  opacity: 0;
  transition: max-height 350ms var(--ease), opacity 250ms ease, border-color 250ms ease;
}

.mobile-menu.is-open {
  max-height: 470px;
  padding: 12px 20px 24px;
  border-top-color: var(--line-light);
  opacity: 1;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.05em;
}

.mobile-menu nav a span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.mobile-menu > .button {
  width: 100%;
  margin-top: 20px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.62);
}

.eyebrow-dark {
  color: var(--ink-muted);
}

.eyebrow-number {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--coral);
  font-size: 9px;
}

.light-number {
  color: var(--lime);
}

.eyebrow-pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.eyebrow-pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--lime);
  border-radius: inherit;
  content: "";
  animation: pulse 2.2s ease-out infinite;
}

.section {
  position: relative;
  padding: 94px 0;
}

.section-cream {
  background: var(--cream);
}

.section-lime {
  background: var(--lime);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 10vw, 6.4rem);
  line-height: 0.91;
}

h2 em,
h1 em {
  color: var(--coral);
  font-style: normal;
}

h3 {
  line-height: 1;
}

.section-intro {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}

.section-intro h2 {
  margin-top: 25px;
}

.intro-side {
  max-width: 340px;
  align-self: end;
}

.intro-side p,
.plans-intro-side p {
  margin-bottom: 23px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: gap 220ms var(--ease), opacity 180ms ease;
}

.text-link:hover {
  gap: 18px;
  opacity: 0.67;
}

.text-link-light {
  color: var(--white);
}

.text-link-dark {
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 75% 20%, rgba(62, 106, 87, 0.3), transparent 34%), radial-gradient(circle at 16% 70%, rgba(117, 71, 61, 0.16), transparent 30%);
  content: "";
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  opacity: 0.7;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 30%;
  left: -140px;
  background: rgba(212, 247, 122, 0.08);
}

.hero-glow-two {
  right: -130px;
  bottom: 9%;
  width: 360px;
  height: 360px;
  background: rgba(239, 137, 111, 0.08);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 58px;
  padding-top: 64px;
}

.hero-copy {
  max-width: 680px;
}

.hero h1 {
  max-width: 700px;
  margin: 26px 0 26px;
  font-size: clamp(4.15rem, 16.5vw, 8.3rem);
  line-height: 0.86;
}

.hero h1 span {
  color: var(--lime);
}

.hero-lede {
  max-width: 430px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
}

.hero-actions .button {
  min-width: 190px;
}

.play-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  padding-left: 2px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 7px;
  vertical-align: -5px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 50px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  padding-left: 2px;
}

.avatar-stack img,
.avatar-more {
  width: 30px;
  height: 30px;
  margin-left: -7px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-more {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
}

.proof-copy {
  display: grid;
  gap: 2px;
}

.stars {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.13em;
  line-height: 1;
}

.proof-copy > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  width: min(100%, 540px);
  margin: 0 auto;
  padding: 0 9px 46px 0;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.83;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 48% 48% 26px 26px;
  background: #24342d;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 500ms var(--ease);
}

.visual-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.visual-frame-top {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(17, 22, 21, 0.35);
  backdrop-filter: blur(8px);
}

.live-indicator i,
.spots-left i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(212, 247, 122, 0.15);
}

.visual-location {
  opacity: 0.76;
}

.visual-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 800ms var(--ease);
}

.hero-visual:hover .visual-frame > img {
  transform: scale(1.035);
}

.visual-shade {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(10, 15, 13, 0.7));
}

.visual-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  gap: 5px;
}

.caption-kicker {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-caption strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.visual-caption strong span {
  color: var(--lime);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.rating-card {
  top: 16%;
  left: -4px;
  animation: float 5s ease-in-out infinite;
}

.rating-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 11px;
  color: var(--ink);
  background: var(--lime);
  font-size: 16px;
}

.floating-card strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.floating-card strong span {
  color: var(--ink-muted);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.floating-card small {
  display: block;
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 9px;
  line-height: 1.2;
}

.next-card {
  right: -4px;
  bottom: 18%;
  padding: 14px 16px 14px 13px;
  animation: float 5s 1.1s ease-in-out infinite;
}

.next-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 12px;
  color: var(--mint);
  background: var(--ink);
}

.next-icon svg {
  width: 20px;
  height: 20px;
}

.card-label {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spots-left {
  color: #5a8769 !important;
  font-weight: 700;
}

.spots-left i {
  margin-right: 5px;
  vertical-align: 1px;
}

.visual-sticker {
  position: absolute;
  right: 8px;
  bottom: -1px;
  z-index: 4;
  display: grid;
  width: 86px;
  height: 86px;
  place-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--peach);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.86;
  text-align: center;
  transform: rotate(9deg);
}

.visual-sticker span {
  color: #bb5c49;
  font-style: italic;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 68px;
  border-top: 1px solid var(--line-light);
}

.metric {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 93px;
  padding: 21px 12px 20px 0;
}

.metric:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.metric:nth-child(n + 3) {
  border-top: 1px solid var(--line-light);
}

.metric strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(25px, 5vw, 33px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.95;
  white-space: nowrap;
}

.metric > span:not(.metric-arrow) {
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.35;
}

.metric-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-transform: uppercase;
}

.metric-note em {
  color: var(--lime);
  font-style: normal;
}

.metric-arrow {
  color: var(--coral);
  font-size: 24px;
  line-height: 1;
}

/* Logo strip */
.logo-strip {
  color: var(--ink);
  background: var(--paper);
}

.logo-strip-inner {
  display: flex;
  min-height: 105px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-intro {
  flex: 0 0 auto;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.logo-list {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #a6aaa1;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.logo-list .logo-serif {
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}

.logo-list .logo-rounded {
  padding: 3px 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
}

/* Feature section */
.feature-grid {
  display: grid;
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.feature-card-large {
  padding: 22px 20px 20px;
}

.feature-card-dark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
}

.feature-card-peach {
  background: var(--peach);
}

.feature-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-index {
  color: rgba(17, 22, 21, 0.5);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.light-index {
  color: rgba(255, 255, 255, 0.48);
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.icon-mint {
  color: #3c6d59;
  background: var(--mint);
}

.icon-lime {
  color: var(--ink);
  background: var(--lime);
}

.icon-coral {
  color: #8d3e2e;
  background: rgba(255, 249, 233, 0.45);
}

.feature-image {
  position: relative;
  overflow: hidden;
  height: 212px;
  margin: 20px -4px 21px;
  border-radius: 17px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.75);
  transition: transform 700ms var(--ease);
}

.feature-card:hover .feature-image img {
  transform: scale(1.06);
}

.image-label {
  position: absolute;
  right: 11px;
  bottom: 11px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.image-label span {
  margin-left: 3px;
}

.feature-copy {
  position: relative;
  z-index: 1;
}

.feature-copy h3 {
  max-width: 290px;
  margin-bottom: 12px;
  font-size: 28px;
}

.feature-copy p {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.7;
}

.circle-link {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 17px;
  transition: color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}

.circle-link:hover {
  color: var(--lime);
  background: var(--ink);
  transform: rotate(10deg);
}

.feature-card-dark {
  padding: 22px 20px 24px;
}

.feature-copy-dark {
  max-width: 320px;
  margin-top: 70px;
}

.feature-copy-dark h3 {
  color: var(--white);
}

.feature-copy-dark p {
  color: rgba(255, 255, 255, 0.57);
}

.verified-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 9px;
}

.verified-avatars {
  display: flex;
}

.verified-avatars i {
  display: grid;
  width: 25px;
  height: 25px;
  margin-left: -6px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-family: var(--display);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.verified-avatars i:first-child {
  margin-left: 0;
  background: var(--peach);
}

.verified-avatars i:nth-child(3) {
  background: var(--lime);
}

.dark-card-decoration {
  position: absolute;
  right: -43px;
  bottom: -50px;
  display: flex;
  gap: 7px;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 247, 122, 0.22);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.dark-card-decoration::before,
.dark-card-decoration::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 247, 122, 0.13);
  border-radius: 50%;
  content: "";
}

.dark-card-decoration::after {
  width: 132%;
  height: 62%;
}

.dark-card-decoration span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.dark-card-decoration span:first-child {
  top: 22px;
  left: 19px;
}

.dark-card-decoration span:nth-child(2) {
  top: 50%;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--coral);
}

.dark-card-decoration span:last-child {
  bottom: 13px;
  left: 43px;
  width: 3px;
  height: 3px;
  background: var(--mint);
}

.feature-card-peach {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px 24px;
}

.feature-card-peach .feature-copy {
  margin-top: 70px;
}

.feature-card-peach .feature-copy p {
  color: rgba(17, 22, 21, 0.64);
}

.mini-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(17, 22, 21, 0.18);
}

.mini-note-avatar,
.author-initial {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
}

.mini-note > div {
  display: grid;
  gap: 1px;
}

.mini-note strong {
  font-size: 10px;
  font-weight: 800;
}

.mini-note small {
  color: rgba(17, 22, 21, 0.58);
  font-size: 9px;
}

.mini-note-check {
  display: grid;
  width: 18px;
  height: 18px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

/* Pricing */
.plans-section {
  overflow: hidden;
}

.plans-section::before,
.plans-section::after {
  position: absolute;
  border: 1px solid rgba(17, 22, 21, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.plans-section::before {
  top: -180px;
  right: -150px;
  width: 440px;
  height: 440px;
}

.plans-section::after {
  top: -112px;
  right: -82px;
  width: 300px;
  height: 300px;
}

.plans-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.plans-intro-side {
  max-width: 370px;
  align-self: end;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(17, 22, 21, 0.2);
  border-radius: 999px;
}

.billing-option {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(17, 22, 21, 0.62);
  background: transparent;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.01em;
  transition: color 180ms ease, background 180ms ease;
}

.billing-option.is-active {
  color: var(--white);
  background: var(--ink);
}

.billing-option span {
  margin-left: 3px;
  color: #6e8d39;
  font-size: 8px;
}

.billing-option.is-active span {
  color: var(--lime);
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 25px 21px 22px;
  border: 1px solid rgba(17, 22, 21, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.48);
  transition: transform 250ms var(--ease), box-shadow 250ms ease, background 250ms ease;
}

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

.price-card-featured {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 15px 0 rgba(17, 22, 21, 0.09);
}

.price-card-featured:hover {
  background: var(--ink);
}

.popular-ribbon {
  position: absolute;
  top: 0;
  right: 19px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px 8px;
  border-radius: 0 0 9px 9px;
  color: var(--ink);
  background: var(--peach);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.popular-ribbon span {
  color: #b85c48;
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 25px;
  margin-bottom: 30px;
  padding-right: 36px;
}

.price-kicker,
.price-duration {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-duration {
  color: var(--ink);
  white-space: nowrap;
}

.price-card-featured .price-kicker,
.price-card-featured .price-duration {
  color: rgba(255, 255, 255, 0.55);
}

.price-card h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

.price-description {
  min-height: 48px;
  max-width: 270px;
  margin-bottom: 22px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.65;
}

.price-card-featured .price-description {
  color: rgba(255, 255, 255, 0.57);
}

.price-line {
  display: flex;
  align-items: baseline;
  margin-bottom: 22px;
}

.currency {
  margin-right: 2px;
  color: var(--ink-muted);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.price-value {
  font-family: var(--display);
  font-size: 55px;
  font-weight: 600;
  letter-spacing: -0.1em;
  line-height: 0.9;
  transition: transform 260ms var(--ease), color 180ms ease;
}

.price-value-pop {
  color: #6d913e;
  transform: translateY(-3px) scale(1.04);
}

.price-unit {
  margin-left: 7px;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 9px;
}

.price-card-featured .currency,
.price-card-featured .price-unit {
  color: rgba(255, 255, 255, 0.53);
}

.price-card > .button {
  width: 100%;
  min-height: 47px;
  margin-bottom: 23px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card-featured .check-list {
  border-color: var(--line-light);
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 10px;
}

.price-card-featured .check-list li {
  color: rgba(255, 255, 255, 0.64);
}

.check-list li span {
  color: #75a84d;
  font-size: 13px;
  font-weight: 800;
}

.price-card-featured .check-list li span {
  color: var(--lime);
}

.featured-scribble {
  position: absolute;
  right: 16px;
  bottom: 15px;
  color: var(--coral);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 0.8;
  text-align: center;
  transform: rotate(-8deg);
}

.plans-footnote {
  margin: 25px 0 0;
  color: rgba(17, 22, 21, 0.58);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.03em;
  text-align: center;
}

.plans-footnote span {
  margin-right: 5px;
  color: var(--coral);
}

/* Testimonials */
.stories-section {
  background: var(--paper);
}

.stories-heading {
  position: relative;
  margin-bottom: 45px;
}

.stories-heading h2 {
  margin-top: 25px;
}

.desktop-story-link {
  position: absolute;
  right: 0;
  bottom: 4px;
}

.story-layout {
  display: grid;
  gap: 15px;
}

.featured-story {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  padding: 27px 22px 0;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--ink);
}

.story-quote-mark {
  position: absolute;
  top: 11px;
  right: 23px;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 88px;
  line-height: 1;
}

.featured-story blockquote {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 0 35px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

.story-author {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
}

.story-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.story-author div,
.small-author div {
  display: grid;
  gap: 1px;
}

.story-author strong,
.small-author strong {
  font-size: 10px;
  font-weight: 800;
}

.story-author span:not(.story-location),
.small-author span:not(.author-initial) {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.story-location {
  margin-left: auto;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
}

.story-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 205px;
  overflow: hidden;
}

.story-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--ink), transparent 45%);
  content: "";
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
  opacity: 0.84;
  filter: saturate(0.68);
}

.story-photo > span {
  position: absolute;
  right: 18px;
  bottom: 17px;
  z-index: 1;
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-photo > span span {
  color: var(--lime);
}

.small-stories {
  display: grid;
  gap: 15px;
}

.small-story {
  display: flex;
  min-height: 247px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px 20px;
  border-radius: var(--radius-md);
  background: var(--mint);
}

.small-story-coral {
  background: var(--peach);
}

.small-story-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(17, 22, 21, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.small-story-top .stars {
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.small-story p {
  max-width: 310px;
  margin: 27px 0 25px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.small-author {
  display: flex;
  align-items: center;
  gap: 9px;
}

.small-author .author-initial {
  color: var(--ink);
  background: var(--paper);
}

.initial-m {
  background: var(--lime);
}

.initial-c {
  background: var(--mint);
}

.small-story-coral .small-author span:not(.author-initial) {
  color: rgba(17, 22, 21, 0.56);
}

.mobile-story-link {
  display: none;
  margin-top: 30px;
}

/* Booking */
.booking-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.booking-section::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  content: "";
  opacity: 0.45;
}

.booking-glow {
  position: absolute;
  top: 20%;
  left: -170px;
  z-index: -1;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(168, 230, 206, 0.09);
  filter: blur(10px);
}

.booking-grid {
  display: grid;
  gap: 50px;
}

.booking-copy {
  position: relative;
}

.booking-copy h2 {
  margin: 25px 0 24px;
}

.booking-copy > p {
  max-width: 365px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 14px;
  line-height: 1.75;
}

.booking-perks {
  display: grid;
  gap: 17px;
  max-width: 360px;
  margin-top: 35px;
}

.booking-perks > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.perk-icon {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(212, 247, 122, 0.45);
  border-radius: 50%;
  color: var(--lime);
  font-size: 12px;
}

.booking-perks > div > span:last-child {
  display: grid;
  gap: 2px;
}

.booking-perks strong {
  font-size: 11px;
  font-weight: 700;
}

.booking-perks small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.booking-aside-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 55px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.4;
  text-transform: uppercase;
}

.note-line {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--coral);
}

.booking-form-wrap {
  position: relative;
  min-height: 500px;
  padding: 25px 20px 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--paper);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-step i {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--coral);
}

.form-heading h3 {
  margin: 11px 0 0;
  font-size: 27px;
}

.form-required {
  padding-top: 3px;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 8px;
  white-space: nowrap;
}

#booking-form {
  display: grid;
  gap: 17px;
}

.form-row {
  display: grid;
  gap: 17px;
}

.field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.field > span:first-child {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field b {
  color: var(--coral);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 47px;
  padding: 12px 13px;
  border: 1px solid rgba(17, 22, 21, 0.17);
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 76px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a0a49c;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 247, 122, 0.34);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(239, 137, 111, 0.12);
}

.select-wrap {
  position: relative;
  display: block;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  content: "";
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.field select {
  appearance: none;
  padding-right: 35px;
}

.field select:invalid {
  color: #a0a49c;
}

.field-error {
  min-height: 0;
  color: #c65540;
  font-size: 9px;
  line-height: 1.2;
}

.form-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 3px;
}

.consent {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.fake-checkbox {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(17, 22, 21, 0.3);
  border-radius: 4px;
  color: transparent;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.consent input:checked + .fake-checkbox {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--lime);
}

.consent input:focus-visible + .fake-checkbox {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: #c65540;
  font-size: 10px;
}

.form-status:empty {
  display: none;
}

.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 23px;
  background: var(--paper);
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  display: grid;
  width: 53px;
  height: 53px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 26px;
  font-weight: 800;
}

.form-success h3 {
  margin: 17px 0 12px;
  font-size: 39px;
}

.form-success p {
  max-width: 300px;
  margin-bottom: 27px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.7;
}

.form-success p strong {
  color: var(--ink);
}

/* FAQ */
.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  gap: 46px;
}

.faq-intro {
  position: relative;
}

.faq-intro h2 {
  margin: 25px 0 23px;
}

.faq-intro p {
  max-width: 305px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.7;
}

.faq-intro p a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 3px;
}

.faq-sticker {
  position: absolute;
  right: 12px;
  bottom: -7px;
  display: grid;
  width: 77px;
  height: 77px;
  place-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-align: center;
  transform: rotate(11deg);
}

.faq-sticker span {
  color: #688b3d;
  font-style: italic;
}

.faq-sticker::first-line {
  color: var(--coral);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.15;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(17, 22, 21, 0.23);
  border-radius: 50%;
  color: var(--coral);
  font-family: var(--body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 250ms var(--ease);
}

.faq-list details[open] summary span {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 580px;
  margin: -3px 42px 24px 0;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.75;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: var(--ink);
}

.footer-top {
  display: grid;
  gap: 50px;
  padding-top: 64px;
  padding-bottom: 57px;
}

.brand-footer .brand-name {
  font-size: 22px;
}

.footer-brand-block p {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 24px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-label {
  margin-bottom: 8px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--lime);
}

.footer-social a span {
  margin-left: 4px;
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-bottom i {
  color: var(--coral);
  font-size: 11px;
  font-style: normal;
}

.footer-bottom > div {
  display: flex;
  gap: 16px;
}

.footer-bottom a {
  transition: color 180ms ease;
}

/* Reveal motion */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay {
  transition-delay: 120ms;
}

.js .reveal-delay-2 {
  transition-delay: 220ms;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.65;
    transform: scale(0.75);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Tablet */
@media (min-width: 620px) {
  .container {
    width: min(1160px, calc(100% - 64px));
  }

  .hero-inner {
    padding-top: 86px;
  }

  .hero-visual {
    width: min(100%, 590px);
  }

  .hero-metrics {
    grid-template-columns: repeat(4, 1fr);
  }

  .metric {
    min-height: 103px;
    padding: 23px 15px 20px 0;
  }

  .metric:nth-child(odd) {
    border-right: 1px solid var(--line-light);
  }

  .metric:nth-child(n + 3) {
    border-top: 0;
  }

  .metric:not(:last-child) {
    padding-left: 15px;
  }

  .metric:first-child {
    padding-left: 0;
  }

  .metric-note {
    justify-content: flex-start;
  }

  .logo-strip-inner {
    min-height: 120px;
  }

  .logo-list {
    max-width: 660px;
  }

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

  .feature-card-large {
    grid-row: span 2;
  }

  .feature-card-large .feature-image {
    height: 310px;
  }

  .feature-card-dark,
  .feature-card-peach {
    min-height: 300px;
  }

  .feature-copy-dark,
  .feature-card-peach .feature-copy {
    margin-top: 40px;
  }

  .price-card {
    min-height: 485px;
  }

  .story-layout {
    grid-template-columns: 1.18fr 0.82fr;
    align-items: stretch;
  }

  .featured-story {
    min-height: 560px;
  }

  .small-stories {
    grid-template-rows: repeat(2, 1fr);
  }

  .small-story {
    min-height: 0;
  }

  .booking-form-wrap {
    padding: 29px 27px 25px;
  }

  .form-row-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .form-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-submit {
    width: auto;
    min-width: 167px;
  }

  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }

  .footer-top {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 900px) {
  .announcement {
    min-height: 36px;
    font-size: 10px;
  }

  .header-inner {
    min-height: 88px;
  }

  .desktop-nav {
    display: flex;
  }

  .header-cta,
  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
    align-items: center;
    gap: clamp(45px, 6vw, 95px);
    min-height: 620px;
    padding-top: 77px;
    padding-bottom: 42px;
  }

  .hero h1 {
    margin-top: 30px;
    font-size: clamp(5.25rem, 8.2vw, 8.1rem);
  }

  .hero-lede {
    max-width: 390px;
  }

  .hero-visual {
    width: 100%;
    max-width: 490px;
    justify-self: end;
  }

  .visual-frame {
    aspect-ratio: 0.84;
  }

  .hero-metrics {
    margin-top: 0;
  }

  .logo-strip-inner {
    min-height: 132px;
  }

  .logo-list {
    max-width: none;
  }

  .section {
    padding: 128px 0;
  }

  .split-intro {
    grid-template-columns: 1fr 0.74fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 64px;
  }

  .section-intro h2 {
    margin-top: 29px;
  }

  .intro-side {
    padding-bottom: 5px;
  }

  .feature-grid {
    grid-template-columns: 1.16fr 0.84fr 0.84fr;
    gap: 17px;
  }

  .feature-card-large {
    grid-row: auto;
    padding: 27px 25px 23px;
  }

  .feature-card-large .feature-image {
    height: 246px;
  }

  .feature-card-dark,
  .feature-card-peach {
    min-height: 530px;
    padding: 27px 24px 25px;
  }

  .feature-copy-dark,
  .feature-card-peach .feature-copy {
    margin-top: auto;
  }

  .feature-card-dark .feature-copy,
  .feature-card-peach .feature-copy {
    margin-top: 150px;
  }

  .plans-intro {
    grid-template-columns: 1fr 0.74fr;
    align-items: end;
    margin-bottom: 62px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
  }

  .price-card {
    min-height: 492px;
    padding: 28px 25px 24px;
  }

  .price-card-featured {
    transform: translateY(-15px);
  }

  .price-card-featured:hover {
    transform: translateY(-21px);
  }

  .stories-heading {
    display: flex;
    min-height: 180px;
    flex-direction: column;
    margin-bottom: 46px;
  }

  .desktop-story-link {
    right: 0;
    bottom: 6px;
  }

  .story-layout {
    grid-template-columns: 1.26fr 0.74fr;
    gap: 17px;
  }

  .featured-story {
    min-height: 584px;
    padding: 37px 36px 0;
  }

  .story-quote-mark {
    top: 24px;
    right: 39px;
    font-size: 115px;
  }

  .featured-story blockquote {
    margin-bottom: 38px;
    font-size: clamp(2rem, 3.1vw, 3.05rem);
  }

  .story-photo {
    height: 235px;
  }

  .small-story {
    padding: 25px 24px 23px;
  }

  .small-story p {
    margin: 32px 0 30px;
    font-size: 21px;
  }

  .mobile-story-link {
    display: none;
  }

  .booking-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: clamp(55px, 8vw, 115px);
  }

  .booking-copy h2 {
    font-size: clamp(4rem, 6vw, 6.25rem);
  }

  .booking-form-wrap {
    min-height: 548px;
    padding: 36px 35px 30px;
  }

  .faq-grid {
    grid-template-columns: 0.76fr 1.24fr;
    gap: clamp(60px, 10vw, 145px);
  }

  .faq-intro p {
    margin-bottom: 0;
  }

  .faq-sticker {
    right: 23px;
    bottom: 20px;
    width: 95px;
    height: 95px;
    font-size: 15px;
  }

  .footer-top {
    min-height: 285px;
    grid-template-columns: 1fr 1.3fr;
    align-items: start;
    gap: 50px;
    padding-top: 82px;
    padding-bottom: 70px;
  }

  .footer-bottom {
    min-height: 76px;
  }
}

@media (min-width: 1180px) {
  .hero-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
  }

  .hero-visual {
    max-width: 520px;
  }

  .feature-card-large .feature-image {
    height: 278px;
  }

  .feature-card-dark,
  .feature-card-peach {
    min-height: 562px;
  }
}
