/* ==========================================================================
   SOMOS PILLARS CAPITAL INC. — Global Stylesheet
   Version: 1.0 | Effective: 2026
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONTS & RESET
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'DM Sans', sans-serif;
  background-color: #FFFFFF;
  color: #1C1C1E;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   2. CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  --white: #FFFFFF;
  --surface: #F8F9FA;
  --surface-mid: #EEF0F2;
  --charcoal: #1C1C1E;
  --charcoal-soft: #2C2C2E;
  --charcoal-muted: #4A4A4F;
  --gold: #B8952A;
  --gold-light: #D4AF5A;
  --gold-pale: #F5EDDA;
  --footer-bg: #0E0E0F;
  --footer-mid: #1A1A1C;
  --border: #E2E5E9;
  --border-dark: #2E2E32;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);
  --container: 1200px;
  --nav-height: 80px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   3. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

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

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

.text-gold { color: var(--gold); }
.text-charcoal { color: var(--charcoal); }
.text-muted { color: var(--charcoal-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow-dark {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }

p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--charcoal-muted);
  line-height: 1.75;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #9E7E22;
  border-color: #9E7E22;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,149,42,0.30);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: var(--charcoal-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   5. NAVIGATION
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
}

.nav-logo-text .brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-muted);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-overlay a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   6. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.72) !important;
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold) !important;
  opacity: 1 !important;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82) !important;
  opacity: 1 !important;
  transition: color var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold-light) !important;
  opacity: 1 !important;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.footer-contact-item .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold) !important;
  opacity: 1 !important;
}

.footer-contact-item .value {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82) !important;
  opacity: 1 !important;
  line-height: 1.5;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--border-dark);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5) !important;
  opacity: 1 !important;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5) !important;
  opacity: 1 !important;
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold-light) !important;
}

.footer-payment-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--footer-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7) !important;
  opacity: 1 !important;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   7. HERO SECTIONS
   -------------------------------------------------------------------------- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.30;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,15,0.85) 0%, rgba(28,28,30,0.60) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

.hero-content h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-content .hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* Inner page hero (shorter) */
.inner-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--charcoal);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 40px;
  width: 100%;
}

.inner-hero-content h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 20px;
}

.inner-hero-content .hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   8. CREDENTIAL / TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--gold-pale);
  border-top: 1px solid #E8D9AA;
  border-bottom: 1px solid #E8D9AA;
  padding: 20px 0;
}

.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  flex: 1;
  justify-content: center;
}

.trust-item:not(:last-child) {
  border-right: 1px solid rgba(184,149,42,0.3);
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text .t-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
}

.trust-text .t-value {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   9. SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  font-size: 1.05rem;
}

.section-header.centered p {
  margin: 0 auto;
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.section-header.centered .gold-rule {
  margin: 0 auto 20px;
}

/* --------------------------------------------------------------------------
   10. HOMEPAGE SPECIFIC
   -------------------------------------------------------------------------- */

/* Mission Block */
.mission-block {
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-text h2 {
  margin-bottom: 24px;
}

.mission-text .mission-statement {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.9;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 24px 0 32px;
}

.mission-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,149,42,0.2);
  border-radius: var(--radius-md);
  pointer-events: none;
}

/* Pull Quote Strip */
.pull-quote-strip {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.pull-quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.pull-quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,15,0.78);
}

.pull-quote-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 40px;
  text-align: center;
}

.pull-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 0.4;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}

.pull-quote-content blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.pull-quote-content cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Philosophy Section */
.philosophy-section {
  background: var(--surface);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.philosophy-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
  position: relative;
}

.philosophy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.pillar-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pillar-num {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.pillar-item-text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.pillar-item-text p {
  font-size: 0.9rem;
  color: var(--charcoal-muted);
}

/* Homepage CTA */
.cta-section {
  background: var(--charcoal);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.70);
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   11. ABOUT PAGE
   -------------------------------------------------------------------------- */
.about-intro {
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-img-stack {
  position: relative;
  padding-top: 32px;
}

.about-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -24px;
  width: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  padding-top: 16px;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text .lead-text {
  margin-bottom: 24px;
}

.about-values {
  background: var(--surface);
  margin-top: 80px;
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.value-card p {
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   12. SERVICES PAGE
   -------------------------------------------------------------------------- */
.services-section {
  background: var(--white);
}

.service-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.service-block:hover {
  box-shadow: var(--shadow-md);
}

.service-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-block:hover .service-img img {
  transform: scale(1.03);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,14,15,0.5) 100%);
}

.service-body {
  padding: 40px 44px;
}

.service-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.service-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(184,149,42,0.3);
  margin-bottom: 12px;
  display: block;
  width: fit-content;
}

.price-block {
  text-align: right;
  flex-shrink: 0;
}

.price-block .price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
}

