/* Vaultfy GEO Content Pages Stylesheet */

@font-face {
  font-family: 'Butler';
  src: url('/fonts/Butler-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Butler';
  src: url('/fonts/Butler-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Butler';
  src: url('/fonts/Butler-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Butler';
  src: url('/fonts/Butler-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0a0805;
  --cream: #ece5d8;
  --gold: #c9a35c;
  --muted: rgba(236, 229, 216, 0.62);

  --color-headline: var(--cream);
  --color-body: var(--muted);
  --color-label: var(--muted);
  --color-accent-gold: var(--gold);
  --color-background: var(--ink);
  --font-heading: "Butler", serif;
  --font-body: "Montserrat", sans-serif;
  
  --text-sm: 13px;
  --text-base: 15px;
}

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

body {
  color: var(--color-headline);
  font-family: var(--font-body);
  background-color: var(--color-background);
  line-height: 1.8;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header styling */
.site-header {
  position: static;
  width: 100%;
  border-bottom: 1px solid rgba(236, 229, 216, 0.08);
  background-color: var(--color-background);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-wrap {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo-svg {
  display: block;
  height: 28px;
  width: 28px;
  fill: url(#vaultfy-gradient-header-static);
}

.logo-text {
  color: var(--color-headline);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.header-cta-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ink);
  background-color: var(--cream);
  border: 1px solid var(--cream);
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-cta-btn:hover {
  background-color: transparent;
  color: var(--cream);
}

/* Main Content & Hero */
main {
  flex: 1;
}

.geo-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.page-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.geo-container h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.geo-container h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  color: var(--cream);
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(236, 229, 216, 0.15);
  padding-bottom: 0.75rem;
  font-weight: 400;
}

.geo-container h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.geo-container p {
  margin-bottom: 1.5rem;
  color: var(--color-body);
  font-size: var(--text-base);
}

.lead-p {
  font-size: 1.2rem !important;
  color: var(--cream) !important;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Bullet list and stats */
.geo-container ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  list-style-type: square;
}

.geo-container li {
  margin-bottom: 0.8rem;
  font-size: var(--text-base);
  color: var(--color-body);
}

.geo-container strong {
  color: var(--cream);
  font-weight: 600;
}

.geo-container a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dashed rgba(201, 163, 92, 0.4);
  transition: all 0.3s ease;
}

.geo-container a:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(236, 229, 216, 0.03);
  border: 1px solid rgba(236, 229, 216, 0.08);
  border-radius: 8px;
}

.stat-card {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hub Grid */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-hub-card {
  padding: 2rem;
  background: rgba(236, 229, 216, 0.03);
  border: 1px solid rgba(236, 229, 216, 0.08);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-hub-card:hover {
  background: rgba(236, 229, 216, 0.06);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.service-hub-card h3 {
  margin-top: 0;
  color: var(--cream);
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.service-hub-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* FAQ page-specific lists */
.faq-item {
  margin-bottom: 2.5rem;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--muted);
  font-size: var(--text-base);
  margin: 0;
}

/* Footer styling */
.site-footer {
  border-top: 1px solid rgba(236, 229, 216, 0.08);
  padding: 4rem 2rem;
  background-color: var(--color-background);
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-brand-sec {
  flex: 1;
  min-width: 250px;
}

.footer-brand-sec p {
  font-size: 12px;
  color: rgba(236, 229, 216, 0.4);
  margin-top: 1rem;
  max-width: 320px;
}

.footer-links-group {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(236, 229, 216, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 12px;
  color: rgba(236, 229, 216, 0.4);
}

@media (max-width: 768px) {
  .header-inner {
    padding: 1.25rem 1.5rem;
  }
  .geo-container {
    padding: 4rem 1.5rem 4rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-links-group {
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
