:root {
  --coral: #F67161;
  --coral-dark: #db4e38;
  --green: #2e5a46;
  --mint: #dceadf;
  --cream: #fbf7f0;
  --sand: #f3ece3;
  --white: #ffffff;
  --ink: #171411;
  --muted: #6f6860;
  --line: rgba(23, 20, 17, 0.12);
  --shadow: 0 24px 70px rgba(82, 54, 38, 0.12);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eeebe8;
  color: #171411;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: #E85F51; /* Brand Primary */
  color: white;
  transform: translateY(-2px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.45;
}

img,
svg {
  display: block;
}

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

.site-header,
.hero,
.proof-bar,
.split-section,
.download-panel,
.faq-hero,
.faq-layout,
.legal-hero,
.legal-layout,
.contact-hero,
.contact-grid,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

main {    margin-bottom: 3em;}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--coral);
  font-size: 22px;
  font-weight: 900;
}

.brand-mark {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.brand-mark-s {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 850;
}

.nav-links a {
  opacity: 0.76;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--coral-dark);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(82, 54, 38, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-button {
  justify-self: end;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--coral);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(255, 106, 74, 0.28);
    padding: 15px 34px;
    border-radius: 12px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero {
  min-height: min(720px, calc(100vh - 160px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  padding: 16px 0 38px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.split-section h2,
.download-panel h2,
.faq-hero h1 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.95;
  font-weight: 950;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(64px, 8vw, 95px);
}

.hero-text,
.split-section p:not(.eyebrow),
.download-panel p,
.faq-hero p {
  color: #4e473f;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
}

.hero-text {
  max-width: 560px;
  margin: 28px 0 34px;
}

.button-row,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
    padding: 10px 24px;
    border-radius: 12px;
}

.button.primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 16px 36px rgba(255, 106, 74, 0.28);
    
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 42px;
  background: #fcf3ec;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 48% 20% auto;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(46, 90, 70, 0.2);
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-bar p {
  margin: 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--cream);
}

.proof-bar strong,
.proof-bar span {
  display: block;
}

.proof-bar strong {
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 950;
}

.proof-bar span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  padding: 112px 0 0;
}

.split-section.reverse {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
}

.split-section h2 {
  max-width: 620px;
  font-size: clamp(52px, 7vw, 80px);
}

.split-section p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 24px;
}

.section-image {
  overflow: hidden;
  border-radius: 42px;
  background: var(--white);

}

.section-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.wide-image img {
  object-position: 50% 50%;
}

.safety-image {
  background: var(--mint);
}

.safety-image img {
  object-position: 50% 50%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-dark);
  font-size: 17px;
  font-weight: 950;
}

.text-link::after {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.download-panel {
  margin-top: 112px;
  padding: clamp(34px, 8vw, 40px);
  border-radius: 42px;
  color: var(--white);
  background: var(--green);
  text-align: center;
  box-shadow: var(--shadow);
}

.download-panel .eyebrow,
.download-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.download-panel h2 {
  font-size: clamp(52px, 7vw, 100px);
}

.download-panel p {
  max-width: 620px;
  margin: 22px auto 30px;
}

.store-buttons {
  justify-content: center;
}

.store-button {
  min-width: 198px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1.05;
}

.store-button small {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 850;
  opacity: 0.78;
}

.store-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 950;
  line-height: 1;
}

.app-store {
  color: var(--coral-dark);
  background: var(--white);
}

.play-store {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 48px;
  align-items: start;
  padding: 56px 0 36px;
}

.site-footer p {
  max-width: 330px;
  margin: -18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.site-footer nav a:hover {
  color: var(--coral-dark);
}

.copyright {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  font-size: 12px;
}

.faq-hero {
  padding: 74px 0 54px;
  text-align: center;
}

.help-centre-hero {
  margin-bottom: 56px;
  margin-top: 100px;
  padding: clamp(58px, 10vw, 116px) clamp(20px, 5vw, 64px);
  border: 1px solid rgba(255, 106, 74, 0.12);
  border-radius: 36px;
  background: linear-gradient(135deg, #ffe1d8 0%, #f7eee7 55%, #e7eee8 100%);
  box-shadow: 0 28px 80px rgba(82, 54, 38, 0.1);
  transition: padding 220ms ease, margin 220ms ease, border-radius 220ms ease;
}

.help-centre-hero h1,
.help-centre-hero p,
.help-centre-hero .eyebrow,
.help-search {
  transition: font-size 220ms ease, line-height 220ms ease, margin 220ms ease, opacity 180ms ease;
}

.help-search-hint {
  margin-top: 16px !important;
  color: var(--muted);
  font-size: 13px !important;
  font-weight: 750;
}

.faq-hero h1,
.legal-hero h1 {
  max-width: 940px;
  margin-inline: auto;
  font-size: clamp(58px, 8vw, 80px);
}

.faq-hero p:not(.eyebrow),
.legal-hero p:not(.eyebrow) {
  max-width: 670px;
  margin: 26px auto 0;
}

.help-search {
  position: relative;
  width: min(100%, 560px);
  margin: 34px auto 0;
}

body.help-search-active .help-centre-hero {
  margin-bottom: clamp(18px, 3vw, 30px);
  padding: clamp(18px, 3vw, 28px) clamp(16px, 4vw, 38px);
  border-radius: 28px;
}

body.help-search-active .help-centre-hero .eyebrow,
body.help-search-active .help-centre-hero h1 {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

body.help-search-active .help-centre-hero p:not(.eyebrow) {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
}

body.help-search-active .help-search {
  width: min(100%, 680px);
  margin-top: 0;
}

.help-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.help-search input {
  width: 100%;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0 22px 0 58px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(82, 54, 38, 0.08);
  font: 800 18px var(--sans);
  outline: none;
}

.help-search input:focus {
  border-color: rgba(255, 106, 74, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 106, 74, 0.16), 0 18px 46px rgba(82, 54, 38, 0.08);
}

.search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  opacity: 0.86;
  transform: translateY(-50%);
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  transform: rotate(45deg);
}

.help-empty {
  margin: 0;
  padding: 22px 24px;
  border-radius: 24px;
  color: var(--muted);
  background: var(--white);
  font-size: 17px;
  font-weight: 800;
}

.legal-hero {
  padding: 74px 0 48px;
  text-align: center;
}

.legal-hero h1 {
  line-height: 0.96;
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 60px;
}

.compact-legal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-card {
  min-width: 0;
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(82, 54, 38, 0.08);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.04;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 350;
}

.contact-hero {
  padding: 74px 0 44px;
  text-align: center;
}

.contact-hero h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.96;
  font-weight: 950;
}

.contact-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px auto 0;
  color: #4e473f;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(240px, 0.75fr));
  gap: 18px;
  padding-bottom: 70px;
}

