:root {
  --ink: #f8f1e7;
  --paper: #fffaf1;
  --paper-2: #efe3d0;
  --charcoal: #0e0e0d;
  --charcoal-2: #171614;
  --charcoal-3: #24211d;
  --gold: #c7a46a;
  --gold-2: #e2c58d;
  --brown: #6b4a28;
  --muted: #b9ad9e;
  --muted-dark: #6f665d;
  --line: rgba(226, 197, 141, 0.28);
  --line-light: #e3d4bd;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

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

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

.container {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

.narrow {
  max-width: 880px;
}

.section {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 14, 13, 0.88);
  border-bottom: 1px solid rgba(226, 197, 141, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(226, 197, 141, 0.64);
  border-radius: 4px;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(248, 241, 231, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--gold-2);
}

.nav-cta,
.header-contact {
  border: 1px solid rgba(226, 197, 141, 0.48);
  background: rgba(255, 250, 241, 0.06);
  color: var(--gold-2);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 3px;
}

.header-contact {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 46px;
  padding: 7px 15px;
  border-radius: 3px;
  line-height: 1.25;
  text-align: center;
}

.header-contact span {
  color: rgba(248, 241, 231, 0.66);
  font-size: 11px;
  font-weight: 700;
}

.header-contact strong {
  color: var(--gold-2);
  font-size: 15px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 96px 0 86px;
  background:
    linear-gradient(90deg, rgba(14, 14, 13, 0.98) 0%, rgba(14, 14, 13, 0.84) 42%, rgba(14, 14, 13, 0.36) 100%),
    url("assets/luxury-web-hero.png") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--charcoal));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.64fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 14px;
  border: 1px solid rgba(226, 197, 141, 0.44);
  border-radius: 999px;
  background: rgba(14, 14, 13, 0.48);
  color: rgba(248, 241, 231, 0.88);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 790px;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", "Noto Sans JP", serif;
  font-size: clamp(39px, 5.8vw, 72px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(248, 241, 231, 0.78);
  font-size: 17px;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 3px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #17100a;
  box-shadow: 0 16px 32px rgba(199, 164, 106, 0.2);
}

.button-primary:hover {
  background: var(--gold-2);
}

.button-secondary {
  border: 1px solid rgba(226, 197, 141, 0.56);
  background: rgba(255, 250, 241, 0.04);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--gold-2);
  background: rgba(255, 250, 241, 0.08);
}

.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 38px;
  border: 1px solid rgba(226, 197, 141, 0.2);
  background: rgba(226, 197, 141, 0.18);
}

.hero-metrics div {
  min-height: 104px;
  padding: 18px 16px;
  background: rgba(14, 14, 13, 0.7);
}

