:root {
  --coral: #ff6a4a;
  --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: #ff4b2b; /* 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, 5vw, 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: 16px;
  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, 2vw, 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, 1.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: 15px;
  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  deskto only*/
@media (min-width: 921px) {
	
	/* 1. Define the dimming animation */
@keyframes dim-on-scroll {
  from { opacity: 1; }
  to { opacity: 0.1; } /* Becomes light like the background */
}

/* 2. Attach the animation to the scroll progress */
nav#primary-navigation {
  transition: opacity 0.3s ease; /* Smooth transition for hover */
  
  /* Modern browsers: animate based on scroll */
  animation: dim-on-scroll linear both;
  animation-timeline: scroll(root);
  animation-range: 0px 300px; /* Fully dimmed after 300px */
}

/* 3. Force full opacity on hover */
nav#primary-navigation:hover {
  animation: none; /* Disable scroll animation during hover */
  opacity: 1 !important;
}
	
  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: 20px 0;
    
    /* 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: 100%;
    background-color: #fbf6ef;
        padding: 10px 20px;
        border-bottom: 2px solid #ff6a4a9c;
 
  }
  
  /* 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: 55%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    margin-left: 38em;
    top: 9em;
}

.local-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #2e5a46 0%, #2e5a4669 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, 90px) 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 #ff6a4a91;
  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: #ff6a4a; /* 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: #ff4b2b; }

/* 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% - 61vw);
  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: var(--green);
  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: 32%;
    height: 112%;
    object-fit: cover;
    object-position: center;
    margin-left: 40em;
    top: 5em;
}

.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-page-image {
    height: 88%;
    margin-left: 0em;
	width: 100%;
}

  .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;
  }
}