.contact-card {
  min-width: 0;
  padding: 30px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.primary-contact {
  color: var(--white);
  background: var(--green);
}

.primary-contact .eyebrow,
.primary-contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 34px);
  line-height: 1.04;
}

.contact-card p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.primary-contact p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.faq-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
  padding-bottom: 60px;
}

.faq-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(23, 20, 17, 0.06);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.faq-nav a small {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 11px;
}

.faq-nav a:hover {
  color: var(--coral-dark);
  background: var(--cream);
}

.faq-nav a.is-active {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(255, 106, 74, 0.24);
}

.faq-nav a.is-active small {
  color: var(--coral-dark);
  background: var(--white);
}

.faq-content {
  display: grid;
  gap: 50px;
}

.help-results {
  margin: 0 0 -28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-group {
  scroll-margin-top: 24px;
}

.faq-group h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

details {
  margin-bottom: 12px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 30px rgba(82, 54, 38, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

details:last-child {
  border-bottom: 1px solid rgba(23, 20, 17, 0.08);
}

details:hover {
  border-color: rgba(255, 106, 74, 0.28);
  transform: translateY(-1px);
}

details[open] {
  border-color: rgba(255, 106, 74, 0.22);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(82, 54, 38, 0.09);
}

summary {
  position: relative;
  display: block;
  padding: 22px 68px 22px 22px;
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 650;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary:focus-visible {
  border-radius: 16px;
  outline: 3px solid rgba(255, 106, 74, 0.28);
  outline-offset: 2px;
}

summary::after {
    content: "+";
    top: 50%;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--coral);
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

details[open] summary::after {
  content: "-";
  background: var(--green);
}

details p {
  max-width: 790px;
  margin: -2px 68px 24px 22px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}


.section-image.wide-image {
  mask-image: none;
  background: linear-gradient(to right, rgb(255 255 255 / 0%) 0%, rgb(255, 255, 255) 100%);
}

.section-image.wide-image {
    background-color: transparent !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative !important;
    overflow: visible !important;
}


/* Container for the buttons */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
}

/* Hide the Google Play button as requested */
.store-button.play-store {
  display: none !important;
}

/* Main App Store Button */
.store-button.app-store {
  display: inline-flex;
  align-items: center;
  background-color: #000000; /* Professional black */
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-button.app-store:hover {
  transform: translateY(-2px);
  background-color: #1a1a1a;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 24px;
}

.store-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Text Container */
.store-button span:not(.store-icon) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  font-weight: 600;
  font-size: 18px;
}

/* Top small text ("Download on the") */
.store-button small {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  opacity: 0.85;
}


@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    row-gap: 12px;
    padding: 14px 0;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

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

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
  }

  .header-button {
    grid-column: 2;
    grid-row: 1;
  }

  .hero,
  .split-section,
  .split-section.reverse,
  .faq-layout,
  .legal-layout,
  .compact-legal,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-photo {
    min-height: 520px;
  }

  .proof-bar {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .section-copy {
    order: 2;
  }

  .split-section.reverse .section-image {
    order: 1;
  }

  .faq-nav {
    position: sticky;
    top: 76px;
    z-index: 20;
    display: flex;
    overflow-x: auto;
    padding: 9px;
    border-radius: 18px;
    scrollbar-width: none;
  }

  .faq-nav::-webkit-scrollbar {
    display: none;
  }

  .faq-nav a {
    flex: 0 0 auto;
    min-height: 42px;
    white-space: nowrap;
  }

  .faq-nav a small {
    display: none;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .proof-bar,
  .split-section,
  .download-panel,
  .faq-hero,
  .faq-layout,
  .legal-hero,
  .legal-layout,
  .contact-hero,
  .contact-grid,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 0;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-button {
    min-height: 40px;
    padding-inline: 16px;
  }

  .nav-links {
    font-size: 13px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero h1 {
    font-size: clamp(45px, 10vw, 50px);
  }
    
    .hero-photo {
    top: -5em;
    z-index: -9;
    margin-bottom: -4em;
}
.section-image.wide-image
 {
    mask-image: none;
    background: linear-gradient(to top, rgb(255 255 255 / 0%) 0%, rgb(255, 255, 255) 100%);
}

  .hero-text,
  .split-section p:not(.eyebrow),
  .download-panel p,
  .faq-hero p {
    font-size: 17px;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .hero-photo {
    min-height: 430px;
    border-radius: 30px;
  }

  .proof-bar,
  .download-panel,
  .section-image {
    border-radius: 30px;
  }

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

  .split-section h2,
  .download-panel h2 {
    font-size: clamp(42px, 9vw, 62px);
  }

  .section-image img {
    min-height: 360px;
  }

  .download-panel {
    margin-top: 72px;
    padding: 42px 22px;
  }

  .faq-hero,
  .legal-hero,
  .contact-hero {
    padding-top: 42px;
  }

  .faq-hero h1,
  .legal-hero h1,
  .contact-hero h1 {
    font-size: clamp(50px, 14vw, 72px);
  }

  .help-centre-hero {
    border-radius: 30px;
    padding: 42px 18px;
  }

  body.help-search-active .help-centre-hero {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 20px;
  }

  .help-search input {
    min-height: 58px;
    border-radius: 18px;
    font-size: 16px;
  }

  .legal-card {
    padding: 22px;
    border-radius: 24px;
  }

  .legal-card p {
    font-size: 15px;
  }

  summary {
    padding: 19px 58px 19px 18px;
    font-size: 20px;
  }

  details p {
    margin: -2px 18px 20px;
    font-size: 16px;
  }
}

/* Base styles for the desktop header */
@media (min-width: 921px) {
  header#top {
    /* 1. Initial State: Centered & Transparent */
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 48px));
    z-index: 1000;
    background-color: transparent;
    padding: 0px 17px;
    
    /* 2. Smooth Transition */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Ensure layout stays centered */
    display: grid;
    align-items: center;
  }

  /* 3. Scrolled State: Full Width & White Background */
  header#top.scrolled {
    width: 94%;
    background-color: #fbf6ef;
        padding: 10px 32px;
        border-bottom: 2px solid #F671619c;
	  border-radius: 1em;
 
  }
  
  /* 4. Content Offset (Prevent content from jumping under fixed header) */
  body {
    padding-top: 80px;
  }
}


    .hero-photo {
        mask-image: linear-gradient(to left, #000000, #000000, #000000, #00000026, #00000030 100%);
    }

    .hero-photo img& {
        mask-image: linear-gradient(to left, #000000, #000000 50%);
    }

/* Transition for smooth animation */
header#top,
header#top a.brand,
header#top a.header-button {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shrunken state styles */
header#top.scrolled {
     height: 10px;
    padding-top: 1px;
    padding-bottom: 1px;
}

header#top.scrolled a.brand {
  transform: scale(0.6);
  transform-origin: left center;
}

header#top.scrolled a.header-button {
  padding: 2px 35px;
  font-size: 12px;
    min-height: 41px;
}
.gone {display:none !important;}

