:root {
  --ink: #151816;
  --ink-soft: #232724;
  --paper: #f4f1ea;
  --paper-deep: #e8e2d8;
  --white: #fffdf8;
  --coral: #d9785d;
  --coral-dark: #aa503c;
  --sage: #b7bea9;
  --lime: #dbe49d;
  --line-dark: rgba(21, 24, 22, 0.22);
  --line-light: rgba(255, 253, 248, 0.25);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --pad: clamp(24px, 6vw, 96px);
  --section: clamp(88px, 10vw, 160px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a, button { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
}

.announcement { display: none; }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--pad);
  color: var(--white);
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled,
.site-header:has(.nav-links.open) {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(21, 24, 22, 0.95);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.07em;
  text-decoration: none;
}
.brand-logo { display: none; }
.brand-dot { color: var(--coral); }
.menu-toggle {
  position: relative;
  z-index: 2;
  display: block;
  width: 44px;
  height: 40px;
  padding: 8px 4px;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 7px 0;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.nav-links {
  position: absolute;
  top: calc(100% - 3px);
  right: var(--pad);
  display: none;
  width: min(330px, calc(100vw - 48px));
  padding: 18px;
  background: var(--ink);
  border: 1px solid var(--line-light);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.nav-links.open { display: flex; flex-direction: column; }
.nav-links a {
  padding: 13px 10px;
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  font-size: 15px;
  text-decoration: none;
}
.nav-links a:hover { color: var(--lime); }
.nav-links .nav-cta {
  margin-top: 12px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  text-align: center;
}
.nav-cta span { margin-left: 12px; color: var(--coral); }

.section-pad { padding: var(--section) var(--pad); }
.eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.075em;
}
h2 { font-size: clamp(3.4rem, 7.2vw, 8rem); line-height: 0.9; }
h1 em, h2 em {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 150px var(--pad) clamp(58px, 7vw, 110px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: -1; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.96) contrast(1.04);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 14, 13, 0.35) 0%, rgba(12, 14, 13, 0.12) 35%, rgba(12, 14, 13, 0.88) 100%),
    linear-gradient(90deg, rgba(12, 14, 13, 0.42), transparent 65%);
}
.hero-copy { width: min(1120px, 100%); }
.hero .eyebrow { margin-bottom: 32px; }
.sparkle { margin-right: 10px; color: var(--coral); font-size: 18px; }
.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(4.6rem, 8.7vw, 9rem);
  line-height: 0.84;
  color: var(--white);
}
.hero h1 em { color: #e9a48f; }
.hero-lede {
  max-width: 520px;
  margin: 36px 0 32px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-dark { color: var(--ink); background: var(--white); }
.button-dark span, .button-light span { color: var(--coral); font-size: 18px; }
.button-light { color: var(--ink); background: var(--white); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.hero .text-link { color: var(--white); }
.hero-art { display: none; }

.marquee {
  overflow: hidden;
  padding: 15px 0;
  color: var(--ink);
  background: var(--lime);
  border-block: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.marquee div { width: max-content; animation: marquee 24s linear infinite; }
.marquee span { margin: 0 28px; color: var(--coral-dark); }
@keyframes marquee { to { transform: translateX(-35%); } }

.local-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  gap: clamp(56px, 10vw, 150px);
  align-items: end;
  background: var(--paper);
}
.local-proof-intro h2 { max-width: 760px; }
.local-proof-intro h2 em { color: var(--coral-dark); }
.local-proof-content > p {
  max-width: 500px;
  margin: 0 0 32px;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.audience-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; }
.audience-tags span {
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.services { color: var(--white); background: var(--ink); }
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(54px, 7vw, 100px);
}
.section-intro h2 { max-width: 900px; }
.section-intro h2 em { color: #e9a48f; }
.service-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line-light); }
.service-card {
  display: grid;
  grid-template-columns: 60px minmax(220px, 0.9fr) minmax(260px, 1fr) 190px;
  gap: 30px;
  align-items: start;
  min-height: 245px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding 0.3s ease, background 0.3s ease;
}
.service-card:hover { padding-inline: 18px; background: var(--ink-soft); }
.service-number { color: var(--lime); font-size: 11px; font-weight: 700; }
.service-icon { grid-column: 2; grid-row: 1; color: var(--coral); font-size: 31px; }
.service-card h3 {
  grid-column: 2;
  grid-row: 2;
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.service-card p {
  grid-column: 3;
  grid-row: 1 / span 2;
  max-width: 390px;
  margin: 4px 0 0;
  color: rgba(255, 253, 248, 0.75);
  font-size: 15px;
}
.service-card a {
  grid-column: 4;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.work { background: var(--white); }
.work-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}
.work-heading h2 { max-width: 900px; }
.work-heading h2 em { color: var(--coral-dark); }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.project { min-width: 0; }
.project:nth-child(1) { grid-column: span 5; }
.project:nth-child(2) { grid-column: span 7; }
.project:nth-child(3) { grid-column: 5 / span 8; margin-top: 42px; }
.project-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(340px, 42vw, 610px);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 3px;
}
.project-lilac .project-art { background: #c9bce0; }
.project-peach .project-art { background: #eda785; }
.project-mint .project-art { background: #b9cdb9; }
.project-art::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-90%);
  transition: transform 0.8s ease;
}
.project:hover .project-art::after { transform: translateX(90%); }
.project-art span {
  position: relative;
  z-index: 1;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.8;
  letter-spacing: -0.09em;
  text-align: center;
}
.project-art b { font-family: var(--serif); font-weight: 500; font-style: italic; }
.project-art i { position: absolute; font-size: clamp(60px, 8vw, 110px); font-style: normal; }
.art-bloom i { top: 30px; right: 34px; color: var(--coral-dark); }
.art-sip i { bottom: 30px; left: 34px; color: var(--white); }
.art-play i { top: 28px; left: 32px; color: var(--white); }
.project-meta { display: flex; justify-content: space-between; gap: 16px; padding: 16px 2px 8px; font-size: 12px; font-weight: 700; }
.project-meta span:last-child { font-weight: 400; opacity: 0.65; }
.project-note { max-width: 420px; margin: 0 2px; color: rgba(21,24,22,0.7); font-size: 13px; }
.video-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin: 110px 0 28px;
  padding-top: 25px;
  border-top: 1px solid var(--ink);
}
.video-heading p:last-child { max-width: 390px; margin: 0; font-size: 14px; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.video-card video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 3px; background: var(--paper-deep); }
.video-caption { display: flex; justify-content: space-between; gap: 12px; padding: 13px 2px; font-size: 12px; font-weight: 700; }
.video-caption span:last-child { color: var(--coral-dark); font-weight: 400; }

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.85fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  background: var(--sage);
}
.process h2 em { color: var(--coral-dark); }
.process-copy > p:not(.eyebrow) { max-width: 480px; margin: 30px 0 34px; font-size: 18px; }
.process .button-dark { color: var(--white); background: var(--ink); }
.steps { border-top: 1px solid var(--ink); }
.steps > div { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--ink); }
.steps > div > span { color: var(--coral-dark); font-size: 11px; font-weight: 700; }
.steps h3 { margin: 0; font-size: clamp(25px, 2.4vw, 36px); line-height: 1; letter-spacing: -0.05em; }
.steps p { max-width: 420px; margin: 10px 0 0; font-size: 14px; }

