:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-bright: #f4c430;
  --light: #f5f5f5;
  --text: #333333;
  --muted: #666666;
  --line: #d9d9d9;
  --container: 1360px;
  --content: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--black);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 6.1vw, 5.6rem);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.65rem);
}

h3 {
  font-size: clamp(1.55rem, 2.25vw, 2rem);
  line-height: 1.08;
}

::selection {
  color: var(--black);
  background: var(--gold);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--black);
  background: var(--gold-bright);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(var(--container), calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 52px;
}

.brand-logo img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.4vw, 24px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #454545;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-contact {
  min-height: 46px;
  padding: 0 17px;
  color: var(--white);
  background: var(--black);
}

.site-nav .nav-contact::after {
  right: 17px;
  bottom: 8px;
  left: 17px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--black);
  color: var(--black);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

main {
  min-height: 60vh;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  width: min(var(--container), 100%);
  min-height: calc(100svh - var(--header-height));
  margin-inline: auto;
  background: var(--black);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(54px, 7vw, 112px) clamp(28px, 6vw, 92px);
}

.hero-copy::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 34%;
  background: var(--gold);
  content: "";
}

.hero-copy h1 {
  max-width: 9.5ch;
  color: var(--white);
  font-size: clamp(3.25rem, 6.3vw, 6.2rem);
  font-style: italic;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 28px;
  color: #d1d1d1;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.eyebrow {
  margin-bottom: 16px;
  color: #8a6d0c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.section-dark .eyebrow,
.final-cta .eyebrow,
.conversation-section .eyebrow {
  color: var(--gold);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.button-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button-black {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-black:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--white);
}

.hero-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--light);
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
  object-position: 61% center;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 34%);
  content: "";
  pointer-events: none;
}

.hero-image figcaption,
.page-hero figure figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  max-width: calc(100% - 32px);
  padding: 7px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.82);
  font-size: 0.68rem;
  letter-spacing: 0.035em;
}

