* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.75;
  background-color: #0F0D0A;
  color: #E9E0C8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #E9E0C8;
}

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

h1,
h2,
h3,
h4 {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  color: #F8F2E0;
  line-height: 1.2;
}

::selection {
  background-color: #E0AE2E;
  color: #0F0D0A;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ CRUMB-TRAIL NAVIGATION ============ */

.crumb-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0F0D0A;
  border-bottom: 1px solid #3A2F1A;
}

.crumb-nav .crumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.crumb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.crumb-brand:hover .wordmark {
  color: #E0AE2E;
}

.seal-mark {
  width: 34px;
  height: 34px;
  background-color: #E0AE2E;
  position: relative;
  flex-shrink: 0;
  border-radius: 4px;
}

.seal-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid #0F0D0A;
  transform: rotate(45deg);
}

.seal-mark::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background-color: #0F0D0A;
}

.seal-mark.large {
  width: 46px;
  height: 46px;
}

.wordmark {
  color: #F8F2E0;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.crumb-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.crumb-links a {
  color: #E9E0C8;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.crumb-links a:hover {
  color: #F8F2E0;
  box-shadow: 0 2px 0 #E0AE2E;
}

.crumb-links .sep {
  color: #6B5E3F;
  font-size: 15px;
}

.crumb-cta {
  flex-shrink: 0;
}

.order-pill {
  display: inline-block;
  background-color: #E0AE2E;
  color: #0F0D0A;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 999px;
  transition: background-color 0.25s ease;
}

.order-pill:hover {
  background-color: #F8F2E0;
  color: #0F0D0A;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle .bar {
  display: block;
  position: absolute;
  left: 9px;
  top: 21px;
  width: 26px;
  height: 2px;
  background-color: #E0AE2E;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background-color: #E0AE2E;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.nav-toggle .bar::before {
  top: -8px;
}

.nav-toggle .bar::after {
  top: 8px;
}

.nav-toggle.active .bar {
  transform: rotate(45deg);
}

.nav-toggle.active .bar::before {
  top: 0;
  transform: rotate(90deg);
}

.nav-toggle.active .bar::after {
  top: 0;
  opacity: 0;
}

/* ============ INK-WASH AND SEAL DECORATIONS ============ */

.ink-wash {
  position: absolute;
  width: 300px;
  height: 300px;
  z-index: 0;
  pointer-events: none;
}

.ink-wash .iw-a {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background-color: #1A160E;
  left: 0;
  top: 0;
}

.ink-wash .iw-b {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #231D12;
  border: 1px solid #3A2F1A;
  left: 120px;
  top: 60px;
}

.ink-wash .iw-c {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #E0AE2E;
  left: 210px;
  top: 190px;
}

.seal-stamp {
  position: absolute;
  width: 150px;
  z-index: 0;
  pointer-events: none;
  text-align: center;
}

.seal-stamp .seal-box {
  width: 130px;
  height: 130px;
  border: 2px solid #E0AE2E;
  position: relative;
  margin: 0 auto;
  border-radius: 6px;
}

.seal-stamp .seal-box::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid #E0AE2E;
  transform: rotate(45deg);
}

.seal-stamp .seal-box::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background-color: #E0AE2E;
}

.seal-stamp .sdot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #E0AE2E;
  border-radius: 50%;
}

.seal-stamp .sdot.a {
  top: -5px;
  left: -5px;
}

.seal-stamp .sdot.b {
  top: -5px;
  right: -5px;
}

.seal-stamp .sdot.c {
  bottom: -5px;
  left: -5px;
}

.seal-stamp .sdot.d {
  bottom: -5px;
  right: -5px;
}

.brush-bar {
  position: relative;
  width: 190px;
  height: 12px;
  background-color: #E0AE2E;
  border-radius: 999px;
  margin: 26px auto 0;
}

.brush-bar::before {
  content: "";
  position: absolute;
  left: -11px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 14px solid #E0AE2E;
}

.brush-bar::after {
  content: "";
  position: absolute;
  right: -11px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #E0AE2E;
}

.brush-bar.thin {
  height: 6px;
  width: 140px;
}

.brush-bar.thin::before,
.brush-bar.thin::after {
  border-top-width: 5px;
  border-bottom-width: 5px;
}

/* ============ SEAL HERO ============ */

.seal-hero {
  position: relative;
  background-color: #0F0D0A;
  overflow: hidden;
}

