/* harrishawkins.org — static site for Cloudflare Pages */
/* Visual register: ink on warm cream, serif, generous whitespace.
   Restrained Islamic geometric motif and a quiet oxblood/gold accent
   palette inspired by Gulf institutional design (Doha Film Institute,
   Qatar Museums, Museum of Islamic Art). */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@400;500&display=swap');

:root {
  --ink:        #14181d;
  --ink-soft:   #2a2e35;
  --ink-mute:   #6f6a5e;
  --paper:      #f4efe6;
  --paper-warm: #ebe4d4;
  --rule:       #c7bdab;
  --rule-soft:  #dcd3c1;
  --accent:     #6b1f2a;   /* deep oxblood — Qatari maroon, but muted */
  --gold:       #9a7f4e;   /* muted antique gold */

  --max-w: 720px;
  --gutter: clamp(20px, 5vw, 56px);

  --serif-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --serif-body:    'EB Garamond', 'Source Serif Pro', Georgia, serif;
  --sans:          'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--serif-body);
  font-size: 18px;
  line-height: 1.65;
  font-feature-settings: 'kern', 'liga', 'onum';
}

a { color: inherit; }

/* ---------- Top navigation ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px var(--gutter);
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s ease, background 0.35s ease;
}
.nav.scrolled { border-bottom-color: var(--rule-soft); }

.wordmark {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.wordmark-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-meta {
  display: flex;
  gap: 30px;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.nav-meta a {
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-meta a:hover { color: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px var(--gutter) 80px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 56px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--rule);
  vertical-align: middle;
  margin: 0 18px 4px;
}

.hero-statement {
  max-width: 820px;
  font-family: var(--serif-display);
  font-weight: 300;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 44px;
  letter-spacing: -0.012em;
}
.hero-statement em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.hero-meta {
  max-width: 540px;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Section ---------- */

.section {
  padding: 96px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
}

.section-heading {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 36px;
  letter-spacing: -0.005em;
}

.section p {
  margin: 0 0 22px;
}
.section p:last-child { margin-bottom: 0; }

/* ---------- Ornament divider ---------- */

.ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px 0;
  color: var(--gold);
  opacity: 0.7;
}
.ornament::before,
.ornament::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--rule);
  margin: 0 22px;
}
.ornament svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* ---------- Pull quote ---------- */

.pullquote {
  max-width: var(--max-w);
  margin: 80px auto 64px;
  padding: 0 var(--gutter);
  text-align: center;
}
.pullquote-text {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.42;
  color: var(--ink);
  margin: 0 0 26px;
}
.pullquote-text::before { content: '\201C'; color: var(--gold); margin-right: 2px; }
.pullquote-text::after  { content: '\201D'; color: var(--gold); margin-left: 2px; }
.pullquote-cite {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

/* ---------- Press list ---------- */

.press { list-style: none; padding: 0; margin: 16px 0 0; }
.press li {
  padding: 26px 0;
  border-top: 1px solid var(--rule-soft);
}
.press li:last-child { border-bottom: 1px solid var(--rule-soft); }
.press a {
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.press a:hover .press-title {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: var(--gold);
}
.press-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.32;
  margin: 0 0 8px;
  transition: color 0.2s;
}
.press-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

/* ---------- Practitioner subheadings ---------- */

.practitioner-name {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin: 40px 0 4px;
  letter-spacing: 0.01em;
}
.practitioner-name:first-of-type { margin-top: 12px; }
.practitioner-creds {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
}

/* ---------- About ---------- */

.about {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}
.portrait {
  width: 200px;
  height: 250px;
  background: linear-gradient(160deg, var(--paper-warm) 0%, #dcd0b9 100%);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
/* Subtle silhouette while no photo is dropped in */
.portrait::before {
  content: '';
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 130px; height: 180px;
  background: rgba(20, 24, 29, 0.06);
  border-radius: 65px 65px 0 0;
}
.portrait::after {
  content: 'PORTRAIT';
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
}

@media (max-width: 640px) {
  .about { grid-template-columns: 1fr; gap: 32px; }
  .portrait { width: 160px; height: 200px; }
}

/* ---------- Engagement details ---------- */

.engagement-details {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 2.05;
  margin: 28px 0 0;
}
.engagement-details a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.engagement-details a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.engagement-details .label {
  display: inline-block;
  width: 86px;
  color: var(--ink-mute);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */

.footer {
  padding: 72px var(--gutter) 56px;
  text-align: center;
  border-top: 1px solid var(--rule-soft);
  margin-top: 96px;
}
.footer .ornament { padding-bottom: 24px; }
.footer-line {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}
.footer-fineprint {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

/* ---------- Subtle fade-in on scroll ---------- */

.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 16px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 200;
}
.skip-link:focus { top: 0; }

