:root {
  --cream: #f7f1e6;
  --cream-strong: #e8dcc8;
  --charcoal: #24211d;
  --ink: #24211d;
  --muted: #696056;
  --navy: #4f5f48;
  --sage: #8d9a7a;
  --eucalyptus: #5f6b55;
  --gold: #c98463;
  --red: #a65f46;
  --pink: #c98463;
  --cobalt: #5f6b55;
  --grey: #eee6d8;
  --white: #fffdf8;
  --paper: #f7f1e6;
  --parchment: #e8dcc8;
  --olive: #5f6b55;
  --clay: #c98463;
  --terracotta: #a65f46;
  --border: rgba(36, 33, 29, 0.14);
  --shadow: 0 18px 46px rgba(36, 33, 29, 0.13);
  --shadow-soft: 0 10px 28px rgba(36, 33, 29, 0.1);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 132, 99, 0.13), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(141, 154, 122, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(36, 33, 29, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 33, 29, 0.02) 1px, transparent 1px),
    var(--cream);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--olive);
  border-radius: 6px;
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  background: rgba(247, 241, 230, 0.9);
  border-bottom: 1px solid rgba(32, 33, 36, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--charcoal);
  text-decoration: none;
}

.brand-logo-frame {
  display: block;
  flex: 0 0 auto;
  width: clamp(240px, 22vw, 286px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.08);
}

.brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  color: var(--cream);
  background: var(--cream);
  border: 1px solid rgba(36, 33, 29, 0.18);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(36, 33, 29, 0.08);
  font-weight: 800;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
}

.nav-panel a,
.footer-links a,
.legal-links a {
  color: rgba(32, 33, 36, 0.76);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-panel a:hover,
.footer-links a:hover,
.legal-links a:hover,
.text-link:hover,
.product-tile a:hover {
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  border-radius: 6px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(166, 95, 70, 0.42);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.88rem;
}

.button-secondary {
  color: var(--charcoal);
  background: var(--cream);
  border-color: rgba(32, 33, 36, 0.22);
}

.button-card {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
}

.card-career .button-card {
  background: #35445b;
  border-color: #35445b;
}

.card-native .button-card {
  background: var(--olive);
  border-color: var(--olive);
}

.card-cherry .button-card {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.button-light {
  color: var(--olive);
  background: var(--cream);
  border-color: var(--cream);
}

.button-ghost-light {
  color: var(--cream);
  background: transparent;
  border-color: rgba(255, 247, 234, 0.45);
}


.section-heading:before {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--terracotta), var(--sage));
  border-radius: 999px;
}

.collection-card,
.career-card,
.city-card,
.steps-grid article,
.faq-list details,
.detail-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.46), rgba(232,220,200,0.22)),
    rgba(255, 253, 248, 0.74);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  align-items: center;
  gap: 56px;
  padding: 74px 0 66px;
}

.hero-copy h1,
.section-heading h2,
.feature-copy h2,
.split-heading h2,
.about-panel h2,
.launch-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 760;
  line-height: 0.97;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy,
.feature-copy,
.launch-copy,
.split-heading > *,
.page-hero > *,
.about-panel > *,
.launch-panel > * {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 690px;
  font-size: 4.12rem;
}

.hero-brand-card {
  width: min(340px, 100%);
  margin: 0 0 22px;
  padding: 10px 12px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(232, 220, 200, 0.38)),
    var(--cream);
  border: 1px solid rgba(36, 33, 29, 0.14);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(36, 33, 29, 0.07);
}