.seal-hero .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 24px 110px;
  position: relative;
  z-index: 2;
}

.seal-hero .hero-body {
  max-width: 780px;
}

.eyebrow-chip {
  display: inline-block;
  background-color: #E0AE2E;
  color: #0F0D0A;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 3px;
  margin-bottom: 26px;
}

.seal-hero h1 {
  font-size: clamp(52px, 6vw, 68px);
  color: #F8F2E0;
  line-height: 1.08;
  margin-bottom: 28px;
  font-weight: 700;
}

.seal-hero h1 .gold {
  color: #E0AE2E;
}

.hero-sub {
  font-size: 19px;
  color: #E9E0C8;
  max-width: 640px;
  margin-bottom: 38px;
}

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

.btn {
  display: inline-block;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-gold {
  background-color: #E0AE2E;
  color: #0F0D0A;
}

.btn-gold:hover {
  background-color: #F8F2E0;
}

.btn-outline {
  background-color: transparent;
  border-color: #F8F2E0;
  color: #F8F2E0;
}

.btn-outline:hover {
  background-color: #F8F2E0;
  color: #0F0D0A;
}

.hero-divider {
  margin-top: 56px;
}

/* ============ SECTION HEADINGS ============ */

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

.section-head .eyebrow-chip {
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: 42px;
  color: #F8F2E0;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 20px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 74px;
  height: 3px;
  background-color: #E0AE2E;
  border-radius: 2px;
}

.section-head p {
  color: #A99C7C;
  font-size: 17px;
  margin-top: 16px;
}

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

.section-head.left h2::after {
  left: 0;
  transform: none;
}

/* ============ ALTERNATING ROWS ============ */

.alternating-rows {
  background-color: #0F0D0A;
  padding: 110px 0 20px;
}

.alternating-rows .ar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ar-row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 70px 0;
  border-bottom: 1px solid #3A2F1A;
}

.ar-row:last-of-type {
  border-bottom: none;
}

.ar-row.reverse {
  flex-direction: row-reverse;
}

.ar-media {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.ar-text {
  flex: 1;
}

.ar-text h3 {
  font-size: 30px;
  color: #F8F2E0;
  margin-bottom: 18px;
}

.ar-text p {
  color: #E9E0C8;
  margin-bottom: 20px;
}

.mini-list {
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 26px;
  color: #E9E0C8;
  margin-bottom: 10px;
  font-size: 16px;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: #E0AE2E;
  transform: rotate(45deg);
}

/* ink circle media graphic */
.media-circle {
  width: 300px;
  height: 300px;
  position: relative;
}

.media-circle .mc-a {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #1A160E;
}

.media-circle .mc-b {
  position: absolute;
  inset: 46px;
  border-radius: 50%;
  background-color: #231D12;
  border: 1px solid #3A2F1A;
}

.media-circle .mc-c {
  position: absolute;
  inset: 96px;
  border-radius: 50%;
  border: 3px solid #E0AE2E;
}

.media-circle .mc-d {
  position: absolute;
  top: 22px;
  left: 138px;
  width: 16px;
  height: 16px;
  background-color: #E0AE2E;
  border-radius: 50%;
}

/* seal media graphic */
.media-seal {
  width: 280px;
  height: 300px;
  position: relative;
}

.media-seal .ms-box {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 190px;
  border: 3px solid #E0AE2E;
  border-radius: 8px;
}

.media-seal .ms-box::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 2px solid #E0AE2E;
  transform: rotate(45deg);
}

.media-seal .ms-box::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  height: 3px;
  margin-top: -2px;
  background-color: #E0AE2E;
}

.media-seal .ms-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #E0AE2E;
  border-radius: 50%;
}

.media-seal .ms-dot.a {
  top: 24px;
  left: 24px;
}

.media-seal .ms-dot.b {
  top: 24px;
  right: 24px;
}

.media-seal .ms-dot.c {
  bottom: 24px;
  left: 24px;
}

.media-seal .ms-dot.d {
  bottom: 24px;
  right: 24px;
}

.media-seal .brush-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

/* brush stroke media graphic */
.media-brush {
  width: 320px;
  height: 200px;
  position: relative;
}

.media-brush .mb-stroke {
  position: absolute;
  left: 0;
  right: 0;
  height: 16px;
  background-color: #E0AE2E;
  border-radius: 999px;
}