.hero-metrics strong {
  display: block;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(248, 241, 231, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.trust-panel {
  overflow: hidden;
  align-self: stretch;
  border: 1px solid rgba(226, 197, 141, 0.26);
  border-radius: 0;
  background: rgba(14, 14, 13, 0.62);
  box-shadow: var(--shadow);
}

.trust-panel > img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(226, 197, 141, 0.22);
}

.panel-heading {
  padding: 26px 26px 0;
}

.panel-heading p {
  margin: 0 0 4px;
  color: rgba(248, 241, 231, 0.58);
  font-size: 14px;
}

.panel-heading strong {
  display: block;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", "Noto Sans JP", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 26px;
  border: 1px solid rgba(226, 197, 141, 0.18);
  background: rgba(226, 197, 141, 0.14);
}

.trust-card {
  min-height: 108px;
  padding: 18px;
  background: rgba(23, 22, 20, 0.92);
}

.trust-card span {
  display: block;
  color: rgba(226, 197, 141, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.trust-card strong {
  display: block;
  margin-top: 10px;
  color: #fffaf1;
  font-size: 19px;
  line-height: 1.42;
}

.panel-note {
  margin: 0;
  padding: 0 26px 28px;
  color: rgba(248, 241, 231, 0.58);
  font-size: 14px;
}

.section-soft {
  background: var(--paper);
  color: #1f1b17;
}

.section:not(.hero):not(.section-soft):not(.final-cta) {
  background: var(--charcoal);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", "Noto Sans JP", serif;
  font-size: clamp(29px, 4.2vw, 46px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.section-soft .section-heading p:not(.eyebrow),
.section-soft .section-heading h2 + p {
  color: var(--muted-dark);
}

.check-list,
.reason-list {
  display: grid;
  gap: 12px;
}

.check-list p,
.reason-list p {
  position: relative;
  margin: 0;
  padding: 19px 22px 19px 54px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.045);
  color: rgba(248, 241, 231, 0.86);
  font-weight: 600;
}

.check-list p::before,
.reason-list p::before,
.plan-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 5px rgba(226, 197, 141, 0.12);
}

.check-list p::before,
.reason-list p::before {
  left: 25px;
  top: 31px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

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

.feature-grid div {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line-light);
  background: #fffdf8;
  color: #31251b;
  font-weight: 800;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.045);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.price-card.featured {
  border-color: rgba(226, 197, 141, 0.72);
  background: linear-gradient(180deg, rgba(226, 197, 141, 0.1), rgba(255, 250, 241, 0.045));
}

.recommend {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 12px;
  border: 1px solid rgba(226, 197, 141, 0.54);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
}

.plan-label {
  margin: 0 0 6px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.price-head h3 {
  margin: 0 0 18px;
  padding-right: 92px;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", "Noto Sans JP", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.35;
}

.price {
  margin: 0;
  color: rgba(248, 241, 231, 0.78);
  font-size: 16px;
  font-weight: 700;
}

.price strong {
  display: block;
  margin-top: 4px;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
}

.monthly {
  display: inline-flex;
  width: fit-content;
  margin: 14px 0 0;
  padding: 7px 12px;
  border: 1px solid rgba(226, 197, 141, 0.28);
  color: rgba(248, 241, 231, 0.8);
  font-size: 14px;
  font-weight: 800;
}

.plan-text {
  min-height: 92px;
  margin: 26px 0 0;
  color: rgba(248, 241, 231, 0.64);
}

.plan-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(248, 241, 231, 0.82);
  font-weight: 600;
}

.plan-list li::before {
  left: 2px;
  top: 12px;
  width: 6px;
  height: 6px;
  box-shadow: none;
}

.price-card .button {
  margin-top: auto;
}

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

.option-grid div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line-light);
  background: #fffdf8;
}

.option-grid span {
  display: block;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 700;
}

.option-grid strong {
  display: block;
  margin-top: 12px;
  color: #211913;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.4;
}

.reason-card {
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.58)),
    url("assets/luxury-web-hero.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.reason-card p {
  margin: 0 0 14px;
  color: rgba(248, 241, 231, 0.72);
}

.reason-card strong {
  display: block;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", "Noto Sans JP", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.58;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-grid li {
  min-height: 138px;
  padding: 24px;
  border: 1px solid var(--line-light);
  background: #fffdf8;
}

.flow-grid span {
  display: block;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
}

.flow-grid strong {
  display: block;
  margin-top: 18px;
  color: #211913;
  font-size: 19px;
  line-height: 1.55;
}

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

details {
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.045);
}

summary {
  cursor: pointer;
  padding: 19px 22px;
  color: #fffaf1;
  font-weight: 800;
  line-height: 1.55;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(248, 241, 231, 0.64);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(14, 14, 13, 0.94), rgba(14, 14, 13, 0.74)),
    url("assets/luxury-web-hero.png") center / cover no-repeat;
  color: #fffaf1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.final-inner {
  max-width: 840px;
  text-align: left;
}

.final-inner .eyebrow {
  color: var(--gold-2);
}

.final-inner h2 {
  margin: 0;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", "Noto Sans JP", serif;
  font-size: clamp(31px, 4.5vw, 50px);
  font-weight: 400;
  line-height: 1.45;
}

.final-inner p:not(.eyebrow) {
  margin: 20px 0 32px;
  max-width: 720px;
  color: rgba(248, 241, 231, 0.74);
}

