@charset "UTF-8";
:root {
  --paper: #faf8f3;
  --white: #fff;
  --ink: #242a26;
  --muted: #62665f;
  --gold: #80602c;
  --line: #dcdcd2;
  --dark: #202522;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --gutter: clamp(22px, 5.7vw, 88px);
}
* {
  box-sizing: border-box;
  min-width: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}
body {
  overflow-wrap: anywhere;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 1rem/1.65 var(--sans);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
a {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
h1 {
  font-size: clamp(2.8125rem, 4.7vw, 4.5625rem);
  line-height: 1.08;
  letter-spacing: -2.5px;
}
h2 {
  font-size: clamp(2.125rem, 3.25vw, 3.0625rem);
  line-height: 1.15;
  letter-spacing: -1.25px;
}
h3 {
  font-size: 1.6875rem;
  line-height: 1.2;
}
em {
  font-weight: 400;
  color: var(--gold);
}
p + p {
  margin-top: 18px;
}
p {
  overflow-wrap: break-word;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid #9b722b;
  outline-offset: 5px;
}
::selection {
  background: #ddc79b;
  color: #202522;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  background: white;
  padding: 12px;
  z-index: 50;
}
.skip-link:focus {
  top: 12px;
}
.section-shell {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  max-width: 1600px;
  margin-inline: auto;
}
.eyebrow {
  font: 0.6875rem/1.7 var(--sans);
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--gold);
}
.site-header {
  height: 112px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  width: 108px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  height: 104px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 0.875rem;
}
.site-header nav > a {
  text-decoration: none;
}
.site-header nav > a:not(.button):hover {
  color: var(--gold);
}
.button {
  max-width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 16px 23px;
  min-height: 54px;
  background: var(--dark);
  border: 1px solid var(--dark);
  color: #fff;
  text-decoration: none;
  font: 0.875rem/1.4 var(--sans);
  transition: background 0.2s;
}
.button:hover {
  background: #3d463d;
}
.button span {
  font-size: 1.1875rem;
}
.button-small {
  padding: 12px 22px;
  min-height: 46px;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.button-light:hover {
  background: #e7e1d4;
}
.text-link {
  border: 0;
  border-bottom: 1px solid var(--gold);
  padding: 4px 0;
  background: none;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  gap: 18px;
  align-items: center;
}
.text-link:hover {
  color: var(--gold);
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 43% 57%;
  max-width: 1800px;
  margin-inline: auto;
}
.hero-copy {
  padding: clamp(40px, 4.8vw, 74px) 34px 45px var(--gutter);
  align-self: center;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
}
.gold-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero-tagline {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 25px;
}
.hero-description {
  max-width: 370px;
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 19px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: 55% center;
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, #121b18aa);
  pointer-events: none;
}
.hero-visual figcaption {
  position: absolute;
  bottom: 30px;
  left: 35px;
  right: 35px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: white;
  z-index: 1;
  font-size: 0.625rem;
  letter-spacing: 2px;
}
.hero-bottom {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--line);
  font-size: 0.625rem;
  letter-spacing: 1.7px;
}
.hero-bottom i {
  font-style: normal;
  color: var(--gold);
  margin: 0 14px;
}
.hero-bottom a {
  font-size: 0.75rem;
  letter-spacing: 0;
  text-decoration: none;
  display: flex;
  gap: 30px;
}
.intro {
  padding-top: 91px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 10px;
}
.intro > .eyebrow {
  padding-top: 9px;
}
.intro h2 {
  margin-bottom: 25px;
}
.intro p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
}
.services {
  padding-top: 78px;
  padding-bottom: 65px;
  background: #f0f0e9;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 47px;
}
.section-heading .eyebrow {
  margin-bottom: 17px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 0.9375rem;
  padding-bottom: 6px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cbcec3;
}
.service {
  padding: 30px 32px 33px 0;
  border-bottom: 1px solid #cbcec3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service:nth-child(3n + 2) {
  padding-left: 32px;
  border-left: 1px solid #cbcec3;
  border-right: 1px solid #cbcec3;
}
.service:nth-child(3n) {
  padding-left: 32px;
  padding-right: 0;
}
.service-number {
  font-size: 0.6875rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 21px;
}
.service h3 {
  margin-bottom: 17px;
}
.service p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 24px;
}
.service a {
  font-size: 0.75rem;
  text-decoration: none;
  border-bottom: 1px solid #b4b49f;
  padding-bottom: 4px;
  margin-top: auto;
  display: flex;
  gap: 24px;
  align-items: center;
}
.service a:hover {
  color: var(--gold);
}
.service-note {
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 900px;
  margin-top: 25px;
}
.occasions {
  background: var(--dark);
  color: var(--paper);
}
.occasions-inner {
  padding-top: 72px;
  padding-bottom: 70px;
  text-align: center;
}
.occasions .eyebrow {
  color: #cab286;
  margin-bottom: 21px;
}
.occasions h2 {
  margin-bottom: 35px;
}
.occasion-list {
  padding: 0;
  margin: 0 auto;
  max-width: 950px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px 0;
}
.occasion-list li {
  padding: 0 22px;
  font-size: 0.875rem;
  color: #e0e0d5;
  border-right: 1px solid #56594c;
}
.occasion-list li:last-child {
  border-right: 0;
}
.process {
  padding-top: 87px;
  padding-bottom: 90px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.steps li {
  border-top: 1px solid #c7cbbb;
  padding-top: 23px;
}
.steps span {
  font: italic 2rem var(--serif);
  color: var(--gold);
}
.steps h3 {
  font-size: 1.375rem;
  margin: 20px 0 13px;
}
.steps p {
  font-size: 0.875rem;
  color: var(--muted);
}
.about {
  padding-top: 10px;
  padding-bottom: 95px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.event-portrait {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.event-portrait img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 580px;
  object-fit: cover;
  object-position: 32% center;
}
.event-portrait figcaption {
  font-size: 0.6875rem;
  padding-top: 13px;
  color: var(--muted);
}
.about-copy .eyebrow {
  margin-bottom: 19px;
}
.about-copy h2 {
  font-size: clamp(2.0625rem, 3vw, 2.8125rem);
  margin-bottom: 25px;
}
.about-copy h2 em {
  display: inline-block;
}
.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9375rem;
}
.experience {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 22px;
}
.experience strong {
  font: 3rem var(--serif);
  color: var(--gold);
}
.experience span {
  font-size: 0.625rem;
  letter-spacing: 1.5px;
  line-height: 1.7;
}
.gather-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
  color: white;
}
.gather-banner > .section-shell {
  padding-top: 72px;
  padding-bottom: 77px;
}
.gather-banner .eyebrow {
  color: #f0ddbd;
}
.display-text {
  font: clamp(2.375rem, 4.5vw, 4.0625rem)/1.15 var(--serif);
  letter-spacing: -1.2px;
  margin-top: 22px;
  margin-bottom: 29px;
}
.display-text em {
  color: #e2c79a;
}
.quote {
  padding-top: 93px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 7%;
}
.quote-intro .eyebrow {
  margin-bottom: 18px;
}
.quote-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 320px;
  margin-top: 23px;
}
.contact-details {
  margin-top: 37px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.contact-details > span {
  font-size: 0.625rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-top: 15px;
}
.contact-details a {
  font-size: 0.875rem;
  overflow-wrap: anywhere;
}
.contact-details p {
  color: var(--muted);
  font-size: 0.875rem;
}
.form-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 25px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 24px;
}
.full {
  grid-column: 1/-1;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
label,
legend {
  font-size: 0.8125rem;
}
input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #c6c8bd;
  border-radius: 0;
  background: #fffefa;
  color: var(--ink);
  padding: 11px 12px;
  min-height: 47px;
  font-size: 1rem;
}
input::placeholder,
textarea::placeholder {
  color: #74796f;
  opacity: 1;
}
input[type="date"] {
  min-width: 0;
  appearance: none;
}
textarea {
  resize: vertical;
  line-height: 1.6;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}
