@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700&display=swap');

:root {
  --steel: #2c3e50;
  --steel-dark: #1a252f;
  --copper: #b87333;
  --copper-light: #d4956a;
  --silver: #95a5a6;
  --paper: #eef1f4;
  --white: #ffffff;
  --ink: #1e2830;
  --muted: #5d6d7e;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --grid: rgba(44, 62, 80, 0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 24px 24px;
}

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

a { color: var(--copper); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--steel); }

.layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  min-height: 100vh;
}

.main-col { min-width: 0; }

/* Right rail nav */
.side-nav {
  background: var(--steel-dark);
  color: var(--paper);
  padding: 2rem 1.25rem;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--copper);
}

.side-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.side-brand img { width: 40px; height: 40px; }
.side-brand strong { display: block; font-size: 0.88rem; line-height: 1.25; }
.side-brand span { font-size: 0.65rem; color: var(--silver); text-transform: uppercase; letter-spacing: 0.08em; }

.side-links { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }

.side-links a {
  color: rgba(238, 241, 244, 0.75);
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 4px;
}

.side-links a:hover,
.side-links a.active {
  background: rgba(184, 115, 51, 0.2);
  color: var(--white);
}

.side-mail {
  margin-top: auto;
  padding: 0.75rem;
  background: var(--copper);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.78rem;
  word-break: break-all;
  border-radius: 4px;
  text-align: center;
}

.side-mail:hover { background: var(--copper-light) !important; color: var(--steel-dark) !important; }

.side-addr {
  font-size: 0.72rem;
  color: var(--silver);
  margin-top: 1rem;
  line-height: 1.5;
}

.mobile-bar {
  display: none;
  background: var(--steel-dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-toggle {
  background: var(--copper);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

/* Hero */
.hero {
  background: var(--steel);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.hero-copy {
  padding: 3.5rem 2rem 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy .tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-copy p { opacity: 0.9; margin-bottom: 1rem; max-width: 28rem; }

.hero-mail { font-weight: 700; margin-bottom: 1.75rem !important; }
.hero-mail a { color: var(--copper-light); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 4px;
  border: 2px solid transparent;
}

.btn-copper { background: var(--copper); color: var(--white); }
.btn-copper:hover { background: var(--copper-light); color: var(--steel-dark); }

.btn-outline { border-color: var(--silver); color: var(--paper); }
.btn-outline:hover { border-color: var(--copper-light); color: var(--copper-light); }

.hero-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.bar-stats {
  background: var(--copper);
  color: var(--steel-dark);
  padding: 1.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.bar-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.bar-stats span { font-size: 0.78rem; font-weight: 600; }

section { padding: 4rem 2.5rem; }

.inner { max-width: 900px; }

.label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--steel);
  margin-bottom: 1rem;
}

.lead { color: var(--muted); margin-bottom: 2rem; max-width: 560px; }

.bg-paper { background: var(--paper); }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cap {
  background: var(--white);
  border: 1px solid rgba(44, 62, 80, 0.1);
  border-left: 4px solid var(--copper);
  padding: 1.5rem;
}

.cap h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.cap p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.65rem; }

.cap-mail { font-size: 0.82rem; font-weight: 700; }

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

.split img { border: 1px solid rgba(44, 62, 80, 0.12); }

.list-check { list-style: none; margin-top: 1rem; }
.list-check li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(44, 62, 80, 0.08);
  font-size: 0.92rem;
}
.list-check li::before { content: '▪'; color: var(--copper); margin-right: 0.5rem; }

.page-title {
  background: var(--steel);
  color: var(--paper);
  padding: 4rem 2.5rem 2.5rem;
}

.page-title h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.page-title p { opacity: 0.85; max-width: 520px; }

.prose { padding: 2.5rem; max-width: 720px; }
.prose h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--steel); margin: 1.75rem 0 0.65rem; }
.prose p { margin-bottom: 1rem; color: var(--muted); }

.timeline { border-left: 3px solid var(--copper); padding-left: 1rem; margin: 1.25rem 0; }
.timeline div { margin-bottom: 1rem; }
.timeline strong { display: block; font-size: 0.82rem; color: var(--copper); }

.contact-form-wrap { padding: 2.5rem; max-width: 640px; }

form { display: grid; gap: 1rem; }

label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.35rem; display: block; }

input, textarea, select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(44, 62, 80, 0.15);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}

input:focus, textarea:focus, select:focus { outline: none; border-color: var(--copper); }

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

.form-note { font-size: 0.82rem; color: var(--muted); }

footer {
  background: var(--steel-dark);
  color: rgba(238, 241, 244, 0.7);
  padding: 2rem 2.5rem;
  font-size: 0.82rem;
}

footer a { color: var(--copper-light); }

@media (max-width: 960px) {
  .layout { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  .side-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    height: auto;
    overflow: auto;
  }
  .side-nav.open { display: flex; }
  .hero, .split, .cap-grid, .bar-stats { grid-template-columns: 1fr; }
  section { padding: 3rem 1.25rem; }
  .hero-copy { padding: 3rem 1.25rem; }
}
