:root {
  --paper: #FAF6EF;
  --ink: #241D14;
  --ink-soft: #574A33;
  --gold: #C9973F;
  --gold-deep: #8A6B2F;
  --champagne: #EBDDBE;
  --hairline: #E5DAC3;
  --hairline-soft: #EDE3CE;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #241D14;
  background-color: #FAF6EF;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: #241D14;
  line-height: 1.18;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1.1em;
}

a {
  color: #8A6B2F;
  text-decoration: none;
}

a:hover {
  color: #6E5524;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: #C9973F;
  color: #241D14;
  border: 2px solid #C9973F;
}

.btn-gold:hover {
  background: #B9872F;
  border-color: #B9872F;
  color: #241D14;
}

.btn-outline {
  background: transparent;
  color: #8A6B2F;
  border: 2px solid #8A6B2F;
}

.btn-outline:hover {
  background: #8A6B2F;
  color: #FAF6EF;
}

.btn-dark {
  background: #241D14;
  color: #FAF6EF;
  border: 2px solid #241D14;
}

.btn-dark:hover {
  background: #3A2F20;
  border-color: #3A2F20;
  color: #FAF6EF;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EBDDBE;
  color: #8A6B2F;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.eyebrow-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C9973F;
}

.section-pad {
  padding: 88px 0;
}

.section-pad-tight {
  padding: 64px 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.gilded-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #FAF6EF;
  border-bottom: 1px solid #C9973F;
}

.gilded-nav .nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-plaque {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #C9973F;
  border-radius: 9px;
  padding: 7px 15px;
  color: #8A6B2F;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-decoration: none;
  background: #FAF6EF;
  flex-shrink: 0;
}

.brand-plaque:hover {
  color: #6E5524;
  border-color: #8A6B2F;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: #574A33;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 0;
}

.nav-links a:hover {
  color: #8A6B2F;
}

.nav-links a.active {
  color: #8A6B2F;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #C9973F;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C9973F;
  color: #241D14;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #B9872F;
  color: #241D14;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #8A6B2F;
  border-radius: 7px;
  width: 44px;
  height: 40px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #8A6B2F;
  margin: 4px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gilded-nav.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.gilded-nav.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.gilded-nav.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.tape-hero {
  padding: 72px 0 88px;
}

.tape-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-left h1 {
  font-size: 52px;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero-sub {
  color: #574A33;
  font-size: 18px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote-board {
  background: #EBDDBE;
  border: 1px solid #C9973F;
  border-radius: 16px;
  padding: 28px 26px;
}

.quote-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid #C9973F;
}

.qb-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 18px;
  color: #241D14;
  letter-spacing: 0.04em;
}

.qb-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A6B2F;
}

.quote-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #D9C89F;
}

.quote-row:last-child {
  border-bottom: none;
}

.qr-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #574A33;
  width: 96px;
  flex-shrink: 0;
}

.qr-value {
  flex: 1;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 22px;
  padding: 12px 10px;
  border-radius: 8px;
}

.qr-value.qr-gold {
  background: #C9973F;
  color: #241D14;
}

.qr-value.qr-dark {
  background: #241D14;
  color: #FAF6EF;
}

.qr-marker {
  width: 28px;
  text-align: center;
  font-size: 18px;
  flex-shrink: 0;
}

.qr-marker.up {
  color: #8A6B2F;
}

.qr-marker.down {
  color: #5A3F1B;
}

.statement-row {
  background: #241D14;
  padding: 72px 0;
}

.statement-row .statement-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.35;
  color: #F7F0E1;
  max-width: 960px;
  margin: 0;
}

.statement-row .statement-text em {
  color: #C9973F;
  font-style: normal;
}

.principle-rows {
  padding: 88px 0;
}

.principles-head {
  margin-bottom: 20px;
}

.principles-head .eyebrow-chip {
  margin-bottom: 18px;
}

.principles-head h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.principles-head p {
  color: #574A33;
  max-width: 640px;
  font-size: 17px;
}

.principle-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 42px 0;
  border-top: 1px solid #E5DAC3;
}

.principle-row:last-child {
  border-bottom: 1px solid #E5DAC3;
}

.principle-numeral {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1;
  color: #C9973F;
  font-weight: 700;
}

.principle-row h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.principle-row p {
  color: #574A33;
  font-size: 17px;
  max-width: 720px;
  margin-bottom: 0;
}

.holdings-band {
  background: #EBDDBE;
  padding: 72px 0;
}

.holdings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.holding-item {
  border-top: 4px solid #C9973F;
  padding-top: 22px;
}

.holding-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 700;
  color: #241D14;
  line-height: 1;
  margin-bottom: 10px;
}

.holding-label {
  color: #574A33;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.insight-columns {
  padding: 88px 0;
}

.insights-head {
  margin-bottom: 48px;
}

.insights-head .eyebrow-chip {
  margin-bottom: 18px;
}

.insights-head h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.insights-head p {
  color: #574A33;
  max-width: 640px;
  font-size: 17px;
}

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

.insight-col {
  padding: 0 40px;
  border-left: 1px solid #E5DAC3;
}

.insight-col:first-child {
  border-left: none;
  padding-left: 0;
}

.insight-col:last-child {
  padding-right: 0;
}

.insight-marker {
  width: 16px;
  height: 16px;
  background: #C9973F;
  border-radius: 3px;
  margin-bottom: 22px;
}

.insight-col h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.insight-col p {
  color: #574A33;
  font-size: 16px;
}

