/* ==========================================================================
   Nobe Resort design system
   Palette: Palm & Clay. Type: Cormorant Garamond / Plus Jakarta Sans.
   ========================================================================== */

:root {
  --palm-900: #122219;
  --palm-800: #1a3324;
  --palm: #23422f;
  --palm-600: #34583f;
  --palm-300: #9fb5a2;
  --palm-100: #dce6dd;
  --palm-50: #eef3ee;

  --clay-700: #8e4122;
  --clay-600: #a9502c;
  --clay: #c8643b;
  --clay-100: #f5d9c9;
  --clay-50: #fbede5;

  --sun: #e9b949;
  --sun-100: #fbf0cf;

  --shell: #faf5ec;
  --sand: #f1e8d8;
  --line: #e4dacb;
  --white: #ffffff;

  --charcoal: #20211f;
  --text: #3a3c37;
  --muted: #5c5f58;

  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --section: clamp(4rem, 9vw, 7rem);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --arch: 999px 999px var(--radius-lg) var(--radius-lg);
  --shadow-sm: 0 1px 2px rgba(18, 34, 25, 0.06), 0 2px 8px rgba(18, 34, 25, 0.05);
  --shadow: 0 10px 30px -12px rgba(18, 34, 25, 0.22);
  --shadow-lg: 0 30px 60px -24px rgba(18, 34, 25, 0.35);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --accent: var(--clay-600);
  --accent-soft: var(--clay-50);
  --hero-bg: var(--shell);
}

.page--shop { --accent: var(--clay-600); --accent-soft: var(--clay-50); --hero-bg: #f8ebdf; }
.page--save { --accent: #8a6516; --accent-soft: var(--sun-100); --hero-bg: #f8f0dc; }
.page--store { --accent: var(--palm-600); --accent-soft: var(--palm-50); --hero-bg: #edf1e9; }
.page--account { --accent: var(--palm); --accent-soft: var(--sand); --hero-bg: var(--sand); }
.page--business { --accent: var(--palm-600); --accent-soft: var(--palm-50); --hero-bg: #e9efe8; }
.page--about { --accent: var(--clay-600); --accent-soft: var(--clay-50); --hero-bg: var(--shell); }
.page--legal { --accent: var(--palm); --accent-soft: var(--sand); --hero-bg: var(--shell); }

/* Base ------------------------------------------------------------------ */

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

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

body {
  margin: 0;
  background: var(--shell);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--clay-700);
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.7rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.75rem); line-height: 1.18; }
h4 { font-size: 1.25rem; }

h1 em,
h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

p {
  margin: 0 0 1.1em;
}

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--palm);
  color: var(--white);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.lede {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.center {
  text-align: center;
}

.center .lede,
.section-head.center {
  margin-inline: auto;
}

/* Buttons --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.8rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn i {
  font-size: 0.85em;
  transition: transform 0.2s var(--ease);
}

.btn:hover i.fa-arrow-right {
  transform: translateX(3px);
}

.btn--sm {
  min-height: 2.5rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

.btn--clay {
  background: var(--clay-600);
  color: var(--white);
  box-shadow: 0 8px 20px -10px rgba(169, 80, 44, 0.8);
}

.btn--clay:hover {
  background: var(--clay-700);
  color: var(--white);
}

.btn--palm {
  background: var(--palm);
  color: var(--white);
}

.btn--palm:hover {
  background: var(--palm-800);
  color: var(--white);
}

.btn--sun {
  background: var(--sun);
  color: var(--palm-900);
}

.btn--sun:hover {
  background: #f1c75f;
  color: var(--palm-900);
}

.btn--ghost {
  border-color: rgba(35, 66, 47, 0.28);
  background: transparent;
  color: var(--palm);
}

.btn--ghost:hover {
  border-color: var(--palm);
  background: var(--palm);
  color: var(--white);
}

.btn--ghost-light {
  border-color: rgba(250, 245, 236, 0.45);
  background: transparent;
  color: var(--shell);
}

.btn--ghost-light:hover {
  border-color: var(--shell);
  background: var(--shell);
  color: var(--palm);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.center .btn-row {
  justify-content: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  gap: 0.7rem;
}

/* Topbar and header ----------------------------------------------------- */

.topbar {
  background: var(--palm-900);
  color: var(--palm-100);
  font-size: 0.8rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.4rem;
}

.topbar p {
  margin: 0;
}

.topbar i {
  margin-right: 0.35rem;
  color: var(--sun);
}

.topbar a {
  color: var(--shell);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px -16px rgba(18, 34, 25, 0.5);
}

.site-header__bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--palm);
  text-decoration: none;
}