.media-brush .mb-stroke::before {
  content: "";
  position: absolute;
  left: -12px;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 16px solid #E0AE2E;
}

.media-brush .mb-stroke::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 16px solid #E0AE2E;
}

.media-brush .mb-one {
  top: 18px;
  left: 30px;
  right: 30px;
}

.media-brush .mb-two {
  top: 78px;
  left: 60px;
  right: 60px;
  height: 11px;
}

.media-brush .mb-three {
  top: 132px;
  left: 100px;
  right: 100px;
  height: 8px;
}

/* ============ METRIC BAND ============ */

.metric-band {
  background-color: #E0AE2E;
  margin-top: 60px;
}

.metric-band .mb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
}

.metric {
  flex: 1;
  text-align: center;
  color: #0F0D0A;
  border-right: 1px solid #6B4E14;
  padding: 10px 16px;
}

.metric:last-child {
  border-right: none;
}

.metric .num {
  display: block;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #0F0D0A;
}

.metric .lbl {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6B4E14;
  margin-top: 10px;
  font-weight: 700;
}

/* ============ FAQ ACCORDION ============ */

.faq-section {
  background-color: #1A160E;
  padding: 110px 0;
}

.faq-section .faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid #3A2F1A;
}

.faq-item:first-of-type {
  border-top: 1px solid #3A2F1A;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #F8F2E0;
  font-size: 21px;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-weight: 700;
}

.faq-q .plus {
  color: #E0AE2E;
  font-size: 28px;
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  color: #E9E0C8;
  padding: 0 0 26px;
}

/* ============ CTA BAND ============ */

.cta-band {
  background-color: #231D12;
  padding: 100px 0;
  text-align: center;
}

.cta-band .cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-band h2 {
  color: #F8F2E0;
  font-size: 38px;
  margin-bottom: 16px;
}

.cta-band p {
  color: #A99C7C;
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}

.cta-band .btn {
  margin-top: 30px;
}

/* ============ TWO-COLUMN FOOTER ============ */

.two-col-footer {
  background-color: #0F0D0A;
  border-top: 1px solid #3A2F1A;
}

.two-col-footer .tf-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 36px;
}

.tf-cols {
  display: flex;
  gap: 56px;
}

.tf-brand {
  flex: 1.2;
}

.tf-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.tf-brand .blurb {
  color: #E9E0C8;
  margin-bottom: 22px;
  max-width: 480px;
}

.tf-contact {
  color: #F8F2E0;
  font-size: 16px;
  line-height: 1.9;
}

.tf-contact a {
  color: #F8F2E0;
  text-decoration: none;
}

.tf-contact a:hover {
  color: #E0AE2E;
}

.tf-links {
  flex: 0.8;
  display: flex;
  gap: 56px;
  border-left: 1px solid #3A2F1A;
  padding-left: 56px;
}

.tf-links h4 {
  color: #F8F2E0;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.tf-links a {
  display: block;
  color: #E9E0C8;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 16px;
}

.tf-links a:hover {
  color: #F8F2E0;
  box-shadow: 0 2px 0 #E0AE2E;
}

.tf-legal {
  border-top: 1px solid #3A2F1A;
  margin-top: 44px;
  padding-top: 24px;
  color: #A99C7C;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.tf-legal a {
  color: #A99C7C;
  text-decoration: none;
}

.tf-legal a:hover {
  color: #E0AE2E;
}

/* ============ PAGE BANNER (secondary pages) ============ */

.page-banner {
  position: relative;
  background-color: #0F0D0A;
  overflow: hidden;
  border-bottom: 1px solid #3A2F1A;
}

.page-banner .banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 84px;
  position: relative;
  z-index: 2;
}

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

.page-banner h1 {
  font-size: clamp(42px, 5vw, 58px);
  color: #F8F2E0;
  margin-bottom: 18px;
}

.page-banner h1 .gold {
  color: #E0AE2E;
}

.page-banner p {
  font-size: 19px;
  color: #E9E0C8;
  max-width: 700px;
}

/* ============ SERVICES PAGE ============ */

.services-list {
  background-color: #0F0D0A;
  padding: 100px 0 20px;
}