.founder {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  color: var(--white);
  background: var(--ink);
}
.founder-portrait {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  color: var(--ink);
  background: var(--coral);
}
.founder-portrait::before { content: ""; position: absolute; width: 300px; height: 300px; top: -90px; right: -70px; border: 1px solid var(--ink); border-radius: 50%; }
.founder-portrait::after { content: ""; position: absolute; width: 200px; height: 200px; left: -70px; bottom: -80px; border-radius: 50%; background: var(--lime); }
.founder-portrait span { position: relative; z-index: 1; font-size: clamp(54px, 6vw, 86px); line-height: 0.8; letter-spacing: -0.085em; }
.founder-portrait em { font-family: var(--serif); font-weight: 500; }
.founder-portrait i { position: absolute; right: 22px; bottom: 20px; font-size: 10px; font-weight: 700; font-style: normal; letter-spacing: 0.15em; }
.founder-copy h2 em { color: #e9a48f; }
.founder-copy > p:not(.eyebrow) { max-width: 570px; margin: 26px 0 0; color: rgba(255,253,248,0.76); font-size: 17px; }
.founder-signoff { color: var(--white) !important; font-family: var(--serif); font-size: 21px !important; font-style: italic; }

.beliefs { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr); gap: clamp(60px, 10vw, 150px); background: var(--paper); }
.beliefs h2 em { color: var(--coral-dark); }
.belief-list { border-top: 1px solid var(--ink); }
.belief-list p { display: grid; grid-template-columns: 52px 1fr; gap: 18px; margin: 0; padding: 28px 0; border-bottom: 1px solid var(--ink); font-size: clamp(19px, 2vw, 28px); line-height: 1.1; letter-spacing: -0.04em; }
.belief-list span { color: var(--coral-dark); font-size: 11px; font-weight: 700; letter-spacing: 0; }

.contact {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--coral);
  text-align: left;
}
.contact::after { content: ""; position: absolute; width: min(45vw, 650px); aspect-ratio: 1; right: -12vw; bottom: -70%; border: 1px solid rgba(21,24,22,0.45); border-radius: 50%; }
.contact-star { position: absolute; top: 18%; right: 14%; color: var(--lime); font-size: clamp(50px, 8vw, 110px); }
.contact .eyebrow, .contact h2, .contact > p, .contact .button { position: relative; z-index: 1; }
.contact h2 { max-width: 1000px; }
.contact h2 em { color: var(--white); }
.contact > p:not(.eyebrow) { max-width: 480px; margin: 30px 0 32px; font-size: 18px; }
.contact-email {
  position: relative;
  z-index: 1;
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 20px;
  color: var(--white);
  font-size: 15px;
  text-underline-offset: 5px;
}
.contact-email:hover { color: var(--lime); }

