:root {
  --cream: #f4eee8;
  --paper: #fbf8f4;
  --ink: #2b211e;
  --muted: #746862;
  --clay: #c56f57;
  --rose: #d9a69a;
  --plum: #50383e;
  --sand: #d9c3a7;
  --line: rgba(43, 33, 30, 0.16);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { height: 86px; padding: 0 clamp(24px, 5vw, 78px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.wordmark { font-size: 24px; font-weight: 600; letter-spacing: -1px; }
.wordmark span { color: var(--clay); }
nav { display: flex; align-items: center; gap: 38px; font-size: 14px; }
nav a:not(.nav-cta) { position: relative; }
nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--ink); transition: right .25s; }
nav a:hover::after { right: 0; }
.nav-cta { border: 1px solid var(--ink); padding: 12px 18px; border-radius: 100px; transition: .25s; }
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }

.hero { min-height: calc(100vh - 86px); display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px, 6vw, 100px); align-items: center; padding: 72px clamp(24px, 7vw, 112px) 88px; position: relative; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 12px; }
.eyebrow > span { display: block; width: 34px; height: 1px; background: currentColor; }
h1, h2 { font-size: clamp(52px, 6.7vw, 104px); line-height: .96; font-weight: 500; letter-spacing: -.055em; margin: 25px 0 28px; }
h1 em, h2 em { font-family: var(--serif); color: var(--clay); font-weight: 500; }
.hero-lead { max-width: 550px; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button { border: 0; display: inline-flex; justify-content: center; align-items: center; gap: 22px; padding: 17px 24px; border-radius: 100px; cursor: pointer; font-weight: 600; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover { background: var(--clay); }
.text-link { padding: 8px 0; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 600; }
.hero-visual { position: relative; max-width: 560px; justify-self: end; }
.arch-frame { aspect-ratio: .75; border-radius: 260px 260px 20px 20px; overflow: hidden; background: var(--sand); }
.arch-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.floating-note { position: absolute; left: -72px; bottom: 10%; width: 155px; height: 155px; border-radius: 50%; background: var(--clay); color: white; display: grid; place-content: center; text-align: center; transform: rotate(-8deg); font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.45; box-shadow: 0 12px 40px rgba(57,34,27,.16); }
.floating-note span { position: absolute; top: 16px; left: 68px; font-family: var(--sans); }
.hero-stamp { position: absolute; top: 7%; right: -34px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; line-height: 1.6; background: var(--paper); padding: 15px 18px; transform: rotate(4deg); box-shadow: 0 8px 30px rgba(57,34,27,.1); }

.marquee { background: var(--clay); color: white; overflow: hidden; white-space: nowrap; padding: 16px 0; font-size: 12px; letter-spacing: .22em; }
.marquee div { width: max-content; animation: marquee 28s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px clamp(24px, 7vw, 112px); }
.section-label { display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 600; margin-bottom: 55px; }
.section-label span { border: 1px solid var(--ink); border-radius: 50%; width: 30px; height: 30px; display: grid; place-items: center; letter-spacing: 0; }
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(380px, 1.22fr); gap: clamp(50px, 9vw, 145px); align-items: center; }
.video-card { aspect-ratio: 9/13; max-width: 460px; border-radius: 220px 220px 18px 18px; background: var(--plum); color: white; position: relative; padding: 30px; overflow: hidden; }
.video-card::before, .video-card::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; width: 420px; height: 420px; }
.video-card::before { left: -220px; bottom: -80px; }.video-card::after { right: -270px; top: 80px; }
.video-topline { display: flex; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; opacity: .75; position: relative; z-index: 1; }
.video-placeholder-copy { position: absolute; left: 30px; bottom: 95px; font-size: clamp(42px, 5vw, 66px); line-height: .95; letter-spacing: -.04em; }
.video-placeholder-copy em { font-family: var(--serif); color: var(--rose); font-weight: 400; }
.video-card > p { position: absolute; bottom: 26px; left: 30px; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; opacity: .65; }
.play-button { position: absolute; z-index: 2; top: 42%; left: 50%; transform: translate(-50%, -50%); width: 82px; height: 82px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.12); backdrop-filter: blur(8px); cursor: pointer; transition: .25s; }
.play-button:hover { transform: translate(-50%,-50%) scale(1.08); background: var(--clay); }
.play-button span { display: block; margin: auto; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 13px solid white; transform: translateX(2px); }
.about-copy h2 { font-size: clamp(44px, 5.2vw, 76px); }
.body-copy { max-width: 660px; color: var(--muted); line-height: 1.75; font-size: 16px; }
.body-copy p:first-child { font-size: 19px; color: var(--ink); }
.service-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.service-tags span { border: 1px solid var(--line); border-radius: 100px; padding: 9px 14px; font-size: 12px; }