.services-list .sl-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-block {
  display: flex;
  gap: 50px;
  padding: 58px 0;
  border-bottom: 1px solid #3A2F1A;
  align-items: flex-start;
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-index {
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  border: 2px solid #E0AE2E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #E0AE2E;
  font-family: Georgia, Cambria, "Times New Roman", serif;
}

.service-body {
  flex: 1;
}

.service-body h2 {
  font-size: 27px;
  color: #F8F2E0;
  margin-bottom: 14px;
}

.service-body p {
  color: #E9E0C8;
  margin-bottom: 14px;
}

.service-body .service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 16px;
}

.service-points span {
  position: relative;
  padding-left: 22px;
  color: #E9E0C8;
  font-size: 15px;
}

.service-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  background-color: #E0AE2E;
  transform: rotate(45deg);
}

.process-section {
  background-color: #1A160E;
  padding: 100px 0;
}

.process-section .proc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.process-steps {
  display: flex;
  gap: 0;
  margin-top: 20px;
}

.process-step {
  flex: 1;
  position: relative;
  padding: 0 22px;
}

.process-step::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #E0AE2E;
}

.process-step:last-child::after {
  display: none;
}

.process-step .step-num {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #E0AE2E;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 18px;
  color: #F8F2E0;
  margin-bottom: 10px;
}

.process-step p {
  color: #A99C7C;
  font-size: 15px;
}

/* ============ CONTACT PAGE ============ */

.contact-main {
  background-color: #0F0D0A;
  padding: 100px 0;
}

.contact-main .cm-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 64px;
}

.contact-form-col {
  flex: 1.1;
}

.contact-form {
  background-color: #1A160E;
  border: 1px solid #3A2F1A;
  padding: 44px;
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  color: #F8F2E0;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background-color: #0F0D0A;
  border: 1px solid #3A2F1A;
  color: #E9E0C8;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 16px;
  padding: 13px 15px;
  border-radius: 4px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #E0AE2E;
}

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

.form-status {
  display: none;
  color: #E0AE2E;
  margin-top: 16px;
  font-weight: 700;
}

.form-status.shown {
  display: block;
}

.contact-info-col {
  flex: 0.9;
}

.contact-info-col h2 {
  font-size: 30px;
  color: #F8F2E0;
  margin-bottom: 20px;
}

.contact-info-col p {
  color: #E9E0C8;
  margin-bottom: 16px;
}

.info-line {
  background-color: #1A160E;
  border-left: 3px solid #E0AE2E;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.info-line .il-label {
  display: block;
  color: #E0AE2E;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-line .il-value {
  color: #F8F2E0;
  font-size: 17px;
}

.info-line .il-value a {
  color: #F8F2E0;
  text-decoration: none;
}

.info-line .il-value a:hover {
  color: #E0AE2E;
}

.contact-faq {
  background-color: #1A160E;
  padding: 100px 0;
}

.contact-faq .faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ FADE-UP REVEAL ============ */

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

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 900px) {
  .crumb-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background-color: #1A160E;
    border-bottom: 1px solid #3A2F1A;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
  }

  .crumb-links.nav-open {
    display: flex;
  }

  .crumb-links a {
    padding: 16px 0;
    border-bottom: 1px solid #3A2F1A;
    width: 100%;
  }

  .crumb-links .sep {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .wordmark {
    font-size: 17px;
    letter-spacing: 3px;
  }

  .ar-row,
  .ar-row.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .ar-media {
    order: 0;
  }

  .metric-band .mb-inner {
    flex-wrap: wrap;
  }

  .metric {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid #6B4E14;
    padding: 20px 10px;
  }

  .metric:nth-child(odd) {
    border-right: 1px solid #6B4E14;
  }

  .metric:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .tf-cols {
    flex-direction: column;
    gap: 36px;
  }

  .tf-links {
    border-left: none;
    border-top: 1px solid #3A2F1A;
    padding-left: 0;
    padding-top: 32px;
  }

  .process-steps {
    flex-direction: column;
    gap: 26px;
  }

  .process-step::after {
    display: none;
  }

  .contact-main .cm-inner {
    flex-direction: column;
    gap: 48px;
  }

  .service-block {
    flex-direction: column;
    gap: 20px;
  }

  .seal-stamp {
    display: none;
  }

  .seal-hero .hero-inner {
    padding: 90px 24px 80px;
  }
}

@media (max-width: 560px) {
  .order-pill {
    display: none;
  }

  .seal-hero h1 {
    font-size: 46px;
  }

  .metric .num {
    font-size: 40px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .contact-form {
    padding: 28px;
  }

  .tf-legal {
    flex-direction: column;
    gap: 6px;
  }
}