.brand:hover {
  color: var(--palm);
}

.brand__mark {
  width: 40px;
  height: 40px;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.brand__name em {
  color: var(--clay-600);
  font-weight: 600;
}

.brand--light,
.brand--light:hover {
  color: var(--shell);
}

.brand--light .brand__name em {
  color: var(--sun);
}

.site-nav {
  flex: 1;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item--mega {
  position: static;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.site-nav__link:hover,
.site-nav__link[aria-expanded="true"] {
  background: var(--sand);
  color: var(--palm);
}

.site-nav__link[aria-current="page"] {
  color: var(--clay-600);
}

.site-nav__toggle i {
  font-size: 0.7rem;
  transition: transform 0.2s var(--ease);
}

.site-nav__toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.site-nav__mobile-actions {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__account {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-header__account:hover {
  color: var(--clay-600);
}

.site-header__burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--palm);
  font-size: 1.1rem;
  cursor: pointer;
}

/* Mega menu ------------------------------------------------------------- */

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid var(--line);
  background: var(--shell);
  box-shadow: var(--shadow-lg);
  animation: mega-in 0.22s var(--ease);
}

.mega[hidden] {
  display: none;
}

@keyframes mega-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

.mega__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-block: 2rem 1.5rem;
}

.mega__heading {
  margin: 0 0 0.75rem;
  padding-left: 0.75rem;
  color: var(--clay-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega__link {
  display: flex;
  gap: 0.8rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  text-decoration: none;
  transition: background-color 0.18s var(--ease);
}

.mega__link:hover {
  background: var(--white);
  color: var(--charcoal);
}

.mega__icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--palm-50);
  color: var(--palm);
  font-size: 0.9rem;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.mega__link:hover .mega__icon {
  background: var(--palm);
  color: var(--sun);
}

.mega__title {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

.mega__desc {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.mega__badge {
  display: inline-block;
  margin-left: 0.3rem;
  padding: 0.05rem 0.45rem;
  border-radius: 999px;
  background: var(--sun);
  color: var(--palm-900);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 2px;
}

.mega__foot {
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.mega__foot-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 3.2rem;
  font-size: 0.85rem;
}

.mega__foot-inner i {
  margin-right: 0.35rem;
  color: var(--clay-600);
}

.mega__foot-inner a {
  margin-left: auto;
  font-weight: 600;
  text-decoration: none;
}

.mega__foot-inner a i {
  margin: 0 0 0 0.35rem;
  color: inherit;
}

/* Breadcrumb ------------------------------------------------------------ */

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.85rem;
  list-style: none;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: var(--palm-300);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--clay-600);
}

.breadcrumb [aria-current] {
  color: var(--charcoal);
  font-weight: 600;
}

/* Home hero ------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 8vw, 6.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  top: -18rem;
  right: -14rem;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 185, 73, 0.32), rgba(233, 185, 73, 0) 68%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero h1 {
  max-width: 13ch;
}

.hero .lede {
  margin-bottom: 1.6rem;
}

.checklist {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
}

.checklist li::before {
  content: "\f00c";
  position: absolute;
  top: 0.18rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--palm);
  color: var(--sun);
  font-family: "Font Awesome 6 Free";
  font-size: 0.62rem;
  font-weight: 900;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin: 1.6rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  list-style: none;
}

.trust-chips i {
  margin-right: 0.4rem;
  color: var(--clay-600);
}

.hero__media {
  position: relative;
  justify-self: end;
  width: min(100%, 30rem);
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1.5px solid var(--clay);
  border-radius: var(--arch);
}

.hero__arch {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--arch);
  background: var(--sand);
  box-shadow: var(--shadow-lg);
}

.hero__arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  line-height: 1.35;
}

.float-card strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.float-card__icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--sun-100);
  color: var(--clay-600);
}

.float-card--a {
  bottom: 12%;
  left: -2.5rem;
}

.float-card--b {
  top: 14%;
  right: -1.5rem;
}

/* Category strip -------------------------------------------------------- */

.cat-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.cat-strip__list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.cat-strip__list li + li {
  border-left: 1px solid var(--line);
}

.cat-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.4rem 0.5rem;
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s var(--ease);
}

.cat-strip__item i {
  color: var(--palm);
  font-size: 1.35rem;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.cat-strip__item:hover {
  background: var(--shell);
  color: var(--clay-600);
}

.cat-strip__item:hover i {
  color: var(--clay-600);
  transform: translateY(-2px);
}

/* Sections -------------------------------------------------------------- */

.section {
  padding-block: var(--section);
}

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

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

.section--palm {
  position: relative;
  overflow: hidden;
  background: var(--palm);
  color: var(--palm-100);
}

.section--palm h2,
.section--palm h3 {
  color: var(--shell);
}

.section--palm h2 em {
  color: var(--sun);
}

.section--palm .eyebrow {
  color: var(--sun);
}

.section--palm .lede {
  color: var(--palm-100);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.section-head p:last-child {
  margin-bottom: 0;
}

/* Stats band ------------------------------------------------------------ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stat {
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(220, 230, 221, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.stat__value {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sun);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
}

.stat__label {
  color: var(--shell);
  font-weight: 600;
}

.stat__note {
  display: block;
  margin-top: 0.35rem;
  color: var(--palm-300);
  font-size: 0.85rem;
}

.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: 3rem;
}

.intro-split h2 {
  margin: 0;
}

.intro-split p {
  margin: 0;
}

/* Cards ----------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

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

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card h3 {
  margin-bottom: 0.5rem;
}

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

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

.card .text-link {
  margin-top: auto;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
}

.card__num {
  margin-bottom: 1rem;
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.card--sand {
  border-color: transparent;
  background: var(--sand);
}

.card--palm {
  border-color: transparent;
  background: var(--palm);
  color: var(--palm-100);
}

.card--palm h3 { color: var(--shell); }
.card--palm p { color: var(--palm-100); }
.card--palm .card__icon { background: rgba(233, 185, 73, 0.16); color: var(--sun); }

/* Split feature --------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.split + .split {
  margin-top: var(--section);
}

.split--flip .split__media {
  order: -1;
}

.split__media {
  position: relative;
}

.split__media::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -1.25rem;
  bottom: -1.25rem;
  width: 45%;
  height: 55%;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
}

.split--flip .split__media::after {
  right: auto;
  left: -1.25rem;
}

.split__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.split__frame--arch {
  aspect-ratio: 5 / 6;
  border-radius: var(--arch);
}

.split__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__body > p:not(.eyebrow) {
  color: var(--muted);
}

.split__body .checklist {
  margin-top: 1.4rem;
}

/* Paths ----------------------------------------------------------------- */

.paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.path {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  text-decoration: none;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.path i {
  margin-bottom: 0.6rem;
  color: var(--clay-600);
  font-size: 1.25rem;
}

.path strong {
  font-size: 1rem;
}

.path span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.path:hover {
  background: var(--palm);
  color: var(--shell);
  transform: translateY(-3px);
}

.path:hover i { color: var(--sun); }
.path:hover span { color: var(--palm-100); }

/* Testimonials ---------------------------------------------------------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.quote {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.quote__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.1rem;
  color: var(--sun);
  font-size: 0.9rem;
}

.quote blockquote {
  margin: 0 0 1.5rem;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.35;
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  font-size: 0.88rem;
}

.quote figcaption strong {
  display: block;
  color: var(--charcoal);
}

.quote figcaption span {
  color: var(--muted);
}

.avatar {
  display: grid;
  flex: none;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--palm-50);
  color: var(--palm);
  font-weight: 700;
}

.quote:nth-child(3n + 2) .avatar { background: var(--clay-50); color: var(--clay-600); }
.quote:nth-child(3n) .avatar { background: var(--sun-100); color: #7a5810; }

/* Chips ----------------------------------------------------------------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
}

.chip i {
  color: var(--accent);
}

a.chip:hover {
  border-color: var(--palm);
  background: var(--palm);
  color: var(--shell);
}

a.chip:hover i {
  color: var(--sun);
}

/* CTA band -------------------------------------------------------------- */

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  background: var(--palm);
  color: var(--palm-100);
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  bottom: -17rem;
  left: 50%;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 185, 73, 0.22), rgba(233, 185, 73, 0) 66%);
  transform: translateX(-50%);
}

.cta-band > * {
  position: relative;
}

.cta-band .eyebrow {
  color: var(--sun);
}

.cta-band h2 {
  max-width: 20ch;
  margin-inline: auto;
  color: var(--shell);
}

.cta-band h2 em {
  color: var(--sun);
}

.cta-band p {
  max-width: 36rem;
  margin-inline: auto;
}

.cta-band .btn-row {
  justify-content: center;
}

/* Page hero ------------------------------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2rem, 4vw, 3rem) clamp(3.5rem, 7vw, 5.5rem);
  background: var(--hero-bg);
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -12rem;
  left: -10rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-hero__media {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--simple .page-hero__grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 48rem;
}

/* Comparison ------------------------------------------------------------ */

.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.compare__col {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
}

.compare__col--good {
  background: var(--palm);
  color: var(--palm-100);
}

.compare__col--good h3 {
  color: var(--shell);
}

.compare__col ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare__col li {
  display: flex;
  gap: 0.75rem;
}

.compare__col li i {
  flex: none;
  margin-top: 0.3rem;
  color: var(--clay);
}

.compare__col--good li i {
  color: var(--sun);
}

/* Steps ----------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 2rem;
  border-top: 2px solid var(--accent);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.steps h3 {
  margin-bottom: 0.4rem;
}

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

/* FAQ ------------------------------------------------------------------- */

.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 50rem;
  margin-inline: auto;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq__item[open] {
  border-color: transparent;
  box-shadow: var(--shadow);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  color: var(--charcoal);
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "\2b";
  display: grid;
  flex: none;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Font Awesome 6 Free";
  font-size: 0.8rem;
  font-weight: 900;
  transition: transform 0.2s var(--ease);
}

.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 1.5rem 1.4rem;
  color: var(--muted);
}

