:root {
  --white: #ffffff;
  --black: #000000;
  --dark: #011010;
  --ivory: #f8f5ee;
  --ivory-deep: #f1eadc;
  --charcoal: #242522;
  --charcoal-2: #181a18;
  --gold: #c49a43;
  --gold-dark: #9b7329;
  --gold-light: #e5cf9b;
  --line: #e5ddcf;
  --muted: #6d685f;
  --shadow: 0 16px 40px rgba(42, 35, 24, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.018em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
}
.wrap {
  max-width: 1180px;
  margin: auto;
  padding: 0 28px;
}
.narrow {
  max-width: 900px;
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  width: 220px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav-links a {
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 0.2s;
}
.nav-links a:hover {
  color: var(--charcoal-2);
}
.nav-links a:hover:after {
  right: 0;
}
.nav-link-mobile {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav-link-mobile a {
  position: relative;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 13px;
}
.nav-phone {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 16px;
  color: var(--charcoal);
}
.nav-phone:hover {
  color: var(--gold-dark);
}
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 25px;
  color: var(--charcoal);
}
.mobile-menu {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.18s, background 0.18s, border-color 0.18s, color 0.18s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn-outline {
  background: #fff;
  border-color: #bdb5a6;
  color: var(--charcoal);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.nav-button {
  padding: 11px 18px;
  font-size: 10px;
}
.btn-light {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--charcoal);
}
.hero {
  padding: 62px 0 54px;
  background: linear-gradient(180deg, #fff 0%, #fff 82%, var(--ivory) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 52px;
}
.hero-copy {
  padding: 4px 0;
}
.rule-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.rule-label span:first-child,
.rule-label span:last-child {
  height: 1px;
  width: 54px;
  background: var(--gold-light);
}
.hero h1 {
  font-size: clamp(48px, 5.4vw, 74px);
  font-weight: 700;
  margin: 0 0 18px;
}
.hero h1 em {
  display: block;
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 500;
}
.lead {
  font-size: 17px;
  color: var(--charcoal-2);
}
.smallprint {
  font-size: 15px;
  color: var(--charcoal);
}
.hero-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.trust-points div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-points strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px;
}
.trust-points span {
  font-size: 11px;
  color: var(--muted);
}
.hero-visual {
  position: relative;
}
.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  background: #eee8dd;
  border: none;
  box-shadow: var(--shadow);
}
.hero-photo {
  width: 100%;
  object-fit: cover;
}
.price-card {
  position:relative;
  right: 24px;
  top: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--gold);
  padding: 17px 20px 15px;
  min-width: 190px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.price-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  font-weight: 700;
  color: #615a50;
  border-bottom: 1px solid #e7dfcf;
  padding-bottom: 8px;
  margin-bottom: 7px;
}
.price-card strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px;
  display: inline-block;
}
.price-card small {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  margin-left: 5px;
}
.price-card i {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: #6a665e;
  margin-top: 5px;
}
.hero-caption {
  text-align: right;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: #837c70;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}
.quote-section {
  padding: 58px 0;
  background: var(--ivory);
}
.calc-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  align-items: center;
}
.calc-intro {
  padding-left: 4px;
}
.calc-intro h2 {
  font-size: 44px;
  margin: 9px 0 12px;
}
.calc-intro p {
  color: var(--muted);
  max-width: 32ch;
}
.calc {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}
.calc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}
.calc-head h3 {
  font-size: 24px;
}
.calc-head span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  color: #918a7f;
}
.karat-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}
.karat-btn {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 4px;
  border-radius: 2px;
  font-weight: 700;
  color: #69635a;
}
.karat-btn:hover {
  border-color: var(--gold);
}
.karat-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
.weight-field {
  margin-top: 23px;
}
.weight-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.weight-controls {
  display: flex;
  align-items: center;
  gap: 17px;
}
.weight-controls input {
  flex: 1;
  accent-color: var(--gold);
}
.weight-num {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  min-width: 58px;
  text-align: right;
}
.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-top: 23px;
}
.r-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #81796e;
  margin-bottom: 3px;
}
.r-value {
  font-family: "IBM Plex Mono", monospace;
  font-size: 30px;
  font-weight: 600;
}
.spot-today {
  text-align: right;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}