.section-shell,
.testimonial-section,
.statement-section,
.final-cta,
.conversation-section,
.contact-layout,
.legal-page,
.simple-hero,
.breadcrumbs,
.page-hero {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.section-shell {
  margin-top: clamp(88px, 10vw, 150px);
  margin-bottom: clamp(88px, 10vw, 150px);
}

.section-heading {
  max-width: 740px;
  margin-bottom: clamp(38px, 5vw, 66px);
}

.section-heading h2 {
  max-width: 15ch;
}

.section-intro {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-heading-row .section-heading {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: #876f20;
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.services-editorial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.service-feature {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--black);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 0;
  z-index: 3;
  color: #7b7b7b;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-image {
  position: relative;
  height: clamp(260px, 31vw, 430px);
  margin: 26px 0 28px;
  overflow: hidden;
  background: var(--light);
}

.service-image picture,
.service-image img {
  width: 100%;
  height: 100%;
}

.service-image img {
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
  transition: filter 400ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.service-feature:hover .service-image img {
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.025);
}

.service-feature h3 {
  margin-bottom: 16px;
}

.service-feature > p {
  min-height: 12em;
  color: var(--muted);
}

.placeholder-label {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 7px;
  color: var(--black);
  background: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-image > .placeholder-label {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.section-dark {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(80px, 9vw, 136px) max(24px, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: var(--black);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3c3c3c;
}

.principle-grid article {
  min-height: 280px;
  padding: 32px clamp(20px, 3vw, 42px) 24px;
  border-right: 1px solid #3c3c3c;
}

.principle-grid article:first-child {
  padding-left: 0;
}

.principle-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.principle-grid article > span,
.approach-grid article > span {
  display: block;
  margin-bottom: 68px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.principle-grid h3 {
  margin-bottom: 16px;
}

.principle-grid p {
  color: #b9b9b9;
}

.principle-grid.light {
  border-color: #c8c0af;
}

.principle-grid.light article {
  border-color: #c8c0af;
}

.principle-grid.light h3 {
  color: var(--black);
}

.principle-grid.light p {
  color: var(--muted);
}

.image-notice {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  margin-bottom: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-notice strong {
  color: var(--black);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.image-notice p {
  max-width: 780px;
  color: var(--muted);
  font-size: 0.9rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-item {
  min-width: 0;
  overflow: hidden;
  background: var(--light);
}

.portfolio-item[hidden] {
  display: none;
}

.portfolio-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: inherit;
  background: var(--black);
  cursor: zoom-in;
  text-align: left;
}

.portfolio-trigger picture,
.portfolio-trigger img {
  width: 100%;
  height: 100%;
}

.portfolio-trigger img {
  object-fit: cover;
  filter: saturate(0.78);
  transition: filter 350ms ease, transform 650ms cubic-bezier(0.22, 0.7, 0.22, 1);
}

.portfolio-trigger::after,
.portfolio-motif::after {
  position: absolute;
  inset: 28% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
  content: "";
  pointer-events: none;
}

.portfolio-trigger:hover img,
.portfolio-trigger:focus-visible img {
  filter: saturate(1);
  transform: scale(1.035);
}

.portfolio-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  color: var(--white);
}

.portfolio-overlay > span:first-child {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-overlay strong {
  max-width: 17ch;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.05;
}

.portfolio-overlay .placeholder-label {
  margin-top: 14px;
  color: var(--black);
}

.portfolio-preview .portfolio-item:nth-child(2) {
  margin-top: 64px;
}

.portfolio-preview .portfolio-item:nth-child(3) {
  margin-top: 18px;
}

.portfolio-preview .portfolio-item:nth-child(1) .portfolio-trigger,
.portfolio-preview .portfolio-item:nth-child(3) .portfolio-motif {
  min-height: 520px;
}

.portfolio-motif {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.portfolio-motif .motif-word {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 9vw, 8.2rem);
  font-style: italic;
  white-space: nowrap;
  transform: translate(-50%, -57%) rotate(-7deg);
}

.motif-line {
  position: absolute;
  top: 22%;
  right: 15%;
  width: 45%;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.motif-heritage {
  background: #202020;
}

.motif-impact {
  background: #111111;
}

.motif-impact .motif-line {
  border-radius: 0;
  transform: rotate(45deg);
}

.testimonial-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(44px, 8vw, 120px);
  margin-top: clamp(92px, 11vw, 170px);
  margin-bottom: clamp(92px, 11vw, 170px);
  padding-top: 28px;
  border-top: 1px solid var(--black);
}

.testimonial-section .section-heading {
  margin-bottom: 0;
}

.testimonial-section blockquote {
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.15vw, 3.75rem);
  font-style: italic;
  line-height: 1.08;
}

.testimonial-section figcaption {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.testimonial-section figcaption strong {
  color: var(--black);
}

.testimonial-section figcaption span {
  color: var(--muted);
  font-size: 0.85rem;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: none;
  margin-top: clamp(92px, 11vw, 170px);
  padding: clamp(68px, 8vw, 118px) max(24px, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: var(--black);
}

.final-cta h2 {
  max-width: 13ch;
  color: var(--white);
}

.final-cta div > p:last-child {
  max-width: 640px;
  margin-top: 18px;
  color: #bfbfbf;
}

.site-footer {
  color: #d1d1d1;
  background: var(--black);
  border-top: 1px solid #3c3315;
}

.footer-inner,
.footer-base {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: 72px 0 58px;
}

.footer-brand .brand-logo img {
  height: 90px;
}

.footer-brand > p {
  margin: 20px 0 22px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
}

.footer-brand address {
  color: #aaa;
  font-size: 0.86rem;
  font-style: normal;
}

.footer-inner h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-inner ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-inner a,
.footer-base a {
  color: #d0d0d0;
  font-size: 0.85rem;
}

.footer-inner a:hover,
.footer-base a:hover {
  color: var(--gold);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 28px;
  border-top: 1px solid #262626;
  color: #888;
  font-size: 0.73rem;
}

.breadcrumbs {
  padding-top: 24px;
  padding-bottom: 24px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.72rem;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: #999;
  content: "/";
}

.breadcrumbs a:hover {
  color: var(--black);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 590px;
  color: var(--white);
  background: var(--black);
}

.page-hero > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(46px, 6vw, 86px);
}

.page-hero h1 {
  max-width: 10ch;
  color: var(--white);
  font-size: clamp(3rem, 5.35vw, 5.25rem);
}

.page-hero > div:first-child > p:last-child {
  max-width: 610px;
  margin-top: 26px;
  color: #c4c4c4;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.page-hero figure {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--light);
}

.page-hero figure picture,
.page-hero figure img {
  width: 100%;
  height: 100%;
}

.page-hero figure img {
  object-fit: cover;
}

[data-page="weddings"] .page-hero figure img {
  object-position: center;
}

[data-page="corporate"] .page-hero figure img {
  object-position: 54% center;
}

.hero-motif {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #151515;
}

.hero-motif::before,
.hero-motif::after {
  position: absolute;
  content: "";
}

.hero-motif::before {
  top: 12%;
  right: 12%;
  width: min(42vw, 420px);
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.hero-motif::after {
  right: 28%;
  bottom: 14%;
  width: 1px;
  height: 56%;
  background: var(--gold);
  transform: rotate(38deg);
}

.hero-motif span {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-style: italic;
}

.hero-motif span:nth-child(1) { top: 18%; left: 10%; }
.hero-motif span:nth-child(2) { top: 43%; right: 9%; }
.hero-motif span:nth-child(3) { bottom: 14%; left: 22%; color: var(--gold); }

.split-copy {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(48px, 9vw, 128px);
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid var(--black);
}

.split-copy .section-heading {
  margin-bottom: 0;
}

.prose-large {
  display: grid;
  gap: 24px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.35vw, 2.05rem);
  line-height: 1.35;
}

.section-warm {
  width: 100%;
  max-width: none;
  padding: clamp(80px, 9vw, 136px) max(24px, calc((100vw - var(--content)) / 2));
  background: #f1ede3;
}

.link-list {
  border-top: 1px solid var(--black);
}

.link-list a {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) 1.3fr auto;
  gap: 34px;
  align-items: center;
  min-height: 118px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.link-list span {
  color: var(--black);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.link-list p {
  color: var(--muted);
}

.link-list b {
  color: #876f20;
  font-size: 1.45rem;
  transition: transform 180ms ease;
}

.link-list a:hover b {
  transform: translateX(6px);
}

.statement-section {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  column-gap: clamp(44px, 8vw, 116px);
  margin-top: clamp(92px, 11vw, 170px);
  margin-bottom: clamp(92px, 11vw, 170px);
  padding: clamp(54px, 7vw, 92px);
  color: var(--white);
  background: var(--black);
}

.statement-section .eyebrow {
  grid-column: 1;
  color: var(--gold);
}

.statement-section h2,
.statement-section > p:last-child {
  grid-column: 2;
}

.statement-section h2 {
  color: var(--white);
}

.statement-section > p:last-child {
  max-width: 760px;
  margin-top: 24px;
  color: #c1c1c1;
  font-size: 1.05rem;
}

.feature-list,
.check-list,
.plain-list,
.prompt-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 38px;
}

.feature-list li,
.plain-list li {
  position: relative;
  min-height: 72px;
  padding: 20px 10px 16px 26px;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before,
.plain-list li::before {
  position: absolute;
  top: 30px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.package {
  min-height: 470px;
  padding: 34px clamp(22px, 3vw, 40px) 42px;
  border-right: 1px solid var(--line);
}

.package:last-child {
  border-right: 0;
}

.package-featured {
  background: #f5f0e4;
  box-shadow: inset 0 5px 0 var(--gold);
}

.package-name {
  color: #806817;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.package h3 {
  margin: 20px 0 14px;
  font-size: clamp(2.25rem, 3.5vw, 3.2rem);
}

.package-scope {
  min-height: 52px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.package-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.package-notes p {
  padding: 18px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.78rem;
}

.fine-note {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 0.82rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid #bbb3a2;
  list-style: none;
}

.process-grid li {
  min-height: 220px;
  padding: 26px clamp(18px, 2.6vw, 34px);
  border-right: 1px solid #c9c1b1;
}

.process-grid li:first-child {
  padding-left: 0;
}

.process-grid li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 58px;
  color: #755f15;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.process-grid p {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #444;
  list-style: none;
}

.industry-grid li {
  min-height: 112px;
  padding: 30px 20px 24px 0;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  color: #e5e5e5;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.industry-grid li:nth-child(4n) {
  border-right: 0;
  padding-left: 20px;
}

.industry-grid li:nth-child(4n + 2),
.industry-grid li:nth-child(4n + 3) {
  padding-left: 20px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #c9c1b1;
}

.approach-grid article {
  min-height: 310px;
  padding: 32px clamp(24px, 4vw, 56px) 36px;
  border-right: 1px solid #c9c1b1;
  border-bottom: 1px solid #c9c1b1;
}

.approach-grid article:nth-child(2n) {
  border-right: 0;
}

.approach-grid article:nth-child(odd) {
  padding-left: 0;
}

.approach-grid article > span {
  margin-bottom: 58px;
  color: #775f12;
}

.approach-grid h3 {
  margin-bottom: 16px;
}

.approach-grid p {
  color: var(--muted);
}

.included-block {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 64px;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--black);
}

.included-block h3 {
  max-width: 14ch;
}

.conversation-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 32px 90px;
  align-items: end;
  padding: clamp(64px, 8vw, 100px);
  color: var(--white);
  background: var(--black);
}

.conversation-section h2 {
  max-width: 12ch;
  color: var(--white);
}

.conversation-section div > p:last-child {
  margin-top: 22px;
  color: #bdbdbd;
}

.prompt-list {
  border-top: 1px solid #3b3b3b;
}

.prompt-list li {
  padding: 12px 0;
  border-bottom: 1px solid #3b3b3b;
  color: #d5d5d5;
  font-size: 0.9rem;
}

.conversation-section .button {
  width: max-content;
}

.simple-hero {
  padding: clamp(72px, 9vw, 128px) 0 clamp(62px, 8vw, 108px);
  border-bottom: 1px solid var(--black);
}

.simple-hero h1 {
  max-width: 12ch;
}

.simple-hero > p:last-child {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.1rem;
}

.portfolio-shell {
  margin-top: 54px;
}

.portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 32px 0;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-group button,
.lightbox button {
  min-height: 48px;
  border: 1px solid var(--black);
  border-radius: 0;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.filter-group button {
  padding: 0 16px;
}

.filter-group button[aria-pressed="true"] {
  color: var(--white);
  background: var(--black);
}

.result-count {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.portfolio-full .portfolio-item:nth-child(3n + 1) {
  min-height: 520px;
}

.portfolio-full .portfolio-item:nth-child(3n + 2) {
  min-height: 440px;
  margin-top: 54px;
}

.portfolio-full .portfolio-item:nth-child(3n + 3) {
  min-height: 490px;
  margin-top: 18px;
}

.portfolio-full .portfolio-trigger,
.portfolio-full .portfolio-motif {
  min-height: inherit;
}

.lightbox {
  width: min(1120px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100dvh - 40px);
  padding: 0;
  overflow: auto;
  border: 0;
  color: var(--white);
  background: #0b0b0b;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}

.lightbox-bar,
.lightbox-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 7px 16px;
  border-bottom: 1px solid #292929;
}

.lightbox-bar p {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lightbox-bar button,
.lightbox-controls button {
  padding: 0 16px;
  color: var(--white);
  background: transparent;
  border-color: #555;
}

.lightbox figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  max-height: calc(100dvh - 170px);
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: calc(100dvh - 170px);
  object-fit: contain;
  background: #050505;
}

.lightbox figcaption {
  padding: 34px 24px;
  border-left: 1px solid #292929;
}

.lightbox h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 2rem;
}

.lightbox figcaption p {
  color: #aaa;
  font-size: 0.86rem;
}

.lightbox-controls {
  border-top: 1px solid #292929;
  border-bottom: 0;
}

.contact-hero {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 52px;
  align-items: end;
}

.contact-hero .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.contact-hero > p:last-child {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(42px, 7vw, 100px);
  margin-top: clamp(62px, 8vw, 104px);
  margin-bottom: clamp(88px, 10vw, 150px);
}

.contact-form-wrap > h2,
.contact-direct h2 {
  margin-bottom: 40px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > label,
.consent-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.optional {
  margin-left: 5px;
  color: #777;
  font-size: 0.66rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #9d9d9d;
  border-radius: 0;
  color: var(--black);
  background: var(--white);
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--black);
}

.form-field [aria-invalid="true"] {
  border-color: #9c1d1d;
  box-shadow: inset 3px 0 0 #9c1d1d;
}

.field-help,
.field-error,
.form-privacy,
.form-status {
  margin-top: 7px;
  font-size: 0.73rem;
}

.field-help,
.form-privacy {
  color: var(--muted);
}

.field-error {
  min-height: 1.2em;
  color: #861a1a;
  font-weight: 600;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 10px;
  align-items: start;
}

.consent-field input {
  width: 22px;
  height: 22px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--black);
}

.consent-field label {
  margin: 0;
  font-weight: 500;
  line-height: 1.55;
}

.consent-field .field-error {
  grid-column: 2;
}

.form-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.form-submit button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  flex: 1;
  min-width: 220px;
  margin: 0;
}

.form-status.is-success {
  color: #1c672a;
}

.form-status.is-error {
  color: #861a1a;
}

.form-privacy {
  margin-top: 24px;
}

.contact-direct {
  align-self: start;
  padding: 36px;
  color: var(--white);
  background: var(--black);
}

.contact-direct h2 {
  color: var(--white);
}

.contact-direct dl {
  margin-bottom: 30px;
  border-top: 1px solid #3d3d3d;
}

.contact-direct dl > div {
  padding: 17px 0;
  border-bottom: 1px solid #3d3d3d;
}

.contact-direct dt {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct dd {
  margin-top: 5px;
  color: #dedede;
  overflow-wrap: anywhere;
}

.contact-direct a:not(.button):hover {
  color: var(--gold);
}

.contact-honesty {
  margin-top: 22px;
  color: #9d9d9d;
  font-size: 0.7rem;
}

.legal-page {
  max-width: 860px;
  padding: clamp(58px, 8vw, 110px) 0 clamp(88px, 10vw, 150px);
}

.legal-page h1 {
  max-width: 11ch;
  margin-bottom: 16px;
}

.legal-updated {
  margin-bottom: 54px !important;
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-page > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
}

.legal-page h2 {
  margin: 52px 0 18px;
  font-size: 2.25rem;
}

.error-hero {
  min-height: calc(100svh - var(--header-height) - 260px);
}

.error-hero .button {
  width: max-content;
  margin-top: 36px;
}

.redirect-page {
  display: grid;
  place-content: center;
  min-height: 100svh;
  padding: 30px;
  text-align: center;
}

.redirect-page p {
  margin-top: 22px;
}

.js.reveal-ready .reveal-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js.reveal-ready .reveal-section.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    width: min(var(--container), calc(100% - 32px));
  }

  .brand-logo img {
    height: 50px;
  }

  .site-nav {
    gap: 11px;
  }

  .site-nav a {
    font-size: 0.68rem;
  }

  .services-editorial {
    gap: 22px;
  }

  .service-feature > p {
    min-height: 14em;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px max(24px, calc((100vw - 720px) / 2));
    overflow-y: auto;
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav a,
  .site-nav .nav-contact {
    min-height: 64px;
    padding: 0;
    border-bottom: 1px solid var(--line);
    color: var(--black);
    background: transparent;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a::after,
  .site-nav .nav-contact::after {
    right: auto;
    bottom: 0;
    left: 0;
    width: 54px;
  }

  .home-hero,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 570px;
  }

  .hero-image,
  .page-hero figure,
  .hero-motif {
    min-height: min(70vw, 620px);
  }

  .services-editorial {
    grid-template-columns: 1fr 1fr;
  }

  .service-feature:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
  }

  .service-feature:last-child .service-number {
    grid-column: 1 / -1;
  }

  .service-feature:last-child .service-image {
    grid-row: 2 / 6;
  }

  .service-feature > p {
    min-height: 0;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-preview .portfolio-item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .portfolio-full .portfolio-item:nth-child(n) {
    min-height: 440px;
    margin-top: 0;
  }

  .testimonial-section,
  .split-copy,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-section {
    gap: 26px;
  }

  .split-copy {
    gap: 38px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package:last-child {
    border-bottom: 0;
  }

  .package-scope {
    min-height: 0;
  }

  .package-notes,
  .process-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid #c9c1b1;
  }

  .industry-grid li:nth-child(n) {
    padding-left: 0;
    border-right: 1px solid #333;
  }

  .industry-grid li:nth-child(2n) {
    padding-left: 20px;
    border-right: 0;
  }

  .footer-inner {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 26px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 15.5px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-logo img {
    height: 46px;
  }

  .section-shell,
  .testimonial-section,
  .statement-section,
  .final-cta,
  .conversation-section,
  .contact-layout,
  .legal-page,
  .simple-hero,
  .breadcrumbs,
  .page-hero,
  .footer-inner,
  .footer-base {
    width: calc(100% - 32px);
  }

  .hero-copy {
    min-height: calc(100svh - var(--header-height));
    padding: 56px 22px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-image {
    min-height: 460px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .services-editorial {
    grid-template-columns: 1fr;
  }

  .service-feature:last-child {
    grid-column: auto;
    display: block;
  }

  .service-image {
    height: min(118vw, 480px);
  }

  .section-heading-row,
  .final-cta,
  .portfolio-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading-row {
    display: flex;
  }

  .section-dark,
  .section-warm {
    padding-right: 16px;
    padding-left: 16px;
  }

  .principle-grid,
  .approach-grid,
  .portfolio-grid,
  .feature-list,
  .package-notes,
  .process-grid,
  .industry-grid,
  .included-block,
  .conversation-section,
  .contact-form,
  .contact-hero,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .principle-grid article:first-child,
  .principle-grid article:last-child,
  .approach-grid article,
  .approach-grid article:nth-child(odd),
  .process-grid li,
  .process-grid li:first-child,
  .process-grid li:last-child,
  .industry-grid li:nth-child(n) {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .principle-grid article > span,
  .approach-grid article > span,
  .process-grid span {
    margin-bottom: 32px;
  }

  .image-notice {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .portfolio-preview .portfolio-item:nth-child(n),
  .portfolio-full .portfolio-item:nth-child(n) {
    grid-column: auto;
    min-height: 430px;
    margin-top: 0;
  }

  .portfolio-preview .portfolio-item:nth-child(n) .portfolio-trigger,
  .portfolio-preview .portfolio-item:nth-child(n) .portfolio-motif {
    min-height: inherit;
  }

  .testimonial-section {
    padding-top: 22px;
  }

  .final-cta {
    display: flex;
    padding: 64px 22px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-inner {
    padding: 60px 0 44px;
  }

  .footer-inner > div:not(.footer-brand) {
    padding-top: 24px;
    border-top: 1px solid #292929;
  }

  .footer-base {
    flex-direction: column;
  }

  .page-hero {
    width: 100%;
  }

  .page-hero > div:first-child {
    min-height: 520px;
    padding: 52px 22px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .page-hero figure,
  .hero-motif {
    min-height: 470px;
  }

  .link-list a {
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    min-height: 140px;
  }

  .link-list p {
    grid-column: 1;
  }

  .link-list b {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .statement-section {
    display: block;
    padding: 52px 24px;
  }

  .statement-section h2 {
    margin-top: 24px;
  }

  .package-notes {
    gap: 0;
    background: transparent;
  }

  .package-notes p {
    border-bottom: 1px solid var(--line);
  }

  .process-grid li:nth-child(n),
  .industry-grid li:nth-child(n) {
    border-bottom-color: #c9c1b1;
  }

  .industry-grid li:nth-child(n) {
    color: #e5e5e5;
    border-bottom-color: #333;
  }

  .approach-grid article:nth-child(n) {
    border-bottom-color: #c9c1b1;
  }

  .included-block {
    gap: 32px;
  }

  .conversation-section {
    display: grid;
    gap: 40px;
    padding: 58px 24px;
  }

  .conversation-section .button {
    width: 100%;
  }

  .simple-hero {
    padding-top: 58px;
  }

  .contact-hero {
    display: block;
  }

  .contact-hero .eyebrow {
    margin-bottom: 16px;
  }

  .contact-hero > p:last-child {
    margin-top: 24px;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .contact-direct {
    padding: 28px 22px;
  }

  .lightbox {
    width: 100%;
    height: 100dvh;
    max-height: none;
    margin: 0;
  }

  .lightbox figure {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .lightbox figure img {
    min-height: 42vh;
    max-height: 56vh;
  }

  .lightbox figcaption {
    padding: 22px 18px;
    border-top: 1px solid #292929;
    border-left: 0;
  }

  .lightbox-controls {
    position: sticky;
    bottom: 0;
    background: #0b0b0b;
  }
}

@media (max-width: 390px) {
  .filter-group,
  .filter-group button {
    width: 100%;
  }

  .portfolio-trigger,
  .portfolio-motif,
  .portfolio-full .portfolio-item:nth-child(n) {
    min-height: 390px;
  }

  .form-submit,
  .form-submit .button {
    width: 100%;
  }

  .lightbox-controls button {
    padding: 0 10px;
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js.reveal-ready .reveal-section {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .final-cta,
  .button,
  .filter-group,
  .lightbox {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  main,
  .section-shell,
  .legal-page {
    width: 100%;
  }
}