.faq__a p:last-child {
  margin: 0;
}

/* Prose (legal) --------------------------------------------------------- */

.prose {
  max-width: 46rem;
  margin-inline: auto;
}

.prose h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
}

.prose p,
.prose li {
  color: var(--text);
}

.prose .updated {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Specimen -------------------------------------------------------------- */

.swatches {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 3rem;
  padding: 0;
  list-style: none;
}

.swatch {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.swatch__color {
  height: 7rem;
}

.swatch__meta {
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
}

.swatch__meta strong {
  display: block;
  color: var(--charcoal);
}

.type-sample {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
}

.type-sample + .type-sample {
  margin-top: 1rem;
}

.t-h1,
.t-h2,
.t-h3 {
  margin: 0 0 0.6em;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
}

.t-h1 { font-size: clamp(2.7rem, 5.6vw, 4.6rem); }
.t-h2 { font-size: clamp(2.1rem, 3.8vw, 3.2rem); }
.t-h3 { font-size: clamp(1.45rem, 2.2vw, 1.75rem); }

.t-h1 em,
.t-h2 em {
  color: var(--accent);
  font-style: italic;
}

.type-sample__label {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* 404 ------------------------------------------------------------------- */

.not-found {
  padding-block: clamp(4rem, 10vw, 8rem);
  text-align: center;
}

.not-found__code {
  margin-bottom: 0.5rem;
  color: var(--clay);
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 11rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.not-found .lede {
  margin-inline: auto;
}

.not-found .chips {
  justify-content: center;
}

/* Footer ---------------------------------------------------------------- */

.site-footer {
  position: relative;
  margin-top: 24px;
  background: var(--palm-900);
  color: var(--palm-300);
  font-size: 0.92rem;
}

.site-footer__wave {
  position: absolute;
  top: -23px;
  left: 0;
  right: 0;
  height: 24px;
  background: var(--palm-900);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24' preserveAspectRatio='none'%3E%3Cpath d='M0 24V12c10 0 10-8 20-8s10 8 20 8 10-8 20-8 10 8 20 8 10-8 20-8 10 8 20 8v12z'/%3E%3C/svg%3E") repeat-x 0 0 / 120px 24px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24' preserveAspectRatio='none'%3E%3Cpath d='M0 24V12c10 0 10-8 20-8s10 8 20 8 10-8 20-8 10 8 20 8 10-8 20-8 10 8 20 8v12z'/%3E%3C/svg%3E") repeat-x 0 0 / 120px 24px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-block: clamp(3.5rem, 7vw, 5rem) 3rem;
}

.site-footer__brand p {
  max-width: 22rem;
  margin: 1.2rem 0;
}

.site-footer__email {
  color: var(--shell);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__email:hover {
  color: var(--sun);
}

.site-footer__email i {
  margin-right: 0.4rem;
  color: var(--sun);
}

.site-footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
  padding: 0;
  color: var(--palm-100);
  font-size: 1.7rem;
  list-style: none;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.site-footer__heading {
  margin: 0 0 1rem;
  color: var(--sun);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__col ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: var(--palm-100);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--shell);
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem 2rem;
  border-top: 1px solid rgba(220, 230, 221, 0.12);
  font-size: 0.85rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__bottom i {
  margin-right: 0.3rem;
}

/* Reveal ---------------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive ------------------------------------------------------------ */

@media (max-width: 1100px) {
  .cat-strip__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cat-strip__list li:nth-child(4n + 1) { border-left: 0; }
  .cat-strip__list li:nth-child(n + 5) { border-top: 1px solid var(--line); }
  .paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .float-card--a { left: -1rem; }
  .float-card--b { right: -0.5rem; }
}

@media (max-width: 1023px) {
  .topbar__mid { display: none; }

  .site-header {
    background: var(--shell);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header__bar {
    gap: 1rem;
    min-height: 4.25rem;
  }

  .site-header__actions { display: none; }
  .site-header__burger { display: grid; place-items: center; }

  .site-nav {
    position: fixed;
    inset: var(--header-offset, 6.65rem) 0 0;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem var(--gutter) 2rem;
    overflow-y: auto;
    background: var(--shell);
  }

  .site-header.is-open .site-nav { display: flex; }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav__link {
    justify-content: space-between;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
  }

  .mega {
    position: static;
    border: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
  }

  .mega__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    padding: 0.5rem 0 0;
  }

  .mega .container { padding-inline: 0; }
  .mega__desc { display: none; }
  .mega__foot { display: none; }

  .site-nav__mobile-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: auto;
  }

  .hero__grid,
  .page-hero__grid,
  .split,
  .intro-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero h1 { max-width: none; }
  .hero__media { justify-self: center; width: min(100%, 26rem); margin-top: 1rem; }
  .split--flip .split__media { order: 0; }
  .split__media::after { right: -0.75rem; bottom: -0.75rem; }
  .split--flip .split__media::after { left: -0.75rem; }

  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid,
  .quotes,
  .steps { grid-template-columns: minmax(0, 1fr); }
  .card-grid--2 { grid-template-columns: minmax(0, 1fr); }
  .compare { grid-template-columns: minmax(0, 1fr); }
  .swatches { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

@media (max-width: 640px) {
  .topbar__inner { justify-content: center; }
  .topbar__inner p:first-child { display: none; }

  .brand__name { font-size: 1.5rem; }
  .brand__mark { width: 36px; height: 36px; }

  .float-card { font-size: 0.78rem; padding: 0.7rem 0.9rem; }
  .float-card--a { left: -0.5rem; bottom: 8%; }
  .float-card--b { display: none; }

  .cat-strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat-strip__list li:nth-child(n) { border-left: 0; border-top: 1px solid var(--line); }
  .cat-strip__list li:nth-child(2n) { border-left: 1px solid var(--line); }
  .cat-strip__list li:nth-child(-n + 2) { border-top: 0; }

  .paths,
  .card-grid--4 { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: minmax(0, 1fr); }

  .btn-row .btn { flex: 1 1 100%; }
  .site-footer__cols { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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

.btn--primary {
  background: var(--clay-600);
  color: var(--white);
  box-shadow: 0 8px 20px -10px rgba(169, 80, 44, 0.8);
}

.btn--primary:hover {
  background: var(--clay-700);
  color: var(--white);
}

.btn--secondary {
  border-color: rgba(35, 66, 47, 0.28);
  background: transparent;
  color: var(--palm);
}

.btn--secondary:hover {
  border-color: var(--palm);
  background: var(--palm);
  color: var(--white);
}

.page-content {
  padding-block: var(--section);
}

.page-content__inner {
  max-width: 46rem;
}

.page-content__inner h2 {
  margin-top: 2rem;
}

.page-content__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.team-card__avatar {
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--sand);
  color: var(--palm);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
}