.contact-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-note span,
.contact-note a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(226, 197, 141, 0.28);
  background: rgba(255, 250, 241, 0.055);
  color: rgba(248, 241, 231, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.contact-note a {
  border-color: rgba(226, 197, 141, 0.58);
  color: var(--gold-2);
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-note a:hover {
  background: rgba(226, 197, 141, 0.12);
  color: #fffaf1;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(226, 197, 141, 0.34);
  background: rgba(14, 14, 13, 0.78);
  box-shadow: var(--shadow);
}

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

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

.contact-form label > span {
  color: rgba(248, 241, 231, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.contact-form em {
  margin-left: 6px;
  color: var(--gold-2);
  font-style: normal;
  font-size: 11px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(226, 197, 141, 0.28);
  border-radius: 0;
  background: rgba(255, 250, 241, 0.08);
  color: #fffaf1;
  font: inherit;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-2);
  background: rgba(255, 250, 241, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(248, 241, 231, 0.42);
}

.contact-form option {
  background: #171614;
  color: #fffaf1;
}

.form-help {
  margin: 0;
  color: rgba(248, 241, 231, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.form-help a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(226, 197, 141, 0.16);
  background: #0a0a09;
  color: #fffaf1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer strong {
  color: #fffaf1;
}

.footer p {
  margin: 6px 0 0;
  color: rgba(248, 241, 231, 0.56);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 700;
}

.mobile-fixed-cta {
  display: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(14, 14, 13, 0.95), rgba(14, 14, 13, 0.74)),
      url("assets/luxury-web-hero.png") center / cover no-repeat;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .plan-text {
    min-height: auto;
  }

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

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

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

@media (max-width: 720px) {
  body {
    padding-bottom: 74px;
    font-size: 15px;
  }

  .container {
    width: min(100% - 30px, 1120px);
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 48px;
    background:
      linear-gradient(180deg, rgba(14, 14, 13, 0.72) 0%, rgba(14, 14, 13, 0.98) 360px),
      url("assets/luxury-web-hero.png") top center / auto 390px no-repeat,
      var(--charcoal);
  }

  .hero::after {
    display: none;
  }

  .header-inner {
    min-height: 58px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    font-size: 13px;
  }

  .brand-mark {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .nav {
    display: none;
  }

  .header-contact {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 6px 10px;
  }

  .header-contact span {
    display: none;
  }

  .header-contact strong {
    font-size: 12px;
  }

  h1 {
    max-width: 360px;
    padding-top: 178px;
    font-size: 34px;
    line-height: 1.34;
  }

  .hero-badge {
    margin-bottom: 14px;
    padding: 7px 11px;
    font-size: 12px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .trust-grid,
  .feature-grid,
  .option-grid,
  .flow-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 78px;
    padding: 13px 12px;
  }

  .hero-metrics strong {
    font-size: 19px;
  }

  .hero-metrics span {
    margin-top: 5px;
    font-size: 11px;
  }

  .trust-panel {
    display: none;
  }

  .trust-panel > img {
    height: 190px;
  }

  .panel-heading,
  .trust-grid {
    margin-left: 20px;
    margin-right: 20px;
  }

  .panel-heading {
    padding: 22px 0 0;
  }

  .panel-note {
    padding: 0 20px 24px;
  }

  .section-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .section-heading h2 {
    font-size: 28px;
    line-height: 1.45;
  }

  .check-list p,
  .reason-list p {
    padding: 15px 15px 15px 42px;
    font-size: 14px;
  }

  .check-list p::before,
  .reason-list p::before {
    left: 18px;
    top: 27px;
  }

  .price-card,
  .reason-card,
  .contact-form {
    padding: 22px;
  }

  .price-head h3 {
    padding-right: 72px;
    font-size: 25px;
  }

  .price strong {
    font-size: 33px;
  }

  .monthly {
    font-size: 13px;
  }

  .plan-list {
    gap: 8px;
  }

  .feature-grid div,
  .option-grid div,
  .flow-grid li {
    min-height: auto;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-note {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 132px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-fixed-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(226, 197, 141, 0.28);
    background: rgba(10, 10, 9, 0.92);
    backdrop-filter: blur(16px);
  }

  .mobile-fixed-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(226, 197, 141, 0.5);
    color: var(--gold-2);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
  }

  .mobile-fixed-cta a:last-child {
    border-color: var(--gold);
    background: var(--gold);
    color: #17100a;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 31px;
  }

  .hero-metrics strong {
    font-size: 17px;
  }

  .brand span:last-child {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
