/* =========================================================
   Global reset to prevent theme constraints
   ========================================================= */
html, body{
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* =========================================================
   Design tokens
   ========================================================= */
:root{
  --bg: #f6f5f2;
  --card: #ffffff;
  --text: #121212;
  --muted: #5a5a5a;
  --hairline: rgba(0,0,0,0.10);
  --shadow: 0 12px 30px rgba(0,0,0,0.08);
  --radius: 18px;
  --max: 1120px;
  --gutter: 22px;
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

/* =========================================================
   Page wrapper (full-width breakout)
   ========================================================= */
.dc-wrap{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
  padding: 56px 0 88px;
}

.dc-container{
  width: 100%;
  max-width: var(--max);
  padding: 0 var(--gutter);
  margin: 0 auto;
  box-sizing: border-box;
}

/* =========================================================
   Hero
   ========================================================= */
.dc-hero{
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
  padding: 32px 0 12px;
}

.dc-hero-text{ min-width: 0; }

.dc-hero h1{
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(38px, 4vw, 56px);
  margin: 0 0 14px;
}

.dc-lede{
  font-size: 18px;
  color: rgba(0,0,0,0.78);
  margin: 0 0 26px;
  max-width: 58ch;
}

/* =========================================================
   Buttons & CTAs
   ========================================================= */
.dc-cta-row{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.dc-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}

.dc-subtle{
  font-size: 14px;
  color: rgba(0,0,0,0.68);
}

/* =========================================================
   Portrait
   ========================================================= */
.dc-portrait{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.08);
}

.dc-portrait img{
  display: block;
  width: 100%;
  height: auto;
}

/* subtle integration fade */
.dc-portrait::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(246,245,242,0) 0%,
    rgba(246,245,242,0.18) 85%,
    rgba(246,245,242,0.35) 100%
  );
  pointer-events: none;
}

/* =========================================================
   Section rhythm & typography
   ========================================================= */
.dc-rule{
  border-top: 1px solid var(--hairline);
  margin: 32px 0 0;
}

.dc-section{
  padding: 56px 0;
}

.dc-section + .dc-section{
  border-top: 1px solid var(--hairline);
}

.dc-inner{
  max-width: 760px;
}

.dc-kicker{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin: 0 0 14px;
}

.dc-section h2{
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  line-height: 1.15;
}

.dc-section p{
  margin: 0 0 22px;
  color: rgba(0,0,0,0.78);
  font-size: 16px;
}

.dc-section ul{
  margin: 10px 0 26px;
  padding-left: 18px;
  color: rgba(0,0,0,0.78);
}

.dc-section li{
  margin: 10px 0;
}

.dc-inner > :last-child{
  margin-bottom: 0;
}

/* =========================================================
   Contact CTA
   ========================================================= */
.dc-contact-cta{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.dc-contact-note{
  margin-top: 0;
}

/* =========================================================
   Mobile refinement
   ========================================================= */
@media (max-width: 940px){
  .dc-hero{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dc-wrap{
    padding-top: 36px;
  }

  .dc-lede{
    font-size: 16px;
  }
}

@media (max-width: 520px){
  .dc-container{
    padding: 0 16px;
  }

  .dc-hero h1{
    font-size: 34px;
  }

  .dc-cta-row{
    gap: 10px;
  }

  /* bottom CTA full-width (locked to contact section) */
  #contact .dc-contact-cta{
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  body #contact .dc-contact-cta #dc-bottom-cta{
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    padding: 14px 16px !important;
  }
}
/* ===== Clean internal footer ===== */
.site-footer{
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 28px 0 40px;
  margin-top: 60px;
  background: #fff;
}

.site-footer-inner{
  max-width: 1120px;
  padding: 0 22px;
  margin: 0 auto;
}

.site-footer-name{
  font-weight: 600;
  font-size: 15px;
}

.site-footer-tagline{
  font-size: 14px;
  color: rgba(0,0,0,0.65);
  margin-top: 4px;
}
/* ===== Block-theme footer override (internal pages) ===== */
.dc-footer{
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 28px 22px 40px;
  margin-top: 60px;
  max-width: 1120px;
}

.dc-footer__title{
  font-weight: 700;
  font-size: 15px;
}

.dc-footer__tagline{
  margin-top: 6px;
  font-size: 14px;
  color: rgba(0,0,0,0.65);
}

