/* FaShen — site stylesheet. Dark velvet-crimson theme. */

:root {
  --bg: #160D0F;
  --panel: #231417;
  --crimson: #A62B3C;
  --crimson-deep: #8C2231;
  --rosegold: #D98A7A;
  --ink: #F6E9E6;
  --ink-soft: #CFBAB4;
  --hairline: #4A2329;
  --shadow: #0A0506;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #F6E9E6;
  background-color: #160D0F;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: #F6E9E6;
  line-height: 1.18;
  margin: 0 0 20px;
  font-weight: 700;
}

p {
  margin: 0 0 18px;
  color: #F6E9E6;
}

a {
  color: #A62B3C;
  text-decoration: none;
}

a:hover {
  color: #D98A7A;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* ------------------------------------------------------------------ */
/* Shared components                                                   */
/* ------------------------------------------------------------------ */

.eyebrow-chip {
  display: inline-block;
  background-color: #D98A7A;
  color: #160D0F;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-block;
  color: #D98A7A;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background-color: #A62B3C;
  color: #F6E9E6;
}

.btn-primary:hover {
  background-color: #8C2231;
  color: #F6E9E6;
}

.btn-outline {
  background-color: #160D0F;
  border-color: #D98A7A;
  color: #D98A7A;
}

.btn-outline:hover {
  background-color: #D98A7A;
  color: #160D0F;
}

.btn-dark {
  background-color: #160D0F;
  color: #F6E9E6;
}

.btn-dark:hover {
  background-color: #000000;
  color: #F6E9E6;
}

/* Scroll reveal — visible by default, animated only when JS adds .js */
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .fade-up {
  opacity: 0;
  transform: translateY(18px);
}

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

/* ------------------------------------------------------------------ */
/* Orb navigation                                                      */
/* ------------------------------------------------------------------ */

.orb-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #160D0F;
  border-bottom: 2px solid #A62B3C;
  transition: box-shadow 0.25s ease;
}

.orb-nav.is-scrolled {
  box-shadow: 0 10px 30px #0A0506;
}

.orb-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.orb-nav-brand {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 3px;
  color: #D98A7A;
}

.orb-nav-brand:hover {
  color: #D98A7A;
}

.orb-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.orb-nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F6E9E6;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 2px;
}

.orb-nav-links a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #A62B3C;
  flex: none;
}

.orb-nav-links a:hover {
  color: #D98A7A;
}

.orb-nav-links a.is-active {
  box-shadow: inset 0 -3px 0 #D98A7A;
  color: #F6E9E6;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #231417;
  border: 1px solid #A62B3C;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #F6E9E6;
  margin: 3px 0;
}

/* ------------------------------------------------------------------ */
/* Gem hero                                                            */
/* ------------------------------------------------------------------ */

.gem-hero {
  background-color: #160D0F;
  border-bottom: 1px solid #4A2329;
}

.gem-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 104px 24px 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.gem-hero-copy {
  flex: 0 1 660px;
}

.gem-hero h1 {
  font-size: 56px;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 19px;
  color: #CFBAB4;
  max-width: 620px;
  margin: 0 0 36px;
}

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

.gemstone {
  position: relative;
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
}

.gem-rhombus-outer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  transform: rotate(45deg);
  border: 2px solid #A62B3C;
}

.gem-rhombus-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 55px;
  height: 55px;
  margin: -27px 0 0 -27px;
  transform: rotate(45deg);
  background-color: #D98A7A;
}

/* ------------------------------------------------------------------ */
/* Foundation narrative band                                           */
/* ------------------------------------------------------------------ */

.foundation-band {
  background-color: #160D0F;
  padding: 100px 24px;
}

.foundation-inner {
  max-width: 840px;
  margin: 0 auto;
}

.foundation-band h2 {
  font-size: 38px;
  margin-bottom: 30px;
}

.foundation-band p {
  font-size: 18px;
  color: #CFBAB4;
}

.foundation-band p + p {
  margin-top: 20px;
}

/* ------------------------------------------------------------------ */
/* Service grid                                                        */
/* ------------------------------------------------------------------ */

.service-grid-section {
  background-color: #160D0F;
  padding: 0 24px 104px;
}

