* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, "Helvetica Neue", sans-serif; color: var(--ink); line-height: 1.7; background: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.site-header { background: var(--plum); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 24px 24px; max-width: 1180px; margin: 0 auto; }
.header-logo { font-family: Georgia, serif; font-size: 15px; font-weight: 700; letter-spacing: 1px; line-height: 1.15; color: var(--white); }
.header-nav { display: flex; gap: 28px; }
.nav-link { font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: #d7c8e5; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.header-cta { border: 1px solid var(--white); color: var(--white); padding: 10px 20px; font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

.breadcrumb { font-size: 13px; color: var(--muted); padding: 16px 24px; max-width: 1180px; margin: 0 auto; }
.breadcrumb-sep { margin: 0 6px; }

.site-footer { background: var(--white); margin-top: 0; }
.footer-top { border-bottom: 1px solid var(--line); }
.footer-top-inner { max-width: 1180px; margin: 0 auto; padding: 24px; display: flex; gap: 36px; }
.footer-top-inner a { font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--plum); }
.footer-bottom-inner { max-width: 1180px; margin: 0 auto; padding: 20px 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--muted); }
.footer-bottom-inner a { margin-left: 18px; }

.btn { display: inline-block; padding: 13px 28px; font-weight: 600; font-size: 13px; letter-spacing: .3px; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-outline { border: 1px solid var(--white); color: var(--white); }
.btn-outline-dark { border: 1px solid var(--plum); color: var(--plum); }

section { padding: 84px 0; }
.section-title { font-family: Georgia, serif; font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.section-sub { color: var(--muted); margin-bottom: 46px; max-width: 620px; font-size: 15px; }
.section-alt { background: var(--bg-alt); }
