/* Aziz Group — Corporate annual-report
   White. Swiss grid. Navy accent. Heavy on restraint. */
:root {
  --bg: #ffffff;
  --bg-2: #fafafa;
  --bg-3: #f3f3f2;
  --ink: #0a1628;
  --ink-2: #2c3e5a;
  --ink-3: #5c6b82;
  --muted: #8892a5;
  --line: #e5e7eb;
  --line-soft: #f0f1f4;
  --navy: #1e3a8a;
  --navy-br: #2563eb;
  --accent: #dc2626;

  --f-display: "Reckless Neue", "Signifier", "Iowan Old Style", Georgia, serif;
  --f-body: "Neue Haas Grotesk Text", "Helvetica Neue", Inter, -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  --max: 1400px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============ NAV — minimal, with rule line ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  gap: 48px;
}
.brand {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand .am { color: var(--accent); }
.nav-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-3); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: " ·"; color: var(--accent); }
.nav-cta {
  padding: 8px 18px !important;
  background: var(--ink);
  color: var(--bg) !important;
  border-radius: 2px;
  font-size: 13px !important;
}
.nav-cta:hover { background: var(--navy); }
.nav-cta.active::after { display: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 2px;
  transition: all .15s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn:hover { background: var(--navy); border-color: var(--navy); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ============ HERO ============ */
.hero { padding: 100px 0 80px; }
.hero-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.hero-ref {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.8;
}
.hero-ref .label { display: block; color: var(--accent); margin-bottom: 6px; }
.hero-ref .value {
  display: block;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 20ch;
}
.hero-title em { font-style: italic; color: var(--navy); }

.hero-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-summary .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 48ch;
}
.hero-summary .lede strong { color: var(--navy); font-weight: 600; }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: start;
}

/* ============ ACCREDITATION STRIP ============ */
.accred {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.accred-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.accred-label {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.accred-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.accred-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.accred-chip .mark {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
}
.accred-since {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============ ANNUAL-REPORT SECTIONS ============ */
.chapter {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.chapter-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}
.chapter-label {
  position: sticky;
  top: 100px;
}
.chapter-label .num {
  font-family: var(--f-display);
  font-size: 140px;
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--navy);
  text-stroke: 1px var(--navy);
  display: block;
  margin-bottom: 20px;
}
.chapter-label .section {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}

.chapter-body h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 32px;
  max-width: 22ch;
}
.chapter-body h2 em { font-style: italic; color: var(--navy); }

.chapter-body .intro {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 44ch;
  margin-bottom: 48px;
}

/* Services as annual-report line items */
.service-list { border-top: 1px solid var(--ink); }
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr 100px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: all .2s;
}
.service-row:hover .service-name { color: var(--navy); }
.service-row .n {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.service-name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .2s;
}
.service-name em { font-style: italic; color: var(--navy); }
.service-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 54ch;
}
.service-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-align: right;
}

/* Promise block */
.promise-block {
  padding: 80px 0;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
}
.promise-body {
  max-width: 960px;
  margin: 0 auto;
}
.promise-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.promise-text {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.promise-text em { font-style: italic; color: var(--accent); }
.promise-sig {
  margin-top: 40px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============ CTA ============ */
.cta { padding: 100px 0; border-bottom: 1px solid var(--line); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  max-width: 16ch;
}
.cta h2 em { font-style: italic; color: var(--navy); }
.cta-right {
  text-align: right;
}
.cta-right p {
  color: var(--ink-3);
  font-size: 17px;
  max-width: 44ch;
  margin-left: auto;
  margin-bottom: 24px;
}

/* ============ FOOTER ============ */
.foot { padding: 60px 0 24px; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-brand .logo {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-weight: 400;
}
.foot-brand .logo .am { color: var(--accent); font-style: italic; }
.foot-brand p {
  color: var(--ink-3);
  font-size: 14px;
  max-width: 340px;
}
.foot-col h5 {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; font-size: 14px; color: var(--ink-3); }
.foot-col a { color: var(--ink-3); transition: color .15s; }
.foot-col a:hover { color: var(--ink); }
.foot-bot {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .hero-intro { grid-template-columns: 1fr; gap: 32px; }
  .hero-summary { grid-template-columns: 1fr; gap: 24px; }
  .accred-inner { grid-template-columns: 1fr; gap: 16px; }
  .chapter-grid { grid-template-columns: 1fr; gap: 24px; }
  .chapter-label { position: static; display: flex; gap: 24px; align-items: baseline; }
  .chapter-label .num { font-size: 72px; margin-bottom: 0; }
  .service-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .service-meta { text-align: left; }
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-right { text-align: left; }
  .cta-right p { margin-left: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bot { flex-direction: column; gap: 6px; }
  .nav-links { gap: 20px; font-size: 13px; }
  .nav-meta, .nav-cta { display: none; }
}

.in { animation: in .8s cubic-bezier(.2,.6,.2,1) both; }
.in.d1 { animation-delay: .1s; }
.in.d2 { animation-delay: .2s; }
.in.d3 { animation-delay: .3s; }
@keyframes in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