.calc-fine {
  font-size: 10px;
  color: #81796e;
  margin: 16px 0 18px;
}
.calc-cta {
  width: 100%;
}
.trust-bar {
  background: var(--charcoal);
  color: #fff;
}
.trust-bar-inner {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.trust-bar .item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 10px;
}
.trust-bar .item:first-child {
  padding-left: 0;
}
.trust-bar .item:last-child {
  border-right: 0;
}
.trust-bar .item span {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 14px;
}
.section {
  padding: 84px 0;
}
.section-ivory {
  background: var(--ivory);
}
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}
.section-head h2 {
  font-size: clamp(36px, 4vw, 51px);
  margin: 9px 0 12px;
}
.section-head p {
  color: var(--muted);
  font-size: 15px;
}
.buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.buy-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 23px 20px;
  min-height: 225px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.buy-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #cbb57d;
}
.icon {
  font-size: 28px;
  margin-bottom: 15px;
}
.buy-card h4 {
  font-size: 20px;
  margin: 0 0 8px;
}
.buy-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.process-section {
  background: var(--charcoal);
  color: #fff;
}
.process-section .eyebrow {
  color: var(--gold-light);
}
.process-section .section-head p {
  color: #c8c2b8;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  position: relative;
  padding: 22px 34px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.step:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.step .num {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  margin-bottom: 15px;
}
.step h3 {
  font-size: 23px;
  margin: 0 0 8px;
  color: #fff;
}
.step p {
  color: #c9c3b9;
  font-size: 13px;
  max-width: 34ch;
  margin: 0;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  color: var(--charcoal);
}
.plus {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-dark);
  transition: transform 0.2s;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a p {
  color: var(--muted);
  font-size: 13px;
  padding: 0 40px 21px 0;
}
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, #b88b35, #d0ab5d);
  color: #fff;
  padding: 54px 0;
}
.final-cta:before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -52px;
  width: 210px;
  height: 230px;
  background: url("../images/maple-leaf-wm.svg") center/contain no-repeat;
  opacity: 0.6;
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.final-cta h2 {
  font-size: 39px;
  margin: 8px 0 6px;
}
.final-cta p {
  color: #fff;
  margin: 0;
}
.final-cta .eyebrow {
  color: #fff;
}
.final-cta .hero-actions {
  margin-top: 0;
}
.site-footer {
  background: var(--charcoal-2);
  color: #d7d1c5;
  padding: 48px 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 65px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand {
  max-width: 370px;
}
.footer-logo {
  width: 190px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.7;
  color: #a9a39a;
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot-col h5 {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin: 0 0 7px;
}
.foot-col a {
  font-size: 12px;
  color: #d7d1c5;
}
.foot-col a:hover {
  color: #fff;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
  color: #888279;
  font-size: 9px;
}
.contact-col a:first-of-type {
  font-family: "IBM Plex Mono", monospace;
}
@media (max-width: 980px) {
  .nav-links {
    gap: 17px;
  }
  .nav-phone {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero-visual {
    max-width: 720px;
  }
  .calc-panel {
    grid-template-columns: 1fr;
  }
  .calc-intro {
    padding: 0;
    text-align: center;
  }
  .calc-intro p {
    margin: auto;
  }
  .buy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .trust-bar .item {
    padding: 9px 15px;
  }
  .footer-top {
    gap: 35px;
  }
}
@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }
  .nav {
    min-height: 74px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .brand-logo {
    width: 170px;
  }
  .nav-links,
  .nav-phone {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta {
    margin-left: auto;
  }
  .nav-button {
    display: none;
  }
  .mobile-menu {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 12px 20px 20px;
  }
  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu a {
    padding: 13px 0;
    border-bottom: 1px solid #eee7da;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .hero {
    padding: 45px 0 42px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .lead {
    font-size: 16px;
  }
  .trust-points {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .price-card {
    right: 12px;
    top: 12px;
    min-width: 165px;
    padding: 13px 14px;
  }
  .price-card strong {
    font-size: 27px;
  }
  .quote-section {
    padding: 42px 0;
  }
  .calc {
    padding: 22px 18px;
  }
  .calc-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .karat-row {
    gap: 5px;
  }
  .karat-btn {
    padding: 9px 2px;
    font-size: 12px;
  }
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }
  .trust-bar .item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    padding: 10px 0;
  }
  .trust-bar .item:last-child {
    border-bottom: 0;
  }
  .section {
    padding: 64px 0;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .buy-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .buy-card {
    min-height: 0;
  }
  .step {
    padding: 22px 0 28px;
    border-right: 0 !important;
  }
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .final-cta h2 {
    font-size: 32px;
  }
  .final-cta .hero-actions {
    width: 100%;
  }
  .final-cta .btn {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .foot-bottom {
    flex-direction: column;
  }
  .footer-logo {
    width: 170px;
  }
}