.hero-brand-card img {
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 830;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(32, 33, 36, 0.78);
  font-size: 1.12rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.trust-strip li {
  padding: 10px 12px;
  color: rgba(32, 33, 36, 0.78);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(32, 33, 36, 0.11);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.hero-visual:before {
  content: "";
  position: absolute;
  left: 38px;
  right: 36px;
  top: 106px;
  height: 340px;
  background:
    linear-gradient(135deg, rgba(247, 241, 230, 0.9), rgba(232, 220, 200, 0.58)),
    linear-gradient(90deg, rgba(36, 33, 29, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 33, 29, 0.03) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  border: 1px solid rgba(36, 33, 29, 0.1);
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(36, 33, 29, 0.08);
  transform: rotate(-2deg);
  z-index: -1;
}

.collage-feature-label {
  position: absolute;
  top: 24px;
  right: 118px;
  z-index: 8;
  padding: 8px 12px;
  color: var(--cream);
  background: var(--charcoal);
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(36, 33, 29, 0.12);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collage-card {
  position: absolute;
  padding: 10px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(36, 33, 29, 0.13);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(36, 33, 29, 0.1);
}

.collage-guide {
  left: 18px;
  bottom: 52px;
  width: 210px;
  transform: rotate(-3deg);
  z-index: 3;
}

.collage-sheet {
  left: 132px;
  bottom: 150px;
  width: 292px;
  transform: rotate(-1deg);
  z-index: 7;
}

.collage-cv {
  left: 290px;
  top: 62px;
  width: 192px;
  transform: rotate(2deg);
  z-index: 5;
}

.collage-botanical {
  right: 96px;
  bottom: 34px;
  width: 198px;
  transform: rotate(2deg);
  z-index: 2;
}

.collage-cherry {
  right: 4px;
  top: 132px;
  width: 170px;
  transform: rotate(4deg);
  z-index: 6;
}

.collage-art-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(247, 241, 230, 0.66)),
    var(--white);
}

.collage-art-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.collage-art-card figcaption {
  display: grid;
  gap: 2px;
  padding: 0 4px 4px;
}

.collage-art-card strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 0.98;
}

.collage-art-card span {
  color: rgba(32, 33, 36, 0.64);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.collage-perth-feature {
  right: 110px;
  bottom: 20px;
  width: 230px;
  transform: rotate(2deg);
  z-index: 4;
}

.collage-perth-feature img {
  height: 312px;
  object-position: center top;
}

.collage-perth-feature:after {
  content: "";
  position: absolute;
  inset: 18px 18px 78px;
  border: 1px solid rgba(201, 132, 99, 0.42);
  border-radius: 6px;
  pointer-events: none;
}

.collage-cherry-feature {
  top: 72px;
  right: 2px;
  width: 218px;
  transform: rotate(4deg);
  z-index: 8;
}

.collage-cherry-feature img {
  height: 318px;
  object-position: center top;
}

.collage-cherry-feature figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 138px;
  padding: 9px 10px;
  background: rgba(255, 242, 223, 0.9);
  border: 1px solid rgba(23, 17, 13, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(23, 17, 13, 0.12);
}

.collage-cherry-feature strong {
  color: #e11927;
  font-size: 1.38rem;
  text-shadow: 0 2px 0 #fff2df, 2px 4px 0 rgba(6, 72, 173, 0.24);
}

.collage-cherry-feature span {
  color: #0648ad;
}

.guide-cover,
.botanical-poster,
.cherry-poster,
.document-mock,
.spreadsheet-mock,
.letter-mock {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.guide-cover {
  min-height: 278px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.guide-cover span,
.guide-cover small,
.botanical-poster strong,
.cherry-poster strong {
  position: relative;
  z-index: 2;
}

.guide-cover span,
.guide-cover small {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-cover strong {
  position: relative;
  z-index: 2;
  max-width: 8ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 0.96;
}

.cover-navy {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(95, 127, 104, 0.42), transparent 46%),
    var(--navy);
}

.cover-cream {
  min-height: 190px;
  color: var(--olive);
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.36), transparent 54%),
    var(--cream);
  border: 1px solid rgba(31, 42, 68, 0.18);
}

.cover-gold {
  min-height: 190px;
  color: var(--olive);
  background:
    linear-gradient(135deg, rgba(255, 247, 234, 0.86), transparent 42%),
    var(--clay);
}

.spreadsheet-mock {
  min-height: 215px;
  padding: 16px;
  color: var(--olive);
  background: #fffdf8;
  border: 1px solid rgba(31, 42, 68, 0.12);
}

.spreadsheet-mock.small {
  min-height: 168px;
  padding: 12px;
}

.sheet-bar {
  width: 46%;
  height: 12px;
  margin-bottom: 14px;
  background: var(--sage);
  border-radius: 3px;
}

.sheet-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 6px;
  border-top: 1px solid rgba(31, 42, 68, 0.1);
}

.sheet-row span {
  display: block;
  min-height: 28px;
  padding: 6px 7px;
  font-size: 0.77rem;
  font-weight: 720;
  border-left: 1px solid rgba(31, 42, 68, 0.09);
}

.sheet-row span:first-child {
  border-left: 0;
}

.sheet-head {
  color: var(--white);
  background: var(--olive);
  border-radius: 4px 4px 0 0;
}

.sheet-head span {
  border-color: rgba(255, 255, 255, 0.12);
}

.good {
  color: var(--olive);
}

.gold {
  color: #9a6a08;
}

.document-mock {
  min-height: 248px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(31, 42, 68, 0.12);
}

.document-mock.large {
  min-height: 300px;
}

.doc-name {
  width: 52%;
  height: 18px;
  margin-bottom: 18px;
  background: var(--olive);
  border-radius: 3px;
}

.doc-line {
  height: 8px;
  margin: 10px 0;
  background: #ddd2c1;
  border-radius: 3px;
}

.doc-line.wide {
  width: 100%;
}

.doc-line.medium {
  width: 72%;
}

.doc-line.short {
  width: 48%;
}

.doc-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.doc-columns span {
  height: 46px;
  background: #edf1f6;
  border: 1px solid #d9e0ea;
  border-radius: 4px;
}

.botanical-poster {
  min-height: 258px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  color: var(--olive);
  background: var(--cream);
  border: 1px solid rgba(32, 33, 36, 0.12);
}

.botanical-poster.tall {
  min-height: 380px;
}

.botanical-poster strong {
  max-width: 10ch;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
  text-align: center;
}

.botanical-poster:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(31, 42, 68, 0.18);
  border-radius: 5px;
}

.flower {
  position: absolute;
  border-radius: 50% 50% 46% 54%;
}

.flower-one {
  top: 42px;
  left: 44px;
  width: 54px;
  height: 102px;
  background: var(--terracotta);
  transform: rotate(32deg);
}

.flower-two {
  top: 78px;
  right: 32px;
  width: 70px;
  height: 132px;
  background: var(--sage);
  transform: rotate(-22deg);
}

.flower-three {
  top: 54px;
  right: 40px;
  width: 86px;
  height: 86px;
  background: var(--clay);
  box-shadow: -18px 26px 0 rgba(217, 164, 65, 0.58);
}

.flower-four {
  top: 42px;
  left: 54px;
  width: 92px;
  height: 132px;
  background: #c58d3c;
  border-radius: 48% 48% 18% 18%;
  transform: rotate(-14deg);
}

.botanical-brisbane {
  background: #fff2cc;
}

