:root {
	--ink: #0b1520;
	--navy: #10243f;
	--navy-deep: #081120;
	--terracotta: #c3623f;
	--gold: #c98a3a;
	--cream: #f4f0e7;
	--paper: #fbfaf6;
	--line: #e2e6ea;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.6; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; color: var(--navy); line-height: 1.2; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }

/* Header */
.site-header { background: var(--navy-deep); color: #fff; position: sticky; top: 0; z-index: 50; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: #fff; }
.brand-mark { width: 34px; height: 34px; border-radius: 4px; background: var(--gold); color: var(--navy-deep); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.brand b { display: block; font-size: 1rem; letter-spacing: .03em; }
.brand small { display: block; font-size: .68rem; color: #b9c2cf; }
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { text-decoration: none; font-size: .92rem; color: #dfe6ee; }
.main-nav a:hover { color: #fff; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }

.btn { display: inline-block; padding: .75rem 1.4rem; border-radius: 4px; font-weight: 650; text-decoration: none; border: 1px solid var(--navy); }
.btn-primary { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-small { padding: .5rem .9rem; font-size: .85rem; }
.main-nav .btn-small { border-color: var(--gold); background: var(--gold); color: #fff; }

@media (max-width: 880px) {
	.menu-toggle { display: block; }
	.main-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-deep); flex-direction: column; align-items: flex-start; padding: 1rem 1.5rem; gap: 1rem; display: none; }
	.main-nav.open { display: flex; }
}

/* Hero sections */
.hero { padding: 4rem 0 3rem; }
.hero-finance { background: linear-gradient(180deg, var(--navy-deep), var(--navy)); color: #fff; }
.hero-finance h1, .hero-finance .eyebrow { color: #fff; }
.hero-finance .lead { color: #cfd8e3; }
.hero-architectural { background: var(--cream); }
.hero-grid { display: grid; place-items: start; margin-bottom: 2rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 700; color: var(--gold); margin-bottom: .5rem; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 1rem; max-width: 820px; }
.lead { font-size: 1.05rem; max-width: 640px; color: #3c4753; }
.actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.actions.center { justify-content: center; }

/* Deal cards (Project Finance) */
.buw-deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1rem; }
@media (max-width: 900px) { .buw-deal-grid { grid-template-columns: 1fr; } }
.buw-deal-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; overflow: hidden; }
.hero-architectural .buw-deal-card, body:not(.hero-finance) .buw-deal-card { background: #fff; border-color: var(--line); }
.buw-deal-card-body { padding: 1.25rem; }
.buw-deal-amount { display: block; font-size: 1.3rem; font-weight: 800; color: var(--gold); font-family: Georgia, serif; }
.buw-deal-card h3 { margin: .35rem 0; font-size: 1.05rem; color: inherit; }
.hero-finance .buw-deal-card h3 { color: #fff; }
.buw-deal-meta { font-size: .85rem; color: #a9b4c1; margin: 0 0 .5rem; }
.buw-deal-stage { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; background: var(--gold); color: #fff; padding: .2rem .55rem; border-radius: 3px; }

/* Package cards (Architectural IP) */
.buw-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1rem; }
@media (max-width: 900px) { .buw-package-grid { grid-template-columns: 1fr; } }
.buw-package-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.buw-package-card-media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.buw-package-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.buw-package-style { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--terracotta); font-weight: 700; }
.buw-package-card h3 { margin: 0; font-size: 1.1rem; }
.buw-package-sqft, .buw-package-excerpt { font-size: .88rem; color: #5a6674; margin: 0; }
.buw-package-footer { margin-top: auto; display: flex; flex-direction: column; gap: .6rem; padding-top: .75rem; }
.buw-package-price { font-weight: 800; font-size: 1.15rem; color: var(--navy); }

/* Generic sections */
.section { padding: 3.5rem 0; }
.section.dark { background: var(--navy-deep); color: #fff; }
.section.cta { background: var(--cream); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.prose { max-width: 760px; }
.content-shell { max-width: 820px; }
.page-hero { padding: 3rem 0; background: var(--cream); }
.page-hero h1 { margin: .25rem 0 0; }

/* Legal disclaimers */
.buw-legal-disclaimers { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.1); }
.section .buw-legal-disclaimers, .hero .buw-legal-disclaimers { border-top-color: rgba(255,255,255,.15); }
.hero-architectural .buw-legal-disclaimers { border-top-color: rgba(0,0,0,.08); }
.buw-disclaimer { font-size: .78rem; color: #9aa5b3; max-width: 900px; margin: 0 0 .75rem; }
.hero-architectural .buw-disclaimer, .footer-legal .buw-disclaimer { color: #6b7684; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #cfd8e3; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 0 1.5rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 .75rem; }
.footer-grid a { display: block; text-decoration: none; color: #b9c2cf; font-size: .9rem; margin-bottom: .4rem; }
.footer-brand small { color: #9aa5b3; }
.footer-about-link { display: inline-block; margin-top: .75rem; font-size: .85rem; color: #b9c2cf; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; color: #8a94a3; }

/* Editable page content (Gutenberg blocks rendered via the_content()) */
.content-shell .wp-block-button__link,
.content-shell .wp-block-button.is-style-outline .wp-block-button__link {
	display: inline-block;
	padding: .75rem 1.4rem;
	border-radius: 4px;
	font-weight: 650;
	text-decoration: none;
	font-size: .95rem;
}
.content-shell .wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background: var(--gold);
	border: 1px solid var(--gold);
	color: #fff;
}
.content-shell .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	border: 1px solid var(--navy);
	color: var(--navy);
}
.content-shell .wp-block-buttons { gap: 1rem; margin: 1.5rem 0; }
.content-shell .wp-block-columns { gap: 2rem; }
.content-shell h2, .content-shell h3 { margin-top: 2rem; }
.content-shell p:first-child { margin-top: 0; }

/* Product single */
.buw-package-buy-box { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem; align-self: start; position: sticky; top: 5.5rem; }
.buw-package-buy-box .buw-package-price { font-size: 1.6rem; margin-bottom: 1rem; }
.buw-package-buy-box .btn { width: 100%; text-align: center; margin-bottom: 1rem; }
