:root {
  --ink: #161514;
  --muted-ink: #5c5650;
  --warm: #9a744e;
  --warm-dark: #765637;
  --cream: #f7f3ee;
  --cream-2: #efe7dd;
  --line: #ded5ca;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(22, 21, 20, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.top-anchor { position: absolute; top: 0; left: 0; width: 1px; height: 1px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222, 213, 202, 0.8);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { width: 180px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted-ink);
  font-size: 0.95rem;
}

.nav a:hover { color: var(--warm-dark); }

.hero {
  padding: 80px 0 74px;
  background:
    radial-gradient(circle at 85% 10%, rgba(154, 116, 78, 0.14), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--warm-dark);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.4vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  color: var(--muted-ink);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(22, 21, 20, 0.18);
}

.button.secondary {
  color: var(--warm-dark);
  background: rgba(154, 116, 78, 0.1);
  border: 1px solid rgba(154, 116, 78, 0.28);
}

.hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.hero-image figcaption {
  padding: 18px 22px;
  color: var(--muted-ink);
  font-size: 0.94rem;
}

.section { padding: 88px 0; }

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

.intro-strip {
  padding: 0;
  background: var(--ink);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
}

.strip-grid > div { padding: 30px 26px; background: var(--ink); }

.strip-grid strong,
.strip-grid span { display: block; }

.strip-grid span { margin-top: 6px; color: rgba(255,255,255,0.72); }

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--cream-2);
}

.about-image img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center;
}

.body-copy { color: var(--muted-ink); font-size: 1.08rem; }

.about-copy h2 { color: var(--ink); }

.body-copy p:last-child,
.contact-intro:last-child { margin-bottom: 0; }

.section-heading { max-width: 850px; margin-bottom: 38px; }
.section-heading.compact { margin-bottom: 34px; }
.subtle { color: var(--muted-ink); }

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 32px;
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--warm-dark);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.card p,
.project-content p,
.contact-intro { color: var(--muted-ink); }

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 46px rgba(22, 21, 20, 0.06);
}

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

.project-card.large-card img { height: 320px; }

.text-card {
  display: flex;
  align-items: stretch;
  min-height: 320px;
  background:
    radial-gradient(circle at 85% 15%, rgba(154, 116, 78, 0.14), transparent 30%),
    linear-gradient(145deg, #fff 0%, var(--cream) 100%);
}

.project-content { padding: 24px 26px 28px; }

.only-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.only-text .card-number { margin-bottom: 18px; }

.statement {
  max-width: 940px;
  text-align: center;
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-section { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }

.contact-card {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card .role { margin-top: -4px; color: rgba(255,255,255,0.72); }

.contact-list {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
}

.contact-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.contact-list span { color: rgba(255,255,255,0.58); }
.contact-list a { font-weight: 700; }
.contact-list a:hover,
.site-footer a:hover { color: #d8b686; }

.site-footer {
  padding: 28px 0;
  color: rgba(255,255,255,0.72);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p { margin-bottom: 0; }

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero { padding-top: 54px; }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards.three,
  .project-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .hero-image img { height: 380px; }
  .about-image img { height: 520px; }
  .section { padding: 62px 0; }
  .about-grid,
  .contact-grid { gap: 30px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand img { width: 165px; }
  .nav { flex-wrap: wrap; justify-content: flex-start; }
  h1 { font-size: 2.65rem; }
  .hero-actions,
  .button { width: 100%; }
  .hero-image img { height: 290px; }
  .about-image img { height: 430px; }
  .project-card img { height: 250px; }
  .card,
  .contact-card { padding: 26px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