.botanical-byron {
  background: #eef3df;
}

.cherry-poster {
  min-height: 226px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 72% 24%, rgba(166, 95, 70, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(141, 154, 122, 0.22), transparent 42%),
    var(--parchment);
  border: 1px solid rgba(36, 33, 29, 0.14);
}

.cherry-poster.tall {
  min-height: 390px;
}

.cherry-poster strong {
  max-width: 9ch;
  padding: 8px 10px;
  color: var(--charcoal);
  background: rgba(247, 241, 230, 0.88);
  border: 1px solid rgba(36, 33, 29, 0.22);
  border-radius: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 0.98;
  text-align: center;
}

.checker {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 82px;
  height: 82px;
  background:
    linear-gradient(45deg, rgba(247, 241, 230, 0.82) 25%, transparent 25% 75%, rgba(247, 241, 230, 0.82) 75%),
    linear-gradient(45deg, rgba(247, 241, 230, 0.82) 25%, transparent 25% 75%, rgba(247, 241, 230, 0.82) 75%);
  background-color: rgba(166, 95, 70, 0.72);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  border: 1px solid rgba(36, 33, 29, 0.16);
  transform: rotate(-8deg);
}

.cherry-pair {
  position: absolute;
  top: 66px;
  right: 34px;
  width: 52px;
  height: 52px;
  background: var(--terracotta);
  border-radius: 50%;
  box-shadow: -44px 18px 0 var(--terracotta), -18px -54px 0 -20px var(--cream);
  opacity: 0.86;
}

.cherry-pair:before,
.cherry-pair:after {
  content: "";
  position: absolute;
  width: 46px;
  height: 56px;
  border: 2px solid rgba(36, 33, 29, 0.48);
  border-bottom: 0;
  border-left: 0;
  border-radius: 50%;
}

.cherry-pair:before {
  top: -47px;
  left: -16px;
  transform: rotate(-22deg);
}

.cherry-pair:after {
  top: -40px;
  left: -44px;
  transform: rotate(18deg);
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.feature-copy h2,
.split-heading h2,
.about-panel h2,
.launch-copy h2 {
  font-size: 3rem;
}

.section-heading p,
.split-heading p,
.feature-copy p,
.about-panel p,
.launch-copy p {
  color: rgba(32, 33, 36, 0.72);
  font-size: 1.05rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.collection-card,
.career-card,
.city-card,
.steps-grid article,
.faq-list details {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.collection-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 33, 36, 0.22);
  box-shadow: var(--shadow-soft);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 9px;
  color: var(--olive);
  background: rgba(255, 247, 234, 0.82);
  border: 1px solid rgba(32, 33, 36, 0.13);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.status.dark {
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
}

.card-accent {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.card-property .card-accent {
  background: var(--olive);
}

.card-career .card-accent {
  background: #718096;
}

.card-native .card-accent {
  background: var(--olive);
}

.card-cherry .card-accent {
  background: var(--clay);
  box-shadow: -6px 6px 0 rgba(166, 95, 70, 0.42), 6px -6px 0 rgba(141, 154, 122, 0.42);
}

.collection-card h3,
.product-tile h3,
.career-card h3,
.steps-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.15;
}

.collection-card p,
.product-tile p,
.career-card p,
.city-card p,
.steps-grid p,
.faq-list p {
  color: rgba(32, 33, 36, 0.72);
}

.collection-card ul,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 24px;
  list-style: none;
}

.collection-card li,
.check-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(32, 33, 36, 0.78);
  font-size: 0.92rem;
}

.collection-card li:before,
.check-list li:before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
}

.text-link,
.product-tile a,
.tile-cta {
  margin-top: auto;
  color: var(--olive);
  font-weight: 830;
  text-decoration: none;
}

.tile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 9px 12px;
  margin-top: 12px;
  color: var(--white);
  background: var(--olive);
  border: 1px solid var(--navy);
  border-radius: 6px;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.tile-cta:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.buy-link[data-placeholder="true"] {
  cursor: pointer;
}

.property-section {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255, 247, 234, 0.05) 1px, transparent 1px),
    var(--navy);
  background-size: 48px 48px, auto;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 48px;
  align-items: start;
}

.feature-copy.inverse h2,
.feature-copy.inverse p {
  color: var(--cream);
}

.feature-copy .eyebrow {
  color: #f5c969;
}

.disclaimer {
  padding: 14px 16px;
  background: rgba(255, 247, 234, 0.1);
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: 6px;
}

.product-stack {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-tile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 247, 234, 0.94);
  border: 1px solid rgba(255, 247, 234, 0.18);
  border-radius: var(--radius);
}

.tile-visual {
  min-width: 0;
  width: 100%;
}

.product-tile .tile-visual .guide-cover,
.product-tile .tile-visual .spreadsheet-mock {
  min-height: 230px;
}

.product-tile .tile-cta,
.career-card .tile-cta,
.city-card .tile-cta,
.product-tile .tile-cta:visited,
.career-card .tile-cta:visited,
.city-card .tile-cta:visited {
  width: 100%;
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
  text-align: center;
}

.product-tile .tile-cta:hover,
.career-card .tile-cta:hover,
.city-card .tile-cta:hover {
  color: var(--white);
}

.property-tile h3,
.property-tile p {
  color: var(--olive);
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.mini-feature-grid span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--cream);
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 750;
  text-align: center;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.career-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.career-card h3 {
  margin-top: 14px;
}

