:root {
  --ink: #0c1a24;
  --ink-soft: #3a4a56;
  --paper: #fafaf8;
  --paper-2: #f3f2ee;
  --white: #ffffff;
  --line: #e4e0d8;
  --accent: #8b5a3c; /* quiet copper */
  --accent-deep: #6e4630;
  --steel: #1f4b63;
  --shadow: 0 18px 50px rgba(12, 26, 36, 0.08);
  --radius: 14px;
  --max: 1120px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(12,26,36,.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.25rem;
  gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .7rem; }
.logo-img {
  display: block;
  height: 5rem;
  width: auto;
  max-width: min(460px, 72vw);
}
.footer-logo .logo-img {
  height: 4.25rem;
  max-width: 400px;
  opacity: 1;
}
.logo-mark {
  width: 2rem; height: 2rem;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  position: relative;
  flex: 0 0 auto;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: linear-gradient(135deg, var(--steel), var(--accent));
  opacity: .9;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.logo-text em {
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav { display: flex; align-items: center; gap: 1.35rem; font-size: .92rem; font-weight: 500; }
.nav a { color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: .55rem 1rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--steel) !important; }
.nav-toggle {
  display: none;
  width: 2.5rem; height: 2.5rem;
  border: 0; background: transparent; padding: 0;
  flex-direction: column; justify-content: center; gap: 6px;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 1.35rem; background: var(--ink); margin: 0 auto;
}

/* Hero */
.hero { padding: 4.5rem 0 3.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 2.5rem;
  align-items: end;
}
.eyebrow {
  margin: 0 0 .85rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.lede {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { background: var(--steel); }
.btn.ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn.ghost:hover { border-color: var(--ink); }

.hero-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  display: grid;
  gap: 1.15rem;
  box-shadow: var(--shadow);
}
.stat { display: grid; gap: .25rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(245,242,236,.15); }
.stat:last-child { border: 0; padding-bottom: 0; }
.stat-label {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,242,236,.55);
  font-weight: 600;
}
.stat-value { font-size: 1.02rem; font-weight: 500; }

.band {
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}
.band-inner { padding: 1.6rem 0; }
.band p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  max-width: 46rem;
  color: var(--ink);
}

.section { padding: 4.5rem 0; }
.section.alt { background: var(--white); border-block: 1px solid var(--line); }
.section-head { max-width: 40rem; margin-bottom: 2.25rem; }
.section h2 {
  margin: 0 0 .85rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
}
.section-lede { margin: 0; color: var(--ink-soft); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  transition: border-color .15s, transform .15s;
}
.section.alt .service-card { background: var(--paper); }
.service-card:hover { border-color: #b9b0a2; transform: translateY(-1px); }
.service-card .num {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .7rem;
}
.service-card h3 {
  margin: 0 0 .55rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.service-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }


/* Featured Projects carousel */
.projects-carousel {
  position: relative;
}
.projects-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.projects-hint {
  margin: 0;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.projects-controls {
  display: flex;
  gap: .45rem;
}
.projects-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s, color .15s;
}
.projects-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.projects-album {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(12,26,36,.25) transparent;
}
.projects-album::-webkit-scrollbar {
  height: 6px;
}
.projects-album::-webkit-scrollbar-thumb {
  background: rgba(12,26,36,.22);
  border-radius: 999px;
}
.project-card {
  margin: 0;
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.project-card:hover {
  border-color: #b9b0a2;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  background: var(--paper-2);
  display: block;
  flex-shrink: 0;
}
.project-card figcaption {
  padding: .85rem 1rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.approach-copy p { color: var(--ink-soft); margin: 0 0 1rem; }
.approach-copy p:last-child { margin-bottom: 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: start;
}
.about-copy p { color: var(--ink-soft); }
.about-copy .pull {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
  color: var(--ink);
  font-weight: 500;
}
.about-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}

.founder-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .35rem;
}
.founder-head img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 42%;
  flex-shrink: 0;
  border: 2px solid rgba(196, 140, 90, 0.55);
  box-shadow: 0 0 0 3px rgba(250, 250, 248, 0.08);
}
.founder-head h3 { margin: 0; }
.founder-head .role { margin: .15rem 0 0; }

.about-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
}
.about-card .role {
  margin: .2rem 0 1.1rem;
  color: rgba(245,242,236,.6);
  font-size: .88rem;
  letter-spacing: .04em;
}
.about-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .65rem;
}
.about-card li {
  padding-left: 1rem;
  position: relative;
  font-size: .92rem;
  color: rgba(245,242,236,.88);
}
.about-card li::before {
  content: "";
  position: absolute;
  left: 0; top: .55rem;
  width: .35rem; height: .35rem;
  border-radius: 50%;
  background: var(--accent);
}

.info-grid {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
}
.info-grid li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .85rem 1rem;
  font-size: .9rem;
  font-weight: 500;
}
.quote {
  margin: 0;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}
.quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.35;
  font-weight: 500;
}

.contact { background: var(--paper-2); border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-top: 1.25rem;
  color: var(--ink-soft);
}
.contact-meta a { color: var(--steel); font-weight: 600; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: grid;
  gap: .85rem;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  font-size: .95rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .7rem .8rem;
  background: var(--paper);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31,75,99,.25);
  border-color: var(--steel);
}
.form-note {
  margin: 0;
  font-size: .78rem;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.site-footer {
  background: var(--ink);
  color: rgba(245,242,236,.7);
  padding: 2.25rem 0;
}
.footer-inner { display: grid; gap: .55rem; }
.footer-logo .logo-text strong { color: var(--paper); }
.footer-logo .logo-text em { color: rgba(245,242,236,.45); }
.footer-logo .logo-mark { border-color: rgba(245,242,236,.45); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  text-align: left;
  margin-top: 1.1rem;
}
.footer-contact p {
  margin: 0;
  color: rgba(245,242,236,.72);
  font-size: .8rem;
  line-height: 1.45;
}
.footer-contact a {
  color: rgba(245,242,236,.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,242,236,.25);
}
.footer-contact a:hover {
  color: var(--paper);
  border-bottom-color: rgba(245,242,236,.55);
}
.fine { font-size: .78rem; opacity: .65; margin: .35rem 0 0; text-align: left; }

@media (max-width: 860px) {
  .hero-grid,
  .approach-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .project-card { flex-basis: min(280px, 82vw); }
  .project-card img { height: 200px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: .35rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: .7rem .4rem; }
  .nav-cta { text-align: center; margin-top: .35rem; }
  .header-inner { position: relative; }
  .hero { padding-top: 2.75rem; }
}

@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
  .project-card { flex-basis: min(260px, 85vw); }
  .wrap { width: min(var(--max), calc(100% - 1.75rem)); }
}