/* Local dating and market discovery pages */
.local-hero,
.local-intro,
.local-proof,
.local-section,
.local-safety,
.local-faq,
.related-locations,
.locations-grid,
.market-links {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.guide-article {
  width: min(780px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(80px, 10vw, 120px) 0;
}

.guide-intro {
  color: #4e473f;
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 700;
}

.guide-article section {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.guide-article h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.02;
}

.guide-article h3 {
  margin: 30px 0 10px;
  font-size: 23px;
}

.guide-article p,
.guide-article li {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.guide-article ul,
.guide-article ol {
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.guide-callout {
  margin: 38px 0;
  padding: 28px;
  border-left: 5px solid var(--coral);
  border-radius: 0 16px 16px 0;
  background: var(--white);
}

.guide-callout strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.local-hero {
  position: relative;
  min-height: min(650px, calc(100vh - 150px));
  margin-top: 24px;
  overflow: hidden;
  border-radius: 32px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.local-hero > img {
position: absolute;
    inset: 0;
    z-index: -2;
    width: 85%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    margin-left: 19em;
}

.local-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
      background: linear-gradient(90deg, rgb(253 145 120) 0%, rgb(254 151 126) 48%, rgba(255, 253, 230, 0.1) 100%) !important;
}

.local-breadcrumbs {
  position: absolute;
  top: 28px;
  left: clamp(24px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.local-breadcrumbs a:hover {
  color: var(--white);
}

.local-hero-copy {
  display: flex;
  min-height: inherit;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 104px clamp(24px, 5vw, 64px) clamp(44px, 5vw, 58px);
}

.local-hero .eyebrow {
  color: #ffd9d0;
}

.local-hero h1 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(52px, 6.4vw, 82px);
  line-height: 0.94;
  font-weight: 950;
}

.local-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
}

.local-hero .button-row {
  margin-top: 30px;
}

.local-hero .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.local-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
  padding: clamp(58px, 7vw, 92px) 0 clamp(82px, 10vw, 124px);
}

.local-intro h2,
.local-section h2,
.local-safety h2,
.local-faq h2,
.related-locations h2,
.market-links h2 {
  margin: 10px 0 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 950;
}

.local-intro-copy p,
.local-section-copy p,
.market-links > div > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.local-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.local-proof article {
  padding: 34px clamp(18px, 3vw, 38px);
}

.local-proof article + article {
  border-left: 1px solid var(--line);
}

.local-proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 950;
}

.local-proof span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
  padding: clamp(90px, 11vw, 140px) 0;
}

.local-section-copy > p:not(.eyebrow) {
  margin-top: 24px;
}

.local-feature-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.local-feature-list article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.local-feature-list b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 14px;
}

.local-feature-list h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.local-feature-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.local-safety {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding: clamp(44px, 7vw, 76px);
  border-radius: 28px;
  color: var(--white);
  background: var(--green);
}

.local-safety .eyebrow,
.local-safety p {
  color: rgba(255, 255, 255, 0.82);
}

.local-safety p {
  margin: 22px 0 0;
  font-size: 18px;
  font-weight: 650;
}

.safety-checks {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-checks li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.safety-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd9d0;
}

.local-faq {
  padding: clamp(90px, 11vw, 140px) 0 44px;
}

.local-faq-header {
  max-width: 740px;
  margin-bottom: 34px;
}

.local-faq details {
  max-width: 920px;
}

.related-locations {
  padding: 70px 0 100px;
}

.related-locations nav,
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.related-locations a,
.locations-grid a,
.market-links nav a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(82, 54, 38, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.related-locations a::after,
.locations-grid a::after,
.market-links nav a::after {
  content: "→";
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 24px;
  font-weight: 900;
}

.related-locations a:hover,
.locations-grid a:hover,
.market-links nav a:hover {
  border-color: rgba(255, 106, 74, 0.36);
  box-shadow: 0 18px 48px rgba(82, 54, 38, 0.1);
  transform: translateY(-2px);
}

.related-locations strong,
.locations-grid strong,
.market-links nav strong {
  display: block;
  font-size: 20px;
}

.related-locations span,
.locations-grid span,
.market-links nav span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.locations-grid {
  padding: 82px 0 110px;
}

.locations-grid a {
  min-height: 180px;
  align-items: flex-end;
  background: linear-gradient(145deg, var(--white), #fff3ee);
}

.locations-grid strong {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.market-links {
  padding: clamp(90px, 11vw, 130px) 0;
}

.market-links > div {
  max-width: 740px;
}

.market-links > div > p:not(.eyebrow) {
  margin-top: 22px;
}

.market-links nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 28px;
}



/* Base Footer Styling */
.site-footer {
  background-color: #ece6dd;
  border-top: 2px solid #F6716191;
  padding: 120px 0 60px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #171411;
  width: 100%;
}

.footer-wrap {
  max-width: 1400px; /* Expansive footprint */
  margin: 0 auto;
  padding: 0 40px;
}

/* Main Layout Grid */
.footer-main {
    display: grid;
    grid-template-columns: 215px 255px 1fr;
    gap: 119px;
    margin-bottom: 80px;
    align-items: start;
}

/* Column 1: Identity */
.footer-identity {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.brand-name { font-size: 26px; font-weight: 800; margin-left: 12px; }
.brand-description { color: #6f6860; font-size: 16px; line-height: 1.6; max-width: 380px; }

/* Column 2: QR Card */
.footer-qr-card-vertical {
  background-color: #F67161; /* Brand Red-Orange */
  border-radius: 24px;
  padding: 32px;
  color: white;
  text-align: center;
  box-shadow: 0 12px 32px rgba(255, 75, 43, 0.2);
    width: 20em;
}

p.site-footer-p-c {
    color: #ffffff;
}
.qr-code-wrapper-large {
  background: white;
  padding: 15px;
  border-radius: 18px;
  display: inline-block;
  margin-bottom: -30px;
}
.qr-text-vertical h6 { font-size: 18px; font-weight: 700; margin-bottom: 18px; color: white; }

/* Column 3: Navigation */
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px; /* Space between link lists */
}
.footer-nav-col h6 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 28px; }
.footer-nav-col nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav-col nav a { color: #aba7a3; text-decoration: none; font-size: 15px; }
.footer-nav-col nav a:hover { color: #E85F51; }

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #e5e2df;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  color: #8c857d;
  font-size: 14px;
}


/* 1. Footer Container Reset */
.site-footer {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;

}

/* 2. Wrapper for Content Isolation */
.footer-wrap {
  width: 100%;
  max-width: none !important;
  padding: 0 !important;
}

/* 3. Keep Text Content Centered and Padded */
.footer-main,
.footer-bottom {
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1400px;
  margin: 0 auto;
  color: #e79e3c; /* Make text white for dark background */
  margin-top: 2em;
}

/* 4. The Large Bold Logo (Corner to Corner) */
.footer-large-logo {
  width: 100%;
  position: relative;
  bottom: 0;
  line-height: 0;
  margin-top: -17px; /* Space between links and logo */
  pointer-events: none; /* User can click through logo if needed */
    /*opacity: 0.8; */
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}


.footer-large-logo svg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

/* Container adjustments */
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Mobile-first stacking */
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Flexible nav links */
.footer-nav-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

/* Desktop restoration */
@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 200px 200px 1fr;
  }
}


svg#Layer_1.brand-logo-s { width: 150px; }

/* Responsive */
@media (max-width: 1200px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-qr-section { grid-row: 2; }
}
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .local-intro,
  .local-section,
  .local-safety {
    grid-template-columns: 1fr;
  }

  .local-proof {
    grid-template-columns: 1fr;
  }

  .local-proof article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .local-safety {
    padding: 44px 30px;
  }
}



