:root {
  --ink: #2f2926;
  --muted: #756f68;
  --line: #e8ded4;
  --dark: #211b18;
  --gold: #b88746;
  --rose: #9a655e;
  --sage: #6f7d6b;
  --warm: #fbf7f0;
  --petal: #eee1dd;
  --white: #fff;
  --link-color: var(--rose);
  --link-hover-color: var(--gold);
  --nav-bg: rgba(255, 255, 255, 0.04);
  --nav-border: rgba(255, 255, 255, 0.08);
  --nav-text: rgba(255, 255, 255, 0.86);
  --nav-active-bg: rgba(184, 135, 70, 0.12);
  --nav-active-text: var(--gold);
  --button-bg: var(--rose);
  --button-text: var(--white);
  --button-hover: var(--gold);
  --card-bg: rgba(255, 255, 255, 0.78);
  --scroll-cue-bg: rgba(33, 27, 24, 0.68);
  --scroll-cue-color: #f2bf6b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: "Noticia Text", Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
}

a {
  border-bottom: 1px solid transparent;
  color: var(--link-color);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

a:hover {
  border-bottom-color: currentColor;
  color: var(--link-hover-color);
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

h1,
h2,
h3 {
  clear: both;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: 72px;
  line-height: 0.98;
}

h2 {
  font-size: 42px;
  line-height: 1.14;
}

h3 {
  font-size: 25px;
  line-height: 1.25;
}

p {
  margin: 0 0 1.45em;
}

.site-header {
  background: var(--dark);
  color: var(--white);
  position: relative;
  z-index: 10;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  margin: 0;
  max-width: none;
  padding: 10px clamp(18px, 4vw, 52px);
  width: 100%;
}

.site-branding {
  align-items: center;
  border-bottom: 0;
  display: flex;
  gap: 14px;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  min-width: 0;
  position: relative;
  z-index: 1;
  width: max-content;
}

.site-branding:hover {
  border-bottom: 0;
}

.site-logo {
  max-height: 86px;
  width: auto;
}

.site-description {
  color: rgba(255, 255, 255, 0.78);
  display: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
  max-width: 180px;
}

.main-navigation {
  align-items: center;
  background: var(--nav-bg);
  border: 1px solid var(--nav-border);
  border-radius: 999px;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
  justify-content: safe center;
  justify-self: center;
  max-width: calc(100vw - clamp(36px, 8vw, 104px));
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 5px;
  scrollbar-width: none;
  scroll-padding-inline: 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  width: max-content;
}

.main-navigation::-webkit-scrollbar {
  display: none;
}

.main-navigation a {
  border-bottom: 0;
  color: var(--nav-text);
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  padding: 11px clamp(8px, 1.15vw, 16px);
  scroll-snap-align: center;
  text-transform: uppercase;
}

.main-navigation a + a::before {
  content: none;
}

.main-navigation a:hover,
.main-navigation a.active {
  background: var(--nav-active-bg);
  border-radius: 999px;
  color: var(--nav-active-text);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--nav-border);
  color: var(--nav-text);
  display: none;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  letter-spacing: 1px;
  padding: 10px 12px;
  text-transform: uppercase;
}

.site-breadcrumb {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4;
  padding: 10px clamp(18px, 5vw, 68px);
  text-transform: uppercase;
}

.site-breadcrumb a {
  border-bottom: 0;
  color: var(--rose);
}

.site-breadcrumb a:hover {
  color: var(--gold);
}

.site-breadcrumb [aria-current="page"] {
  color: var(--ink);
}

.hero {
  align-items: end;
  background-position: center;
  background-size: cover;
  display: grid;
  min-height: min(720px, calc(100svh - 108px));
  overflow: hidden;
  padding: 72px 5%;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(33, 27, 24, 0.84), rgba(33, 27, 24, 0.46) 48%, rgba(33, 27, 24, 0.1)),
    linear-gradient(0deg, rgba(33, 27, 24, 0.34), rgba(33, 27, 24, 0.08));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.35;
  max-width: 560px;
}

