.container { box-sizing: border-box; margin: 0 auto; max-width: 72rem; padding: 0 1rem; width: 100%; }
.page-main { min-height: calc(100vh - 9rem); padding-bottom: 4rem; padding-top: 2rem; }
.site-header { background: var(--takdora-surface); border-bottom: 1px solid #e6ded0; }
.nav-wrap { align-items: center; display: flex; gap: 1rem; justify-content: space-between; min-height: 4.5rem; }
.brand { align-items: center; color: var(--takdora-foreground); display: inline-flex; font-size: 1.25rem; font-weight: 700; gap: .5rem; text-decoration: none; }
.brand-dot { background: var(--takdora-brand); border-radius: 999px; display: inline-block; height: .75rem; width: .75rem; }
.desktop-nav { align-items: center; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; }
.nav-link, .text-link { color: var(--takdora-foreground); text-decoration-thickness: .08em; text-underline-offset: .18em; }
.nav-link { border-radius: .5rem; padding: .5rem .6rem; text-decoration: none; }
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active { background: var(--takdora-surface-subtle); color: var(--takdora-brand); }
.mobile-nav { display: none; }
.mobile-nav summary { background: var(--takdora-surface-subtle); border-radius: .5rem; cursor: pointer; padding: .65rem .8rem; }
.mobile-nav nav { background: var(--takdora-surface); border: 1px solid #e6ded0; border-radius: .5rem; display: grid; gap: .25rem; margin-top: .5rem; padding: .5rem; position: absolute; right: 1rem; z-index: 2; }
.page-main, .stack { display: flex; flex-direction: column; gap: 1.25rem; }
.hero { padding: 2rem 0 1rem; }
h1, h2, h3, p { margin: 0; }
h1 { font-size: clamp(2rem, 6vw, 4rem); letter-spacing: -.04em; line-height: 1.05; max-width: 52rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.15rem; }
.lede { color: var(--takdora-muted); font-size: 1.25rem; max-width: 48rem; }
.muted { color: var(--takdora-muted); }
.actions { align-items: center; display: flex; flex-wrap: wrap; gap: 1rem; }
.button { align-items: center; background: var(--takdora-brand); border: 2px solid var(--takdora-brand); border-radius: .5rem; box-sizing: border-box; color: white; display: inline-flex; font-weight: 700; justify-content: center; min-height: var(--takdora-touch-target); padding: .55rem 1rem; text-decoration: none; }
.button:hover, .button:focus-visible { background: #873715; border-color: #873715; color: white; }
.badge { align-self: flex-start; border-radius: 999px; font-size: .875rem; font-weight: 700; padding: .3rem .7rem; }
.badge-orange { background: #fbe2d2; color: #7b3218; }
.badge-success { background: #dff3e7; color: #155c36; }
.grid { display: grid; gap: 1rem; width: 100%; }
.grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .form-card { background: white; border: 1px solid #e6ded0; border-radius: .75rem; box-sizing: border-box; padding: 1.25rem; }
.card { display: flex; flex-direction: column; gap: .8rem; }
.form-card { max-width: 38rem; width: 100%; }
.callout { border-left: 4px solid var(--takdora-brand); border-radius: .5rem; padding: .9rem 1rem; }
.callout-orange { background: #fff4e8; color: #6d351d; }
.callout-success { background: #edf8f1; border-left-color: var(--takdora-success); color: #155c36; }
label { font-weight: 700; }
input { border: 1px solid #aaa095; border-radius: .5rem; box-sizing: border-box; font: inherit; min-height: var(--takdora-touch-target); padding: .6rem .75rem; width: 100%; }
input:focus { border-color: var(--takdora-focus); }
.table-wrap { overflow-x: auto; width: 100%; }
table { border-collapse: collapse; min-width: 30rem; width: 100%; }
th, td { border-bottom: 1px solid #e6ded0; padding: .8rem .6rem; text-align: left; }
th { color: var(--takdora-muted); font-size: .875rem; }
.row-between { align-items: center; display: flex; gap: 1rem; justify-content: space-between; }
.metric { color: var(--takdora-brand); font-size: 2rem; }
.site-footer { border-top: 1px solid #e6ded0; color: var(--takdora-muted); padding: 1.5rem 0; }

@media (min-width: 48rem) { .container { padding-left: 2rem; padding-right: 2rem; } }
@media (max-width: 42rem) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; position: relative; }
  .grid-three, .grid-two { grid-template-columns: 1fr; }
  .hero { padding-top: 1rem; }
  .row-between { align-items: flex-start; flex-direction: column; gap: .35rem; }
}
