:root {
  --ink: #111416;
  --ink-2: #2c3236;
  --paper: #f4efe6;
  --paper-2: #fffaf1;
  --muted: #6b665d;
  --line: rgba(17, 20, 22, 0.14);
  --gold: #b68a3a;
  --teal: #245a5a;
  --wine: #7d3038;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(17, 20, 22, 0.16);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--paper);
}

.announce {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  background: var(--ink);
  color: var(--paper);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.announce a { color: #e5c276; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(244, 239, 230, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(244, 239, 230, .96);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .65rem;
  min-width: max-content;
}

.brand__script {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--wine);
}

.brand__mark {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.site-nav a:not(.button),
.footer-bottom nav a {
  padding: .55rem .75rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.site-nav a.is-active { color: var(--wine); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: var(--radius);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .85rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button--secondary { background: transparent; color: var(--ink); }
.button--small { min-height: 38px; padding: .6rem .85rem; font-size: .72rem; }

.hero,
.section,
.page-hero,
.project-hero,
.footer-cta,
.footer-bottom,
.card-page {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  min-height: calc(100vh - 34px - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 8vw, 6.5rem) 0;
}

.hero h1,
.page-hero h1,
.project-hero h1 {
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: .94;
  font-weight: 400;
  letter-spacing: 0;
}

.lede,
.page-hero p,
.project-hero p {
  max-width: 690px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.eyebrow {
  margin-bottom: .8rem;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero__actions,
.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}

.hero__image {
  position: relative;
  min-height: 570px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.hero__image img,
.proof-section > img,
.about-portrait img,
.project-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__panel {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: .15rem;
  padding: 1rem;
  background: rgba(255, 250, 241, .92);
  border-radius: var(--radius);
}

.hero__panel span {
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.ticker {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: var(--teal);
  color: var(--paper-2);
  white-space: nowrap;
}

.ticker span {
  padding-right: 1rem;
  border-right: 1px solid rgba(255,255,255,.28);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section--tight { padding-top: 2.5rem; }

.split-section,
.proof-section,
.about-layout,
.contact-layout,
.project-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.section h2,
.footer-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article,
.service-card,
.pricing-card,
.proof-card,
.contact-panel,
.contact-form,
.project-meta,
.digital-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 0 12px 30px rgba(17,20,22,.05);
}

.feature-list article {
  padding: 1.15rem;
}

.feature-list span,
.work-card__meta,
.project-meta span {
  color: var(--wine);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.text-link {
  color: var(--wine);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: .28em;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.work-grid--all {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.work-card {
  min-height: 100%;
  display: grid;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.work-card__media {
  aspect-ratio: 4 / 3;
  background: var(--ink);
  overflow: hidden;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.work-card:hover img { transform: scale(1.04); }
.work-card__body { padding: 1.15rem; }
.work-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: .6rem;
}
.work-card h3 { font-size: 1.22rem; line-height: 1.1; }
.work-card p { color: var(--muted); }

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1rem;
}

.service-card,
.pricing-card {
  padding: 1.25rem;
}

.service-card span,
.pricing-card .eyebrow { color: var(--gold); }

.pricing-card {
  display: grid;
  gap: 1.25rem;
  align-content: space-between;
}

.pricing-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-2);
}

.proof-section {
  align-items: stretch;
}

.proof-card {
  padding: clamp(1.25rem, 4vw, 2.25rem);
}

.proof-section > img,
.about-portrait {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.filter-row a {
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink-2);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.filter-row a.is-active {
  background: var(--ink);
  color: var(--paper-2);
}

.count-label { color: var(--muted); }

.project-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--ink);
  color: var(--paper-2);
}

.project-hero > img {
  position: absolute;
  inset: 0;
  opacity: .46;
}

.project-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 5rem);
}

.project-hero p { color: var(--paper); }

.project-meta {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.project-meta strong {
  display: block;
  margin-top: .15rem;
}

.result-list {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
}

.result-list article {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: .8rem;
  align-items: start;
}

.result-list span {
  width: 10px;
  height: 10px;
  margin-top: .45rem;
  background: var(--gold);
  border-radius: 50%;
}

.about-copy p,
.legal-copy p {
  color: var(--ink-2);
  font-size: 1.03rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-strip article {
  padding: 1rem;
  border-top: 3px solid var(--wine);
  background: var(--paper-2);
}

.stat-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.stat-strip span { color: var(--muted); }

.contact-panel,
.contact-form {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-panel a { color: var(--wine); font-weight: 800; }

.contact-form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  padding: .85rem .9rem;
}

textarea { resize: vertical; }
.honeypot { display: none; }

.notice {
  padding: .9rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.notice--success { background: rgba(36,90,90,.12); color: var(--teal); }
.notice--error { background: rgba(125,48,56,.12); color: var(--wine); }

.legal-copy {
  max-width: 820px;
}

.card-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 4rem 0;
}

.digital-card {
  width: min(620px, 100%);
  padding: clamp(1.5rem, 6vw, 3rem);
  background: var(--ink);
  color: var(--paper-2);
}

.digital-card h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .95;
  font-weight: 400;
}

.site-footer {
  margin-top: 2rem;
  background: var(--ink);
  color: var(--paper-2);
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 4rem 0;
}

.footer-cta h2 { max-width: 760px; color: var(--paper-2); }
.footer-cta .button { border-color: var(--paper-2); background: var(--paper-2); color: var(--ink); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.72);
}

.footer-bottom .brand__script { color: #e5c276; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .25rem; }
.footer-bottom nav a { color: rgba(255,255,255,.72); }
.footer-bottom p { margin: 0; font-size: .82rem; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: 86px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero,
  .split-section,
  .proof-section,
  .about-layout,
  .contact-layout,
  .project-layout {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero__image { min-height: 430px; }
  .work-grid { grid-template-columns: 1fr; }
  .section-heading,
  .footer-cta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .project-meta { position: static; }
  .form-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .announce {
    height: auto;
    min-height: 34px;
    flex-direction: column;
    gap: .15rem;
    padding: .45rem;
  }
  .site-header { padding: .75rem 1rem; }
  .brand__script { font-size: 1.55rem; }
  .brand__mark { font-size: .64rem; letter-spacing: .1em; }
  .hero h1,
  .page-hero h1,
  .project-hero h1 { font-size: clamp(2.55rem, 14vw, 4.4rem); }
  .hero__actions,
  .card-links { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
}