.eyebrow {
  color: var(--gold);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-link,
.contact-form button {
  background: var(--button-bg);
  border: 1px solid var(--button-bg);
  color: var(--button-text);
  display: inline-flex;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 1.3;
  padding: 13px 18px;
  text-transform: uppercase;
}

.button-link:hover,
.contact-form button:hover {
  background: transparent;
  border-color: var(--button-hover);
  color: var(--button-hover);
}

.text-link {
  color: inherit;
  display: inline-flex;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero .text-link {
  color: rgba(255, 255, 255, 0.88);
}

.hero-scroll-cue {
  align-items: center;
  background: var(--scroll-cue-bg);
  border: 2px solid var(--scroll-cue-color);
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32), 0 0 0 4px rgba(255, 255, 255, 0.12);
  color: var(--scroll-cue-color);
  display: grid;
  height: 60px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 60px;
  z-index: 2;
}

.hero-scroll-cue::before {
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  inset: 8px;
  opacity: 0.62;
  pointer-events: none;
  position: absolute;
}

.hero-scroll-cue span {
  border-bottom: 3px solid currentColor;
  border-right: 3px solid currentColor;
  display: block;
  height: 16px;
  margin-top: -4px;
  position: relative;
  transform: rotate(45deg);
  width: 16px;
}

.hero-scroll-cue:hover {
  border-color: currentColor;
  color: var(--white);
  transform: translate(-50%, 3px);
}

.scroll-anchor {
  display: block;
  scroll-margin-top: 18px;
}

.intro-section,
.promise-section,
.featured-gallery,
.closing-cta,
.content-wrapper {
  margin: 0 auto;
  max-width: 1120px;
  padding: 76px 5%;
}

.intro-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  max-width: none;
  padding: 0;
}

.intro-inner {
  align-items: start;
  column-gap: 72px;
  display: grid;
  grid-template-columns: 260px 1fr;
  justify-items: start;
  margin: 0 auto;
  max-width: 1120px;
  padding: 80px 5%;
  width: 100%;
}

