@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap');
@font-face{font-family:'Gambarino';src:url('https://cdn.prod.website-files.com/66e98aa528db1d093c84419a/66fb8ce07435a962d70d59a5_Gambarino-Regular.ttf') format('truetype');font-weight:400;font-style:normal;font-display:swap;}

  /* ————— Brand tokens · pulled from mural.photo ————— */
  :root {
    --paper: #FAFAFA; --surface: #FFFFFF; --ink: #141414; --display: #0B090A;
    --muted: #75695F; --clay: #947F75; --clay-text: #7A695F; --veil: #F3EFEB;
    --line: #E7E1DB; --btn-bg: #141414; --btn-fg: #FAFAFA;
    --cta-bg: #0B090A; --cta-fg: #F2EDE8; --cta-muted: #B7AAA0;
    --topbar: rgba(250, 250, 250, .86);
    --serif: 'Gambarino', 'Didot', 'Bodoni 72', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  }
  @media (prefers-color-scheme: dark) {
    :root {
      --paper: #131110; --surface: #1B1817; --ink: #EFEAE4; --display: #F5F0EA;
      --muted: #A79A90; --clay: #B29D90; --clay-text: #C1AC9E; --veil: #1A1715;
      --line: #2A2523; --btn-bg: #EFEAE4; --btn-fg: #141414;
      --cta-bg: #0A0908; --cta-fg: #F2EDE8; --cta-muted: #A2958B;
      --topbar: rgba(19, 17, 16, .82);
    }
  }
  :root[data-theme="light"] {
    --paper: #FAFAFA; --surface: #FFFFFF; --ink: #141414; --display: #0B090A;
    --muted: #75695F; --clay: #947F75; --clay-text: #7A695F; --veil: #F3EFEB;
    --line: #E7E1DB; --btn-bg: #141414; --btn-fg: #FAFAFA;
    --cta-bg: #0B090A; --cta-fg: #F2EDE8; --cta-muted: #B7AAA0;
    --topbar: rgba(250, 250, 250, .86);
  }
  :root[data-theme="dark"] {
    --paper: #131110; --surface: #1B1817; --ink: #EFEAE4; --display: #F5F0EA;
    --muted: #A79A90; --clay: #B29D90; --clay-text: #C1AC9E; --veil: #1A1715;
    --line: #2A2523; --btn-bg: #EFEAE4; --btn-fg: #141414;
    --cta-bg: #0A0908; --cta-fg: #F2EDE8; --cta-muted: #A2958B;
    --topbar: rgba(19, 17, 16, .82);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--paper); color: var(--ink);
    font-family: var(--sans); font-size: 16px; line-height: 1.65;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  :focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }
  .wrap { max-width: 1120px; margin-inline: auto; padding-inline: 24px; }

  .kicker {
    font: 600 11px/1.4 var(--sans); letter-spacing: .18em;
    text-transform: uppercase; color: var(--clay-text);
  }
  .display {
    font-family: var(--serif); font-weight: 400; text-transform: uppercase;
    letter-spacing: .015em; color: var(--display); line-height: 1.04;
    margin: 0; text-wrap: balance;
  }

  /* ————— logo lockup ————— */
  .logo { display: inline-flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--clay); }
  .logo-word {
    font-family: 'Montserrat', 'Avenir Next', 'Segoe UI', var(--sans);
    font-weight: 700; font-size: 19px; letter-spacing: .05em;
    text-transform: uppercase; line-height: 1; white-space: nowrap;
  }
  .logo-rule {
    align-self: stretch; height: 1.5px; margin: 7px 0 6px;
    background: currentColor;
  }
  .logo-sub {
    font-family: 'Montserrat', 'Avenir Next', 'Segoe UI', var(--sans);
    font-weight: 600; font-size: 9.6px; letter-spacing: .015em;
    line-height: 1; white-space: nowrap;
  }
  .logo.small .logo-word { font-size: 16px; }
  .logo.small .logo-sub { font-size: 8.2px; }
  .logo.small .logo-rule { margin: 5px 0 4px; }

  /* ————— topbar ————— */
  .topbar {
    position: sticky; top: 0; z-index: 50;
    background: var(--topbar);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 13px; }
  .topbar-links { display: flex; align-items: center; gap: 28px; }
  .quiet-link {
    font: 500 12px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
  }
  .quiet-link:hover { color: var(--ink); }

  .btn {
    display: inline-block; font: 600 12px/1 var(--sans);
    letter-spacing: .12em; text-transform: uppercase;
    background: var(--btn-bg); color: var(--btn-fg);
    padding: 15px 26px; border-radius: 2px; text-decoration: none;
    border: 1px solid var(--btn-bg);
    transition: background .18s ease, color .18s ease, border-color .18s ease;
  }
  .btn:hover { background: var(--clay); border-color: var(--clay); color: #FAFAFA; }
  .btn.small { padding: 11px 18px; }
  .btn.light { background: #FAFAFA; border-color: #FAFAFA; color: #0B090A; }
  .btn.light:hover { background: var(--clay); border-color: var(--clay); color: #FAFAFA; }
  .btn.outline-light { background: transparent; color: #F2EDE8; border-color: rgba(242, 237, 232, .45); }
  .btn.outline-light:hover { border-color: #F2EDE8; background: #F2EDE8; color: #0B090A; }

  /* ————— dark photo hero ————— */
  .hero { position: relative; isolation: isolate; overflow: hidden; color: #F2EDE8; }
  .hero .bg, .hero .bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero .bg img { object-fit: cover; object-position: center 62%; }
  .hero .bg::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(11, 9, 10, .72), rgba(11, 9, 10, .52) 50%, rgba(11, 9, 10, .74));
  }
  .hero .wrap { position: relative; z-index: 2; padding-block: 116px 104px; }
  .hero .kicker { color: rgba(242, 237, 232, .78); margin-bottom: 22px; }
  .hero h1 { color: #FAF7F3; font-size: clamp(42px, 7vw, 80px); max-width: 15ch; }
  .hero .intro { max-width: 64ch; font-size: 16.5px; line-height: 1.75; color: rgba(242, 237, 232, .88); margin: 28px 0 0; }
  .hero .intro + .intro { margin-top: 14px; color: rgba(242, 237, 232, .72); font-size: 15px; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

  /* ————— packages ————— */
  .mrl-services { padding: 76px 0 84px; }
  .services-head { margin-bottom: 40px; }
  .services-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 12px 0 0; }
  .pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
  .pkg {
    background: var(--surface); border: 1px solid var(--line); border-radius: 2px;
    padding: 38px 34px 30px; display: flex; flex-direction: column;
  }
  .pkg h3 {
    font-family: var(--serif); font-weight: 400; text-transform: uppercase;
    letter-spacing: .015em; color: var(--display); line-height: 1.08;
    font-size: clamp(24px, 2.6vw, 31px); margin: 0 0 14px; text-wrap: balance;
  }
  .pkg .dek { font-size: 14.5px; line-height: 1.65; margin: 0 0 26px; }

  .from-row { display: flex; align-items: baseline; gap: 14px; margin: 0 0 18px; }
  .from-price { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 40px); color: var(--display); line-height: 1; white-space: nowrap; }
  .from-note { font: 600 10.5px/1.5 var(--sans); letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

  .inc-line { font-size: 14px; line-height: 1.75; color: var(--ink); margin: 0 0 24px; }
  .inc-line b { font-weight: 600; color: var(--clay-text); text-transform: uppercase; font-size: 11.5px; letter-spacing: .14em; margin-right: 4px; }

  .list-label {
    font: 600 10.5px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); margin: 0 0 10px;
  }
  .addl { font-size: 13.5px; line-height: 2.05; color: var(--muted); margin: 0 0 26px; }
  .addl .it { white-space: nowrap; }
  .addl .plus { color: var(--clay-text); font-weight: 600; font-variant-numeric: tabular-nums; }
  .addl .sep { color: var(--line); padding: 0 7px; }

  /* collapsible full pricing */
  .pricedrop { border-top: 1px solid var(--display); border-bottom: 1px solid var(--line); }
  .pricedrop summary {
    cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
    padding: 15px 2px; font: 600 11px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  }
  .pricedrop summary::-webkit-details-marker { display: none; }
  .pricedrop summary .ind {
    font-family: var(--serif); font-size: 20px; line-height: 1; color: var(--clay);
    transition: transform .25s ease; transform-origin: center;
  }
  .pricedrop[open] summary .ind { transform: rotate(45deg); }
  .pricedrop summary:hover { color: var(--clay-text); }
  .rates { padding: 0 0 12px; }
  .rate {
    display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
    padding: 11px 2px; border-top: 1px solid var(--line); font-size: 14.5px;
  }
  .rate:first-child { border-top: 0; }
  .rate .range { font-variant-numeric: tabular-nums; }
  .price { font-family: var(--serif); font-size: 19px; color: var(--display); white-space: nowrap; }

  /* portfolio media tiles */
  .media-tile {
    position: relative; display: block; overflow: hidden; border-radius: 2px;
    margin-top: auto; isolation: isolate;
  }
  .pricedrop { margin-bottom: 28px; }
  .media-tile img {
    width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block;
    transition: transform .6s ease;
  }
  .media-tile::after {
    content: ""; position: absolute; inset: 0;
    background: rgba(11, 9, 10, .42);
    transition: background .3s ease;
  }
  .media-tile .mt-label {
    position: absolute; inset: 0; z-index: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    color: #FAF7F3; text-align: center;
    font-family: var(--serif); font-size: clamp(19px, 2vw, 23px);
    text-transform: uppercase; letter-spacing: .03em; line-height: 1;
  }
  .media-tile .mt-label .arr { transition: transform .3s ease; display: inline-block; }
  .media-tile .play { width: 44px; height: 44px; }
  .media-tile .play circle { fill: rgba(11, 9, 10, .3); stroke: #FAF7F3; stroke-width: 1.4; }
  .media-tile .play path { fill: #FAF7F3; }
  .media-tile:hover img { transform: scale(1.05); }
  .media-tile:hover::after { background: rgba(11, 9, 10, .3); }
  .media-tile:hover .mt-label .arr { transform: translateX(6px); }

  /* ————— scaling note ————— */
  .scale-note { background: var(--veil); border-top: 1px solid var(--line); }
  .scale-note .wrap { padding-block: 54px; }
  .scale-note p { max-width: 74ch; margin: 0; font-size: 15px; line-height: 1.75; color: var(--ink); }
  .scale-note p b { font-weight: 600; }

  /* ————— CTA ————— */
  .cta { background: var(--veil); border-top: 1px solid var(--line); }
  .cta .wrap { padding-block: 92px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .cta .kicker { color: var(--clay-text); }
  .cta h2 {
    font-family: var(--serif); font-weight: 400; text-transform: uppercase;
    letter-spacing: .015em; color: var(--display);
    font-size: clamp(34px, 5.4vw, 58px); line-height: 1.05; margin: 18px 0 20px; text-wrap: balance;
  }
  .cta p { color: var(--muted); max-width: 56ch; font-size: 15.5px; margin: 0 0 36px; }
  .cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
  .btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn.ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
  .cta .quiet-link { color: var(--muted); }
  .cta .quiet-link:hover { color: var(--ink); }

  /* ————— footer ————— */
  footer { border-top: 1px solid var(--line); }
  footer .wrap { padding-block: 48px 56px; }
  .foot-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .foot-links { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
  .foot-legal { margin-top: 34px; font-size: 12px; line-height: 1.8; color: var(--muted); max-width: 78ch; }
  .foot-legal + .foot-legal { margin-top: 12px; }

  /* ————— reveal ————— */
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .pricedrop summary .ind { transition: none; }
  }

  /* ————— responsive ————— */
  @media (max-width: 880px) {
    .pkg-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 620px) {
    .hero .wrap { padding-block: 84px 76px; }
    .topbar-links .quiet-link { display: none; }
    .pkg { padding: 30px 24px 26px; }
  }

  /* ————— print ————— */
  @media print {
    :root { --paper: #fff; --surface: #fff; --ink: #111; --display: #000; --muted: #444; --line: #ccc; --veil: #f2f2f2; }
    .topbar { position: static; }
    .topbar .btn, .hero-cta, .cta-row { display: none; }
    .hero { color: #111; }
    .hero .bg { display: none; }
    .hero .kicker, .hero h1, .hero .intro { color: #111 !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .cta { background: #fff; color: #111; }
    .cta h2 { color: #000; } .cta p { color: #444; }
    .pkg { break-inside: avoid; }
  }