/* Lucy Clague Consulting — shared styles */

:root {
  --bg: #f7f6f2;
  --bg-panel: #eeece5;
  --navy: #1f2d3a;
  --navy-soft: #445064;
  --accent: #8a6d3b;
  --accent-soft: #b99b63;
  --white: #ffffff;
  --border: #dcd8cd;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--navy);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

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

/* Nav */

header.site-nav {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--navy);
}

.logo span {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-top: 2px;
}

nav.links {
  display: flex;
  gap: 12px 30px;
  flex-wrap: wrap;
  font-size: 14px;
  flex: 1 1 100%;
  min-width: 0;
}

nav.links a {
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  color: var(--navy-soft);
}

nav.links a.active,
nav.links a:hover {
  border-bottom-color: var(--accent);
  color: var(--navy);
}

/* Hero */

.hero {
  padding: 80px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

h1.hero-title {
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.15;
  margin: 0 0 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 600;
}

.hero-copy p {
  max-width: 52ch;
  font-size: 16px;
  color: var(--navy-soft);
}

.pill {
  display: inline-block;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--white);
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 3px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 6px 12px 6px 0;
  transition: background 0.15s ease;
}

.pill:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.pill.outline {
  background: transparent;
  color: var(--navy);
}

.pill.outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Portrait / graphic panel */

.portrait-panel {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, #33455a 55%, var(--accent-soft) 100%);
  position: relative;
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-panel.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-panel.placeholder .initials {
  font-family: Georgia, serif;
  font-size: 72px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
}

/* Stat strip */

.stat-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-grid .num {
  font-family: Georgia, serif;
  font-size: 30px;
  color: var(--navy);
  display: block;
}

.stat-grid .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-soft);
  margin-top: 4px;
}

/* Two column content (about / bio) */

.split {
  padding: 76px 0;
}

.split.tinted {
  background: var(--bg-panel);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

h2.section-title {
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 0 0 20px;
}

.split-copy p {
  max-width: 54ch;
  font-size: 15.5px;
  margin: 0 0 16px;
  color: var(--navy-soft);
}

/* Graphic panel (abstract, non-photographic) */

.graphic-panel {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
}

.graphic-panel svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Services grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 10px 0 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px 32px;
}

.service-card h3 {
  font-size: 19px;
  margin: 0 0 10px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--navy-soft);
  margin: 0;
}

/* Clients / logos list */

.client-list {
  columns: 2;
  column-gap: 48px;
  font-size: 15px;
  color: var(--navy-soft);
  max-width: 640px;
}

.client-list li {
  break-inside: avoid;
  margin-bottom: 10px;
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.client-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

/* Testimonials */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

blockquote.card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 26px 28px;
  border-radius: 2px;
}

blockquote.card p {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--navy);
}

blockquote.card cite {
  font-style: normal;
  font-size: 13px;
  color: var(--navy-soft);
}

/* Project list */

.project-list {
  border-top: 1px solid var(--border);
}

.project-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.project-row .funder {
  color: var(--navy-soft);
  font-size: 13px;
}

/* Contact */

.contact-section {
  padding: 76px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

form.enquiry {
  display: grid;
  gap: 18px;
  max-width: 480px;
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--navy-soft);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 3px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--navy);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button.submit {
  justify-self: start;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 13px 34px;
  border-radius: 3px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

button.submit:hover {
  background: var(--accent);
}

.contact-details p {
  font-size: 15px;
  color: var(--navy-soft);
  max-width: 44ch;
}

.contact-details a {
  color: var(--navy);
  text-decoration: underline;
}

/* Footer */

footer.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--navy-soft);
}

footer.site-footer a {
  text-decoration: underline;
  color: var(--navy-soft);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-bottom: 22px;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
  color: var(--navy);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Responsive */

@media (max-width: 820px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .services-grid,
  .testimonial-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .name-row {
    grid-template-columns: 1fr;
  }

  .client-list {
    columns: 1;
  }

  .hero {
    padding: 56px 0 50px;
  }

  .split-grid.reverse {
    direction: ltr;
  }
}
