@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --charcoal: #2a2a2a;
  --charcoal-deep: #1e1e1e;
  --slate: #5c5c5c;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d6;
  --white: #ffffff;
  --gold: #b8956a;
  --gold-light: #d4b88a;
  --line: #ddd5c8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--charcoal);
  line-height: 1.7;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.4rem, 4.8vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.demo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 8px 18px;
  background: var(--charcoal-deep);
  color: #c8c0b4;
  font-size: 0.72rem;
  font-weight: 700;
}

.demo-bar-label { text-transform: none; }

.demo-bar-back {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 2px;
  background: var(--gold);
  color: var(--charcoal-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 60px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  margin-right: auto;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--charcoal-deep);
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-family: Manrope, Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.site-nav a.active,
.site-nav a:hover { color: var(--charcoal-deep); }

.header-cta {
  padding: 11px 18px;
  background: var(--charcoal-deep);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.1fr 0.75fr;
  align-items: end;
  padding: 72px clamp(18px, 4vw, 60px) 64px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.hero-lead { max-width: 580px; }

.hero-lead p {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-aside {
  padding: 32px;
  background: var(--charcoal-deep);
  color: var(--cream);
}

.hero-aside p {
  margin-bottom: 0;
  color: #b8b0a4;
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-aside .eyebrow { color: var(--gold-light); }

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 13px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  background: var(--charcoal-deep);
  color: var(--cream);
}

.button-secondary {
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal-deep);
}

.credentials-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--charcoal-deep);
  color: var(--cream);
}

.credentials-strip div {
  padding: 32px clamp(18px, 4vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.credentials-strip div:last-child { border-right: 0; }

.credentials-strip strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--gold-light);
  font-weight: 600;
}

.credentials-strip span {
  color: #a8a098;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: 72px clamp(18px, 4vw, 60px);
}

.section-muted { background: var(--cream); }

.section-heading {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-heading p { color: var(--slate); }

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--slate);
  font-size: 0.94rem;
}

.process-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-timeline {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 8px;
}

.process-step {
  position: relative;
  padding: 28px 24px 32px;
  border-right: 1px solid var(--line);
}

.process-step:last-child { border-right: 0; }

.process-step::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--gold);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.client-types-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.client-type {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.client-type h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.client-type p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.page-hero {
  padding: 56px clamp(18px, 4vw, 60px) 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  color: var(--slate);
  max-width: 620px;
}

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

.split p { color: var(--slate); }

.values-list {
  display: grid;
  gap: 20px;
}

.values-list div {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.values-list h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.values-list p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

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

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.detail-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-card p {
  color: var(--slate);
  font-size: 0.94rem;
}

.contact-layout {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-form h2 {
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.contact-form .form-intro {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 0.92rem;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--cream);
  font: inherit;
  color: var(--charcoal);
}

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

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

.contact-panel {
  padding: 28px;
  background: var(--charcoal-deep);
  color: var(--cream);
}

.contact-panel h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--cream);
}

.contact-detail {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail:first-of-type { border-top: 0; padding-top: 0; }

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail span,
.contact-detail a {
  color: #c8c0b4;
  font-size: 0.95rem;
}

.contact-detail a:hover { color: var(--gold-light); }

.hours-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.hours-panel h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.hours-panel p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px clamp(18px, 4vw, 60px);
  background: var(--charcoal-deep);
  color: var(--cream);
}

.callout p { color: #a8a098; }

.callout .button-secondary {
  border-color: var(--gold);
  color: var(--cream);
  white-space: nowrap;
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 60px);
  background: var(--charcoal-deep);
  color: #8a8278;
  font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    order: 4;
    gap: 12px;
  }
  .site-nav.open { display: flex; }
  .header-cta { display: none; }
  .hero,
  .card-grid,
  .split,
  .contact-layout,
  .detail-grid,
  .client-types-grid,
  .process-timeline,
  .credentials-strip,
  .form-row { grid-template-columns: 1fr; }
  .credentials-strip div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .callout { flex-direction: column; align-items: flex-start; }
}

/* Scroll reveal, hero photo & polish */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-photo img {
    animation: none !important;
  }
}

.hero {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.hero-visual {
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto;
  gap: 0;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-aside {
  margin: 0;
}

.service-card,
.client-type,
.detail-card,
.process-step {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.client-type:hover,
.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42, 42, 42, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .client-type:hover,
  .detail-card:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    grid-template-rows: auto auto;
  }
}
