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

* {
  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;
}

.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: 16px 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: 24px;
  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: 700;
}

.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: 950;
  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: 700;
}


.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(52px, 16vw, 74px);
  }

  .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, 13vw, 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: 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 #ff6a4a;
 
  }
  
  /* 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;}