.site-footer {
  width: 100%;
  padding: 120px 0px 60px;
}

@media (max-width: 620px) {
  .local-hero,
  .local-intro,
  .local-proof,
  .local-section,
  .local-safety,
  .local-faq,
  .related-locations,
  .locations-grid,
  .market-links,
  .guide-article {
    width: min(100% - 28px, 1180px);
  }

  .local-hero {
    min-height: 610px;
    border-radius: 24px;
  }

  .local-hero::after {
    background: linear-gradient(0deg, rgba(23, 20, 17, 0.88) 0%, rgba(23, 20, 17, 0.48) 66%, rgba(23, 20, 17, 0.12) 100%);
  }

  .local-hero > img {
    object-position: 60% center;
  }

  .local-breadcrumbs {
    top: 20px;
    left: 20px;
  }

  .local-hero-copy {
    padding: 96px 20px 24px;
  }

  .local-hero h1 {
    font-size: clamp(44px, 12vw, 54px);
  }

  .local-hero-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.38;
  }

  .local-hero .button-row,
  .local-hero .button {
    width: 100%;
  }

  .local-hero .button {
    min-height: 50px;
    font-size: 15px;
  }

  .local-intro {
    padding: 76px 0;
  }

  .local-intro h2,
  .local-section h2,
  .local-safety h2,
  .local-faq h2,
  .related-locations h2,
  .market-links h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .local-section {
    padding: 82px 0;
  }

  .local-safety {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .related-locations nav,
  .locations-grid,
  .market-links nav {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    padding: 58px 0 82px;
  }

  .locations-grid a {
    min-height: 140px;
  }
}

/* Shared responsive footer */
.site-footer {
  width: 100% !important;
  margin: 0 !important;
  padding: 74px 0 28px !important;
  overflow: hidden;
  border-top: 0;
  color: #fff8f2;
  background: #214f3e;
}

