:root {
  --navy: #144e8c;
  --blue: #249ddd;
  --orange: #f04e28;
  --gold: #f7a619;
  --ink: #58595b;
  --muted: #58595b;
  --paper: #ffffff;
  --surface: #f1f3f5;
  --line: #d8dadd;
  --shadow-sm: 0 8px 24px rgba(20, 78, 140, 0.08);
  --shadow-md: 0 16px 42px rgba(20, 78, 140, 0.12);
  --radius-sm: 8px;
  --radius: 12px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ygias-body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ygias-body img {
  display: block;
  max-width: 100%;
}

.ygias-body a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.ygias-body h1,
.ygias-body h2,
.ygias-body h3,
.ygias-body h4 {
  margin-top: 0;
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 750;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.ygias-body h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.ygias-body h2 {
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

.ygias-body h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--orange);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-main {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(210px, 270px) 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: min(250px, 100%);
  height: auto;
  filter: none;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
}

.primary-navigation a {
  position: relative;
  padding: 28px 0 25px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.065em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.primary-navigation a:hover,
.primary-navigation a.is-active {
  color: var(--navy);
}

.primary-navigation a:hover::after,
.primary-navigation a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-link:hover {
  color: var(--orange);
  background: var(--surface);
  border-color: var(--orange);
}

.cart-link {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  padding: 7px 9px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.menu-toggle span:not(.visually-hidden) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button,
.btn-main-custom {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button-primary,
.btn-main-custom {
  color: var(--paper) !important;
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 8px 20px rgba(240, 78, 40, 0.16);
}

.button-primary:hover,
.btn-main-custom:hover {
  color: var(--paper) !important;
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  box-shadow: 0 8px 20px rgba(20, 78, 140, 0.16);
}

.button-secondary {
  color: var(--navy);
  background: var(--paper);
  border-color: rgba(20, 78, 140, 0.45);
}

.button-secondary:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.button-light {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--paper);
}

.button-light:hover {
  color: var(--paper);
  background: var(--orange);
  border-color: var(--orange);
}

.button-small {
  min-height: 38px;
  padding: 8px 15px;
  font-size: 0.7rem;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  display: block;
  overflow: hidden;
  background: var(--surface);
}

.hero-media::after {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 47%;
  max-width: 560px;
  padding: 88px 0 92px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 22px;
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.hero-trust {
  display: grid;
  gap: 7px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
  list-style: none;
}

.hero-trust i {
  width: 20px;
  margin-right: 5px;
  color: var(--orange);
  text-align: center;
}

.proof-strip {
  padding: 24px 0;
  color: var(--ink);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

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

.proof-item {
  min-height: 92px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-content: center;
  align-items: center;
  gap: 12px;
  padding: 17px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.proof-item i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
}

.proof-item:nth-child(2) i {
  background: var(--blue);
}

.proof-item:nth-child(3) i {
  background: var(--orange);
}

.proof-item:nth-child(4) i {
  color: var(--navy);
  background: var(--gold);
}

.proof-item strong {
  display: block;
  margin-bottom: 1px;
  color: var(--navy);
  font-size: 0.91rem;
  line-height: 1.3;
}

.proof-item span {
  display: block;
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1.4;
}

.section {
  padding: clamp(70px, 7.5vw, 96px) 0;
}

.section-compact {
  padding: clamp(50px, 5.5vw, 72px) 0;
}

.section-cream,
.section-navy {
  color: var(--ink);
  background: var(--surface);
}

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

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

.section-heading.text-center {
  margin-inline: auto;
}

.section-heading h2 {
  margin-bottom: 15px;
}

.section-heading > p:not(.eyebrow),
.section-navy .section-heading > p:not(.eyebrow) {
  color: var(--ink);
  font-size: 1rem;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(42px, 6vw, 76px);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  filter: none;
}

.split-media::before {
  display: none;
}

.split-copy h2 {
  margin-bottom: 20px;
}

.split-copy > p {
  color: var(--ink);
  font-size: 1rem;
}

.numbered-list {
  display: grid;
  gap: 20px;
  margin: 28px 0;
}

.numbered-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.numbered-item > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
}

.numbered-item:nth-child(2) > span {
  background: var(--blue);
}

.numbered-item:nth-child(3) > span {
  background: var(--orange);
}

.numbered-item h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.numbered-item p {
  margin: 0;
  color: var(--ink);
}

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

.step-card,
.occasion-card,
.value-card {
  position: relative;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-card:hover,
.occasion-card:hover,
.value-card:hover {
  border-color: rgba(20, 78, 140, 0.35);
  box-shadow: var(--shadow-sm);
}

.step-number,
.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
}

.step-card:nth-child(2) .step-number,
.occasion-card:nth-child(3n + 2) .card-icon,
.value-card:nth-child(3n + 2) .card-icon {
  background: var(--orange);
}

.step-card:nth-child(3) .step-number,
.occasion-card:nth-child(3n) .card-icon,
.value-card:nth-child(3n) .card-icon {
  color: var(--navy);
  background: var(--gold);
}

.card-icon i {
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-size: 1rem;
}

.step-card h3,
.occasion-card h3,
.value-card h3 {
  margin-bottom: 10px;
}

.step-card p,
.occasion-card p,
.value-card p {
  color: var(--ink);
}

.video-placeholder {
  position: relative;
  width: 100%;
  max-width: 550px;
  justify-self: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.video-placeholder img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: none;
}

.video-placeholder::after {
  display: none;
}

.video-trigger {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 58px);
  display: grid;
  place-items: center;
  color: var(--paper);
  background: transparent;
  border: 0;
}

.video-trigger > span:first-child {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--orange);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(20, 78, 140, 0.22);
  font-size: 1rem;
  transition: background 160ms ease, transform 160ms ease;
}

.video-trigger:hover > span:first-child {
  background: var(--navy);
  transform: scale(1.05);
}

.video-caption {
  position: relative;
  z-index: 3;
  min-height: 58px;
  padding: 11px 16px;
  pointer-events: none;
  color: var(--paper);
  background: var(--navy);
}

.video-caption strong {
  display: block;
  font-size: 0.91rem;
  letter-spacing: -0.01em;
}

.video-caption span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
}

.video-message {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(410px, calc(100% - 34px));
  padding: 20px;
  color: var(--paper);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-sm);
  text-align: center;
  transform: translate(-50%, -50%);
}

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

.sample-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sample-card:hover {
  box-shadow: var(--shadow-sm);
}

.sample-art {
  min-height: 190px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-bottom: 1px solid var(--line);
}

.sample-card:nth-child(2) .sample-art {
  background: var(--orange);
}

.sample-card:nth-child(3) .sample-art {
  background: var(--navy);
}

.sample-art i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: transparent;
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-size: 1.35rem;
}

