:root {
  --ink: #302d28;
  --muted: #6c665d;
  --paper: #fbf8f2;
  --linen: #f1e8dc;
  --sage: #697762;
  --sage-dark: #505c4b;
  --clay: #b98668;
  --shell: #fffaf2;
  --line: #ded1c0;
  --shadow: 0 18px 60px rgba(45, 35, 25, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.album-is-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(20px, 5vw, 64px);
  color: var(--shell);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 248, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(48, 45, 40, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  min-width: max-content;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 7px;
  color: currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.site-nav a,
.site-footer nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after,
.site-footer nav a::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  margin-top: 4px;
  background: currentColor;
  transition: width 0.22s ease;
}

.site-nav a:hover::after,
.site-footer nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(22px, 7vw, 96px) 86px;
  color: var(--shell);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  z-index: 0;
  object-position: center 34%;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(34, 30, 24, 0.74), rgba(34, 30, 24, 0.32) 52%, rgba(34, 30, 24, 0.16)),
    linear-gradient(180deg, rgba(34, 30, 24, 0.32), rgba(34, 30, 24, 0.46));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 250, 242, 0.86);
}

h1,
h2,
h3,
blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(50px, 8vw, 100px);
  font-weight: 500;
  line-height: 0.95;
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  background: var(--sage);
  color: var(--shell);
}

.button.primary:hover {
  background: var(--sage-dark);
}

.button.secondary {
  border-color: rgba(255, 250, 242, 0.62);
  color: var(--shell);
}

.button.secondary:hover {
  background: rgba(255, 250, 242, 0.12);
  border-color: var(--shell);
}

.section {
  padding: clamp(76px, 9vw, 124px) clamp(22px, 5vw, 72px);
}

.intro-band {
  background: var(--linen);
}

.intro-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.intro-copy h2,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.intro-copy p:last-child,
.section-heading p:last-child,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.72;
}

.intro-copy p:last-child {
  margin: 22px auto 0;
  max-width: 680px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 16px 0 0;
}

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

.gallery-card {
  position: relative;
  min-height: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #2f2b25;
  color: var(--shell);
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow: var(--shadow);
}

.gallery-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 16, 0.02), rgba(24, 20, 16, 0.62));
}

.gallery-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 178px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 28px;
  text-align: center;
}

.gallery-card-number {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.gallery-card strong {
  display: block;
  margin: 9px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 250, 242, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.84;
  transition: gap 0.25s ease, opacity 0.25s ease;
}

.gallery-card:hover img {
  transform: scale(1.055);
}

.gallery-card:hover .gallery-card-cta {
  gap: 12px;
  opacity: 1;
}

.gallery-card:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 4px;
}

.album-dialog {
  width: min(1420px, calc(100vw - 34px));
  height: min(920px, calc(100dvh - 34px));
  max-width: none;
  max-height: none;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--ink);
}

.album-dialog::backdrop {
  background: rgba(27, 24, 20, 0.74);
  backdrop-filter: blur(18px) saturate(0.76);
}

.album-dialog[open] {
  animation: album-enter 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.album-dialog[open]::backdrop {
  animation: album-backdrop-enter 0.3s ease;
}

.album-shell,
.album-browser,
.photo-viewer,
.album-stage {
  height: 100%;
}

.album-shell {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  background: rgba(251, 248, 242, 0.98);
  box-shadow: 0 28px 90px rgba(8, 7, 6, 0.42);
}

.album-browser {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.album-browser[hidden],
.photo-viewer[hidden] {
  display: none;
}

.album-browser-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  flex: 0 0 auto;
  padding: clamp(34px, 4vw, 56px) clamp(34px, 5vw, 72px) 30px;
  border-bottom: 1px solid rgba(48, 45, 40, 0.1);
  background: rgba(251, 248, 242, 0.96);
}

.album-browser-header .eyebrow {
  margin-bottom: 10px;
}

.album-browser-header h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.92;
}

.album-browser-description {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.album-browser-meta {
  min-width: 210px;
  padding-right: 52px;
  text-align: right;
}

.album-browser-meta p {
  margin: 0;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.album-browser-meta .album-inquiry {
  margin-top: 16px;
}

.album-scroll {
  min-height: 0;
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 20px 34px;
  scrollbar-color: rgba(105, 119, 98, 0.62) transparent;
  scrollbar-width: thin;
}

.album-scroll:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: -5px;
}

.album-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 8px;
  gap: 14px;
}

.album-tile {
  position: relative;
  width: 100%;
  display: block;
  align-self: start;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: #d8d0c4;
  color: var(--shell);
  cursor: zoom-in;
  font: inherit;
  line-height: 0;
  opacity: 0;
  transform: translateY(12px);
}

.album-tile.is-laid-out {
  animation: tile-reveal 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: min(calc(var(--tile-index) * 22ms), 350ms);
}