.intro-inner:has(> article:only-child) {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.intro-aside {
  border-right: 1px solid var(--line);
  padding-bottom: 24px;
  padding-right: 72px;
  position: sticky;
  top: 40px;
}

.intro-aside .section-heading {
  max-width: none;
}

.intro-aside .eyebrow {
  margin-bottom: 0;
}

.intro-aside .eyebrow::after {
  background: var(--gold);
  content: "";
  display: block;
  height: 2px;
  margin-top: 14px;
  width: 36px;
}

.intro-aside .section-heading h2 {
  font-size: 54px;
  line-height: 1.05;
  margin-top: 22px;
}

.section-heading {
  max-width: 580px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.intro-section .rich-content > p:first-child {
  color: var(--rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12em;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.8em;
}

.intro-section .rich-content figure {
  margin: 2.5em 0;
}

.intro-section .rich-content figure img {
  box-shadow: 0 6px 28px rgba(47, 41, 38, 0.1);
  width: 100%;
}

.intro-section .rich-content .partners {
  border-top: 1px solid var(--line);
  margin-top: 2.5em;
  padding-top: 1.75em;
}

.intro-section .rich-content .partners h2 {
  color: var(--muted);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.entry-content,
.content-wrapper {
  max-width: 940px;
}

.rich-content {
  color: #47413d;
}

.rich-content > *:first-child {
  margin-top: 0;
}

.rich-content h2,
.rich-content h3 {
  margin: 1.4em 0 0.55em;
}

.rich-content p,
.rich-content li {
  max-width: 760px;
}

.rich-content a {
  font-weight: 700;
}

.rich-content figure {
  margin: 42px auto;
}

.rich-content figure img {
  box-shadow: 0 24px 70px rgba(49, 39, 33, 0.16);
  margin: 0 auto;
  max-height: 760px;
  object-fit: cover;
}

.rich-content figcaption,
.gallery-item figcaption {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  margin-top: 10px;
  text-align: center;
}

.rich-content blockquote {
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.55;
  margin: 34px 0;
  padding-left: 1em;
}

.rich-content ul,
.rich-content ol {
  margin: 0 0 1.75em;
  padding-left: 1.25em;
}

.rich-content li + li {
  margin-top: 8px;
}

.rich-content .partners {
  background: var(--warm);
  border-top: 3px solid var(--gold);
  margin-top: 48px;
  padding: 34px;
  text-align: center;
}

.promise-section {
  background:
    linear-gradient(90deg, rgba(111, 125, 107, 0.16), transparent 42%),
    var(--warm);
  max-width: none;
}

.promise-section .section-heading,
.promise-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}

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

.promise-card {
  background: var(--promise-card-bg, var(--card-bg));
  border: 1px solid var(--promise-card-border, var(--line));
  border-radius: 6px;
  padding: 28px;
}

.promise-card h3 {
  color: var(--promise-card-title, var(--rose));
  margin-bottom: 12px;
}

.promise-card p {
  color: var(--promise-card-text, var(--muted));
  margin: 0;
}

.featured-gallery {
  background: var(--white);
  max-width: none;
}

.featured-gallery .section-heading,
.featured-gallery .gallery-grid,
.featured-gallery .centered-action {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}

.gallery-grid {
  column-count: 3;
  column-gap: 18px;
  margin: 32px auto 44px;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 18px;
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-open {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: zoom-in;
  display: block;
  padding: 0;
  width: 100%;
}

.gallery-item img {
  background: #f5f2ed;
  transform: scale(1);
  transition: transform 0.35s ease, filter 0.35s ease;
  width: 100%;
}

.gallery-item:hover img {
  filter: saturate(1.05);
  transform: scale(1.025);
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  align-items: center;
  background: rgba(20, 15, 13, 0.92);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: clamp(14px, 3vw, 38px);
  position: fixed;
  z-index: 80;
}

.gallery-lightbox-backdrop {
  background: transparent;
  border: 0;
  cursor: zoom-out;
  inset: 0;
  padding: 0;
  position: absolute;
}

.gallery-lightbox-panel {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  height: 100%;
  max-height: 100svh;
  max-width: 1480px;
  padding: clamp(60px, 7vw, 84px) clamp(76px, 8vw, 104px) clamp(36px, 5vw, 60px);
  position: relative;
  width: 100%;
  z-index: 1;
}

.gallery-lightbox-figure {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-column: 1;
  justify-items: center;
  margin: 0;
  min-width: 0;
}

.gallery-lightbox-figure img {
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  max-height: min(76svh, calc(100svh - 190px));
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.gallery-lightbox-figure img.loaded {
  opacity: 1;
  transform: scale(1);
}

.gallery-lightbox-figure figcaption {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-style: italic;
  gap: 12px 18px;
  justify-content: center;
  line-height: 1.5;
  min-height: 22px;
  text-align: center;
}

.gallery-lightbox-figure figcaption strong {
  color: rgba(255, 255, 255, 0.62);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  align-items: center;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  color: var(--white);
  cursor: pointer;
  display: inline-grid;
  font-size: 0;
  justify-content: center;
  line-height: 1;
  padding: 0;
  place-items: center;
  position: absolute;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
  outline: 0;
}

.gallery-lightbox-close {
  height: 46px;
  right: clamp(10px, 2vw, 24px);
  top: clamp(10px, 2vw, 24px);
  width: 46px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  transform: translateY(-1px);
}

.gallery-lightbox-close::before,
.gallery-lightbox-close::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 2px;
  position: absolute;
  width: 18px;
}

.gallery-lightbox-close::before {
  transform: rotate(45deg);
}

.gallery-lightbox-close::after {
  transform: rotate(-45deg);
}

.gallery-lightbox-nav {
  height: 58px;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-nav::before {
  border-bottom: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
  height: 15px;
  width: 15px;
}

.gallery-lightbox-nav.previous {
  left: clamp(10px, 2vw, 24px);
}

.gallery-lightbox-nav.previous::before {
  margin-left: 5px;
  transform: rotate(135deg);
}

.gallery-lightbox-nav.next {
  right: clamp(10px, 2vw, 24px);
}

.gallery-lightbox-nav.next::before {
  margin-right: 5px;
  transform: rotate(-45deg);
}

.centered-action {
  text-align: center;
}

.home-version-badge {
  bottom: max(10px, env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.34);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  left: max(12px, env(safe-area-inset-left));
  letter-spacing: 1px;
  line-height: 1;
  pointer-events: none;
  position: fixed;
  text-transform: uppercase;
  z-index: 9;
}

.closing-cta {
  background: var(--dark);
  color: var(--white);
  max-width: none;
  text-align: center;
}

.closing-cta h2 {
  color: var(--white);
  margin: 0 auto 28px;
  max-width: 720px;
}

.page-content {
  background: var(--white);
}

.page-masthead {
  align-items: end;
  background: #ddd8d3;
  background-position: center;
  background-size: cover;
  display: grid;
  min-height: 310px;
  padding: 64px 5%;
  position: relative;
}

.masthead-placeholder {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  pointer-events: none;
  position: absolute;
}

.masthead-placeholder svg {
  fill: rgba(255, 255, 255, 0.38);
  height: 88px;
  width: 88px;
}

.page-masthead.has-image::before {
  background: linear-gradient(90deg, rgba(33, 27, 24, 0.78), rgba(33, 27, 24, 0.34));
  content: "";
  inset: 0;
  position: absolute;
}

.page-masthead > div {
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.page-masthead.has-image h1 {
  color: var(--white);
}

.content-wrapper {
  background: var(--white);
  padding-bottom: 72px;
}

.contact-form {
  background:
    linear-gradient(180deg, rgba(251, 247, 240, 0.96), rgba(255, 255, 255, 0.96)),
    var(--warm);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  margin: 44px 0 0;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--muted);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(184, 135, 70, 0.16);
}

.contact-form button {
  justify-self: start;
}

.form-status {
  color: var(--muted);
  margin: 0;
}

.pre-footer {
  background-position: center;
  background-size: cover;
  color: var(--white);
  min-height: 320px;
  padding: 72px 5%;
  position: relative;
}

.pre-footer::after {
  background: linear-gradient(0deg, rgba(33, 27, 24, 0.72), rgba(33, 27, 24, 0.42));
  content: "";
  inset: 0;
  position: absolute;
}

.pre-footer-inner {
  margin: 0 auto;
  max-width: 1136px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.pre-footer p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 28px;
}

.pre-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.pre-footer a {
  color: var(--white);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.56);
  display: flex;
  flex-wrap: wrap;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 10px;
  gap: 14px;
  justify-content: center;
  letter-spacing: 1.6px;
  line-height: 2.8;
  padding: 16px 28px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.62);
}

@media (min-width: 1600px) {
  .site-description {
    display: block;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

  .intro-inner,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .intro-inner {
    justify-items: center;
    text-align: center;
  }

  .intro-aside {
    border-bottom: 1px solid var(--line);
    border-right: none;
    padding-bottom: 48px;
    padding-right: 0;
    position: static;
    width: 100%;
  }

  .intro-aside .eyebrow::after {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-aside .section-heading h2 {
    font-size: 44px;
  }

}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    margin-top: 23px;
  }

  .main-navigation {
    border-radius: 18px;
    display: none;
    flex-basis: 100%;
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
    justify-content: safe center;
    overflow-x: auto;
    padding-top: 6px;
    white-space: nowrap;
  }

  .main-navigation.open {
    display: flex;
  }

  .main-navigation a {
    display: inline-flex;
    padding: 11px 13px;
  }

  .main-navigation a + a::before {
    content: none;
  }

  .hero {
    min-height: 560px;
    padding-bottom: 76px;
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .site-logo {
    max-height: 70px;
  }

  .hero {
    min-height: 520px;
    padding-bottom: 78px;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 22px;
  }

  .hero-scroll-cue {
    bottom: 16px;
    height: 54px;
    width: 54px;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox-panel {
    gap: 14px;
    padding: calc(env(safe-area-inset-top) + 62px) 0 calc(env(safe-area-inset-bottom) + 82px);
  }

  .gallery-lightbox-figure {
    grid-column: 1;
  }

  .gallery-lightbox-figure img {
    max-height: calc(100svh - 190px);
  }

  .gallery-lightbox-close {
    height: 44px;
    right: 4px;
    top: calc(env(safe-area-inset-top) + 4px);
    width: 44px;
  }

  .gallery-lightbox-nav {
    bottom: calc(env(safe-area-inset-bottom) + 14px);
    height: 52px;
    top: auto;
    transform: none;
    width: 50px;
  }

  .gallery-lightbox-nav:hover,
  .gallery-lightbox-nav:focus-visible {
    transform: translateY(-2px);
  }

  .gallery-lightbox-nav.previous {
    left: calc(50% - 62px);
  }

  .gallery-lightbox-nav.next {
    right: calc(50% - 62px);
  }

  .intro-inner,
  .promise-section,
  .featured-gallery,
  .closing-cta,
  .content-wrapper {
    padding: 52px 6%;
  }

  .intro-aside {
    padding-bottom: 40px;
  }

  .page-masthead {
    min-height: 240px;
    padding: 46px 6%;
  }

  .promise-card,
  .contact-form {
    padding: 22px;
  }

  .gallery-grid {
    column-count: 1;
  }
}
