:root {
  --ink: #171814;
  --ink-soft: #57584f;
  --paper: #f3f0e8;
  --paper-light: #fbfaf6;
  --gold: #b59452;
  --gold-light: #d6bd84;
  --line: rgba(23, 24, 20, 0.13);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.site-header, main, footer { width: min(1420px, calc(100% - 80px)); margin-inline: auto; }
.site-header {
  height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; width: max-content; }
.brand-logo { display: block; width: 260px; height: auto; }
nav { display: flex; gap: 30px; font-size: 14px; }
nav a { position: relative; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .25s; }
nav a:hover::after { right: 0; }
.languages { justify-self: end; display: flex; gap: 8px; align-items: center; color: #8c8c84; font-size: 12px; }
.languages button { border: 0; padding: 6px 2px; background: none; color: inherit; cursor: pointer; }
.languages button.active { color: var(--ink); font-weight: 600; }

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 142px));
  margin-top: 30px;
  padding: clamp(58px, 7vw, 104px);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  box-shadow: 0 32px 75px rgba(23, 24, 20, .18);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 14, 13, .88) 0%, rgba(10, 14, 13, .72) 39%, rgba(10, 14, 13, .2) 72%, rgba(10, 14, 13, .04) 100%),
    linear-gradient(0deg, rgba(10, 14, 13, .28), transparent 45%);
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-copy { position: relative; z-index: 2; width: min(58%, 760px); }
.eyebrow { margin: 0 0 24px; color: #866d39; font: 600 11px/1 "Manrope", sans-serif; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; }
h1 { max-width: 800px; font-size: clamp(48px, 5.1vw, 78px); line-height: .99; letter-spacing: -.055em; font-weight: 600; }
.hero .eyebrow { color: var(--gold-light); }
.hero-text { max-width: 600px; margin: 30px 0 0; font-size: 19px; line-height: 1.65; color: rgba(255,255,255,.82); text-shadow: 0 1px 18px rgba(0,0,0,.18); }
.hero-actions { margin-top: 40px; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.button { min-height: 56px; padding: 0 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; font: 600 14px/1 "Manrope", sans-serif; transition: transform .25s, background .25s, color .25s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; }
.button-primary { color: var(--ink); background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.button-primary:hover { background: var(--paper-light); }
.text-link { display: inline-flex; gap: 12px; align-items: center; font-weight: 500; font-size: 14px; }
.hero .text-link { color: #fff; }
.hero-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(17, 20, 17, .5);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 11px;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 5px rgba(214,189,132,.15); }
.hero-badge > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.hero-badge strong { font: 600 9px/1 "Manrope", sans-serif; letter-spacing: .14em; }
.hero-badge small { color: rgba(255,255,255,.7); font-size: 10px; }

.services { padding: 124px 0; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; margin-bottom: 68px; }
h2 { font-size: clamp(35px, 4vw, 58px); line-height: 1.08; letter-spacing: -.045em; font-weight: 600; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-card { position: relative; min-height: 555px; padding: 36px 42px 40px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.service-card + .service-card { padding-left: 42px; }
.service-card:last-child { border-right: 0; padding-right: 0; }
.service-number { display: block; color: #99998f; font: 500 11px "Manrope", sans-serif; letter-spacing: .14em; }
.service-icon { height: 126px; display: flex; align-items: center; }
.service-icon svg { width: 52px; fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 23px; letter-spacing: -.02em; }
.service-card p { max-width: 350px; margin: 17px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.price-block { margin-top: auto; padding-top: 30px; display: flex; flex-direction: column; align-items: flex-start; }
.price-block > span { color: #8a8b82; font: 500 10px/1 "Manrope", sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.price-block > strong { margin-top: 8px; color: var(--ink); font: 600 32px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.price-block > strong small { color: var(--ink-soft); font-size: 12px; font-weight: 600; letter-spacing: 0; }
.price-block em { margin-top: 10px; color: #866d39; font-size: 11px; font-style: normal; }
.tier-list { width: 100%; margin-top: 20px; border-top: 1px solid var(--line); }
.tier-list > div { min-height: 38px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--ink-soft); font-size: 11px; }
.tier-list b { color: var(--ink); font: 600 12px/1 "Manrope", sans-serif; white-space: nowrap; }
.tier-list b small { color: #866d39; font-size: 9px; font-weight: 600; }
.pricing-notes { max-width: 880px; margin: 30px 0 0 auto; padding-top: 22px; border-top: 1px solid var(--line); text-align: right; }
.pricing-notes p { margin: 0; }
.tax-note { color: #866d39; font: 600 10px/1 "Manrope", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.zone-note { margin-top: 10px !important; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.price-disclaimer { margin-top: 8px !important; color: #77786f; font-size: 11px; line-height: 1.6; }

.founder-profile {
  min-height: 610px;
  margin-top: 108px;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  color: #f4f1e9;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(23, 24, 20, .15);
  scroll-margin-top: 24px;
}
.founder-photo { position: relative; min-height: 610px; overflow: hidden; }
.founder-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 68%, rgba(23,24,20,.22)); pointer-events: none; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .65s ease; }
.founder-profile:hover .founder-photo img { transform: scale(1.018); }
.founder-profile + .founder-profile { margin-top: 24px; }
.founder-profile--reverse { grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr); }
.founder-profile--reverse .founder-photo { grid-column: 2; grid-row: 1; }
.founder-profile--reverse .founder-photo::after { background: linear-gradient(270deg, transparent 68%, rgba(23,24,20,.22)); }
.founder-profile--reverse .founder-copy { grid-column: 1; grid-row: 1; }
.founder-copy { padding: clamp(54px, 6.2vw, 92px); display: flex; flex-direction: column; justify-content: center; }
.founder-copy .eyebrow { margin-bottom: 22px; color: var(--gold-light); }
.founder-copy h2 { max-width: 650px; }
.founder-copy > p:not(.eyebrow) { max-width: 690px; margin: 25px 0 0; color: rgba(255,255,255,.69); font-size: 16px; line-height: 1.72; }
.founder-copy > p + p:not(.eyebrow) { margin-top: 14px; color: rgba(255,255,255,.5); font-size: 14px; }
.founder-facts { margin-top: 38px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.14); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.founder-facts div { display: flex; flex-direction: column; gap: 8px; }
.founder-facts div + div { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.14); }
.founder-facts strong { color: var(--gold-light); font: 600 34px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.founder-facts span { color: rgba(255,255,255,.55); font: 500 10px/1.4 "Manrope", sans-serif; letter-spacing: .11em; text-transform: uppercase; }

.work-showcase { margin-top: 112px; padding-top: 112px; border-top: 1px solid var(--line); scroll-margin-top: 24px; }
.work-heading { margin-bottom: 50px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.work-heading .eyebrow { margin-bottom: 20px; }
.work-heading > p { max-width: 530px; margin: 0 0 5px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.work-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work-card { position: relative; aspect-ratio: 1; min-height: 0; border-radius: 22px; overflow: hidden; color: #fff; background: #272921; isolation: isolate; }
.work-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(10,12,10,.88) 0%, rgba(10,12,10,.18) 58%, transparent 78%); }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.work-card:hover img { transform: scale(1.035); }
.work-card-copy { position: absolute; inset: auto 0 0; z-index: 2; padding: 28px; }
.work-card-copy > span { display: block; margin-bottom: 10px; color: var(--gold-light); font: 600 9px/1 "Manrope", sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.work-card h3 { font-size: 24px; letter-spacing: -.025em; }
.work-card p { max-width: 330px; margin: 9px 0 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.45; }
.work-disclaimer { max-width: 850px; margin: 24px 0 0 auto; color: #77786f; font-size: 11px; line-height: 1.6; text-align: right; }

.contact { padding: 30px 0 100px; }
.contact-card { padding: 70px; border-radius: var(--radius); color: #f4f1e9; background: var(--ink); display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; overflow: hidden; position: relative; }
.contact-card::after { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(214,189,132,.14); border-radius: 50%; right: -150px; top: -220px; box-shadow: 0 0 0 70px rgba(214,189,132,.025), 0 0 0 140px rgba(214,189,132,.018); }
.contact-card .eyebrow { color: var(--gold-light); }
.contact-card h2 { max-width: 760px; }
.contact-card p:not(.eyebrow):not(.setup-note) { color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.6; }
.contact-actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.contact-actions .button { margin-top: 0; }
.button-light { background: var(--paper-light); color: var(--ink); }
.button-outline { border: 1px solid rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.04); }
.button-outline:hover { border-color: var(--gold-light); background: rgba(214,189,132,.09); }
.setup-note { margin: 18px 0 0; color: rgba(255,255,255,.78); font: 500 14px/1.7 "Manrope", sans-serif; }
.contact-email-address { color: var(--gold-light); font-weight: 600; word-break: break-word; }
.contact-email-address:hover { text-decoration: underline; text-underline-offset: 3px; }
.coverage { position: relative; z-index: 1; padding-left: 34px; border-left: 1px solid rgba(255,255,255,.16); }
.coverage p { font: 600 10px/1 "Manrope", sans-serif !important; letter-spacing: .18em; color: var(--gold-light) !important; }
.coverage ul { list-style: none; margin: 22px 0 0; padding: 0; }
.coverage li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }

footer { min-height: 120px; padding: 30px 0 42px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; color: #73746b; font-size: 11px; }
.brand-footer { transform: scale(.82); transform-origin: left center; }
footer p:last-child { justify-self: end; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header, main, footer { width: min(100% - 36px, 680px); }
  .site-header { grid-template-columns: 1fr auto; height: 90px; }
  nav { display: none; }
  .hero { min-height: 680px; margin-top: 22px; padding: 58px 44px; }
  .hero::after { background: linear-gradient(90deg, rgba(10,14,13,.9), rgba(10,14,13,.56) 68%, rgba(10,14,13,.16)); }
  .hero-photo { object-position: 58% center; }
  .hero-copy { width: min(76%, 620px); }
  .section-heading { grid-template-columns: 1fr; gap: 6px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card + .service-card, .service-card:last-child { min-height: 0; padding: 30px 0 34px; border-right: 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 42px 74px 1fr; align-items: center; gap: 12px; }
  .service-card:last-child { border-bottom: 0; }
  .service-icon { height: auto; }
  .service-icon svg { width: 42px; }
  .service-card p { grid-column: 3; margin-top: -3px; }
  .price-block { grid-column: 3; margin-top: 10px; padding-top: 0; }
  .pricing-notes { margin-left: 0; text-align: left; }
  .founder-profile { min-height: 0; margin-top: 82px; grid-template-columns: 1fr; }
  .founder-profile + .founder-profile { margin-top: 24px; }
  .founder-photo { min-height: 0; aspect-ratio: 4 / 5; }
  .founder-photo::after { background: linear-gradient(0deg, rgba(23,24,20,.16), transparent 38%); }
  .founder-profile--reverse .founder-photo, .founder-profile--reverse .founder-copy { grid-column: auto; grid-row: auto; }
  .founder-profile--reverse .founder-photo::after { background: linear-gradient(0deg, rgba(23,24,20,.16), transparent 38%); }
  .founder-copy { padding: 54px 46px 60px; }
  .work-showcase { margin-top: 82px; padding-top: 82px; }
  .work-heading { grid-template-columns: 1fr; gap: 22px; }
  .work-heading > p { max-width: 620px; }
  .work-gallery { grid-template-columns: repeat(2, 1fr); }
  .work-disclaimer { margin-left: 0; text-align: left; }
  .contact-card { padding: 50px 36px; grid-template-columns: 1fr; gap: 55px; }
  footer { grid-template-columns: 1fr auto; }
  footer p:last-child { display: none; }
}

@media (max-width: 560px) {
  h1 { font-size: 43px; }
  .brand-logo { width: 220px; }
  .languages { gap: 5px; }
  .hero { min-height: 690px; margin-top: 16px; padding: 46px 24px 38px; border-radius: 22px; align-items: flex-end; }
  .hero::after { background: linear-gradient(0deg, rgba(8,12,11,.94) 0%, rgba(8,12,11,.72) 57%, rgba(8,12,11,.2) 100%); }
  .hero-photo { object-position: 64% center; }
  .hero-copy { width: 100%; }
  .hero-text { font-size: 16px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-badge { top: 18px; right: 16px; bottom: auto; }
  .services { padding: 90px 0; }
  .section-heading { margin-bottom: 42px; }
  .service-card, .service-card + .service-card, .service-card:last-child { grid-template-columns: 34px 1fr; }
  .service-icon { display: none; }
  .service-card p { grid-column: 2; }
  .price-block { grid-column: 2; }
  .founder-profile { margin-top: 64px; border-radius: 20px; }
  .founder-copy { padding: 42px 25px 48px; }
  .founder-copy > p:not(.eyebrow) { font-size: 15px; }
  .founder-facts { grid-template-columns: 1fr; gap: 22px; }
  .founder-facts div + div { padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .work-showcase { margin-top: 64px; padding-top: 64px; }
  .work-heading { margin-bottom: 32px; }
  .work-heading > p { font-size: 15px; }
  .work-gallery { grid-template-columns: 1fr; gap: 14px; }
  .work-card { aspect-ratio: 1.15; }
  .work-card-copy { padding: 24px; }
  .contact { padding-bottom: 70px; }
  .contact-card { padding: 42px 25px; border-radius: 20px; }
  .contact-actions { align-items: stretch; }
  .contact-actions .button { width: 100%; padding-inline: 18px; }
  .setup-note span[aria-hidden="true"] { display: none; }
  .contact-email-address { display: block; margin-top: 7px; }
  footer { min-height: 100px; }
}

@media (max-width: 360px) {
  .brand-logo { width: 196px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