.album-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 16, 0.02) 50%, rgba(24, 20, 16, 0.62));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.album-tile img {
  height: auto;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.album-tile-label {
  position: absolute;
  right: 15px;
  bottom: 14px;
  left: 15px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.album-tile:hover::after,
.album-tile:focus-visible::after {
  opacity: 1;
}

.album-tile:hover img,
.album-tile:focus-visible img {
  transform: scale(1.025);
}

.album-tile:hover .album-tile-label,
.album-tile:focus-visible .album-tile-label {
  opacity: 1;
  transform: translateY(0);
}

.album-tile:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: -3px;
}

.photo-viewer {
  position: relative;
}

.album-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.7fr);
}

.album-photo-frame {
  position: relative;
  isolation: isolate;
  display: grid;
  min-width: 0;
  min-height: 0;
  margin: 0;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #28251f;
}

.album-photo-frame::before,
.album-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.album-photo-frame::before {
  z-index: -2;
  inset: -30px;
  background-image: var(--album-image);
  background-position: center;
  background-size: cover;
  filter: blur(22px) brightness(0.48) saturate(0.72);
  transform: scale(1.06);
}

.album-photo-frame::after {
  z-index: -1;
  background: rgba(31, 28, 24, 0.28);
}

.album-photo-frame img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(10, 9, 8, 0.2);
  transition: opacity 0.2s ease;
}

.album-photo-frame img.is-changing {
  opacity: 0.35;
}

.album-details {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(42px, 5vw, 72px) clamp(30px, 4vw, 54px) 42px;
  background: var(--linen);
}

.photo-title {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.96;
}

.album-description {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
}

.album-footer {
  display: grid;
  gap: 28px;
}

.album-progress {
  display: grid;
  grid-template-columns: auto minmax(32px, 1fr) auto;
  gap: 12px;
  align-items: center;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.album-progress-line {
  height: 1px;
  background: var(--line);
}

.album-controls {
  display: flex;
  gap: 10px;
}

.album-controls[hidden] {
  display: none;
}

.album-controls button,
.album-close,
.photo-back {
  display: inline-grid;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  place-items: center;
}

.album-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-color: var(--line);
  color: var(--sage);
  font-size: 20px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.album-controls button:hover {
  background: var(--sage);
  color: var(--shell);
  transform: translateY(-1px);
}

.album-controls button:focus-visible,
.album-close:focus-visible,
.photo-back:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}

.album-inquiry {
  width: fit-content;
  margin-top: 0;
}

.album-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-color: rgba(48, 45, 40, 0.2);
  background: rgba(251, 248, 242, 0.82);
  color: var(--ink);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.album-close:hover {
  background: var(--shell);
  transform: rotate(4deg);
}

.album-close span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.album-close span:first-child {
  transform: rotate(45deg);
}

.album-close span:last-child {
  transform: rotate(-45deg);
}

.photo-back {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  grid-auto-flow: column;
  gap: 10px;
  min-height: 44px;
  padding: 0 17px;
  border-color: rgba(255, 250, 242, 0.44);
  border-radius: 999px;
  background: rgba(28, 25, 21, 0.46);
  color: var(--shell);
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.photo-back:hover {
  background: rgba(28, 25, 21, 0.72);
  transform: translateX(-2px);
}

@keyframes album-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tile-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes album-backdrop-enter {
  from {
    background: rgba(27, 24, 20, 0);
    backdrop-filter: blur(0);
  }
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  background: var(--linen);
}

.about-image {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.about-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy {
  max-width: 660px;
}

.about-copy p {
  margin: 22px 0 0;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  background: currentColor;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}

.reviews {
  background: #f8f6ee;
}

.reviews-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.reviews-heading-row .section-heading {
  margin: 0;
  text-align: left;
}

.review-controls {
  display: grid;
  grid-template-columns: auto 48px 48px;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
}

.review-controls[hidden] {
  display: none;
}

.review-position {
  margin: 0 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--shell);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.review-arrow:hover:not(:disabled),
.review-arrow:focus-visible {
  border-color: var(--sage);
  outline: none;
  background: var(--sage);
  color: var(--shell);
}

.review-arrow:disabled {
  cursor: default;
  opacity: 0.35;
}

.review-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: clamp(30px, 5vw, 58px);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-viewport::-webkit-scrollbar {
  display: none;
}

.review-grid {
  display: grid;
  grid-auto-columns: var(--review-card-width, 100%);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 18px;
}

figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--shell);
  padding: clamp(36px, 7vw, 84px);
}