.service-grid-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.service-grid-head h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.service-grid-head p {
  color: #CFBAB4;
  font-size: 18px;
}

.section-ornament {
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  background-color: #A62B3C;
  margin: 0 auto 20px;
}

.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background-color: #231417;
  border-top: 3px solid #A62B3C;
  padding: 36px 32px 40px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px #0A0506;
}

.service-number {
  display: block;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #D98A7A;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p {
  color: #CFBAB4;
  font-size: 16px;
  margin-bottom: 0;
}

/* ------------------------------------------------------------------ */
/* Metric band                                                         */
/* ------------------------------------------------------------------ */

.metric-band {
  background-color: #231417;
  border-top: 3px solid #A62B3C;
}

.metric-band-head {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 0;
  text-align: center;
}

.metric-band-head h2 {
  font-size: 34px;
  margin-bottom: 0;
}

.metric-band-lead {
  color: #CFBAB4;
  max-width: 720px;
  margin: 18px auto 0;
}

.metric-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  text-align: center;
  padding: 28px 16px;
}

.metric + .metric {
  border-left: 1px solid #4A2329;
}

.metric-value {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: #D98A7A;
}

.metric-suffix {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: #D98A7A;
}

.metric-label {
  display: block;
  margin-top: 12px;
  color: #F6E9E6;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

/* ------------------------------------------------------------------ */
/* Statement band                                                      */
/* ------------------------------------------------------------------ */

.statement-band {
  background-color: #A62B3C;
  padding: 100px 24px;
  text-align: center;
}

.statement-band p {
  color: #160D0F;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 840px;
  margin: 0 auto;
}

/* ------------------------------------------------------------------ */
/* CTA band                                                            */
/* ------------------------------------------------------------------ */

.cta-band {
  background-color: #A62B3C;
  padding: 108px 24px;
  text-align: center;
  border-top: 1px solid #8C2231;
}

.cta-band h2 {
  color: #160D0F;
  font-size: 44px;
  margin-bottom: 16px;
}

.cta-band p {
  color: #160D0F;
  font-weight: 600;
  font-size: 18px;
  max-width: 660px;
  margin: 0 auto 38px;
}

/* ------------------------------------------------------------------ */
/* Crest footer                                                        */
/* ------------------------------------------------------------------ */

.crest-footer {
  background-color: #160D0F;
}

.crest-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px;
}

.crest-row + .crest-row {
  border-top: 1px solid #4A2329;
}

.crest-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crest-brand {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 3px;
  color: #D98A7A;
}

.crest-links {
  display: flex;
  gap: 28px;
}

.crest-links a {
  color: #F6E9E6;
  font-weight: 700;
  font-size: 15px;
}

.crest-links a:hover {
  color: #D98A7A;
}

.crest-row-contact p,
.crest-row-legal p {
  margin: 0;
  text-align: center;
  color: #CFBAB4;
  font-size: 14px;
}

.crest-row-legal a {
  color: #CFBAB4;
  text-decoration: underline;
}

.crest-row-legal a:hover {
  color: #D98A7A;
}

/* ------------------------------------------------------------------ */
/* Services page                                                       */
/* ------------------------------------------------------------------ */

.services-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px 48px;
  text-align: center;
}

.services-header h1 {
  font-size: 48px;
}

.services-header p {
  color: #CFBAB4;
  font-size: 19px;
  max-width: 780px;
  margin: 0 auto;
}

.service-detail {
  max-width: 840px;
  margin: 0 auto;
  padding: 56px 24px;
}

.service-detail + .service-detail {
  border-top: 1px solid #4A2329;
}

.service-detail h2 {
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-detail h2::before {
  content: "";
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  background-color: #A62B3C;
  flex: none;
}

.service-detail p {
  color: #CFBAB4;
  font-size: 17px;
}

.process-overview {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 24px;
}

.process-head {
  text-align: center;
  margin-bottom: 52px;
}

.process-head h2 {
  font-size: 38px;
}

.process-head p {
  color: #CFBAB4;
  max-width: 720px;
  margin: 0 auto;
}

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

.process-step {
  background-color: #231417;
  border-top: 3px solid #A62B3C;
  padding: 34px 26px;
}

.process-step-num {
  display: block;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #D98A7A;
  margin-bottom: 12px;
}

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

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

/* ------------------------------------------------------------------ */
/* Contact page                                                        */
/* ------------------------------------------------------------------ */

.contact-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px 44px;
  text-align: center;
}