.faq {
  padding: 88px 0;
  background: #FAF6EF;
}

.faq-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.faq-head .eyebrow-chip {
  margin-bottom: 18px;
}

.faq-head h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.faq-head p {
  color: #574A33;
  font-size: 17px;
}

.faq-list {
  max-width: 820px;
}

.faq-list details {
  border-top: 1px solid #E5DAC3;
}

.faq-list details:last-of-type {
  border-bottom: 1px solid #E5DAC3;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  color: #241D14;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: inherit;
  font-size: 28px;
  font-weight: 400;
  color: #C9973F;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2013";
}

.faq-list .faq-answer {
  padding: 0 40px 26px 0;
  color: #574A33;
  font-size: 16px;
}

.cta-band {
  background: #C9973F;
  padding: 76px 0;
}

.cta-band .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: 34px;
  color: #241D14;
  margin-bottom: 10px;
}

.cta-band p {
  color: #3A2F20;
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 0;
}

.deep-footer {
  margin-top: 0;
}

.footer-top {
  background: #241D14;
  color: #F7F0E1;
  padding: 64px 0 56px;
}

.footer-top .container {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 360px;
}

.footer-wordmark {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.16em;
  color: #EBDDBE;
  margin-bottom: 14px;
}

.footer-desc {
  color: #C9BFA7;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-cols {
  display: flex;
  gap: 72px;
}

.footer-col h4 {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9973F;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: #C9BFA7;
  font-size: 15px;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #EBDDBE;
}

.footer-bottom {
  background: #C9973F;
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;
  color: #241D14;
  font-size: 14px;
  text-align: center;
}

.footer-bottom a {
  color: #241D14;
  font-weight: 600;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #3A2F20;
}

.page-hero {
  padding: 80px 0 60px;
}

.page-hero .eyebrow-chip {
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: 46px;
  max-width: 780px;
  margin-bottom: 18px;
}

.page-hero .page-lede {
  color: #574A33;
  font-size: 18px;
  max-width: 720px;
  line-height: 1.75;
}

.service-block {
  padding: 56px 0;
  border-top: 1px solid #E5DAC3;
}

.service-block .container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
}

.service-block-index {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  color: #C9973F;
  letter-spacing: 0.06em;
}

.service-block h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.service-block p {
  color: #574A33;
  font-size: 17px;
  max-width: 720px;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 720px;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #574A33;
  font-size: 16px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #C9973F;
  border-radius: 2px;
}

.process {
  padding: 72px 0;
  background: #EBDDBE;
}

.process .eyebrow-chip {
  margin-bottom: 18px;
}

.process h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  border-top: 4px solid #C9973F;
  padding-top: 20px;
}

.process-step-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  color: #8A6B2F;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step p {
  color: #574A33;
  font-size: 15px;
  margin-bottom: 0;
}

.contact-section {
  padding: 40px 0 88px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
}

.form-panel h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  color: #241D14;
  letter-spacing: 0.02em;
}

.field input,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  color: #241D14;
  background: #FFFFFF;
  border: 1px solid #D9C89F;
  border-radius: 8px;
  padding: 13px 15px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #C9973F;
  box-shadow: 0 0 0 3px #EBDDBE;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  font-size: 15px;
  font-weight: 600;
  color: #8A6B2F;
  min-height: 22px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-card {
  background: #EBDDBE;
  border: 1px solid #D9C89F;
  border-radius: 12px;
  padding: 26px 28px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #241D14;
}

.info-card p {
  color: #574A33;
  margin-bottom: 6px;
  font-size: 15px;
}

.info-card a {
  color: #8A6B2F;
  font-weight: 600;
}

.mini-faq details {
  border-top: 1px solid #E5DAC3;
  padding: 16px 0;
}

.mini-faq details:last-of-type {
  border-bottom: 1px solid #E5DAC3;
}

.mini-faq summary {
  list-style: none;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  color: #241D14;
  position: relative;
  padding-right: 30px;
}

.mini-faq summary::-webkit-details-marker {
  display: none;
}

.mini-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #C9973F;
}

.mini-faq details[open] summary::after {
  content: "\2013";
}

.mini-faq .faq-answer {
  color: #574A33;
  font-size: 15px;
  padding-top: 10px;
}

@media (max-width: 960px) {
  .tape-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .statement-row .statement-text {
    font-size: 28px;
  }

  .holdings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .insight-col {
    padding: 0;
    border-left: none;
    border-top: 1px solid #E5DAC3;
    padding-top: 32px;
  }

  .insight-col:first-child {
    border-top: none;
    padding-top: 0;
  }

  .service-block .container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #FAF6EF;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid #C9973F;
    box-shadow: 0 16px 30px #E5DAC3;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid #E5DAC3;
    font-size: 14px;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .gilded-nav.menu-open .nav-links {
    display: flex;
  }

  .gilded-nav.menu-open .nav-cta {
    display: inline-flex;
    margin: 16px 24px 20px;
    position: absolute;
    top: auto;
  }
}

@media (max-width: 640px) {
  .hero-left h1 {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .statement-row .statement-text {
    font-size: 24px;
  }

  .principle-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .principle-numeral {
    font-size: 48px;
  }

  .holding-num {
    font-size: 34px;
  }

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

  .footer-top .container {
    flex-direction: column;
  }

  .footer-cols {
    gap: 48px;
  }

  .page-hero h1 {
    font-size: 36px;
  }
}