blockquote {
  max-width: 1180px;
  margin: 0;
  color: #3f3932;
  font-size: clamp(28px, 3vw, 42px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

figcaption {
  margin-top: clamp(30px, 4vw, 48px);
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-review,
.submitted-review {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(30px, 4vw, 54px);
  scroll-snap-align: start;
}

.featured-review blockquote,
.submitted-review blockquote {
  margin-top: 18px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 8px;
  font-size: clamp(20px, 1.65vw, 24px);
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
}

.featured-review figcaption,
.submitted-review figcaption {
  margin-top: auto;
  padding-top: 34px;
}

.review-stars {
  margin: 0;
  color: var(--clay);
  font-size: 17px;
  letter-spacing: 0.18em;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 560px);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.session-price {
  display: flex;
  max-width: 520px;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 17px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.session-price span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.session-price strong {
  color: var(--clay);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 48px);
  font-weight: 500;
  line-height: 0.9;
}

.steps {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  align-items: start;
}

.steps span {
  grid-row: span 2;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sage);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
}

.steps strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.steps p {
  margin: 4px 0 0;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--linen);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 14px 44px rgba(45, 35, 25, 0.08);
}

.contact-form h3 {
  margin: 0 0 24px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.contact-form label {
  display: block;
  margin-top: 16px;
  color: #746a5e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--shell);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  letter-spacing: 0;
  outline: none;
  padding: 13px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(105, 119, 98, 0.16);
}

.form-button {
  width: 100%;
  margin-top: 24px;
  border: none;
  cursor: pointer;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-note.is-success {
  color: var(--sage-dark);
  font-weight: 600;
}

.form-note.is-error {
  color: #8a493b;
  font-weight: 600;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: end;
  padding: 58px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #e8dfd1;
}

.site-footer p {
  max-width: 320px;
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-style: italic;
}

.footer-brand span {
  font-size: 28px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .album-dialog {
    width: min(880px, calc(100vw - 24px));
    height: min(980px, calc(100dvh - 24px));
  }

  .album-browser-header {
    grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
    gap: 28px;
    padding: 38px 36px 28px;
  }

  .album-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .album-stage {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .album-details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.5fr);
    align-items: end;
    gap: 30px;
    padding: 32px;
  }

  .photo-title {
    font-size: clamp(44px, 9vw, 70px);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(251, 248, 242, 0.98);
    color: var(--ink);
    padding: 10px 18px 18px;
    box-shadow: 0 14px 36px rgba(45, 35, 25, 0.1);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(48, 45, 40, 0.08);
  }

  .hero {
    min-height: 88vh;
    padding: 118px 20px 70px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(34, 30, 24, 0.52), rgba(34, 30, 24, 0.66)),
      linear-gradient(90deg, rgba(34, 30, 24, 0.44), rgba(34, 30, 24, 0.16));
  }

  .hero-image {
    object-position: 62% 34%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

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

  .reviews-heading-row {
    display: block;
  }

  .review-controls {
    grid-template-columns: 1fr 46px 46px;
    margin-top: 24px;
  }

  .review-arrow {
    width: 46px;
    height: 46px;
  }

  .gallery-card {
    min-height: 430px;
  }

  .album-dialog {
    width: calc(100vw - 12px);
    height: calc(100dvh - 12px);
    border-radius: 3px;
  }

  .album-browser-header {
    display: block;
    padding: 52px 22px 22px;
  }

  .album-browser-header h2 {
    padding-right: 38px;
    font-size: clamp(46px, 15vw, 64px);
  }

  .album-browser-description {
    margin-top: 12px;
    font-size: 15px;
  }

  .album-browser-meta {
    display: flex;
    min-width: 0;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-top: 18px;
    padding-right: 0;
    text-align: left;
  }

  .album-browser-meta .album-inquiry {
    margin-top: 0;
    text-align: right;
  }

  .album-scroll {
    padding: 9px 9px 20px;
  }

  .album-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .album-tile::after {
    opacity: 0.3;
  }

  .album-tile-label {
    right: 10px;
    bottom: 10px;
    left: 10px;
    opacity: 1;
    transform: none;
  }

  .album-tile-label span:last-child {
    display: none;
  }

  .album-stage {
    grid-template-rows: minmax(0, 58%) minmax(0, 42%);
  }

  .album-details {
    display: flex;
    gap: 22px;
    overflow-y: auto;
    padding: 28px 24px 24px;
  }

  .album-details .eyebrow {
    margin-bottom: 10px;
  }

  .photo-title {
    padding-right: 42px;
    font-size: clamp(42px, 15vw, 62px);
  }

  .album-description {
    margin-top: 14px;
    font-size: 15px;
  }

  .album-footer {
    gap: 18px;
  }

  .album-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .photo-back {
    top: 11px;
    left: 11px;
    min-height: 42px;
    padding: 0 14px;
  }

  .steps li {
    grid-template-columns: 46px 1fr;
  }

  .steps span {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .site-footer nav {
    flex-direction: column;
  }
}

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

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