.price-block .price-type {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal-muted);
}

.service-body h3 {
  margin-bottom: 16px;
  color: var(--charcoal);
}

.service-body p {
  margin-bottom: 20px;
  font-size: 0.97rem;
}

.service-disclaimer {
  font-size: 0.8rem !important;
  color: var(--charcoal-muted);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 28px !important;
  border-left: 3px solid var(--gold);
}

.service-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-includes .include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal-muted);
}

.include-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.2;
  flex-shrink: 0;
}

/* Pricing transparency note */
.pricing-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  margin-top: 48px;
}

.pricing-note h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.pricing-note p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.stripe-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stripe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal-muted);
}

.stripe-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* --------------------------------------------------------------------------
   13. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 {
  margin-bottom: 8px;
}

.contact-form-wrap .sub {
  color: var(--charcoal-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

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

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,149,42,0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  margin-bottom: 28px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  accent-color: var(--gold);
  cursor: pointer;
  margin-top: 3px;
}

.form-check label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal-muted);
  line-height: 1.6;
  cursor: pointer;
}

.form-check label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sidebar-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sidebar-card-body {
  padding: 28px;
}

.sidebar-card-body h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.sidebar-contact-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sidebar-info-icon {
  width: 34px;
  height: 34px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-info-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.sidebar-info-text .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 3px;
}

.sidebar-info-text .val {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.sidebar-info-text .val a {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   14. POLICIES PAGE
   -------------------------------------------------------------------------- */
.policies-body {
  background: var(--white);
  max-width: 840px;
  margin: 0 auto;
}

.policy-nav {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.policy-nav h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 14px;
}

.policy-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-nav ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-section {
  margin-bottom: 64px;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.policy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}

.policy-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 24px 0 10px;
}

.policy-section p {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.policy-section ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.policy-section ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal-muted);
}

.policy-meta {
  background: var(--gold-pale);
  border: 1px solid rgba(184,149,42,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 32px;
}

.policy-meta p {
  font-size: 0.85rem;
  color: var(--charcoal-muted);
  margin: 0;
}

.policy-meta p strong {
  color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   15. CARDS & MISC
   -------------------------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* 1024px — Tablet Landscape */
@media (max-width: 1024px) {
  :root { --container: 960px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .mission-grid,
  .philosophy-grid,
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .contact-sidebar {
    position: static;
  }

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

  .about-img-secondary {
    right: 0;
  }

  .trust-item {
    padding: 0 24px;
  }
}

/* 768px — Tablet Portrait */
@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .container { padding: 0 24px; }
  .footer-grid { padding: 0 24px 40px; }
  .footer-bottom { padding: 20px 24px; }

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

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 64px 24px; }
  .inner-hero-content { padding: 56px 24px; }

  .trust-bar-inner {
    flex-direction: column;
    gap: 20px;
    padding: 0 24px;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(184,149,42,0.3);
    padding: 16px 0;
    width: 100%;
    justify-content: flex-start;
  }

  .trust-item:last-child { border-bottom: none; }

  .pull-quote-bg { background-attachment: scroll; }

  .mission-img { aspect-ratio: 16/9; }

  .values-grid,
  .grid-3 { grid-template-columns: 1fr; }

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

  .service-body { padding: 28px 24px; }

  .service-header-row { flex-direction: column; }
  .price-block { text-align: left; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 24px; }

  .about-img-secondary {
    position: static;
    width: 80%;
    margin-top: -48px;
    margin-left: auto;
    border: 3px solid var(--white);
  }
}

/* 480px — Mobile */
@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: 0.85rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .nav-logo-text .brand-name { font-size: 0.95rem; }
}