.career-card .status {
  width: fit-content;
  margin-top: 2px;
  margin-bottom: 14px;
}

.career-card p {
  min-height: 3.2em;
}

.career-card .check-list {
  min-height: 7.2em;
}

.career-card .tile-cta,
.career-card .button {
  margin-top: auto;
}

.document-preview {
  min-height: 350px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #e7edf5;
  border: 1px solid rgba(31, 42, 68, 0.1);
  border-radius: 6px;
}

.document-preview.blue {
  background: #dce7f2;
}

.letter-mock {
  width: 78%;
  min-height: 300px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(31, 42, 68, 0.14);
  box-shadow: 10px 10px 0 rgba(31, 42, 68, 0.08);
}

.letter-mock span {
  display: block;
  height: 10px;
  margin: 14px 0;
  background: #ddd2c1;
  border-radius: 3px;
}

.letter-mock span:first-child {
  width: 58%;
  height: 20px;
  margin-bottom: 28px;
  background: var(--olive);
}

.letter-mock span:nth-child(3) {
  width: 82%;
}

.letter-mock span:nth-child(4) {
  width: 66%;
}

.bundle-card {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.72);
}

.bundle-card h3,
.bundle-card p,
.bundle-card li {
  color: rgba(32, 33, 36, 0.72);
}

.bundle-card h3 {
  color: var(--ink);
}

.bundle-card .button-secondary {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
}

.art-section {
  background: var(--grey);
}

.native-wrap,
.cherry-wrap {
  padding-top: 16px;
}

.cherry-wrap {
  margin-top: 64px;
}

.subsection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.subsection-heading h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.subsection-heading p {
  max-width: 520px;
  margin: 0;
  color: rgba(32, 33, 36, 0.7);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.city-card {
  display: flex;
  flex-direction: column;
  padding: 14px;
}

.city-card h4 {
  margin: 16px 0 6px;
  font-size: 1.1rem;
}

.city-card p {
  margin: 0 0 10px;
}

.city-card > span {
  color: var(--olive);
  font-weight: 820;
}

.city-card .tile-cta {
  margin-top: 16px;
}

.cherry-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.cherry-feature {
  padding: 14px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cherry-name-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cherry-name-grid span {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--charcoal);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.36), rgba(232, 220, 200, 0.18)),
    rgba(201, 132, 99, 0.28);
  border: 1px solid rgba(36, 33, 29, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(36, 33, 29, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.cherry-name-grid span:nth-child(2n) {
  color: var(--charcoal);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.36), rgba(232, 220, 200, 0.18)),
    rgba(141, 154, 122, 0.26);
  box-shadow: 0 10px 22px rgba(36, 33, 29, 0.07);
}

.cherry-name-grid span:nth-child(3n) {
  color: var(--charcoal);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.54), rgba(232, 220, 200, 0.22)),
    rgba(247, 241, 230, 0.88);
  box-shadow: 0 10px 22px rgba(36, 33, 29, 0.07);
}

.how-section {
  border-bottom: 1px solid rgba(32, 33, 36, 0.1);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps-grid article {
  padding: 24px;
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--cream);
  background: var(--olive);
  border-radius: 8px;
  font-weight: 820;
}

.about-section {
  padding: 0;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(320px, 1fr);
  gap: 50px;
  padding: 58px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy p {
  margin: 0;
}

.launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.78fr);
  gap: 42px;
  padding: 42px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.launch-copy h2,
.launch-copy p {
  color: var(--white);
}

.launch-copy .eyebrow {
  color: #ff9fcc;
}

.launch-form {
  padding: 22px;
  background: var(--cream);
  border-radius: var(--radius);
}

.launch-form label,
.launch-form legend {
  color: var(--charcoal);
  font-weight: 780;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 8px;
}

.launch-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(32, 33, 36, 0.22);
  border-radius: 6px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.launch-form fieldset {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(32, 33, 36, 0.14);
}

.launch-form fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(32, 33, 36, 0.78);
  font-weight: 680;
}

.launch-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--terracotta);
}

.consent-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(32, 33, 36, 0.78);
  font: inherit;
  font-weight: 680;
  line-height: 1.5;
}

.consent-check span {
  font: inherit;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(32, 33, 36, 0.66);
  font-size: 0.86rem;
  line-height: 1.4;
}

.form-note a {
  color: var(--terracotta);
  font-weight: 760;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--olive);
  font-size: 0.92rem;
  font-weight: 730;
}

.form-status[data-state="error"] {
  color: var(--terracotta);
}

.form-status[data-state="pending"] {
  color: var(--charcoal);
}

.launch-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-link-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: 58px;
  padding-bottom: 58px;
  border-top: 1px solid rgba(32, 33, 36, 0.1);
}

.faq-link-copy {
  max-width: 640px;
}

.faq-link-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.04;
}

.faq-link-copy p:last-child {
  margin-bottom: 0;
  color: rgba(32, 33, 36, 0.72);
  font-size: 1.02rem;
}

.faq-link-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.legal-section {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(36, 33, 29, 0.08);
}

.legal-section a {
  color: var(--terracotta);
  font-weight: 800;
}

.legal-page .page-hero {
  align-items: center;
}

.legal-page .page-hero > *,
.policy-layout > * {
  min-width: 0;
}

.legal-summary {
  align-self: center;
  width: 100%;
  max-width: 430px;
  padding: 22px 24px;
  color: var(--charcoal);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 241, 230, 0.84)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(36, 33, 29, 0.14);
  border-left: 6px solid var(--olive);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(36, 33, 29, 0.08);
}