.portfolio { background: var(--cream); }
.portfolio-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.portfolio-heading h2 { font-size: clamp(48px, 6.3vw, 90px); margin-bottom: 0; }
.portfolio-heading .section-label { margin-bottom: 36px; }
.portfolio-heading > p { max-width: 340px; line-height: 1.7; color: var(--muted); padding-bottom: 10px; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 28px); }
.portfolio-card { aspect-ratio: 9/14; border-radius: 18px; padding: 22px; position: relative; overflow: hidden; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.portfolio-card:hover { transform: translateY(-8px); }
.portfolio-card::before { content: ""; position: absolute; inset: 13%; border: 1px solid currentColor; border-radius: 50%; opacity: .17; transform: scale(1.5); }
.tone-clay { background: var(--clay); color: white; }.tone-sand { background: var(--sand); }.tone-plum { background: var(--plum); color: white; }.tone-cream { background: #e7ddd1; }.tone-rose { background: var(--rose); }.tone-brown { background: #846554; color: white; }
.card-number { font-size: 11px; letter-spacing: .14em; opacity: .75; }
.mini-play { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; background: transparent; font-size: 10px; cursor: pointer; }
.placeholder-mark { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-size: clamp(62px, 8vw, 110px); opacity: .85; }
.card-caption { position: absolute; bottom: 20px; left: 22px; right: 22px; display: flex; justify-content: space-between; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; }

.contact { background: var(--plum); color: white; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(60px, 10vw, 150px); }
.section-label-light span { border-color: rgba(255,255,255,.7); }
.eyebrow-light { color: var(--rose); }
.contact h2 { font-size: clamp(48px, 5.5vw, 80px); }
.contact-intro > p:not(.eyebrow) { max-width: 490px; line-height: 1.7; color: rgba(255,255,255,.68); }
.social-links { display: flex; gap: 16px; margin-top: 38px; }
.social-links a { border: 1px solid rgba(255,255,255,.3); border-radius: 100px; padding: 13px 17px; display: flex; gap: 18px; font-size: 13px; transition: .2s; }
.social-links a:hover { background: var(--clay); border-color: var(--clay); }
.social-links b { font-weight: 400; }
.contact-form { background: var(--paper); color: var(--ink); padding: clamp(28px, 4vw, 55px); border-radius: 18px; align-self: start; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: block; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 600; margin-bottom: 26px; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 13px 0; margin-top: 6px; outline: none; color: var(--ink); text-transform: none; letter-spacing: normal; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--clay); }
.contact-form textarea { min-height: 100px; }
.button-light { background: var(--clay); color: white; width: 100%; }
.button-light:hover { background: var(--plum); }
.form-status { font-size: 13px; margin: 16px 0 0; color: #547052; text-align: center; min-height: 18px; }

footer { min-height: 110px; padding: 28px clamp(24px, 7vw, 112px); display: flex; align-items: center; justify-content: space-between; background: var(--ink); color: white; border-top: 1px solid rgba(255,255,255,.1); }
footer p { color: rgba(255,255,255,.55); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.footer-legal { display: flex; align-items: center; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.72); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; border-bottom: 1px solid transparent; transition: .2s; }
.footer-legal a:hover { color: white; border-color: var(--clay); }
.footer-legal p { margin: 0 0 0 8px; }

.legal-page { min-height: calc(100vh - 86px); padding: 90px clamp(24px, 7vw, 112px) 120px; background: var(--paper); }
.legal-wrap { width: min(820px, 100%); margin: 0 auto; }
.legal-back { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; margin-bottom: 55px; }
.legal-back:hover { color: var(--clay); }
.legal-page h1 { font-size: clamp(54px, 7vw, 92px); margin: 0 0 54px; }
.legal-page h1 em { display: block; }
.legal-content { border-top: 1px solid var(--line); }
.legal-section { display: grid; grid-template-columns: 180px 1fr; gap: 40px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.legal-section h2 { font-family: var(--sans); font-size: 13px; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; margin: 0; font-weight: 600; }
.legal-text { color: var(--muted); font-size: 15px; line-height: 1.75; }
.legal-text p { margin: 0 0 16px; }
.legal-text p:last-child { margin-bottom: 0; }
.legal-text h3 { color: var(--ink); font-size: 16px; margin: 28px 0 8px; }
.legal-text h3:first-child { margin-top: 0; }
.legal-text a { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { margin-top: 35px; color: var(--muted); font-size: 12px; line-height: 1.6; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }.delay-2 { transition-delay: .24s; }

@media (max-width: 900px) {
  .site-header { height: 72px; }
  .menu-toggle { display: grid; gap: 4px; }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 1px; background: var(--ink); transition: .2s; }
  nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 28px; background: var(--paper); flex-direction: column; gap: 24px; box-shadow: 0 15px 25px rgba(40,25,20,.08); }
  nav.open { display: flex; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 55px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(84%, 500px); justify-self: center; margin-top: 25px; }
  .about-grid { grid-template-columns: 1fr; }
  .video-card { width: min(100%, 450px); justify-self: center; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .legal-section { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 600px) {
  h1 { font-size: 52px; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .hero { padding-bottom: 70px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .floating-note { width: 120px; height: 120px; left: -25px; font-size: 15px; }
  .hero-stamp { right: -15px; }
  .portfolio-heading { display: block; }
  .portfolio-heading > p { margin-top: 26px; }
  .video-grid { gap: 12px; }
  .portfolio-card { border-radius: 12px; padding: 15px; }
  .card-caption { left: 15px; right: 15px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .social-links { flex-wrap: wrap; }
  footer { flex-direction: column; justify-content: center; text-align: center; gap: 14px; padding-top: 35px; padding-bottom: 35px; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
  .footer-legal p { flex-basis: 100%; margin: 2px 0 0; }
  .legal-page { padding-top: 62px; padding-bottom: 80px; }
}

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