.privacy-main {
  min-height: 100vh;
  padding: clamp(150px, 16vw, 220px) var(--pad) var(--section);
  background: var(--paper);
}
.privacy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
  padding-bottom: clamp(64px, 9vw, 120px);
  border-bottom: 1px solid var(--line-dark);
}
.privacy-hero h1 {
  max-width: 8ch;
  margin: 16px 0 0;
  font-size: clamp(4.6rem, 10vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
}
.privacy-hero h1 em { color: var(--coral-dark); font-family: var(--serif); font-weight: 500; }
.privacy-hero aside { max-width: 430px; }
.privacy-hero aside p { margin: 0 0 18px; font-size: 18px; }
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.35fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 150px);
  padding-top: clamp(64px, 9vw, 120px);
}
.privacy-nav { position: sticky; top: 120px; align-self: start; }
.privacy-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
  text-decoration: none;
}
.privacy-nav a:hover { color: var(--coral-dark); }
.privacy-copy { max-width: 820px; }
.privacy-copy section { padding: 0 0 64px; scroll-margin-top: 120px; }
.privacy-copy h2 { margin: 0 0 22px; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.055em; }
.privacy-copy h3 { margin: 30px 0 8px; font-size: 20px; }
.privacy-copy p, .privacy-copy li { font-size: 17px; line-height: 1.75; }
.privacy-copy ul { padding-left: 20px; }
.privacy-copy a { text-underline-offset: 4px; }
.privacy-note { padding: 24px; background: var(--lime); border-radius: 16px; }

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 38px var(--pad);
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
}
.footer p { margin: 0; text-align: center; opacity: 0.68; }
.footer div { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 18px; }
.footer a { color: var(--white); text-decoration: none; }
.footer a:hover { color: var(--lime); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.75,.25,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .service-card { grid-template-columns: 46px minmax(200px, 0.9fr) minmax(220px, 1fr) 145px; gap: 20px; }
  .project:nth-child(1), .project:nth-child(2), .project:nth-child(3) { grid-column: span 6; margin-top: 0; }
  .project:nth-child(3) { grid-column: 4 / span 7; margin-top: 22px; }
}

@media (max-width: 800px) {
  :root { --section: 88px; }
  .site-header { padding: 20px 24px; }
  .site-header.is-scrolled, .site-header:has(.nav-links.open) { padding: 16px 24px; }
  .nav-links { right: 24px; }
  .hero { min-height: 100svh; padding: 124px 24px 44px; }
  .hero-video-overlay { background: linear-gradient(180deg, rgba(12,14,13,0.42), rgba(12,14,13,0.2) 25%, rgba(12,14,13,0.9)); }
  .hero h1 { max-width: 7.5ch; font-size: clamp(3.7rem, 16vw, 6.2rem); line-height: 0.87; }
  .hero-lede { max-width: 430px; margin-top: 28px; font-size: 16px; }
  .local-proof, .process, .founder, .beliefs { grid-template-columns: 1fr; gap: 56px; }
  .privacy-hero, .privacy-layout { grid-template-columns: 1fr; }
  .privacy-nav { position: static; }
  .local-proof { align-items: start; }
  .section-intro, .work-heading, .video-heading { align-items: flex-start; flex-direction: column; }
  .service-card { grid-template-columns: 34px minmax(0, 1fr); gap: 8px 16px; min-height: 0; padding: 28px 0; }
  .service-number { grid-column: 1; grid-row: 1 / span 4; }
  .service-icon { grid-column: 2; grid-row: 1; }
  .service-card h3 { grid-column: 2; grid-row: 2; margin-top: 2px; }
  .service-card p { grid-column: 2; grid-row: 3; margin: 10px 0 16px; }
  .service-card a { grid-column: 2; grid-row: 4; max-width: 250px; }
  .service-card:hover { padding-inline: 0; background: transparent; }
  .project-grid { grid-template-columns: 1fr; gap: 42px; }
  .project:nth-child(1), .project:nth-child(2), .project:nth-child(3) { grid-column: auto; margin: 0; }
  .project-art { height: min(92vw, 520px); }
  .video-heading { align-items: flex-start; margin-top: 82px; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-portrait { min-height: 430px; }
  .footer { grid-template-columns: 1fr; align-items: start; }
  .footer p { text-align: left; }
  .footer div { justify-content: flex-start; }
}

@media (max-width: 520px) {
  :root { --pad: 24px; --section: 78px; }
  h2 { font-size: clamp(3.05rem, 14.2vw, 4.5rem); }
  .hero .eyebrow { max-width: 290px; font-size: 10px; line-height: 1.45; }
  .hero h1 { font-size: clamp(3.45rem, 16.6vw, 4.8rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button { min-height: 52px; padding: 14px 18px; }
  .local-proof-content > p { font-size: 19px; }
  .project-art { height: 86vw; }
  .video-grid { gap: 10px; }
  .video-caption { display: block; font-size: 11px; }
  .video-caption span { display: block; }
  .founder-portrait { min-height: 360px; }
  .contact-star { top: 10%; right: 8%; opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .marquee div { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .menu-toggle span, .site-header, .service-card, .project-art::after { transition: none; }
}