.legal-summary span {
  color: rgba(32, 33, 36, 0.58);
  font-size: 0.78rem;
  font-weight: 830;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-summary strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  line-height: 1.05;
}

.legal-summary p {
  margin: 0;
  color: rgba(32, 33, 36, 0.76);
  font-size: 0.96rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.policy-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  min-width: 0;
  padding: 22px;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.policy-aside p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.policy-content {
  display: grid;
  gap: 28px;
}

.policy-content article {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(36, 33, 29, 0.12);
}

.policy-content article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-content h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.12;
}

.policy-content p {
  margin: 0;
  color: rgba(32, 33, 36, 0.76);
  font-size: 1.03rem;
}

.policy-content p + p {
  margin-top: 14px;
}

.policy-content a {
  color: var(--terracotta);
  font-weight: 800;
}

.policy-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(32, 33, 36, 0.76);
}

.policy-list li:before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}

.policy-list + p {
  margin-top: 16px;
}

.faq-list details {
  padding: 0 18px;
}

.faq-page-list {
  width: 100%;
  max-width: none;
  margin: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-weight: 780;
}

.faq-list p {
  margin: 0;
  padding: 0 0 18px;
}

.site-footer {
  padding: 48px 0 26px;
  color: rgba(255, 247, 234, 0.78);
  background: var(--olive);
}

.mobile-action-bar {
  display: none;
}

.site-footer .brand,
.site-footer .brand small,
.site-footer .footer-links a,
.site-footer .legal-links a,
.footer-contact {
  color: rgba(255, 247, 234, 0.82);
}

.footer-brand {
  width: fit-content;
}

.footer-brand .brand-logo-frame {
  width: 310px;
  max-width: 100%;
  padding: 8px 10px;
  background: rgba(255, 247, 234, 0.96);
  border-radius: 6px;
}

.site-footer .brand-mark {
  color: var(--olive);
  background: var(--cream);
}

.footer-contact {
  max-width: 430px;
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.footer-contact a {
  color: var(--cream);
  font-weight: 800;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 42px;
  align-items: start;
}

.footer-links,
.legal-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 247, 234, 0.16);
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 3.6rem;
  }

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

  .collage-cv {
    left: 344px;
  }

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

  .feature-layout,
  .split-heading,
  .launch-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin-right: 14px;
    margin-left: 14px;
  }

  .nav {
    gap: 12px;
  }

  .brand-logo-frame {
    width: 230px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    margin-left: 0;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-panel {
    display: flex;
  }

  .nav-panel a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(32, 33, 36, 0.08);
  }

  .nav-panel a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 52px 0 46px;
  }

  .hero-copy h1,
  .section-heading h2,
  .feature-copy h2,
  .split-heading h2,
  .about-panel h2,
  .launch-copy h2 {
    font-size: 2.8rem;
  }

  .hero-lede {
    font-size: 1.06rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .city-grid,
  .career-grid,
  .steps-grid,
  .product-stack,
  .cherry-layout,
  .faq-link-section {
    grid-template-columns: 1fr;
  }

  .faq-link-actions {
    justify-content: flex-start;
  }

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

  .about-panel {
    grid-template-columns: 1fr;
    padding: 32px;
  }

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

@media (max-width: 640px) {
  .shell {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }

  .brand-logo-frame {
    width: min(190px, calc(100vw - 112px));
  }

  .footer-brand .brand-logo-frame {
    width: 260px;
    max-width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .hero-copy h1,
  .section-heading h2,
  .feature-copy h2,
  .split-heading h2,
  .about-panel h2,
  .launch-copy h2 {
    font-size: 1.8rem;
    line-height: 1.02;
  }

  .hero-actions,
  .section-actions,
  .form-row,
  .footer-bottom {
    flex-direction: column;
  }

  .hero-actions .button,
  .section-actions .button,
  .form-row .button {
    width: 100%;
    max-width: 100%;
  }

  .form-row {
    display: flex;
  }

  .trust-strip,
  .collection-grid,
  .mini-feature-grid,
  .cherry-name-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-actions,
  .trust-strip,
  .hero-lede {
    width: min(100%, 350px);
    max-width: 350px;
  }

  .hero-copy h1 {
    max-width: 16ch;
    text-wrap: balance;
  }

  .hero .eyebrow {
    max-width: 32ch;
    line-height: 1.35;
  }

  .hero-visual {
    min-height: 760px;
  }

  .hero-visual:before {
    display: none;
  }

  .collage-feature-label {
    position: relative;
    inset: auto;
    width: fit-content;
    margin: 0 auto 14px;
  }

  .collage-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: min(280px, calc(100vw - 110px));
    margin: 0 auto 14px;
    transform: none;
  }

  .collage-perth-feature img,
  .collage-cherry-feature img {
    height: 340px;
  }

  .collage-cherry-feature figcaption {
    right: 14px;
    bottom: 14px;
  }

  .product-tile {
    grid-template-columns: 1fr;
  }

  .tile-visual {
    max-width: 260px;
  }

  .subsection-heading {
    display: block;
  }

  .subsection-heading p {
    margin-top: 10px;
  }

  .launch-panel {
    padding: 24px;
  }

  .launch-form {
    padding: 18px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 14;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 247, 234, 0.92);
    border: 1px solid rgba(32, 33, 36, 0.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-quick-actions-visible .mobile-action-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--charcoal);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 780;
    text-decoration: none;
  }

  .mobile-action-bar a:nth-child(2) {
    color: var(--charcoal);
    background: var(--cream);
    border: 1px solid rgba(32, 33, 36, 0.18);
  }
}