.services-field {
  padding: 4px 0 0;
  border: 0;
  margin: 0;
}
.services-field legend {
  margin-bottom: 14px;
}
.services-field legend span {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 8px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 15px;
}
.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
  cursor: pointer;
  min-height: 30px;
  padding: 3px 0;
}
.checkbox-grid input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--dark);
  margin: 2px 0 0;
}
.privacy-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 23px 0;
}
.submit-button {
  min-width: 232px;
}
.submit-button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  padding: 16px;
  border: 1px solid #a26f30;
  background: #fff5df;
  margin-bottom: 23px;
  font-size: 0.875rem;
}
.form-status.success {
  border-color: #56744b;
  background: #edf4e7;
}
.field-error {
  font-size: 0.8125rem;
  color: #a32b19;
  margin-top: 8px;
}
.site-footer {
  background: var(--dark);
  color: #eeeee5;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 44px;
  padding-bottom: 37px;
}
.footer-brand {
  font: 1.875rem var(--serif);
  text-decoration: none;
}
.footer-brand span {
  display: block;
  font: 0.75rem/1.7 var(--sans);
  color: #bdc0b5;
  margin-top: 10px;
}
.footer-top > a:not(.footer-brand) {
  font-size: 0.875rem;
  overflow-wrap: anywhere;
}
.footer-bottom {
  border-top: 1px solid #485044;
  padding-top: 20px;
  padding-bottom: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  align-items: center;
  font-size: 0.6875rem;
  color: #c5c8bf;
}
.footer-bottom > a:first-of-type {
  margin-left: auto;
}
.footer-bottom a {
  color: #eeeee5;
}
.document {
  max-width: 850px;
  padding-top: 80px;
  padding-bottom: 100px;
  min-height: 65vh;
}
.document h1 {
  font-size: clamp(2.375rem, 5vw, 3.75rem);
  margin-bottom: 28px;
}
.document h2 {
  font-size: 1.6875rem;
  letter-spacing: 0;
  margin: 30px 0 14px;
}
.document p {
  margin-bottom: 18px;
}
.document .eyebrow {
  margin-bottom: 15px;
}
.document textarea {
  margin: 15px 0;
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-left: 88px;
  }
  .hero-visual {
    min-height: 720px;
  }
}
@media (max-width: 1100px) {
  .site-header nav {
    gap: 26px;
  }
  .hero {
    grid-template-columns: 47% 53%;
  }
  .hero-copy {
    padding-right: 25px;
  }
  h1 {
    font-size: 3.1875rem;
  }
  .hero-visual {
    min-height: 635px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero .button {
    padding: 15px 18px;
  }
  .hero-visual figcaption {
    flex-direction: column;
    gap: 4px;
  }
  .quote {
    grid-template-columns: 31% 1fr;
    gap: 5%;
  }
  .contact-details a {
    font-size: 0.8125rem;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 89px;
  }
  .site-header {
    height: 85px;
  }
  .brand {
    width: 78px;
  }
  .brand img {
    height: 78px;
  }
  .js .menu-toggle {
    display: flex;
    align-items: center;
    gap: 13px;
    background: none;
    border: 1px solid #c6c8bd;
    padding: 9px 14px;
    font-size: 0.875rem;
  }
  .js .site-header nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px var(--gutter);
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    gap: 19px;
  }
  .js .site-header nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .site-header nav {
    gap: 14px;
    font-size: 0.75rem;
  }
  .site-header nav .button-small {
    font-size: 0.75rem;
    padding: 10px;
  }
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    padding: 42px var(--gutter) 39px;
    align-self: stretch;
  }
  h1 {
    font-size: clamp(2.75rem, 9vw, 4.0625rem);
    letter-spacing: -1.7px;
  }
  .hero .eyebrow {
    margin-bottom: 19px;
  }
  .hero-tagline {
    font-size: 1.1875rem;
    margin-top: 21px;
  }
  .hero-description {
    max-width: 440px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-visual img {
    object-position: center 58%;
  }
  .hero-visual figcaption {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 23px;
    flex-direction: row;
    font-size: 0.5625rem;
    letter-spacing: 1.3px;
  }
  .hero-bottom {
    padding-block: 18px;
    font-size: 0.5625rem;
    letter-spacing: 1px;
  }
  .hero-bottom a {
    display: none;
  }
  .hero-bottom i {
    margin-inline: 8px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 58px;
    padding-bottom: 60px;
  }
  .intro h2 {
    margin-bottom: 22px;
  }
  .intro p:not(.eyebrow) {
    font-size: 0.9375rem;
  }
  .services {
    padding-top: 56px;
    padding-bottom: 45px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .section-heading > .text-link {
    margin-top: 24px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service {
    padding: 23px 18px 27px 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .service:nth-child(even) {
    padding-left: 18px !important;
    padding-right: 0 !important;
    border-left: 1px solid #cbcec3 !important;
  }
  .service h3 {
    font-size: 1.5rem;
  }
  .service-number {
    margin-bottom: 18px;
  }
  .service p {
    font-size: 0.8125rem;
  }
  .service a {
    font-size: 0.75rem;
    gap: 10px;
  }
  .service-note {
    font-size: 0.75rem;
  }
  .occasions-inner {
    padding-top: 52px;
    padding-bottom: 50px;
  }
  .occasion-list {
    gap: 12px 0;
  }
  .occasion-list li {
    font-size: 0.75rem;
    padding-inline: 12px;
  }
  .process {
    padding-top: 58px;
    padding-bottom: 60px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 29px 24px;
  }
  .steps h3 {
    font-size: 1.4375rem;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 60px;
  }
  .event-portrait img {
    height: 390px;
    min-height: 0;
    object-position: center;
  }
  .about-copy h2 {
    font-size: 2.25rem;
  }
  .experience {
    margin-top: 25px;
  }
  .gather-banner > .section-shell {
    padding-top: 55px;
    padding-bottom: 56px;
  }
  .gather-banner .eyebrow {
    font-size: 0.625rem;
  }
  .quote {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .quote-intro > p:not(.eyebrow) {
    max-width: 100%;
  }
  .contact-details {
    margin-top: 18px;
    gap: 5px;
  }
  .contact-details a {
    font-size: 0.9375rem;
  }
  .form-grid {
    gap: 19px 15px;
  }
  .form-note {
    margin-bottom: 22px;
  }
  .checkbox-grid {
    gap: 7px 12px;
  }
  .checkbox-grid label {
    font-size: 0.75rem;
  }
  .footer-top {
    display: block;
    padding-top: 36px;
    padding-bottom: 30px;
  }
  .footer-top > a {
    display: block;
  }
  .footer-top > a:not(.footer-brand) {
    margin-top: 24px;
  }
  .footer-bottom {
    gap: 14px 20px;
  }
  .footer-bottom > span {
    width: 100%;
  }

  .document {
    padding-top: 45px;
    padding-bottom: 65px;
  }
}
@media (max-width: 380px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service:nth-child(even) {
    border-left: 0 !important;
    padding-left: 0 !important;
  }
  .service h3 br {
    display: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    gap: 25px 18px;
  }
  .hero-visual {
    min-height: 325px;
  }
  .hero-visual figcaption {
    flex-direction: column;
  }
  .site-header nav {
    font-size: 0.625rem;
    gap: 7px;
  }
  .services-field legend span {
    display: block;
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 760px) {
  html:not(.js) .site-header {
    height: auto;
    min-height: 85px;
    flex-wrap: wrap;
    padding-block: 8px;
  }
  html:not(.js) .site-header nav {
    flex-wrap: wrap;
  }
}

/* Real event photography: layout-specific framing, no synthetic scene changes. */
picture { display: block; }
.hero-visual picture { position: absolute; inset: 0; }
.hero-visual img { object-position: 52% center; }
.event-portrait picture { display: flex; flex: 1; }
.event-portrait img { object-position: 52% center; }
.gather-banner > picture { position: absolute; inset: 0; z-index: -2; }
.gather-banner > picture img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.gather-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #101c18e8, #101c1844); z-index: -1; }
.service-proof { margin-top: 66px; padding-top: 40px; border-top: 1px solid #cbcec3; }
.service-proof .section-heading { margin-bottom: 27px; }
.service-proof h3 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); }
.service-proof .section-heading > p { max-width: 240px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.proof-grid picture { aspect-ratio: 2047 / 1182; display: flex; align-items: center; background: var(--dark); }
.proof-grid img { width: 100%; height: auto; }
.proof-grid figcaption { padding-top: 18px; }
.proof-grid h4 { font: 1.375rem/1.25 var(--serif); margin: 0 0 12px; }
.proof-grid figcaption p { font-size: .875rem; color: var(--muted); line-height: 1.75; }
@media(max-width:760px) {
  .hero-visual img { object-position: 57% center; }
  .event-portrait picture { display: block; }
  .event-portrait img { height: auto; min-height: 0; max-height: none; }
  .proof-grid { grid-template-columns: 1fr; gap: 32px; }
  .proof-grid picture { aspect-ratio: auto; }
  .service-proof { margin-top: 42px; padding-top: 30px; }
  .service-proof .section-heading > p { max-width: none; }
  .gather-banner > picture img { object-position: 62% center; }
}
