/* Alozie Architects — site styles
   Warm editorial system: Cormorant Garamond (display) + Manrope (text) */

:root {
  --bg: #f6f4ef;
  --bg-alt: #ece8df;
  --ink: #1c1b18;
  --ink-soft: #4a463d;
  --ink-mute: #6b665b;
  --line: #e3ded3;
  --line-dark: #3a382f;
  --bronze: #8a6d3b;
  --bronze-light: #c9a96a;
  --green: #2f6b45;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--bronze); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0; text-wrap: pretty; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.eyebrow { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); font-weight: 600; }
.eyebrow--light { color: var(--bronze-light); }
.lbl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.lead { font-size: clamp(16px, 1.3vw, 18px); color: var(--ink-soft); line-height: 1.65; }
.muted { color: var(--ink-soft); }
.h-xl { font-size: clamp(40px, 4.8vw, 66px); letter-spacing: -0.01em; line-height: 1.04; }
.h-l { font-size: clamp(32px, 3.4vw, 48px); }
.h-m { font-size: clamp(26px, 2.8vw, 40px); }
.h-s { font-size: clamp(22px, 1.9vw, 26px); line-height: 1.2; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ink); color: var(--bg);
  padding: 18px 28px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--ink); cursor: pointer; transition: background .2s, color .2s;
  min-height: 44px;
}
.btn:hover { background: var(--bronze); border-color: var(--bronze); color: #fff; }
.btn--sm { padding: 14px 22px; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.link-ul { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 6px; white-space: nowrap; }
.link-ul:hover { border-color: var(--bronze); }

/* Placeholder image blocks (replace <div class="ph"> with <img> when photography arrives) */
.ph { background: linear-gradient(135deg, #d9d3c7 0%, #c6bfb1 100%); position: relative; overflow: hidden; }
.ph::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 14px); }
.ph span { position: absolute; left: 16px; bottom: 14px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #5d5648; z-index: 1; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--3x2 { aspect-ratio: 3 / 2; }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--square { aspect-ratio: 1; }
.ph--4x5 { aspect-ratio: 4 / 5; }
.ph--hero { min-height: 420px; height: 100%; }
.pic { width: 100%; object-fit: cover; display: block; }
.pic--4x3 { aspect-ratio: 4 / 3; } .pic--3x2 { aspect-ratio: 3 / 2; } .pic--16x9 { aspect-ratio: 16 / 9; } .pic--square { aspect-ratio: 1; } .pic--4x5 { aspect-ratio: 4 / 5; }
.pic--hero { height: 100%; min-height: 420px; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(246,244,239,0.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 20px; padding-bottom: 20px; }
.brand { display: flex; flex-direction: column; gap: 2px; }
.brand__logo { height: 26px; width: auto; display: block; }
.brand__logo--footer { height: 22px; margin-bottom: 6px; }
.brand__name { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: 0.06em; white-space: nowrap; }
.brand__tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap; }
.nav { display: flex; gap: 28px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; white-space: nowrap; }
.nav a.is-active { color: var(--bronze); }
.header__cta { display: flex; align-items: center; gap: 20px; }
.header__phone { font-size: 13px; color: var(--ink-mute); white-space: nowrap; }
.header__cta .btn { white-space: nowrap; }
.social { display: flex; align-items: center; gap: 10px; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: var(--ink-mute); }
.social a:hover { color: var(--bronze); }
.social--footer { margin-top: 6px; }
.social--footer a { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 1px solid var(--ink); padding: 10px 14px; font: inherit; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; min-height: 44px; }

/* Hero */
.hero { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: 680px; }
.hero__copy { display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: clamp(48px, 7vw, 96px) var(--gutter); }
.hero__actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.hero__media { min-height: 420px; }
.stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 24px; padding-top: 28px; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__n { font-family: var(--serif); font-size: 40px; font-weight: 500; line-height: 1; }
.stat__l { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }

/* Page hero (interior) */
.page-hero { padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 20px; }
.page-hero .h-xl { max-width: 980px; }
.page-hero .lead { max-width: 720px; }

/* Trust strip */
.trust { background: var(--ink); color: #cfc8b9; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.trust__in { display: flex; align-items: center; justify-content: center; gap: 24px 40px; flex-wrap: wrap; padding: 22px var(--gutter); text-align: center; }
.trust__dot { width: 4px; height: 4px; background: var(--bronze); border-radius: 50%; }

/* Sections */
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: var(--bg); }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 40px; }
.section__head > div { display: flex; flex-direction: column; gap: 16px; max-width: 760px; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.split--even { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.split--narrow { grid-template-columns: 1fr 2fr; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.stack--lg { gap: 24px; }

/* Project / case-study cards */
.card { display: flex; flex-direction: column; gap: 14px; }
.card__meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.card__status { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 600; }
.card__title { font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1.2; }
.card__text { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.card:hover .card__title { color: var(--bronze); }

/* Index list rows (services, FAQs) */
.rows { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 48px; }
.row { padding: 22px 0; border-top: 1px solid #cfc8b9; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.row:nth-last-child(-n+2) { border-bottom: 1px solid #cfc8b9; }
.row__t { font-family: var(--serif); font-size: 22px; }
.row__arrow { color: var(--bronze); }

/* FAQ accordion */
.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 64px; }
.faq details { border-top: 1px solid var(--line-dark); }
.faq details:nth-last-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; gap: 24px; font-size: 18px; line-height: 1.4; min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--bronze-light); flex-shrink: 0; }
.faq details[open] summary::after { content: '–'; }
.faq .faq__a { padding: 0 0 24px; font-size: 15px; line-height: 1.7; color: #cfc8b9; max-width: 560px; }
.faq--light details { border-color: var(--line); }
.faq--light .faq__a { color: var(--ink-soft); }
.faq--single { grid-template-columns: 1fr; }
.faq--single details:nth-last-child(-n+2) { border-bottom: none; }
.faq--single details:last-child { border-bottom: 1px solid var(--line-dark); }
.faq--light.faq--single details:last-child { border-bottom: 1px solid var(--line); }

/* Quote */
.quote { padding: 28px; background: var(--bg-alt); display: flex; flex-direction: column; gap: 14px; }
.quote--dark { background: #2a2925; }
.quote__t { font-family: var(--serif); font-size: 22px; line-height: 1.4; font-style: italic; }

/* Fact bar (case studies) */
.facts { display: flex; gap: 32px 48px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--line); margin-top: 12px; }
.fact { display: flex; flex-direction: column; gap: 6px; }
.fact__v { font-size: 15px; font-weight: 500; }
.fact__v--ok { color: var(--green); font-weight: 600; }

/* Prose (long copy) */
.prose { display: flex; flex-direction: column; gap: 18px; font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.prose h2 { color: var(--ink); font-size: 34px; margin-top: 24px; }
.prose h3 { color: var(--ink); font-size: 26px; margin-top: 12px; }
.prose ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 8px; }
.prose p a, .prose li a { color: var(--bronze); border-bottom: 1px solid currentColor; }
.prose strong { color: var(--ink); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; counter-reset: step; }
.step { display: flex; flex-direction: column; gap: 12px; padding-top: 20px; border-top: 1px solid var(--ink); }
.step__n { font-family: var(--serif); font-size: 14px; letter-spacing: .1em; color: var(--bronze); }
.step__t { font-family: var(--serif); font-size: 24px; }
.step__d { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* CTA band */
.cta { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }
.cta .h-xl { max-width: 800px; font-size: clamp(36px, 4vw, 56px); }
.cta--row { flex-direction: row; text-align: left; justify-content: space-between; gap: 40px; padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
.cta--row .h-m { max-width: 720px; }

/* Forms */
.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form label { display: flex; flex-direction: column; gap: 8px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.form input, .form select, .form textarea { font: inherit; font-size: 15px; padding: 14px 16px; border: 1px solid #cfc8b9; background: #fff; color: var(--ink); min-height: 48px; }
.form textarea { min-height: 140px; resize: vertical; }
.form .full { grid-column: 1 / -1; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--bronze); outline-offset: 1px; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 64px 0 40px; font-size: 14px; color: var(--ink-soft); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--ink-mute); }

/* Sticky mobile contact bar */
.mobile-bar { display: none; }

/* Breadcrumb */
.crumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--bronze); }

/* Area map placeholder list */
.area-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 32px; }
.area-list a { padding: 18px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-family: var(--serif); font-size: 22px; }
.area-list a span { font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); align-self: center; }

/* Responsive */
@media (max-width: 1100px) {
  .nav { gap: 20px; font-size: 12px; }
    .header__phone { display: none; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .split--narrow { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--bg); border-bottom: 1px solid var(--line); flex-direction: column; gap: 0; padding: 8px var(--gutter) 16px; }
  .nav a { padding: 14px 0; border-top: 1px solid var(--line); }
  .nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .header__cta .btn, .social--header { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__media { order: -1; min-height: 320px; }
  .grid-3, .grid-2, .rows, .faq, .area-list, .form { grid-template-columns: 1fr; }
  .row:nth-last-child(-n+2) { border-bottom: none; }
  .row:last-child { border-bottom: 1px solid #cfc8b9; }
  .faq details:nth-last-child(-n+2) { border-bottom: none; }
  .faq details:last-child { border-bottom: 1px solid var(--line-dark); }
  .faq--light details:last-child { border-bottom: 1px solid var(--line); }
  .section__head { flex-direction: column; align-items: flex-start; }
  .cta--row { flex-direction: column; text-align: center; align-items: center; }
  .split--even { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .mobile-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--ink); padding: 12px var(--gutter); gap: 12px; }
  .mobile-bar a { flex: 1; text-align: center; color: var(--bg); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: 14px 8px; border: 1px solid #3a382f; min-height: 44px; }
  body { padding-bottom: 72px; }
}
@media (max-width: 480px) {
  .brand__logo { height: 20px; }
  .stats { gap: 24px; }
  .stat__n { font-size: 32px; }
  .steps { grid-template-columns: 1fr; }
}