/* Added product imagery and showcase pages */
.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 4px 0 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(32, 33, 36, 0.12);
  border-radius: 8px;
}

.card-image img,
.feature-image-panel img,
.wide-showcase img,
.art-showcase-grid img,
.page-hero-image img,
.product-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image-panel {
  overflow: hidden;
  margin: 0 0 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.wide-showcase,
.art-showcase-grid img,
.product-visual-card,
.page-hero-image {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.wide-showcase {
  aspect-ratio: 16 / 7;
  margin: 0 0 28px;
}

.art-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 42px;
}

.art-showcase-grid img {
  aspect-ratio: 4 / 3;
}

.subpage-main {
  padding-top: 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 52px;
  align-items: center;
  padding: 72px 0 58px;
}

.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.2rem;
  line-height: 0.98;
}

.page-hero p {
  max-width: 660px;
  color: rgba(32, 33, 36, 0.78);
  font-size: 1.12rem;
}

.page-hero .legal-summary p {
  max-width: none;
  color: rgba(32, 33, 36, 0.76);
  font-size: 0.96rem;
}

.page-hero-image {
  aspect-ratio: 4 / 3;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.detail-card h3,
.detail-card h4 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

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

.detail-card .tile-cta {
  margin-top: auto;
}

#native-prints .detail-card p {
  min-height: 4.8em;
}

#native-prints .detail-card .tile-cta {
  margin-top: auto;
}

.purchase-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(32, 33, 36, 0.72);
  font-size: 0.95rem;
}

.purchase-note a {
  color: var(--terracotta);
  font-weight: 800;
}

.page-band .purchase-note {
  color: rgba(255, 247, 234, 0.84);
}

.page-band .purchase-note a {
  color: var(--cream);
}

.product-visual-card {
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}

.career-card .product-visual-card {
  flex: 0 0 auto;
  margin-bottom: 14px;
}

.page-band {
  background: var(--olive);
  color: var(--cream);
}

.page-band h2,
.page-band h3,
.page-band p {
  color: inherit;
}

.page-band .detail-card {
  color: var(--charcoal);
}

.check-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-columns li {
  padding: 12px 14px;
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 700;
}

.page-nav-note {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.page-nav-note a {
  padding: 8px 10px;
  color: var(--charcoal);
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .page-hero h1 {
    font-size: 3.4rem;
  }

  .page-hero,
  .detail-grid,
  .art-showcase-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: static;
  }

  .wide-showcase {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 42px 0;
  }

  .page-hero h1 {
    font-size: 2.1rem;
  }

  .legal-summary {
    min-height: auto;
    padding: 24px;
  }

  .check-columns {
    grid-template-columns: 1fr;
  }
}

/* Pop retro cherry print wall */
.cherry-showcase {
  --cherry-red: #e11927;
  --cherry-deep-red: #9d1018;
  --cherry-pink: #ff6fa3;
  --cherry-hot-pink: #f53d85;
  --cherry-blue: #0648ad;
  --cherry-cream: #fff2df;
  --cherry-gold: #ffc65a;
  --cherry-ink: #17110d;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.42fr);
  gap: 22px;
  align-items: stretch;
  margin: 26px 0 0;
}

.cherry-lookbook {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 0;
}

.cherry-lookbook img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  background: var(--cherry-cream);
  border: 2px solid rgba(23, 17, 13, 0.16);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--cherry-blue), 0 22px 44px rgba(36, 33, 29, 0.14);
}

.cherry-lookbook figcaption {
  max-width: 38ch;
  margin: 0;
  color: rgba(32, 33, 36, 0.72);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.35;
}

.cherry-print-wall {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  overflow: hidden;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 246, 232, 0.96), rgba(255, 253, 248, 0.88)) padding-box,
    repeating-linear-gradient(
      90deg,
      var(--cherry-blue) 0 24px,
      var(--cherry-blue) 24px 48px,
      var(--cherry-cream) 48px 72px,
      var(--cherry-red) 72px 96px
    ) border-box;
  border: 3px solid transparent;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(23, 17, 13, 0.1), 0 22px 42px rgba(36, 33, 29, 0.14);
}

.cherry-print-wall:before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 22%, rgba(6, 72, 173, 0.1) 0 7px, transparent 8px),
    radial-gradient(circle at 82% 18%, rgba(245, 61, 133, 0.14) 0 8px, transparent 9px),
    radial-gradient(circle at 82% 78%, rgba(255, 198, 90, 0.16) 0 12px, transparent 13px),
    linear-gradient(90deg, rgba(23, 17, 13, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 17, 13, 0.045) 1px, transparent 1px);
  background-size: auto, auto, auto, 34px 34px, 34px 34px;
  border-radius: 8px;
}

.retro-print {
  position: relative;
  isolation: isolate;
  grid-column: span 4;
  min-height: 216px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  padding: 18px;
  color: var(--cherry-ink);
  background: var(--cherry-cream);
  border: 4px solid rgba(255, 242, 223, 0.96);
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(23, 17, 13, 0.18), 0 16px 28px rgba(36, 33, 29, 0.14);
  transform: rotate(var(--poster-tilt, 0deg));
}

.retro-print > * {
  position: relative;
  z-index: 3;
}

.retro-print:before,
.retro-print:after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.print-kicker {
  display: none;
}