.footer-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.footer-primary {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 250px minmax(430px, 1.45fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.footer-identity {
  display: block;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff8f2;
  font-size: 24px;
  font-weight: 950;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-footer .footer-identity > p {
  max-width: 280px;
  margin: 20px 0 16px;
  color: rgba(255, 248, 242, 0.76);
  font-size: 15px;
  font-weight: 650;
}

.footer-email {
  color: #ff9b82;
  font-size: 14px;
  font-weight: 850;
}

.footer-email:hover {
  color: #fff8f2;
}

.footer-download {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  color: var(--ink);
  background: #fff8f2;
  box-shadow: 0 18px 42px rgba(8, 32, 24, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-download:hover {
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(8, 32, 24, 0.3);
  transform: translateY(-2px);
}

.footer-download img {
  width: 96px;
  height: 96px;
  padding: 7px;
  border-radius: 10px;
  background: var(--white);
}

.footer-download span,
.footer-download strong,
.footer-download small {
  display: block;
}

.footer-download strong {
  font-size: 18px;
  line-height: 1.15;
}

.footer-download small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-mobile-download {
  display: none;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}

.footer-nav-col h2 {
  margin: 0 0 18px;
  color: #fff8f2;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-nav-col nav {
  display: grid;
  gap: 11px;
  justify-content: stretch;
  color: rgba(255, 248, 242, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.site-footer .footer-nav-col nav a {
  min-width: 0;
  padding: 2px 0;
}

.site-footer .footer-nav-col nav a:hover {
  color: #ff9b82;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 248, 242, 0.18);
}

.site-footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 248, 242, 0.68);
  font-size: 12px;
  font-weight: 650;
}

.footer-large-wordmark {
width: 100vw;
    margin-left: calc(67% - 59vw);
  margin-top: clamp(34px, 5vw, 72px);
  margin-bottom: clamp(-30px, -2vw, -12px);
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.footer-large-wordmark svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  fill: none;
  stroke: #ff684e;
  stroke-width: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-large-wordmark .wordmark-gold {
  stroke: #ffc85b;
}

.footer-large-wordmark .wordmark-green {
  stroke: #9fd5bc;
}

.footer-large-wordmark .wordmark-e {
  stroke-width: 16px;
}

.footer-brand:focus-visible,
.footer-download:focus-visible,
.footer-email:focus-visible,
.footer-nav-col a:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(255, 106, 74, 0.32);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .footer-primary {
    grid-template-columns: minmax(220px, 1fr) 260px;
  }

  .footer-nav-grid {
    grid-column: 1 / -1;
    padding-top: 38px;
    border-top: 1px solid rgba(255, 248, 242, 0.18);
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 54px 0 24px !important;
  }

  .footer-shell {
    width: min(100% - 28px, 1180px);
  }

  .footer-primary {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer .footer-identity > p {
    max-width: 340px;
  }

  .footer-download {
    grid-template-columns: 84px minmax(0, 1fr);
    max-width: 100%;
    padding: 14px;
  }

  .footer-download img {
    width: 84px;
    height: 84px;
  }

  .footer-download-qr {
    display: none;
  }

  .footer-mobile-download {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    gap: 14px;
    align-items: center;
    min-height: 78px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 248, 242, 0.22);
    border-radius: 14px;
    color: var(--ink);
    background: #fff8f2;
    box-shadow: 0 18px 42px rgba(8, 32, 24, 0.22);
  }

  .footer-mobile-download-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: var(--coral);
    font-size: 24px;
    font-weight: 950;
  }

  .footer-mobile-download small,
  .footer-mobile-download strong {
    display: block;
  }

  .footer-mobile-download small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
  }

  .footer-mobile-download strong {
    margin-top: 2px;
    font-size: 20px;
    line-height: 1;
  }

  .footer-mobile-download svg,
  .download-mobile-button svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .footer-nav-grid {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
    padding-top: 32px;
  }

  .footer-nav-col:last-child {
    grid-column: 1 / -1;
  }

  .site-footer .footer-nav-col:last-child nav {
    grid-template-columns: repeat(0, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    margin-top: 42px;
  }

  .footer-large-wordmark {
        width: 95vw;
        margin-top: 36px;
        margin-left: calc(93% - 87.5vw);
  }

  .footer-large-wordmark svg {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 380px) {
  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav-col:last-child {
    grid-column: auto;
  }

  .site-footer .footer-nav-col:last-child nav {
    grid-template-columns: 1fr;
  }
}

/* Download page */
.download-page-hero,
.download-proof,
.download-steps,
.download-support {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.download-page-hero {
  position: relative;
  min-height: min(650px, calc(100vh - 150px));
  margin-top: 24px;
  overflow: hidden;
  border-radius: 32px;
  color: var(--white);
  background: #eafff5;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.download-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(25, 49, 38, 0.97) 0%, rgba(25, 49, 38, 0.88) 38%, rgba(25, 49, 38, 0.28) 72%, rgba(25, 49, 38, 0.08) 100%);
}


.download-page-image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
    left: 11em;
}

.download-breadcrumbs {
  position: absolute;
  top: 28px;
  left: clamp(24px, 5vw, 64px);
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.download-page-copy {
  max-width: 780px;
  padding: 112px clamp(24px, 5vw, 64px) 150px;
}

.download-page-copy .eyebrow {
  color: #ffd9d0;
}

.download-page-copy h1 {
  margin: 12px 0 0;
  font-size: clamp(50px, 5.8vw, 74px);
  line-height: 0.95;
  font-weight: 950;
}

.download-page-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
}

.download-qr-panel {
  position: absolute;
  right: clamp(24px, 5vw, 64px);
  bottom: 38px;
  display: grid;
  grid-template-columns: 116px minmax(0, 170px);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(23, 20, 17, 0.2);
}

.download-qr-panel img {
  width: 116px;
  height: 116px;
  border-radius: 10px;
}

.download-qr-panel strong,
.download-qr-panel span {
  display: block;
}

.download-qr-panel strong {
  font-size: 18px;
  line-height: 1.15;
}

.download-qr-panel span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.download-mobile-button,
.download-mobile-copy {
  display: none;
}

.download-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.download-proof article {
  padding: 34px clamp(18px, 3vw, 38px);
}

.download-proof article + article {
  border-left: 1px solid var(--line);
}

.download-proof strong,
.download-proof span {
  display: block;
}

.download-proof strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.download-proof span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.download-steps {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
  padding: clamp(88px, 11vw, 138px) 0;
}

.download-steps-heading h2,
.download-support h2 {
  margin: 10px 0 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 950;
}

.download-step-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.download-step-list article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.download-step-list b {
  grid-row: 1 / 3;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
}

.download-step-list h3 {
  margin: 0;
  font-size: 22px;
}

.download-step-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.download-support {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 100px;
  padding: clamp(42px, 7vw, 72px);
  border-radius: 28px;
  color: var(--white);
  background: var(--green);
}

.download-support > div:first-child {
  max-width: 650px;
}

.download-support .eyebrow,
.download-support p {
  color: rgba(255, 255, 255, 0.8);
}

.download-support p:not(.eyebrow) {
  margin: 20px 0 0;
  font-size: 17px;
  font-weight: 650;
}

.download-support .button-row {
  flex: 0 0 auto;
}

@media (max-width: 820px) {
  .download-page-copy {
    max-width: 620px;
    padding-bottom: 220px;
  }

  .download-steps {
    grid-template-columns: 1fr;
  }

  .download-support {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .download-page-hero,
  .download-proof,
  .download-steps,
  .download-support {
    width: min(100% - 28px, 1180px);
  }

  .download-page-hero {
    min-height: 650px;
    border-radius: 24px;
  }

  .download-page-hero::after {
    background: linear-gradient(0deg, rgba(25, 49, 38, 0.96) 0%, rgba(25, 49, 38, 0.68) 66%, rgba(25, 49, 38, 0.18) 100%);
  }

  .download-page-image {
    object-position: 57% center;
  }

  .download-breadcrumbs {
    top: 20px;
    left: 20px;
  }

  .download-page-copy {
    padding: 90px 20px 190px;
  }

  .download-page-copy h1 {
    font-size: clamp(44px, 12vw, 54px);
  }

  .download-page-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.4;
  }

  .download-qr-panel {
    display: none;
  }

  .download-mobile-button {
    position: absolute;
    right: 20px;
    bottom: 24px;
    left: 20px;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 14px;
    align-items: center;
    min-height: 76px;
    padding: 14px 18px;
    border-radius: 14px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 22px 54px rgba(23, 20, 17, 0.26);
  }

  .download-mobile-button small,
  .download-mobile-button strong {
    display: block;
  }

  .download-mobile-button small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
  }

  .download-mobile-button strong {
    margin-top: 3px;
    font-size: 22px;
    line-height: 1;
  }

  .download-desktop-copy {
    display: none;
  }

  .download-mobile-copy {
    display: inline;
  }

  .download-proof {
    grid-template-columns: 1fr;
  }

  .download-proof article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .download-steps {
    padding: 78px 0;
  }

  .download-steps-heading h2,
  .download-support h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .download-support {
    margin-bottom: 74px;
    padding: 34px 22px;
    border-radius: 22px;
  }

  .download-support .button-row,
  .download-support .button {
    width: 100%;
  }
}

/* Shared SVG header wordmark */
.header-wordmark {
  display: block;
  width: 112px;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: var(--coral);
  stroke-width: 19.26px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-wordmark .wordmark-gold {
  stroke: #e79e3c;
}

.header-wordmark .wordmark-green {
  stroke: var(--green);
}

.header-wordmark .wordmark-e {
  stroke-width: 16px;
}

@media (max-width: 620px) {
  .site-header {
    column-gap: 12px;
  }

  .header-wordmark {
    width: 100px;
  }

  .header-button {
    padding-inline: 13px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .site-header {
    column-gap: 8px;
  }

  .header-wordmark {
    width: 78px;
  }

  .header-button {
    padding-inline: 10px;
    font-size: 11px;
  }
}

/* Hive visual refresh */
:root {
  --coral: #F67161;
  --coral-dark: #E85F51;
  --green: #2E5A46;
  --mint: #E6F0E8;
  --cream: #FFF9F3;
  --sand: #F4EDE5;
  --ink: #1D1916;
  --muted: #706860;
  --line: rgba(29, 25, 22, 0.12);
  --shadow: 0 28px 80px rgba(67, 49, 39, 0.14);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(246, 113, 97, 0.12), transparent 28rem),
    radial-gradient(circle at 96% 12%, rgba(46, 90, 70, 0.12), transparent 26rem),
    var(--cream);
}

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

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  min-height: 72px;
  margin-top: 14px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(29, 25, 22, 0.08);
  border-radius: 24px;
  background: rgba(255, 249, 243, 0.84);
  box-shadow: 0 16px 42px rgba(67, 49, 39, 0.08);
  backdrop-filter: blur(18px);
}

.brand { color: var(--green); gap: 10px; font-size: 24px; letter-spacing: -0.04em; }
.brand-mark { width: 48px; height: 48px; border-radius: 15px; object-fit: contain; box-shadow: 0 10px 24px rgba(246, 113, 97, 0.22); }
.brand-word { font-weight: 950; }
.header-wordmark { display: none; }
.nav-links { gap: 28px; font-size: 13px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--coral-dark); }
.header-button { min-height: 44px; padding: 0 20px; border-radius: 999px; background: var(--green); box-shadow: 0 12px 28px rgba(46, 90, 70, 0.2); }
.header-button:hover { background: #214936; transform: translateY(-2px); }

.hero {
  position: relative;
  min-height: min(740px, calc(100vh - 110px));
  padding: 78px 0 70px;
  gap: clamp(38px, 7vw, 96px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 2%;
  left: -8%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(246, 113, 97, 0.1);
  filter: blur(2px);
  pointer-events: none;
}

.footer-heart {
    color: #fee9e6 !important;
}

.hero-copy { position: relative; z-index: 1; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; color: var(--green); font-size: 13px; font-weight: 900; letter-spacing: 0.02em; }
.hero-kicker-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px rgba(246, 113, 97, 0.14); }
.hero h1 {
    max-width: 680px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 6vw, 80px);
}
.hero h1 em { color: var(--coral-dark); font-style: normal; }
.hero-text { max-width: 570px; margin: 30px 0 34px; color: var(--muted); font-size: clamp(17px, 1.7vw, 21px); font-weight: 650; line-height: 1.58; }
.button { min-height: 52px; border-radius: 999px; padding: 0 23px; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.button.primary { background: var(--coral); box-shadow: 0 14px 30px rgba(246, 113, 97, 0.28); }
.button.primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(246, 113, 97, 0.34); }
.button.secondary { border-color: rgba(46, 90, 70, 0.2); color: var(--green); background: rgba(255, 255, 255, 0.62); }
.button.secondary:hover { border-color: var(--green); transform: translateY(-2px); }

.hero-photo { min-height: 590px; border-radius: 44px; background: var(--sand); box-shadow: 0 34px 90px rgba(67, 49, 39, 0.19); }
.hero-photo::before { content: ""; position: absolute; inset: 18px; z-index: 1; border: 1px solid rgba(255, 255, 255, 0.36); border-radius: 34px; pointer-events: none; }
.hero-photo::after { inset: auto 7% 10% auto; width: 31%; background: rgba(46, 90, 70, 0.28); }
.hero-photo img { object-position: 58% 50%; transform: scale(1.015); }
.hero-float-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; padding: 13px 15px; border: 1px solid rgba(29, 25, 22, 0.08); border-radius: 18px; color: var(--ink); background: rgba(255, 249, 243, 0.9); box-shadow: 0 18px 44px rgba(29, 25, 22, 0.16); backdrop-filter: blur(14px); }
.hero-float-card strong, .hero-float-card small { display: block; }
.hero-float-card strong { font-size: 13px; }
.hero-float-card small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.hero-float-card-top { top: 42px; left: -26px; }
.hero-float-card-bottom { right: -24px; bottom: 38px; }
.hero-float-card-bottom b { margin-left: 4px; color: var(--coral); font-size: 24px; }
.float-icon, .float-avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 12px; color: #fff; background: var(--coral); font-weight: 900; }
.float-avatar { border-radius: 50%; color: var(--green); background: var(--mint); }

.proof-bar { position: relative; z-index: 3; gap: 10px; padding: 10px; border: 1px solid rgba(29, 25, 22, 0.06); border-radius: 28px; background: rgba(255, 255, 255, 0.72); box-shadow: 0 20px 60px rgba(67, 49, 39, 0.1); }
.proof-bar p { padding: 20px; border-radius: 19px; background: transparent; }
.proof-bar p + p { border-left: 1px solid rgba(29, 25, 22, 0.08); }
.proof-bar strong { color: var(--green); font-size: 17px; }
.proof-bar span { font-size: 14px; font-weight: 600; }

.feature-section { padding: 126px 0 6px; }
.section-intro { display: grid; grid-template-columns: 0.8fr 1fr; column-gap: 60px; align-items: end; margin-bottom: 34px; }
.section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: 12px; }
.section-intro h2 { max-width: 590px; margin: 0; color: var(--ink); font-size: clamp(43px, 5vw, 70px); line-height: 0.96; letter-spacing: -0.06em; }
.section-intro > p:not(.eyebrow) { max-width: 430px; margin: 0; color: var(--muted); font-size: 17px; font-weight: 600; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { position: relative; min-height: 270px; padding: 25px; overflow: hidden; border-radius: 28px; border: 1px solid rgba(29, 25, 22, 0.08); }
.feature-card::after { content: ""; position: absolute; right: -40px; bottom: -60px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); }
.feature-card-coral { color: #fff; background: var(--coral); }
.feature-card-green { color: #fff; background: var(--green); }
.feature-card-sand { color: var(--ink); background: var(--sand); }
.feature-number { display: block; color: currentColor; opacity: 0.66; font-size: 12px; font-weight: 900; letter-spacing: 0.12em; }
.feature-icon { margin: 30px 0 22px; font-size: 40px; line-height: 0.8; }
.feature-card h3 { margin: 0 0 9px; font-size: 24px; letter-spacing: -0.04em; }
.feature-card p { max-width: 300px; margin: 0; color: inherit; opacity: 0.78; font-size: 14px; font-weight: 600; line-height: 1.55; }

.split-section { padding-top: 126px; }
.split-section h2 { font-size: clamp(45px, 5.8vw, 78px); letter-spacing: -0.065em; }
.section-image { border-radius: 34px; box-shadow: 0 24px 64px rgba(67, 49, 39, 0.12); }
.text-link { color: var(--green); }
.text-link::after { background: var(--coral); }
.download-panel { margin-top: 126px; border-radius: 34px; background: var(--green); box-shadow: 0 28px 70px rgba(46, 90, 70, 0.2); }
.download-panel .eyebrow { color: #bfe1c8; }
.download-panel h2 { letter-spacing: -0.06em; }
.app-store { color: var(--green); }

.site-footer { margin-top: 126px; border-top: 1px solid rgba(46, 90, 70, 0.2); background: #E9F0E9; }
.footer-brand { color: var(--green); }
.footer-brand img { border-radius: 14px; box-shadow: 0 8px 18px rgba(246, 113, 97, 0.2); }
.footer-email { color: var(--green); font-weight: 800; }
.footer-mobile-download-icon { display: grid; place-items: center; overflow: hidden; background: var(--coral); }
.footer-mobile-download-icon img { width: 100%; height: 100%; }
.footer-large-wordmark { display: none; }

@media (max-width: 820px) {
  .site-header { top: 8px; margin-top: 8px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 62px; }
  .hero h1 { font-size: clamp(57px, 14vw, 88px); }
  .hero-photo { min-height: 480px; }
  .hero-float-card-top { left: 14px; }
  .hero-float-card-bottom { right: 14px; }
  .section-intro { grid-template-columns: 1fr; gap: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
}

@media (max-width: 620px) {
  .site-header { grid-template-columns: 1fr auto; padding-left: 12px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-word { font-size: 21px; }
  .header-button { min-height: 40px; padding-inline: 15px; font-size: 12px; }
  .nav-links { background: rgba(255, 249, 243, 0.98); }
  .hero { width: min(1180px, calc(100% - 32px)); padding-top: 52px; }
  .hero-text { font-size: 17px; }
  .hero-photo { min-height: 390px; border-radius: 30px; }
  .hero-float-card { padding: 10px 11px; }
  .hero-float-card-top { top: 110px; left: 12px; }
  .hero-float-card-bottom { right: 26px; bottom: 26px; }
  .proof-bar { grid-template-columns: 1fr; }
  .proof-bar p + p { border-top: 1px solid rgba(29, 25, 22, 0.08); border-left: 0; }
  .feature-section, .split-section { padding-top: 84px; }
  .download-panel { margin-top: 84px; }
}

/* Final Hive header and footer refinement */
.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 70px;
  padding: 8px 10px 8px 14px;
  border-radius: 22px;
}

.brand { min-width: 0; gap: 10px; }
.brand-copy { display: grid; gap: 1px; min-width: 0; }
.brand-note {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  justify-self: center;
  gap: clamp(18px, 2.4vw, 30px);
  padding-inline: 22px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-button {
  min-height: 42px;
  padding: 0 17px;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.header-button-label-short { display: none; }

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(29, 25, 22, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.site-footer {
  position: relative;
  margin-top: 140px !important;
  padding: 0 0 28px !important;
  overflow: hidden;
  background: #214f3e;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(246, 113, 97, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(246, 113, 97, 0.05), 0 0 0 58px rgba(246, 113, 97, 0.035);
  pointer-events: none;
}

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

.footer-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  padding: 76px 0 62px;
}

.footer-cta-copy { max-width: 620px; }
.footer-eyebrow {
  margin: 0 0 14px;
  color: #ff9b82;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 600px;
  margin: 0;
  color: #fff8f2;
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.footer-cta-copy > p:last-child {
  max-width: 420px;
  margin: 20px 0 0;
  color: rgba(255, 248, 242, 0.72);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  gap: 28px;
  min-width: 188px;
  min-height: 56px;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(255, 248, 242, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: #fff8f2;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(8, 32, 24, 0.22);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-cta-button:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 24px 52px rgba(8, 32, 24, 0.3);
  transform: translateY(-2px);
}

.footer-cta-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--coral-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.footer-divider { border-top: 1px solid rgba(255, 248, 242, 0.18); }

.footer-primary {
  grid-template-columns: minmax(210px, 0.82fr) 250px minmax(430px, 1.45fr);
  gap: clamp(34px, 5vw, 68px);
  padding-top: 58px;
}

.footer-brand { gap: 10px; font-size: 22px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 13px; }
.site-footer .footer-identity > p { margin-top: 17px; font-size: 14px; line-height: 1.55; }
.footer-email { display: inline-flex; align-items: center; min-height: 34px; font-size: 13px; }
.footer-download { border-radius: 20px; }
.footer-nav-grid { gap: clamp(20px, 3vw, 42px); }
.footer-nav-col h2 { margin-bottom: 15px; color: #ffb09a; font-size: 11px; letter-spacing: 0.12em; }
.site-footer .footer-nav-col nav { gap: 9px; font-size: 13px; }
.site-footer .footer-nav-col nav a { transition: color 160ms ease, transform 160ms ease; }
.site-footer .footer-nav-col nav a:hover { color: #fff8f2; transform: translateX(3px); }
.footer-bottom { margin-top: 52px; padding-top: 20px; }
.footer-heart { margin-right: 5px; color: #ff9b82; font-size: 10px; }

.footer-brand:focus-visible,
.footer-download:focus-visible,
.footer-email:focus-visible,
.footer-cta-button:focus-visible,
.footer-nav-col a:focus-visible {
  outline: 3px solid rgba(255, 155, 130, 0.58);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .footer-primary { grid-template-columns: minmax(220px, 1fr) 260px; }
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto; min-height: 64px; padding: 8px 10px 8px 13px; }
  .nav-links { grid-column: 1 / -1; grid-row: 2; justify-self: stretch; gap: 8px; padding: 10px 0 2px; }
  .nav-links a { padding: 9px 13px; border: 1px solid rgba(29, 25, 22, 0.07); background: rgba(255, 255, 255, 0.6); }
  .nav-links a::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--green); border-color: rgba(46, 90, 70, 0.2); background: var(--mint); }
  .header-actions { grid-column: 2; grid-row: 1; }
  .menu-toggle { display: block; }
}

@media (max-width: 620px) {
  .site-header { top: 8px; width: min(100% - 28px, 1180px); margin-top: 8px; border-radius: 19px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
  .brand-word { font-size: 21px; }
  .brand-note { display: none; }
  .header-actions { gap: 6px; }
  .header-button { min-height: 40px; padding: 0 13px; font-size: 11px; }
  .header-button-label-long { display: none; }
  .header-button-label-short { display: inline; }
  .menu-toggle { width: 40px; height: 40px; }
  .footer-cta { display: block; padding: 56px 0 42px; }
  .footer-cta h2 { font-size: clamp(45px, 14vw, 64px); }
  .footer-cta-copy > p:last-child { max-width: 340px; font-size: 15px; }
  .footer-cta-button { width: 100%; margin-top: 26px; }
  .footer-primary { grid-template-columns: 1fr; gap: 30px; padding-top: 42px; }
  .footer-nav-grid { grid-column: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 20px; padding-top: 30px; border-top: 1px solid rgba(255, 248, 242, 0.18); }
  .footer-nav-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; margin-top: 38px; }
}

@media (max-width: 380px) {
  .header-button { padding-inline: 11px; }
  .footer-nav-grid { grid-template-columns: 1fr; }
  .footer-nav-col:last-child { grid-column: auto; }
}

/* Hive header and footer v2 */
.site-header {
  min-height: 74px;
  padding: 9px clamp(18px, 1.35vw, 26px);
  border-color: rgba(46, 90, 70, 0.1);
  border-radius: 25px;
  background: rgba(255, 252, 247, 0.91);
  box-shadow: 0 18px 52px rgba(67, 49, 39, 0.1);
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.brand-word {
  color: var(--green);
  font-size: 24px;
  line-height: 0.95;
}

.brand-note {
  color: var(--coral-dark);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.nav-links {
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(46, 90, 70, 0.08);
  border-radius: 999px;
  background: rgba(46, 90, 70, 0.055);
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav-links a::after { display: none; }

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 14px rgba(46, 90, 70, 0.08);
  transform: translateY(-1px);
}

.header-button {
  gap: 10px;
  min-height: 48px;
  padding: 0 9px 0 18px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(246, 113, 97, 0.25);
}

.header-button:hover {
  color: #fff;
  background: var(--coral-dark);
  box-shadow: 0 16px 32px rgba(246, 113, 97, 0.32);
}

.header-button-arrow {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 50%;
  fill: none;
  stroke: var(--coral-dark);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: #fff;
}

.site-footer {
  color: #fff;
  background: #f67161;
}

.site-footer::before {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.07), 0 0 0 58px rgba(255, 255, 255, 0.04);
}

.footer-eyebrow {
  color: #214f3e;
}

.footer-cta h2,
.footer-brand,
.footer-nav-col h2 {
  color: #fff;
}

.footer-cta-copy > p:last-child,
.site-footer .footer-identity > p,
.site-footer .footer-nav-col nav,
.site-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.84);
}

.footer-divider,
.footer-bottom,
.footer-nav-grid {
  border-color: rgba(255, 255, 255, 0.26);
}

.footer-cta-button {
  color: #fff;
  border-color: rgba(33, 79, 62, 0.2);
  background: #214f3e;
  box-shadow: 0 18px 42px rgba(111, 43, 35, 0.18);
}

.footer-cta-button:hover {
  color: #fff;
  background: #183f31;
  box-shadow: 0 22px 50px rgba(111, 43, 35, 0.24);
}

.footer-cta-button svg {
  stroke: #fff;
}

.footer-email,
.footer-nav-col h2,
.footer-heart {
  color: #214f3e;
}

.footer-email:hover,
.site-footer .footer-nav-col nav a:hover {
  color: #fff;
}

.site-footer .footer-nav-col nav a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-download,
.footer-mobile-download {
  box-shadow: 0 18px 42px rgba(111, 43, 35, 0.17);
}

.footer-brand img {
  box-shadow: 0 10px 24px rgba(111, 43, 35, 0.18);
}

.footer-brand:focus-visible,
.footer-download:focus-visible,
.footer-email:focus-visible,
.footer-cta-button:focus-visible,
.footer-nav-col a:focus-visible {
  outline-color: rgba(33, 79, 62, 0.72);
}

@media (max-width: 920px) {
  .site-header {
    min-height: 66px;
    padding-inline: 16px;
    border-radius: 22px;
  }

  .nav-links {
    padding: 10px 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-links a {
    border: 1px solid rgba(46, 90, 70, 0.08);
    background: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 620px) {
  .site-header { padding-inline: 12px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 14px; }
  .header-button { min-height: 42px; padding: 0 8px 0 13px; }
  .header-button-arrow { width: 27px; height: 27px; padding: 6px; }
  .menu-toggle { width: 42px; height: 42px; }
}

@media (max-width: 380px) {
  .header-button-arrow { display: none; }
  .header-button { padding-inline: 13px; }
}

/* Hive floating header v3 */
.site-header {
  width: min(1080px, calc(100% - 40px));
  min-height: 68px;
  margin-top: 18px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(46, 90, 70, 0.11);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.94);
  box-shadow: 0 14px 36px rgba(67, 49, 39, 0.09), 0 2px 8px rgba(67, 49, 39, 0.04);
}

.brand { gap: 9px; }

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(246, 113, 97, 0.2);
}

.brand-word {
  font-size: 22px;
  letter-spacing: -0.045em;
}

.brand-note {
  margin-top: 2px;
  color: var(--coral-dark);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.nav-links {
  gap: 2px;
  padding: 4px;
  border: 0;
  background: rgba(46, 90, 70, 0.065);
}

.nav-links a {
  padding: 8px 12px;
  color: #746e67;
  font-size: 11px;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green);
  background: #fff;
  box-shadow: 0 4px 12px rgba(46, 90, 70, 0.09);
}

.header-button {
  min-height: 44px;
  padding: 0 8px 0 16px;
  font-size: 11px;
  box-shadow: 0 9px 20px rgba(246, 113, 97, 0.22);
}

.header-button-arrow {
  width: 28px;
  height: 28px;
  padding: 6px;
}

@media (max-width: 920px) {
  .site-header {
    width: min(100% - 28px, 1080px);
    margin-top: 10px;
    padding: 8px 10px 8px 12px;
    border-radius: 22px;
  }

  .nav-links {
    margin-top: 2px;
    padding: 8px 0 2px;
    background: transparent;
  }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 24px); }
  .brand-mark { width: 40px; height: 40px; }
  .brand-word { font-size: 20px; }
  .header-button { min-height: 40px; padding: 0 7px 0 12px; }
  .header-button-arrow { width: 26px; height: 26px; }
}


/* Keep the Hive difference section aligned with the rest of the page */
.feature-section {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  scroll-margin-top: 104px;
}
.footer-cta-button {
    color: #fff;
    border-color: rgba(33, 79, 62, 0.2);
    background: #214f3e;
    box-shadow: 0 18px 42px rgba(111, 43, 35, 0.18);
    display: none;
}

@media (max-width: 620px) {
  .feature-section {
    width: min(100% - 28px, 1180px);
    scroll-margin-top: 88px;
  }
}

/* The pulsing animation */
@keyframes heartBeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}

/* The color changing animation */
@keyframes colorShift {
  0% { color: #ff4d4d; }
  33% { color: #ff9a9e; }
  66% { color: #fad0c4; }
  100% { color: #ff4d4d; }
}

.beating-heart-animation {
  display: inline-block !important; /* Required for transforms */
  animation: heartBeat 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1), 
             colorShift 3s infinite linear !important;
  text-shadow: 0 0 5px rgba(255, 77, 77, 0.5);
  cursor: default;
  user-select: none;
}


/* Animation for the Text (Wave effect) */
@keyframes wave-text {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Animation for the Text Gradient (Shine) */
@keyframes shine {
  to { background-position: 200% center; }
}

.caribbean-text-animate
 {
    display: inline-block;
    background: linear-gradient(90deg, #f67162, #2e5a47, #000000, #fef4c8, #f67162);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wave-text 3s ease-in-out infinite, shine 4s linear infinite;
}