.sample-body {
  padding: 23px;
}

.sample-body h3 {
  margin-bottom: 7px;
}

.sample-body p {
  color: var(--ink);
}

.coming-pill {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
}

.pricing-card:nth-child(3) {
  border-top-color: var(--gold);
}

.pricing-card.featured {
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--orange);
  border-top-width: 4px;
  box-shadow: var(--shadow-md);
  transform: none;
}

.pricing-card.featured h3,
.pricing-card.featured .price {
  color: var(--navy);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 6px 11px;
  color: var(--paper);
  background: var(--orange);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 4px 0 10px;
  font-size: 1.7rem;
}

.price {
  margin-bottom: 4px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: clamp(2.7rem, 4.2vw, 3.8rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price-code {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-strapline {
  min-height: 70px;
  margin-bottom: 18px;
  color: var(--ink);
}

.package-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 15px 0;
  border-block: 1px solid var(--line);
  font-size: 0.81rem;
  font-weight: 700;
}

.package-features {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.package-features li {
  position: relative;
  padding-left: 23px;
  font-size: 0.88rem;
}

.package-features li::before {
  position: absolute;
  top: 0.06em;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.currency-note {
  margin-top: 26px;
  padding: 16px 20px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
}

.page-hero {
  padding: clamp(64px, 7vw, 88px) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero-content {
  max-width: 800px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--ink);
  font-size: 1.06rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list .accordion-item {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
}

.faq-list .accordion-button {
  padding: 19px 22px;
  color: var(--navy);
  background: var(--paper);
  box-shadow: none;
  font-family: var(--sans);
  font-size: 1.03rem;
  font-weight: 700;
}

.faq-list .accordion-button:not(.collapsed) {
  color: var(--orange);
  background: var(--surface);
}

.faq-list .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(240, 78, 40, 0.15);
}

.faq-list .accordion-body {
  padding: 4px 22px 22px;
  color: var(--ink);
}

.cta-band {
  color: var(--paper);
  background: var(--navy);
}

.cta-band::after {
  display: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: clamp(55px, 6vw, 74px);
}

.cta-inner h2 {
  max-width: 700px;
  margin-bottom: 12px;
  color: var(--paper);
}

.cta-inner p {
  max-width: 670px;
}

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

.cta-band .button-light {
  color: var(--paper);
  background: var(--orange);
  border-color: var(--orange);
  white-space: nowrap;
}

.cta-band .button-light:hover {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--paper);
}

.holding-panel {
  max-width: 800px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 58px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.holding-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
}

.holding-panel h2 {
  margin-bottom: 16px;
}

.holding-panel p {
  color: var(--ink);
}

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

.contact-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card a {
  color: var(--orange);
  font-weight: 700;
}

.contact-card h2 {
  font-size: 1.4rem;
}

.account-shell,
.voice-shell {
  padding: clamp(52px, 6vw, 76px) 0;
  background: var(--surface);
}

.account-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 700px);
  justify-content: center;
  gap: 24px;
}

.account-intro {
  margin-bottom: 22px;
  color: var(--ink);
}

.account-nav {
  display: grid;
  gap: 7px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.account-nav a {
  padding: 11px 13px;
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.account-nav a:hover,
.account-nav a.is-active {
  color: var(--paper);
  background: var(--navy);
}

.account-layout .card,
.voice-card,
.page-chatFinished main .card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.account-layout .card-header,
.voice-card .card-header,
.page-chatFinished main .card-header {
  padding: 17px 23px 14px !important;
  color: var(--paper);
  background: var(--navy);
  border: 0;
}

.account-layout .card-header h4,
.voice-card .card-header h4,
.page-chatFinished main .card-header h4 {
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.account-layout .card-body,
.voice-card .card-body {
  padding: 25px;
}

.form-control,
.form-select,
.input-group-text {
  border-color: var(--line);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(240, 78, 40, 0.13);
}

.page-chatFinished .myHeading {
  color: var(--navy);
  font-family: var(--sans);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.page-chatFinished main > .container,
.page-chatFinished main > .container + .container {
  max-width: 900px;
}

.voice-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
}

.voice-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
}

.voice-copy > p:not(.eyebrow) {
  color: var(--ink);
  font-size: 1.02rem;
}

.voice-notes {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.voice-notes li {
  position: relative;
  padding-left: 24px;
}

.voice-notes li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

#voiceVisualizer {
  height: 92px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.bar {
  width: 1px;
  height: 1px;
  background: var(--orange) !important;
  border-radius: 1px;
  transform-origin: center;
  transition: height 0.08s linear;
}

.legal-page {
  padding: clamp(56px, 6vw, 82px) 0;
}

.legal-document {
  max-width: 900px;
}

.legal-document > header {
  margin-bottom: 42px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.legal-document > header h1 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 4.4vw, 4rem);
}

.legal-document > header p {
  color: var(--ink);
}

.legal-section {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-transform: uppercase;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink);
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 1.2rem;
}

.legal-copy li + li {
  margin-top: 8px;
}

.legal-modal .legal-page {
  padding: 0;
}

.legal-modal .legal-document > header {
  display: none;
}

.legal-modal .legal-section {
  grid-template-columns: 180px minmax(0, 1fr);
}

.site-footer {
  color: var(--ink);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 0.8fr 1fr;
  gap: clamp(32px, 5vw, 66px);
  padding: 62px 0 48px;
}

.footer-brand img {
  width: 245px;
  margin-bottom: 20px;
  filter: none;
}

.footer-brand p {
  max-width: 410px;
  margin-bottom: 21px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:not(.button) {
  color: var(--ink);
  text-decoration: none;
}

.site-footer a:not(.button):hover {
  color: var(--orange);
}

.footer-currency-copy {
  font-size: 0.82rem;
}

.currency-form .form-select {
  color: var(--ink);
  background-color: var(--paper);
  border-color: var(--line);
  font-size: 0.8rem;
}

.currency-form option {
  color: var(--ink);
  background: var(--paper);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 19px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer .button-light {
  color: var(--paper);
  background: var(--orange);
  border-color: var(--orange);
}

.site-footer .button-light:hover {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: minmax(190px, 225px) 1fr auto;
    gap: 16px;
  }

  .primary-navigation {
    gap: 11px;
  }

  .primary-navigation a {
    font-size: 0.68rem;
  }

  .header-cta {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 960px) {
  .header-main {
    min-height: 72px;
    grid-template-columns: 1fr auto auto;
  }

  .brand img {
    width: 220px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 24px 20px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .primary-navigation.is-open {
    display: grid;
  }

  .primary-navigation a {
    padding: 10px 8px;
    font-size: 0.78rem;
  }

  .primary-navigation a::after {
    right: auto;
    bottom: 5px;
    width: 36px;
  }

  .header-actions {
    grid-column: 3;
  }

  .hero {
    min-height: 0;
    display: block;
  }

  .hero-media {
    position: relative;
    width: 100%;
    height: min(48vw, 420px);
  }

  .hero-media img {
    object-position: center 42%;
  }

  .hero-content {
    width: 100%;
    max-width: 680px;
    padding: 52px 0 60px;
  }

  .split-layout,
  .voice-layout {
    grid-template-columns: 1fr;
  }

  .split-media,
  .video-placeholder {
    width: min(100%, 640px);
    justify-self: center;
  }

  .steps-grid,
  .occasion-grid,
  .values-grid,
  .sample-placeholder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    max-width: 680px;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .package-strapline {
    min-height: 0;
  }

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

  .account-nav {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 640px) {
  .site-shell,
  .narrow-shell {
    width: min(100% - 28px, 1180px);
  }

  .header-main {
    min-height: 66px;
    grid-template-columns: 1fr auto auto;
    gap: 7px;
  }

  .brand img {
    width: 178px;
  }

  .header-actions {
    gap: 5px;
  }

  .icon-link {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    width: 38px;
    height: 36px;
  }

  .hero-media {
    height: 265px;
  }

  .hero-content {
    padding: 38px 0 44px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-grid,
  .steps-grid,
  .occasion-grid,
  .values-grid,
  .sample-placeholder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 58px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .step-card,
  .occasion-card,
  .value-card {
    padding: 24px;
  }

  .video-trigger {
    height: calc(100% - 64px);
  }

  .video-caption {
    min-height: 64px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }

  .cta-inner .button {
    width: 100%;
  }

  .account-nav {
    grid-template-columns: 1fr;
  }

  .voice-layout {
    gap: 28px;
  }

  .account-layout .card-body,
  .voice-card .card-body {
    padding: 20px;
  }

  .legal-section,
  .legal-modal .legal-section {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

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