.retro-print strong {
  max-width: 8.5ch;
  margin: 0;
  color: var(--cherry-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 1.85vw, 2.35rem);
  font-weight: 900;
  line-height: 0.88;
  overflow-wrap: break-word;
  text-shadow: 0 2px 0 var(--cherry-cream), 2px 4px 0 rgba(6, 72, 173, 0.24);
}

.retro-print small {
  max-width: 18ch;
  margin-top: 12px;
  color: rgba(23, 17, 13, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.poster-cherries {
  position: absolute;
  right: 10px;
  bottom: 42px;
  z-index: 2;
  width: 112px;
  height: 94px;
  transform: scale(var(--cherry-scale, 0.82)) rotate(var(--cherry-tilt, 0deg));
  transform-origin: right bottom;
}

.poster-cherries:before,
.poster-cherries:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 46px;
  height: 46px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.96) 0 11%, transparent 12%),
    radial-gradient(circle at 38% 28%, #ff5b64 0 17%, transparent 18%),
    linear-gradient(145deg, var(--cherry-red), var(--cherry-deep-red));
  border: 2px solid rgba(23, 17, 13, 0.76);
  border-radius: 50%;
  box-shadow: inset -7px -9px 0 rgba(96, 0, 8, 0.18);
}

.poster-cherries:before {
  left: 12px;
}

.poster-cherries:after {
  right: 8px;
  bottom: 10px;
}

.poster-cherries i,
.poster-cherries i:before {
  position: absolute;
  z-index: -1;
  display: block;
  width: 48px;
  height: 56px;
  border-top: 3px solid var(--cherry-ink);
  border-right: 3px solid var(--cherry-ink);
  border-radius: 50%;
}

.poster-cherries i {
  top: 9px;
  left: 44px;
  transform: rotate(-24deg);
}

.poster-cherries i:before {
  content: "";
  top: 4px;
  left: -34px;
  transform: rotate(38deg);
}

.poster-cherries i:after {
  content: "";
  position: absolute;
  top: -6px;
  right: -28px;
  width: 42px;
  height: 24px;
  background: var(--cherry-blue);
  border: 2px solid var(--cherry-ink);
  border-radius: 100% 0 100% 0;
  transform: rotate(-16deg);
}

.print-disco {
  --poster-tilt: -0.35deg;
  --cherry-scale: 0.9;
  grid-column: span 8;
  min-height: 238px;
  aspect-ratio: 2.05 / 1;
  color: var(--cherry-cream);
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.96) 0 2px, transparent 3px),
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.96) 0 2px, transparent 3px),
    linear-gradient(0deg, rgba(6, 72, 173, 0.96) 0 30%, transparent 30%),
    linear-gradient(135deg, #8d0042, var(--cherry-hot-pink) 48%, var(--cherry-red));
}

.print-disco:before {
  right: 22px;
  top: 22px;
  width: 72px;
  height: 72px;
  background:
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(255, 255, 255, 0.72) 10px 12px),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(255, 255, 255, 0.72) 10px 12px),
    radial-gradient(circle at 34% 28%, #fff 0 9%, #d8d8d8 10% 34%, #4b4b4b 35% 100%);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.72);
}

.print-disco:after {
  inset: auto 0 0;
  height: 38%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 28px 22px;
}

.print-disco strong {
  color: var(--cherry-cream);
  font-size: clamp(2.3rem, 3.4vw, 3.55rem);
  text-shadow: 0 3px 0 var(--cherry-blue), 3px 6px 0 rgba(23, 17, 13, 0.34);
}

.print-disco small,
.print-disco .print-kicker {
  color: var(--cherry-cream);
}

.print-disco .print-kicker {
  background: rgba(23, 17, 13, 0.32);
  border-color: rgba(255, 242, 223, 0.34);
}

.print-disco .poster-cherries {
  right: 108px;
  bottom: 22px;
}

.print-pop {
  --poster-tilt: 0.5deg;
  background:
    radial-gradient(circle at 18% 20%, var(--cherry-blue) 0 6px, transparent 7px),
    radial-gradient(circle at 86% 24%, var(--cherry-hot-pink) 0 5px, transparent 6px),
    var(--cherry-cream);
}

.print-pop:before {
  inset: 36px 14px 50px;
  z-index: 0;
  background: #ffffff;
  clip-path: polygon(50% 0, 61% 24%, 88% 8%, 75% 35%, 100% 48%, 73% 57%, 88% 90%, 58% 73%, 47% 100%, 38% 72%, 7% 90%, 22% 58%, 0 47%, 24% 35%, 8% 7%, 39% 24%);
  filter: drop-shadow(0 0 0 var(--cherry-ink));
}

.print-pop strong {
  color: var(--cherry-blue);
  text-shadow: 0 2px 0 var(--cherry-cream), 3px 4px 0 var(--cherry-red);
}

.print-club {
  --poster-tilt: -0.25deg;
  --cherry-scale: 0.54;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.96) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 24%, rgba(255, 255, 255, 0.96) 0 2px, transparent 3px),
    var(--cherry-blue);
}

.print-club:before {
  inset: 26px 18px 18px;
  z-index: 0;
  background: var(--cherry-cream);
  border: 8px solid var(--cherry-pink);
  border-radius: 48% 48% 10px 10px;
}

.print-club strong {
  align-self: center;
  max-width: 8ch;
  color: var(--cherry-red);
  text-align: center;
  text-shadow: 0 2px 0 var(--cherry-cream), 2px 4px 0 rgba(6, 72, 173, 0.28);
}