.contact-header h1 {
  font-size: 48px;
}

.contact-header p {
  color: #CFBAB4;
  font-size: 19px;
  max-width: 740px;
  margin: 0 auto;
}

.contact-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px 84px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background-color: #231417;
  border-top: 3px solid #A62B3C;
  padding: 36px 32px;
}

.contact-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-card .contact-note {
  color: #CFBAB4;
  font-size: 15px;
}

.contact-note a {
  color: #D98A7A;
  text-decoration: underline;
}

.contact-note a:hover {
  color: #F6E9E6;
}

.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid #4A2329;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D98A7A;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-value {
  color: #F6E9E6;
  font-weight: 700;
}

.contact-value a {
  color: #F6E9E6;
}

.contact-value a:hover {
  color: #D98A7A;
}

.contact-form-panel {
  background-color: #231417;
  border-top: 3px solid #A62B3C;
  padding: 36px 32px 40px;
}

.contact-form-panel h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.contact-form-panel .contact-note {
  color: #CFBAB4;
  font-size: 15px;
  margin-bottom: 24px;
}

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

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #D98A7A;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: #160D0F;
  border: 1px solid #4A2329;
  color: #F6E9E6;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  border-radius: 3px;
}

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

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

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

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

.contact-faq h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 44px;
}

.faq-item {
  background-color: #231417;
  border: 1px solid #4A2329;
  margin-bottom: 14px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #F6E9E6;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: "+";
  color: #D98A7A;
  font-size: 22px;
  flex: none;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 24px 22px;
  color: #CFBAB4;
}

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */

@media (max-width: 980px) {
  .gem-hero h1 {
    font-size: 46px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric:nth-child(n+3) {
    border-top: 1px solid #4A2329;
  }
  .metric:nth-child(3) {
    border-left: none;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .orb-nav-inner {
    height: 60px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .orb-nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: #160D0F;
    border-bottom: 2px solid #A62B3C;
    padding: 6px 24px 20px;
  }
  .orb-nav.is-open .orb-nav-links {
    display: flex;
  }
  .orb-nav-links a {
    padding: 12px 0;
    width: 100%;
    box-shadow: none;
  }
  .gem-hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 64px 24px 72px;
  }
  .gem-hero h1 {
    font-size: 38px;
  }
  .hero-sub {
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .gemstone {
    flex-basis: 170px;
    width: 170px;
    height: 170px;
  }
  .gem-rhombus-outer {
    width: 104px;
    height: 104px;
    margin: -52px 0 0 -52px;
  }
  .gem-rhombus-inner {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
  }
  .foundation-band {
    padding: 72px 24px;
  }
  .foundation-band h2 {
    font-size: 30px;
  }
  .service-grid-section {
    padding: 0 24px 72px;
  }
  .service-grid-head h2 {
    font-size: 32px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .metric-row {
    grid-template-columns: 1fr;
    padding: 20px 24px 40px;
  }
  .metric {
    border-left: none;
  }
  .metric:nth-child(n+2) {
    border-top: 1px solid #4A2329;
  }
  .statement-band {
    padding: 72px 24px;
  }
  .statement-band p {
    font-size: 28px;
  }
  .cta-band {
    padding: 76px 24px;
  }
  .cta-band h2 {
    font-size: 32px;
  }
  .crest-row-top {
    flex-direction: column;
    gap: 16px;
  }
  .crest-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
  .services-header {
    padding: 68px 24px 36px;
  }
  .services-header h1 {
    font-size: 36px;
  }
  .service-detail {
    padding: 44px 24px;
  }
  .service-detail h2 {
    font-size: 26px;
  }
  .process-overview {
    padding: 60px 24px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .contact-header {
    padding: 68px 24px 36px;
  }
  .contact-header h1 {
    font-size: 36px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 24px 24px 64px;
  }
  .contact-faq {
    padding: 0 24px 72px;
  }
}
