:root {
  --navy: #1b3564;
  --navy-2: #16294f;
  --ink: #0c1b36;
  --ink-2: #08132a;
  --steel: #517e9b;
  --steel-text: #3e6883;
  --steel-light: #9cbbce;
  --orange: #f78f1e;
  --orange-light: #ffb861;
  --orange-dark: #c96f0c;
  --cream: #fbf7f1;
  --sand: #f1ebe1;
  --paper: #fff;
  --rule: #dfd7c9;
  --control-border: #6d87a4;
  --text: #15264a;
  --text-soft: #4c6183;
  --display: "Helvetica Neue", "Arial Black", "Segoe UI", Arial, sans-serif;
  --body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p,
ol,
ul,
figure,
blockquote,
fieldset {
  margin: 0;
}

fieldset {
  padding: 0;
  border: 0;
}

ol,
ul {
  padding: 0;
}

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

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  transform: translateY(-200%);
}

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

.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--steel-text);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--orange);
  content: "";
}

.eyebrow-dark {
  color: var(--steel-light);
}

.heading-large {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2rem, 6.4vw, 3.7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lede {
  color: var(--text-soft);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.6;
}

.lede-dark {
  color: #c4d5e4;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.button-orange {
  border-color: var(--orange);
  background: var(--orange);
  color: #20160a;
}

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

.button-ghost {
  border-color: var(--control-border);
  background: transparent;
  color: #fff;
}

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

.button-navy {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.button-navy:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.button-small {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
}

/* Header */
.site-header {
  border-bottom: 1px solid rgba(156, 187, 206, 0.16);
  background: var(--ink-2);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 13px;
}

.logo-chip {
  flex: 0 0 auto;
  padding: 6px 8px;
  background: #fff;
}

.logo-chip img {
  width: auto;
  height: 24px;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.language-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(156, 187, 206, 0.45);
  color: #e7eef5;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.language-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.language-link svg {
  display: none;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(81, 126, 155, 0.32) 0%, rgba(81, 126, 155, 0) 58%),
    linear-gradient(180deg, var(--ink) 0%, var(--navy) 78%, #1e3b6e 100%);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(156, 187, 206, 0.09) 1px, transparent 1px);
  background-size: 56px 100%;
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding-top: 42px;
}

.hero-grid {
  display: grid;
  align-items: end;
  gap: 36px;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 10.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero .lede {
  max-width: 33em;
  margin-top: 22px;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 20px;
  color: var(--steel-light);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  line-height: 1.6;
  text-transform: uppercase;
}

.portrait {
  position: relative;
  min-width: 0;
  margin: 0 16px 22px 0;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  box-shadow: 14px 14px 0 var(--orange);
}

.portrait-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 34%;
}

.portrait-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: calc(100% - 16px);
  padding: 11px 14px;
  background: #fff;
  color: var(--navy);
}

.portrait-tag strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.portrait-tag span {
  display: block;
  margin-top: 4px;
  color: var(--steel-text);
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.stats {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid rgba(156, 187, 206, 0.28);
}

.stat {
  padding-block: 20px;
  border-bottom: 1px solid rgba(156, 187, 206, 0.16);
}

.stat strong {
  display: block;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(2.15rem, 8vw, 3.25rem);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #cbdce9;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* On the record */
.record {
  position: relative;
  overflow: hidden;
  padding-block: 62px 68px;
  background: var(--ink-2);
  color: #fff;
}

.record::after {
  position: absolute;
  right: -95px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 38px solid rgba(81, 126, 155, 0.16);
  border-radius: 50%;
  content: "";
}

.record-inner {
  position: relative;
  z-index: 1;
}

.record-label {
  display: inline-block;
  padding: 7px 12px 6px;
  border-left: 4px solid #fff;
  background: var(--orange);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.record-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin-block: 18px 28px;
  color: #dce8f1;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.star-row {
  color: var(--orange);
  font-size: 1.2rem;
  letter-spacing: 0.14em;
}

.record h2 {
  max-width: 22ch;
  font-family: var(--display);
  font-size: clamp(1.85rem, 6.2vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.record h2 span {
  background-image: linear-gradient(to top, var(--orange) 0 10%, transparent 10%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.record-attribution {
  margin-top: 18px;
  color: var(--steel-light);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.record-response {
  max-width: 53ch;
  margin-top: 12px;
  color: #c4d5e4;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* About */
.about {
  padding-block: 64px;
  background: var(--cream);
}

.about-grid {
  display: grid;
  gap: 40px;
}

.about .heading-large {
  margin-top: 20px;
}

.about-role {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  color: var(--steel-text);
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.13em;
  line-height: 1.7;
  text-transform: uppercase;
}

.about-body {
  margin-top: 24px;
  color: var(--text-soft);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.68;
}

.about-body p + p {
  margin-top: 16px;
}

.about-rail {
  border-top: 3px solid var(--navy);
}

.about-rail div {
  padding-block: 18px;
  border-bottom: 1px solid var(--rule);
}

.about-rail strong,
.about-rail span {
  display: block;
}

.about-rail strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.about-rail span {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* Spanish band */
.spanish-band {
  position: relative;
  overflow: hidden;
  padding-block: 54px;
  background: var(--navy);
  color: #fff;
}

.spanish-band::after {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 320px;
  height: 320px;
  border: 34px solid rgba(81, 126, 155, 0.28);
  border-radius: 50%;
  content: "";
}

.spanish-inner {
  position: relative;
  z-index: 1;
}

.spanish-band h2 {
  max-width: 17ch;
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 7.2vw, 4.1rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.spanish-band h2 em {
  color: var(--orange);
  font-style: normal;
}

.spanish-band > .spanish-inner > p:not(.eyebrow, .spanish-flag) {
  max-width: 54ch;
  margin-top: 22px;
  color: #c6d7e6;
  font-size: clamp(1rem, 2.3vw, 1.12rem);
  line-height: 1.62;
}

.spanish-flag {
  display: inline-block;
  margin-top: 26px;
  padding: 10px 15px;
  border: 1px solid rgba(156, 187, 206, 0.45);
  color: #e7eef5;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  line-height: 1.7;
  text-transform: uppercase;
}

.spanish-flag strong {
  color: var(--orange);
}

/* Soft pull */
.soft-pull {
  padding-block: 52px;
  background: var(--sand);
}

.soft-pull-box {
  padding: 28px 22px 32px;
  border-top: 5px solid var(--orange);
  background: var(--paper);
}

.soft-pull-mark {
  display: flex;
  align-items: center;
  gap: 15px;
}

.soft-pull-mark svg {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.soft-pull-mark span {
  max-width: 11ch;
  color: var(--steel-text);
  font-family: var(--mono);
  font-size: 0.65625rem;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.soft-pull-box > p {
  margin-top: 20px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.9vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

/* Products */
.buyer-options {
  position: relative;
  overflow: hidden;
  padding-block: 64px;
  background: var(--navy);
  color: #fff;
}

.buyer-options::after {
  position: absolute;
  right: -120px;
  bottom: -145px;
  width: 360px;
  height: 360px;
  border: 42px solid rgba(81, 126, 155, 0.24);
  border-radius: 50%;
  content: "";
}

.buyer-options-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
}

.buyer-options-intro h2 {
  max-width: 17ch;
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.buyer-options-intro h2 span {
  color: var(--orange);
}

.buyer-options-intro > p:not(.eyebrow) {
  max-width: 53ch;
  margin-top: 22px;
  color: #c6d7e6;
  line-height: 1.65;
}

.buyer-options-intro .button {
  max-width: 100%;
  margin-top: 28px;
  white-space: normal;
}

.buyer-option-list {
  border-top: 1px solid rgba(156, 187, 206, 0.36);
}

.buyer-option-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding-block: 22px;
  border-bottom: 1px solid rgba(156, 187, 206, 0.24);
}

.buyer-option-list article > span {
  padding-top: 4px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
}

.buyer-option-list h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.buyer-option-list article p {
  margin-top: 6px;
  color: #c6d7e6;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.buyer-options-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  background: rgba(8, 19, 42, 0.5);
  color: #dce8f1;
  line-height: 1.62;
}

.buyer-options-note strong {
  color: #fff;
}

.products {
  padding-block: 64px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  gap: 18px;
}

.section-heading .heading-large {
  margin-top: 18px;
}

.section-heading > p {
  max-width: 55ch;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--rule);
  background: var(--rule);
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px 22px 30px;
  background: var(--paper);
}

.product-card h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.5rem, 4.6vw, 1.95rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.product-card p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.product-card > span:not(.specialty) {
  margin-top: auto;
  padding-top: 20px;
  color: var(--steel-text);
  font-family: var(--mono);
  font-size: 0.65625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card-featured {
  background: var(--navy);
}

.product-card-featured h3 {
  color: #fff;
}

.product-card-featured p {
  color: #c6d7e6;
}

.product-card-featured > span:not(.specialty),
.specialty {
  color: var(--orange);
}

.product-card-wide p {
  max-width: 78ch;
}

.specialty {
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.product-footer p {
  max-width: 44ch;
  color: var(--text-soft);
  font-size: 0.90625rem;
}

/* Reviews */
.reviews {
  padding-block: 64px;
  background: var(--ink);
  color: #fff;
}

.reviews-heading {
  display: grid;
  align-items: end;
  gap: 32px;
}

.review-score {
  padding-left: 20px;
  border-left: 4px solid var(--orange);
}

.review-score strong,
.review-score span {
  display: block;
}

.review-score strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(4rem, 15vw, 7.5rem);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.86;
}

.review-score .star-row {
  margin-top: 14px;
}

.review-score span:last-child {
  margin-top: 8px;
  color: #cbdce9;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews .heading-large {
  margin-top: 18px;
  color: #fff;
}

.quote-grid {
  display: grid;
  margin-top: 46px;
}

.review-quote {
  padding-block: 26px 28px;
  border-top: 1px solid rgba(156, 187, 206, 0.3);
}

.review-quote p {
  color: #f2f6fa;
  font-family: var(--display);
  font-size: clamp(1.15rem, 3.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.review-quote-wide p {
  font-size: clamp(1.3rem, 3.9vw, 2rem);
}

.review-quote cite {
  display: block;
  margin-top: 18px;
  color: var(--steel-light);
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reviews-link {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--orange);
  color: #dbe8f1;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.reviews-link:hover {
  color: var(--orange);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 28px;
}

/* Dos and don'ts */
.dos-donts {
  padding-block: 64px;
  background: var(--cream);
}

.dos-donts .heading-large {
  margin-top: 18px;
}

.dos-donts-intro {
  max-width: 68ch;
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.68;
}

.dos-donts-grid {
  display: grid;
  gap: 44px;
  margin-top: 42px;
}

.rule-column {
  min-width: 0;
  padding-top: 16px;
  border-top: 3px solid var(--navy);
}

.rule-column-dont {
  border-color: var(--orange);
}

.rule-column h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.rule-column-dont h3 {
  color: var(--orange-dark);
}

.rule-column ol {
  list-style: none;
}

.rule-column li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  padding-block: 18px;
  border-bottom: 1px solid var(--rule);
}

.rule-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-top: 1px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--steel);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.rule-column-dont .rule-icon {
  color: var(--orange-dark);
}

.rule-column strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.rule-column li p {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.57;
}

.trigger-note {
  max-width: 68ch;
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  background: var(--paper);
  color: var(--text-soft);
  font-size: 0.90625rem;
  line-height: 1.6;
}

.trigger-note strong {
  color: var(--navy);
}

.dos-donts-close {
  max-width: 25ch;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--rule);
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.5rem, 4.6vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.dos-donts-close em {
  color: var(--orange-dark);
  font-style: normal;
}

/* Contact and form */
.contact-form {
  padding-block: 64px;
  background: var(--ink);
  color: #fff;
}

.contact-form-grid {
  display: grid;
  gap: 44px;
}

.contact-copy .heading-large {
  margin-top: 18px;
  color: #fff;
}

.contact-copy > p:not(.eyebrow, .phone-label) {
  max-width: 34em;
  margin-top: 18px;
  color: #c4d5e4;
  font-size: 1.05rem;
  line-height: 1.6;
}

.phone-large {
  display: block;
  margin-top: 34px;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(2.15rem, 8vw, 3.4rem);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.phone-large:hover {
  color: var(--orange-light);
}

.phone-label {
  margin-top: 10px;
  color: #cbdce9;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list {
  margin-top: 32px;
  border-top: 1px solid rgba(156, 187, 206, 0.28);
  list-style: none;
}

.contact-list li {
  padding-block: 18px;
  border-bottom: 1px solid rgba(156, 187, 206, 0.18);
}

.contact-list strong,
.contact-list a,
.contact-list span {
  display: block;
}

.contact-list strong {
  color: #fff;
}

.contact-list a,
.contact-list span {
  margin-top: 4px;
  color: #a9c0d3;
  font-size: 0.9rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  color: var(--orange);
}

.form-card {
  min-width: 0;
  padding: 28px 22px 30px;
  border: 1px solid rgba(156, 187, 206, 0.24);
  background: var(--navy-2);
}

.form-card h3 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4.4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.form-card > p {
  margin-top: 12px;
  color: #b9cedf;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.honeypot {
  display: none;
}

.form-grid {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.field {
  min-width: 0;
}

.field > label,
.field > legend {
  display: block;
  padding: 0;
  color: var(--steel-light);
  font-family: var(--mono);
  font-size: 0.65625rem;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}

.field input:not([type="radio"]),
.field textarea {
  width: 100%;
  padding: 11px 0 10px;
  border: 0;
  border-bottom: 1px solid var(--control-border);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.field textarea {
  min-height: 84px;
  line-height: 1.5;
  resize: vertical;
}

.field input:not([type="radio"]):focus,
.field textarea:focus {
  border-bottom-color: var(--orange);
  outline: 0;
  box-shadow: 0 2px 0 var(--orange);
}

.field input:not([type="radio"]):focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 3px;
}

.optional {
  letter-spacing: 0;
  text-transform: none;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.radio-group label {
  position: relative;
  cursor: pointer;
}

.radio-group input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.radio-group span {
  display: inline-flex;
  min-width: 84px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 17px;
  border: 1px solid var(--control-border);
  color: #d6e3ed;
}

.radio-group input:checked + span {
  border-color: var(--orange);
  background: var(--orange);
  color: #20160a;
  font-weight: 700;
}

.radio-group input:focus-visible + span {
  outline: 3px solid var(--orange-light);
  outline-offset: 3px;
}

.form-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.form-submit .button {
  width: 100%;
}

.form-submit p {
  max-width: 30ch;
  color: #8fa9c0;
  font-size: 0.78125rem;
}

/* Footer */
.site-footer {
  padding-block: 44px 40px;
  border-top: 1px solid rgba(156, 187, 206, 0.16);
  background: var(--ink-2);
  color: #a9c0d3;
}

.footer-grid {
  display: grid;
  align-items: start;
  gap: 26px;
}

.footer-brand-group {
  min-width: 0;
}

.footer-brand {
  color: #fff;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  color: #8fa9c0;
  font-family: var(--mono);
  font-size: 0.65625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 20px;
  color: #c7d8e5;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--control-border);
  color: #dce8f1;
  place-items: center;
}

.social-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.social-links .social-dot {
  fill: currentColor;
  stroke: none;
}

.social-links-contact {
  margin-top: 24px;
}

.footer-legal {
  font-size: 0.8125rem;
  line-height: 1.75;
}

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

.footer-legal strong {
  color: #e4edf4;
  font-weight: 600;
}

.equal-housing {
  display: flex;
  align-items: center;
  gap: 11px;
}

.equal-housing svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: #a9c0d3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.equal-housing span {
  max-width: 10ch;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.copyright {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(156, 187, 206, 0.16);
  color: #8fa9c0;
  font-size: 0.75rem;
}

/* Short standalone pages */
.page-short {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.page-short main {
  flex: 1;
}

/* Thanks page */
.thanks-main {
  display: grid;
  place-items: center;
  padding-block: 72px;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(81, 126, 155, 0.32) 0%, rgba(81, 126, 155, 0) 58%),
    linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
  color: #fff;
}

.thanks-card {
  max-width: 700px;
  padding: 34px 28px 38px;
  border-top: 5px solid var(--orange);
  background: var(--paper);
  color: var(--text);
}

.thanks-card h1 {
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2.3rem, 7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.thanks-card > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.thanks-card .button {
  margin-top: 26px;
}

/* Review page */
.review-main {
  display: grid;
  padding-block: 52px;
  background:
    radial-gradient(110% 90% at 85% 10%, rgba(81, 126, 155, 0.34) 0%, rgba(81, 126, 155, 0) 58%),
    linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
  color: #fff;
  place-items: center;
}

.review-card {
  display: grid;
  max-width: 940px;
  overflow: hidden;
  border-top: 5px solid var(--orange);
  background: var(--paper);
  color: var(--text);
}

.review-photo {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: var(--sand);
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.review-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 10px;
  background: var(--orange);
  content: "";
}

.review-copy {
  padding: 34px 28px 38px;
}

.review-copy h1 {
  max-width: 13ch;
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.review-copy > p:not(.eyebrow, .review-direct) {
  max-width: 56ch;
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.review-copy .button {
  margin-top: 28px;
}

.review-direct {
  max-width: 58ch;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.review-direct a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

@media (min-width: 560px) {
  .language-link svg {
    display: block;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .field-full {
    grid-column: 1 / -1;
  }

  .form-submit .button {
    width: auto;
  }
}

@media (min-width: 620px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-wide {
    grid-column: 1 / -1;
  }

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

  .stat {
    padding: 24px 22px;
    border-bottom: 0;
    border-left: 1px solid rgba(156, 187, 206, 0.28);
  }

  .stat:first-child {
    padding-left: 0;
    border-left: 0;
  }
}

@media (min-width: 768px) {
  .wrap {
    padding-inline: 40px;
  }

  .logo-chip {
    padding: 7px 10px;
  }

  .logo-chip img {
    height: 30px;
  }

  .header-actions {
    gap: 10px;
  }

  .language-link {
    padding: 10px 13px;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
  }

  .button-small {
    padding: 10px 16px;
  }

  .record,
  .reviews,
  .buyer-options,
  .products,
  .dos-donts,
  .contact-form {
    padding-block: 78px;
  }

  .spanish-band {
    padding-block: 68px;
  }

  .soft-pull-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 44px;
    padding: 42px 46px 46px;
  }

  .soft-pull-mark {
    flex-direction: column;
    align-items: flex-start;
  }

  .soft-pull-box > p {
    margin-top: 0;
  }

  .reviews-heading {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 56px;
  }

  .quote-grid {
    grid-template-columns: 1.22fr 1fr;
  }

  .review-quote {
    padding: 32px 36px 34px 0;
  }

  .review-quote-wide {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .review-quote-right {
    padding-right: 0;
    padding-left: 36px;
    border-left: 1px solid rgba(156, 187, 206, 0.3);
  }

  .footer-grid {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr) auto;
    gap: 44px;
  }

  .review-card {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .review-photo {
    min-height: 100%;
  }
}

@media (min-width: 860px) {
  .dos-donts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
  }

  .section-heading {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 48px;
  }

  .buyer-options-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
    gap: 72px;
  }
}

@media (min-width: 900px) {
  .hero-inner {
    padding-top: 76px;
  }

  .hero-grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 52px;
  }

  .hero-copy {
    padding-bottom: 8px;
  }

  .portrait {
    max-width: 380px;
    margin-left: auto;
  }

  .portrait-frame {
    box-shadow: 16px 16px 0 var(--orange);
  }

  .portrait-frame img {
    aspect-ratio: 5 / 6;
  }

  .about {
    padding-block: 96px;
  }

  .about-grid {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 64px;
  }

  .soft-pull {
    padding-block: 72px;
  }

  .buyer-options,
  .products,
  .reviews,
  .dos-donts,
  .contact-form {
    padding-block: 92px;
  }
}

@media (min-width: 940px) {
  .contact-form-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
    gap: 70px;
  }
}

@media (min-width: 1100px) {
  .desktop-nav {
    display: flex;
    gap: 16px;
    margin-left: 18px;
    color: var(--steel-light);
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .desktop-nav a:hover {
    color: var(--orange);
  }
}

@media (min-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card {
    min-height: 200px;
    padding: 32px 28px 36px;
  }
}

@media (max-width: 390px) {
  .header-inner {
    gap: 7px;
  }

  .logo-chip img {
    height: 21px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-link {
    padding-inline: 8px;
    font-size: 0.59375rem;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.625rem;
    letter-spacing: 0.08em;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.625rem;
    letter-spacing: 0.15em;
  }

  .eyebrow::before {
    width: 20px;
    margin-top: 7px;
  }

  .record-rating {
    letter-spacing: 0.07em;
  }

  .phone-large {
    font-size: 2.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Conditional agent-name reveal: shows when "Yes" is selected. Falls back to always-visible where :has() is unsupported. */
form[name="schedule-call"] .agent-name-field {
  display: none;
}
form[name="schedule-call"]:has(input[name="agent"][value="yes"]:checked) .agent-name-field {
  display: block;
}
@supports not selector(:has(*)) {
  form[name="schedule-call"] .agent-name-field {
    display: block;
  }
}

/* Brand lockup: text identity replacing the boxed logo image */
.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  min-width: 0;
}
.brand-lockup strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
}
.brand-lockup span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-light);
  white-space: nowrap;
}
.brand-lockup:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
@media (min-width: 1100px) {
  .brand-lockup strong { font-size: 19px; }
  .brand-lockup span { font-size: 10px; }
}

/* Dark-variant logo replaces the text lockup */
.logo-dark {
  display: block;
  flex: 0 0 auto;
}
.logo-dark img {
  width: auto;
  height: 30px;
}
@media (min-width: 1100px) {
  .logo-dark img { height: 34px; }
}