.print-club small {
  align-self: center;
  max-width: 13ch;
  text-align: center;
}

.print-club .poster-cherries {
  right: 4px;
  bottom: 8px;
}

.print-retro {
  --poster-tilt: 0.35deg;
  --cherry-scale: 0.68;
  background:
    radial-gradient(circle at 12% 18%, var(--cherry-red) 0 28px, transparent 29px),
    radial-gradient(circle at 86% 76%, var(--cherry-gold) 0 34px, transparent 35px),
    linear-gradient(135deg, var(--cherry-cream) 0 24%, var(--cherry-pink) 24% 37%, var(--cherry-blue) 37% 50%, var(--cherry-cream) 50% 68%, var(--cherry-hot-pink) 68% 82%, var(--cherry-cream) 82%);
}

.print-retro:before {
  inset: 18px;
  z-index: 0;
  border: 5px solid rgba(255, 242, 223, 0.82);
  border-radius: 44% 56% 50% 44%;
}

.print-retro .poster-cherries {
  right: 12px;
  bottom: 30px;
}

.print-check {
  --poster-tilt: -0.4deg;
  --cherry-scale: 0.58;
  background:
    conic-gradient(from 90deg, var(--cherry-pink) 0 25%, var(--cherry-cream) 0 50%, var(--cherry-blue) 0 75%, var(--cherry-red) 0) 0 0 / 38px 38px;
}

.print-check:before {
  inset: 20px;
  z-index: 0;
  background: rgba(255, 242, 223, 0.94);
  border: 2px solid rgba(23, 17, 13, 0.16);
  border-radius: 8px;
}

.print-check .poster-cherries {
  right: 8px;
  bottom: 16px;
}

.print-groove {
  --poster-tilt: 0.45deg;
  --cherry-scale: 0.68;
  grid-column: span 5;
  aspect-ratio: 1.36 / 1;
  background:
    radial-gradient(circle at 88% 18%, var(--cherry-gold) 0 18px, transparent 19px),
    linear-gradient(140deg, var(--cherry-hot-pink) 0 36%, var(--cherry-cream) 36% 49%, var(--cherry-blue) 49% 76%, var(--cherry-cream) 76%);
}

.print-groove:before {
  inset: 24px 16px;
  z-index: 0;
  background: rgba(255, 242, 223, 0.86);
  border-radius: 48% 52% 42% 58%;
}

.print-groove strong {
  color: var(--cherry-blue);
  text-shadow: 0 2px 0 var(--cherry-cream), 3px 4px 0 var(--cherry-red);
}

.print-groove .poster-cherries {
  right: 12px;
  bottom: 32px;
}

.print-bomb {
  --poster-tilt: -0.28deg;
  --cherry-scale: 0.86;
  grid-column: span 7;
  min-height: 238px;
  aspect-ratio: 2.05 / 1;
  background:
    radial-gradient(circle at 14% 18%, var(--cherry-blue) 0 10px, transparent 11px),
    radial-gradient(circle at 86% 22%, var(--cherry-pink) 0 8px, transparent 9px),
    var(--cherry-hot-pink);
}

.print-bomb:before {
  inset: 18px;
  z-index: 0;
  background: var(--cherry-cream);
  clip-path: polygon(50% 0, 58% 27%, 78% 8%, 72% 35%, 100% 28%, 78% 50%, 100% 71%, 71% 65%, 78% 92%, 58% 73%, 50% 100%, 42% 73%, 22% 92%, 28% 65%, 0 72%, 22% 50%, 0 28%, 28% 35%, 22% 8%, 42% 27%);
}

.print-bomb strong {
  max-width: 7ch;
  color: var(--cherry-ink);
  font-size: clamp(2.15rem, 3vw, 3.1rem);
  text-shadow: 0 3px 0 var(--cherry-cream), 4px 6px 0 var(--cherry-blue);
}

.print-bomb .poster-cherries {
  right: 44px;
  bottom: 22px;
}

#cherry-prints.page-band {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 111, 163, 0.3), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(255, 198, 90, 0.24), transparent 26%),
    linear-gradient(135deg, #073a8c 0%, #d91e55 48%, #e11927 100%);
}

.page-band .cherry-lookbook figcaption {
  color: rgba(255, 247, 234, 0.88);
}

.cherry-section-actions {
  margin-top: 22px;
}

@media (max-width: 1080px) {
  .cherry-showcase {
    grid-template-columns: 1fr;
  }

  .cherry-lookbook img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .cherry-print-wall {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding: 14px;
  }

  .retro-print,
  .print-pop,
  .print-club,
  .print-retro,
  .print-check {
    grid-column: span 3;
  }

  .print-disco,
  .print-groove,
  .print-bomb {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .cherry-showcase {
    gap: 18px;
  }

  .cherry-lookbook img {
    min-height: 280px;
    box-shadow: 8px 8px 0 var(--cherry-blue), 0 16px 30px rgba(36, 33, 29, 0.12);
  }

  .cherry-print-wall {
    grid-template-columns: 1fr;
  }

  .retro-print,
  .print-disco,
  .print-pop,
  .print-club,
  .print-retro,
  .print-check,
  .print-groove,
  .print-bomb {
    grid-column: auto;
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }

  .retro-print strong,
  .print-disco strong,
  .print-bomb strong {
    font-size: 2.15rem;
  }

  .print-disco .poster-cherries,
  .print-bomb .poster-cherries {
    right: 22px;
  }
}
