:root {
  --ink: #0b0b0a;
  --soft-ink: #151513;
  --ivory: #f7f6f2;
  --paper: #e9e3d8;
  --gold: #b99a62;
  --muted: #aaa399;
  --line: rgba(243, 240, 233, .16);
  --max: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--ivory); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
.wrap { width: min(calc(100% - 56px), var(--max)); margin: auto; }
.nav { position: sticky; top: 0; z-index: 20; background: rgba(11, 11, 10, .9); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav .wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", serif; font-size: 1.05rem; letter-spacing: .25em; white-space: nowrap; }
.menu { display: flex; gap: 32px; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.menu a { position: relative; padding: 8px 0; }
.menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1px; background: var(--gold); transition: right .25s ease; }
.menu a:hover::after, .menu a:focus-visible::after { right: 0; }
.mobile-toggle { display: none; background: none; border: 0; color: var(--ivory); font-size: 1.5rem; }
.hero { min-height: calc(100vh - 82px); background: #fff url('/assets/portfolio-double-exposure.png') center bottom / cover no-repeat; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .3em; font-size: .72rem; font-weight: 500; }
h1, h2, h3 { font-family: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", serif; font-weight: 400; line-height: .92; margin: 0; letter-spacing: -.045em; }
h1 em, h2 em { font-weight: 400; }
h1 { max-width: 980px; font-size: clamp(4rem, 9vw, 8.5rem); margin: 22px 0 30px; }
h2 { max-width: 900px; font-size: clamp(2.8rem, 5.8vw, 5.9rem); margin: 0 0 30px; }
h3 { font-size: clamp(1.55rem, 2.5vw, 2.15rem); line-height: 1.08; margin-bottom: 14px; }
.lead { max-width: 680px; color: #e8e2d8; font-size: clamp(1.05rem, 1.7vw, 1.3rem); font-weight: 300; }
.hero-statement { padding: 130px 0 145px; }
.statement-grid { display: grid; grid-template-columns: .34fr 1fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.statement-meta { display: grid; gap: 10px; padding-top: 9px; color: #69645d; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.hero-statement h1 { max-width: none; margin-top: 22px; color: var(--ink); font-size: clamp(3.8rem, 6.5vw, 6.8rem); white-space: nowrap; }
.statement-lead { max-width: 630px; margin: 36px 0 0; color: #4f4b45; font-size: clamp(1.05rem, 1.55vw, 1.28rem); font-weight: 300; }
.text-link { display: inline-flex; min-height: 50px; align-items: center; gap: 18px; border-bottom: 1px solid #181816; color: var(--ink); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.text-link span { font-size: 1rem; transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid var(--gold); color: var(--ivory); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.btn.gold { background: var(--gold); color: var(--ink); }
.btn:hover, .btn:focus-visible { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.cream .btn { border-color: var(--ink); color: var(--ink); }
.cream .btn.gold { background: var(--ink); border-color: var(--ink); color: #fff; }
.cream .btn:hover, .cream .btn:focus-visible { background: var(--gold); border-color: var(--gold); color: var(--ink); }
section { padding: 140px 0; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(55px, 8vw, 120px); align-items: center; }
.split.reverse { grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); }
.split > img { height: min(74vw, 760px); min-height: 540px; }
.split > img.portrait { aspect-ratio: 4 / 5; height: auto; min-height: 0; }
.split > img.landscape { aspect-ratio: 4 / 3; height: auto; min-height: 0; }
.muted { color: var(--muted); max-width: 650px; }
.muted + .muted { margin-top: 22px; }
.story-cta { margin-top: 28px; }
.cream { background: #fff; color: var(--ink); }
.cream .muted { color: #625d55; }
.section-head { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 0; }
.section-head p { max-width: 360px; color: #625d55; }
.cards { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.card { grid-column: span 4; background: var(--soft-ink); color: var(--ivory); border: 1px solid rgba(11,11,10,.12); overflow: hidden; }
.card:nth-child(2) { transform: translateY(46px); }
.card img { height: 400px; filter: saturate(.86) contrast(1.03); transition: transform .7s ease; }
.wedding-card img { object-position: center 58%; }
.card:hover img { transform: scale(1.025); }
.card-body { padding: 30px 30px 34px; }
.card h3 { color: var(--ivory); }
.card p { color: #beb8ae; margin: 0; }
.quotes-section { padding-top: 185px; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 58px; }
.quote { margin: 0; padding: 34px 0 0; border-top: 1px solid var(--gold); }
.quote p { color: #d7d0c6; font-family: Didot, "Bodoni 72", "Bodoni MT", serif; font-size: 1.3rem; line-height: 1.45; }
.quote strong { color: var(--gold); font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(11,11,10,.15); }
.stat { min-height: 220px; display: grid; place-content: center; text-align: center; background: #fff; }
.stat strong { display: block; color: var(--ink); font: 400 clamp(3rem, 6vw, 5.5rem)/1 Didot, "Bodoni 72", "Bodoni MT", serif; letter-spacing: -.04em; }
.stat span { margin-top: 16px; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.page-hero { min-height: 72vh; display: grid; align-items: end; padding: 145px 0 82px; background: linear-gradient(120deg, #111 0%, #181714 100%); border-bottom: 1px solid var(--line); }
.page-hero.image-mariage { background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.16)), url('/assets/portfolio-chateau.jpeg') center 47% / cover; }
.page-hero.image-pro { background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.22)), url('/assets/corporate.jpg') center / cover; }
.page-hero.image-formation { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.28)), url('/assets/portfolio-groom-film.jpeg') 54% 43% / cover; }
.page-hero.image-films { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.2)), url('/assets/wedding-evening-kiss.jpg') center 58% / cover; }
.page-hero.light-hero { background: #fff; color: var(--ink); }
.page-hero.light-hero .lead { color: #4d4943; }
.page-hero h1 { font-size: clamp(3.8rem, 8vw, 8rem); }
.page-hero .lead { max-width: 700px; }
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.content-card { min-height: 230px; padding: 38px; background: var(--soft-ink); color: var(--ivory); }
.content-card h3 { color: var(--ivory); }
.content-card .muted { color: #b7b0a6; }
.contact-box { max-width: 920px; }
.editorial-gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; }
.editorial-gallery .tall { height: 760px; }
.editorial-gallery .stack { display: grid; gap: 24px; }
.editorial-gallery .stack img { height: 368px; }
.image-caption { margin-top: 12px; color: #827b71; font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.wedding-portfolio { padding: 112px 0 118px; }
.gallery-head { margin-bottom: 38px; }
.wedding-gallery { columns: 3 300px; column-gap: 12px; }
.wedding-gallery figure { margin: 0 0 12px; break-inside: avoid; overflow: hidden; background: #d8d3ca; }
.wedding-gallery img { height: auto; transition: transform .75s ease, filter .75s ease; }
.wedding-gallery figure:hover img { transform: scale(1.018); filter: contrast(1.025); }
.film-intro { max-width: 760px; }
.film-intro .muted { font-size: 1.08rem; }
.film-showcase { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; margin-top: 58px; }
.film-showcase figure { position: relative; min-height: 620px; margin: 0; overflow: hidden; background: #111; }
.film-showcase .film-stack { display: grid; gap: 14px; }
.film-showcase .film-stack figure { min-height: 303px; }
.film-showcase img { height: 100%; filter: saturate(.78) contrast(1.05); transition: transform .8s ease, filter .8s ease; }
.film-showcase figure:hover img { transform: scale(1.018); filter: saturate(.92) contrast(1.03); }
.film-label { position: absolute; inset: auto 0 0; padding: 80px 28px 24px; background: linear-gradient(transparent, rgba(0,0,0,.82)); }
.film-label span { display: block; color: var(--gold); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; }
.film-label strong { display: block; margin-top: 7px; color: #fff; font: 400 clamp(1.5rem, 2.6vw, 2.3rem)/1.05 Didot, "Bodoni 72", "Bodoni MT", serif; }
.film-closing { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.film-closing h2 { margin-bottom: 0; }
.drone-showcase { overflow: hidden; }
.drone-gallery { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); gap: 24px; align-items: stretch; }
.drone-gallery figure { margin: 0; position: relative; overflow: hidden; background: #111; }
.drone-gallery img { height: 100%; min-height: 0; filter: saturate(.82) contrast(1.04); transition: transform .8s ease, filter .8s ease; }
.drone-gallery figure:hover img { transform: scale(1.018); filter: saturate(.95) contrast(1.02); }
.drone-main { min-height: 720px; }
.drone-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.drone-stack figure { min-height: 348px; }
.drone-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 40px 24px 20px; background: linear-gradient(transparent, rgba(0,0,0,.72)); color: #fff; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; }
.footer { padding: 48px 0; border-top: 1px solid var(--line); }
.footer .wrap { display: flex; justify-content: space-between; gap: 24px; color: #9d968c; font-size: .76rem; letter-spacing: .06em; }
@media (max-width: 900px) {
  .wrap { width: min(calc(100% - 32px), var(--max)); }
  .nav .wrap { height: 72px; }
  .mobile-toggle { display: block; }
  .menu { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 18px; padding: 28px 24px 34px; background: #0b0b0a; border-bottom: 1px solid var(--line); }
  .menu.open { display: flex; }
  .hero { min-height: 62vw; background-size: cover; background-position: center bottom; }
  .statement-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-statement { padding: 90px 0 100px; }
  h1 { font-size: clamp(3.35rem, 16vw, 6rem); }
  section { padding: 90px 0; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 46px; }
  .split > img { height: 560px; min-height: 0; }
  .section-head { display: block; margin-bottom: 42px; }
  .section-head p { max-width: 540px; }
  .cards { grid-template-columns: 1fr; gap: 18px; }
  .card { grid-column: auto; }
  .card:nth-child(2) { transform: none; }
  .card img { height: 430px; }
  .quotes-section { padding-top: 100px; }
  .quote-grid, .stats, .content-grid { grid-template-columns: 1fr; }
  .stat { min-height: 180px; }
  .page-hero { min-height: 68vh; padding: 120px 0 62px; }
  .editorial-gallery { grid-template-columns: 1fr; }
  .editorial-gallery .tall, .editorial-gallery .stack img { height: 520px; }
  .wedding-gallery { columns: 2 260px; }
  .film-showcase { grid-template-columns: 1fr; }
  .film-showcase figure { min-height: 520px; }
  .film-showcase .film-stack { grid-template-columns: 1fr 1fr; }
  .film-showcase .film-stack figure { min-height: 360px; }
  .film-closing { align-items: start; flex-direction: column; }
  .drone-gallery { grid-template-columns: 1fr; }
  .drone-main { min-height: 560px; }
  .drone-stack { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .drone-stack figure { min-height: 360px; }
  .footer .wrap { flex-direction: column; }
}
@media (max-width: 540px) {
  .brand { font-size: .88rem; letter-spacing: .18em; }
  .hero { min-height: 73vh; background-size: auto 100%; background-position: 61% bottom; }
  .hero-statement h1 { font-size: clamp(4rem, 20vw, 6.5rem); white-space: normal; }
  h2 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .split > img, .card img { height: 420px; }
  .editorial-gallery .tall, .editorial-gallery .stack img { height: 420px; }
  .wedding-portfolio { padding-bottom: 96px; }
  .wedding-gallery { columns: 1; }
  .film-showcase figure { min-height: 430px; }
  .film-showcase .film-stack { grid-template-columns: 1fr; }
  .film-showcase .film-stack figure { min-height: 390px; }
  .drone-main { min-height: 420px; }
  .drone-stack { grid-template-columns: 1fr; }
  .drone-stack figure { min-height: 320px; }
  .actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .content-card { min-height: 0; }
}

/* Wedding journal: an editorial extension of A COMPANY. */
.statement-location { max-width: 630px; margin: 22px 0 0; color: #625d55; font-size: 1rem; }
.journal-page .eyebrow, .journal-home .eyebrow { font-size: .875rem; letter-spacing: .18em; }
.journal-page .cream .eyebrow, .journal-home.cream .eyebrow { color: #80632f; }
.menu { font-size: .875rem; gap: 24px; letter-spacing: .09em; }
.menu a[aria-current="page"]::after { right: 0; }
.journal-heading { padding: 96px 0 70px; }
.journal-heading h1 { margin-bottom: 30px; }
.journal-intro { max-width: 680px; font-size: 1.125rem; color: #514c46; line-height: 1.8; }
.journal-list { padding: 0 0 120px; }
.journal-feature { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: clamp(40px, 8vw, 110px); align-items: center; }
.journal-feature-image { display: block; }
.journal-feature-image img { width: 100%; height: auto; }
.journal-feature h2 { font-size: clamp(3rem, 5.4vw, 5.5rem); }
.journal-meta { font-size: .875rem; color: #625d55; letter-spacing: .04em; margin: 0 0 26px; }
.journal-page .btn, .journal-page .text-link, .journal-home .btn, .journal-home .text-link { font-size: .875rem; letter-spacing: .06em; }
.journal-page .text-link { text-transform: none; }
.journal-contact .wrap:first-child { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.journal-contact h2 { font-size: clamp(2.8rem, 5vw, 4.7rem); }
.journal-contact .btn { flex-shrink: 0; }
.journal-contact .muted a { text-decoration: underline; text-underline-offset: 4px; }
.story-opening { padding: 36px 0 90px; }
.story-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 45px; font-size: .875rem; color: #686058; }
.story-breadcrumb a:hover { text-decoration: underline; }
.story-opening-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(35px, 6vw, 86px); align-items: center; }
.story-heading h1 { font-size: clamp(4.1rem, 7.5vw, 8rem); margin: 28px 0; }
.story-date { font-size: .9375rem; color: #625d55; margin-bottom: 30px; }
.story-byline { color: #71685d; font-size: .875rem; margin: 28px 0; }
.wedding-story figure { margin: 0; }
.wedding-story figure img { height: auto; }
.wedding-story figcaption { font-size: .875rem; color: #686058; margin-top: 14px; }
.story-chapter { border-top: 1px solid #e1dcd3; padding: 110px 0 75px; }
.story-chapter-grid { display: grid; grid-template-columns: .34fr 1fr; gap: clamp(40px, 8vw, 110px); }
.story-chapter-grid > .eyebrow { padding-top: 12px; }
.story-copy { max-width: 720px; }
.story-copy h2 { font-size: clamp(2.9rem, 4.9vw, 4.7rem); line-height: 1.04; }
.story-copy p { font-size: 1.125rem; line-height: 1.85; color: #514c46; margin: 24px 0 0; }
.story-portrait { padding: 45px 0 115px; }
.story-portrait-grid { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(35px, 7vw, 110px); align-items: center; }
.story-portrait .eyebrow { margin-bottom: 30px; }
.story-silhouette { padding: 110px 0 70px; background: #000; }
.story-silhouette .story-copy { margin: 0 auto 40px; text-align: center; }
.story-silhouette .eyebrow { margin-bottom: 30px; }
.story-silhouette .story-copy p { color: #c7c0b6; }
.story-silhouette figure { max-width: 660px; margin: auto; }
.story-silhouette figcaption { text-align: center; color: #aaa399; }
.story-film-note { padding: 110px 0; }
.story-film-note .text-link { margin-top: 25px; }
.story-back { margin-top: 70px; font-size: .9375rem; color: #c7c0b6; }
.story-back a:hover { text-decoration: underline; }
.journal-invitation .btn { margin-top: 22px; }
@media (min-width: 901px) and (max-width: 1100px) {
  .menu { gap: 15px; letter-spacing: 0; }
  .brand { letter-spacing: .1em; }
}
@media (max-width: 900px) {
  .journal-feature, .story-opening-grid, .story-chapter-grid, .story-portrait-grid { grid-template-columns: 1fr; gap: 40px; }
  .journal-heading { padding: 65px 0 45px; }
  .journal-heading h1 { font-size: clamp(3.5rem, 12vw, 6rem); }
  .journal-list { padding-bottom: 70px; }
  .journal-feature-image { max-width: 600px; }
  .story-heading h1 { font-size: clamp(4rem, 14vw, 6.5rem); }
  .story-opening { padding-bottom: 55px; }
  .story-breadcrumb { margin-bottom: 40px; }
  .story-chapter, .story-film-note { padding: 65px 0; }
  .story-portrait { padding: 0 0 65px; }
  .story-portrait-grid .story-copy { order: -1; }
  .story-silhouette { padding: 65px 0 45px; }
  .journal-contact .wrap:first-child { flex-direction: column; align-items: flex-start; gap: 25px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Additional stories keep their original photo proportions. */
.journal-list .journal-feature + .journal-feature { margin-top: 95px; padding-top: 95px; border-top: 1px solid #ded8ce; }
.journal-related { grid-column: 1 / -1; display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px 30px; padding-top: 24px; border-top: 1px solid #ded8ce; }
.journal-related .journal-meta { margin: 0; }
.journal-related a { font-size: 1.0625rem; text-decoration: underline; text-underline-offset: 5px; }
.marina-story .story-heading h1 { font-size: clamp(3.6rem, 6.6vw, 7rem); }
.story-landscape-pair { display: grid; grid-template-columns: 1fr; gap: 42px; padding-top: 55px; }
.story-landscape-pair figure { max-width: 1100px; }
.story-landscape-pair figure:nth-child(2) { width: 84%; margin-left: auto; }
.story-quiet { padding: 100px 0; background: #111110; }
.story-quiet .story-copy p { color: #c7c0b6; }
.story-photo-duo { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: start; padding-top: 60px; }
.story-photo-duo figure:nth-child(2) { padding-top: 75px; }
.story-quiet figcaption { color: #aaa399; }
.story-celebration { padding: 100px 0 60px; }
.story-celebration .story-copy { margin-bottom: 50px; }
.story-celebration .eyebrow { margin-bottom: 28px; }
.marina-story .story-film-note { border-top: 1px solid #e1dcd3; }
@media (max-width: 900px) {
  .journal-list .journal-feature + .journal-feature { margin-top: 60px; padding-top: 60px; }
  .marina-story .story-heading h1 { font-size: clamp(3.5rem, 13vw, 6.5rem); }
  .story-landscape-pair { padding-top: 40px; gap: 30px; }
  .story-landscape-pair figure:nth-child(2) { width: 100%; }
  .story-quiet, .story-celebration { padding: 65px 0; }
  .story-photo-duo { gap: 20px; padding-top: 40px; }
  .story-photo-duo figure:nth-child(2) { padding-top: 45px; }
}
@media (max-width: 540px) {
  .story-photo-duo { grid-template-columns: 1fr; gap: 36px; }
  .story-photo-duo figure:nth-child(2) { padding-top: 0; }
}
