:root {
  color-scheme: light;
  --ink: #242728;
  --ink-soft: #3f4241;
  --muted: #777169;
  --paper: #fbf8f3;
  --pearl: #fffdf9;
  --mist: #eef0ec;
  --champagne: #bd9464;
  --champagne-dark: #967143;
  --sage: #73796f;
  --line: rgba(36, 39, 40, 0.16);
  --line-gold: rgba(189, 148, 100, 0.45);
  --shadow: 0 26px 80px rgba(36, 39, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  background:
    linear-gradient(90deg, transparent 0 calc(50% - 1px), rgba(189, 148, 100, 0.13) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    radial-gradient(circle at 12% 4%, rgba(255, 255, 255, 0.95), transparent 34%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36, 39, 40, 0.1);
  box-shadow: 0 12px 34px rgba(36, 39, 40, 0.07);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  min-width: 0;
}

.brand img {
  height: 44px;
  object-fit: contain;
  object-position: center;
  width: 72px;
}

.brand span {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 30px);
  justify-content: flex-end;
}

nav a {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  align-items: stretch;
  background: var(--paper);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 84svh;
  overflow: hidden;
  padding-top: 76px;
  position: relative;
}

.hero > img {
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  min-height: calc(84svh - 76px);
  object-fit: contain;
  object-position: center;
  padding: clamp(48px, 7vw, 104px);
  width: 100%;
}

.hero-brand-image {
  background: transparent;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(251, 248, 243, 0), rgba(251, 248, 243, 0.18) 50%, rgba(251, 248, 243, 0));
  inset: 76px 0 0;
  pointer-events: none;
  position: absolute;
}

.hero-content {
  align-content: center;
  background: transparent;
  display: grid;
  grid-column: 1;
  grid-row: 1;
  justify-items: start;
  min-height: calc(84svh - 76px);
  padding: clamp(20px, 4vw, 42px) clamp(22px, 6vw, 76px);
  position: relative;
  z-index: 2;
}

.hero-content::before,
.hero-content::after {
  border: 2px solid var(--champagne);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  height: clamp(170px, 24vw, 310px);
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  top: 23%;
  width: clamp(170px, 24vw, 310px);
}

.hero-content::after {
  border-color: var(--ink);
  border-left-color: transparent;
  border-right-color: transparent;
  height: clamp(210px, 28vw, 380px);
  opacity: 0.16;
  right: clamp(-16px, 1vw, 34px);
  top: 18%;
  width: clamp(210px, 28vw, 380px);
}

.eyebrow {
  align-items: center;
  color: var(--champagne-dark);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 14px;
  letter-spacing: 0.22em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow::after {
  background: var(--line-gold);
  content: "";
  display: inline-block;
  height: 1px;
  width: 64px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.1rem, 3.2vw, 2.95rem);
  margin-bottom: 14px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

h2 {
  font-size: clamp(2.35rem, 5.5vw, 5.4rem);
  margin-bottom: 0;
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.3;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 48px;
  padding: 0 20px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--pearl);
}

.button.secondary {
  color: var(--ink);
}

.button:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--pearl);
}

.button.dark {
  background: var(--pearl);
  border-color: var(--pearl);
  color: var(--ink);
  flex: 0 0 auto;
}

.intro-band {
  background: var(--ink);
  color: var(--pearl);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.intro-band > div {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.07), rgba(255, 253, 249, 0.025));
  min-height: 210px;
  padding: clamp(28px, 4vw, 50px);
}

.stat {
  color: var(--champagne);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 18px;
}

.intro-band p {
  color: rgba(255, 253, 249, 0.76);
  max-width: 34ch;
}

.section {
  padding: clamp(72px, 10vw, 138px) clamp(18px, 5vw, 64px);
}

.section-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  margin-bottom: clamp(34px, 6vw, 72px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.section-heading.narrow {
  display: block;
  max-width: 860px;
}

.section-intro {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 14px 0 0;
  max-width: 42rem;
}

.service-list span,
.steps span {
  color: var(--champagne);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--paper), var(--pearl) 58%, var(--paper));
  overflow: hidden;
}

.gallery-groups {
  display: grid;
  gap: clamp(52px, 8vw, 104px);
}

.gallery-group {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr);
}

.gallery-group-heading {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.gallery-group-heading span {
  color: var(--champagne);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.gallery-group-heading h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  margin: 0;
}

.gallery-group-heading p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 12px 0 0;
  max-width: 22ch;
}

.gallery-grid {
  display: grid;
  gap: clamp(10px, 1.5vw, 18px);
  grid-auto-flow: dense;
  grid-auto-rows: clamp(150px, 17vw, 230px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  background: var(--pearl);
  border: 1px solid rgba(36, 39, 40, 0.1);
  box-shadow: 0 18px 54px rgba(36, 39, 40, 0.1);
  cursor: zoom-in;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  filter: saturate(0.92) contrast(1.02);
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
  position: absolute;
  inset: 0;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.035);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 5px;
}

.services {
  background: var(--pearl);
}

.service-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 64px);
}

.service-list article {
  border-right: 1px solid var(--line);
  padding: clamp(24px, 4vw, 42px);
}

.service-list article:last-child {
  border-right: 0;
}

.service-list h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.service-list p,
.process-copy p,
.photographer-copy p,
.inquiry p {
  color: var(--muted);
}

.service-description {
  line-height: 1.65;
  margin: 0 0 24px;
}

.package {
  border-top: 1px solid rgba(36, 39, 40, 0.13);
  display: grid;
  gap: 14px;
  padding-top: 22px;
}

.package + .package {
  margin-top: 30px;
}

.package-heading {
  align-items: baseline;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.package-heading h4 {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.package-heading p,
.package-add-on {
  color: var(--ink);
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
}

.package-time {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.service-list ul {
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.55;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  border-top: 1px solid rgba(36, 39, 40, 0.09);
  padding-top: 10px;
}

.package-note {
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 2px 0 0;
}

.custom-sessions {
  border-top: 1px solid var(--line);
  margin-top: clamp(34px, 5vw, 64px);
  max-width: 760px;
  padding-top: clamp(24px, 4vw, 42px);
}

.custom-sessions h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.custom-sessions p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.photographer {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(251, 248, 243, 0.92)),
    var(--paper);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 0.88fr);
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 64px);
}

.photographer-portrait {
  aspect-ratio: 16 / 11;
  border: 1px solid var(--ink);
  box-shadow: 16px 16px 0 rgba(189, 148, 100, 0.16);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.photographer-portrait::after {
  border: 1px solid var(--line-gold);
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
}

.photographer-portrait img {
  filter: contrast(1.05);
  height: 100%;
  object-fit: cover;
  object-position: 56% 42%;
}

.photographer-copy {
  max-width: 820px;
}

.process {
  align-items: stretch;
  background: linear-gradient(180deg, var(--paper), var(--mist));
  display: grid;
  gap: clamp(26px, 4vw, 54px);
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  padding: clamp(44px, 6vw, 76px) clamp(18px, 5vw, 64px);
}

.process-copy {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  border-top: 1px solid var(--line);
  padding: 24px clamp(18px, 3vw, 34px);
}

.steps li + li {
  border-left: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.inquiry {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(36, 39, 40, 0.96), rgba(63, 66, 65, 0.9)),
    var(--ink);
  color: var(--pearl);
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 0.9fr);
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.inquiry::after {
  border: 1px solid var(--line-gold);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  height: 330px;
  opacity: 0.58;
  position: absolute;
  right: -120px;
  top: -110px;
  width: 330px;
}

.inquiry-copy,
.contact-form {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.inquiry h2 {
  max-width: 10ch;
}

.inquiry p {
  color: rgba(255, 253, 249, 0.76);
  margin-bottom: 0;
}

.inquiry .button {
  position: relative;
  z-index: 1;
}

.contact-form {
  background: rgba(255, 253, 249, 0.06);
  border: 1px solid rgba(255, 253, 249, 0.18);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.form-status {
  border: 1px solid transparent;
  color: rgba(255, 253, 249, 0.8);
  display: none;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  padding: 14px 16px;
}

.form-status:not(:empty) {
  display: block;
}

.form-status[data-status="success"] {
  background: rgba(255, 253, 249, 0.12);
  border-color: rgba(255, 253, 249, 0.28);
  color: var(--pearl);
}

.form-status[data-status="error"] {
  background: rgba(185, 144, 94, 0.16);
  border-color: rgba(255, 217, 166, 0.55);
  color: #ffd9a6;
}

.form-status[data-status="pending"] {
  background: rgba(255, 253, 249, 0.08);
  border-color: rgba(255, 253, 249, 0.18);
}

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

.contact-form label {
  color: rgba(255, 253, 249, 0.78);
  display: grid;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 8px;
  grid-template-rows: auto auto minmax(1.2em, auto);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form label:has(textarea) {
  grid-template-rows: auto auto;
}

.field-label {
  display: inline-flex;
  gap: 4px;
}

.field-label span[aria-hidden="true"] {
  color: var(--champagne);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  min-height: 48px;
  padding: 12px 14px;
  text-transform: none;
  width: 100%;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input[type="date"] {
  cursor: pointer;
  position: relative;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  cursor: pointer;
  height: auto;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: auto;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--champagne);
  outline: 2px solid rgba(185, 144, 94, 0.34);
  outline-offset: 2px;
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: var(--champagne);
  box-shadow: inset 0 0 0 1px var(--champagne);
}

.field-error {
  color: #ffd9a6;
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  min-height: 1.2em;
  text-transform: none;
}

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

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  align-items: center;
  background: rgba(16, 17, 17, 0.92);
  display: grid;
  grid-template-columns: minmax(72px, 0.16fr) minmax(0, 1fr) minmax(72px, 0.16fr);
  inset: 0;
  opacity: 0;
  padding: clamp(18px, 4vw, 42px);
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 80;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  align-self: center;
  display: grid;
  gap: 14px;
  grid-column: 2;
  justify-items: center;
  margin: 0;
  max-height: 92svh;
  min-width: 0;
}

.lightbox-frame img {
  background: #101111;
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.48);
  height: auto;
  max-height: min(78svh, 860px);
  max-width: min(100%, 1180px);
  object-fit: contain;
  width: auto;
}

.lightbox-frame figcaption {
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  max-width: min(680px, 100%);
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  background: rgba(255, 253, 249, 0.1);
  border: 1px solid rgba(255, 253, 249, 0.32);
  color: var(--pearl);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  min-height: 44px;
  padding: 0 16px;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  top: clamp(18px, 4vw, 42px);
}

.lightbox-prev {
  grid-column: 1;
  justify-self: start;
}

.lightbox-next {
  grid-column: 3;
  justify-self: end;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: var(--champagne);
  border-color: var(--champagne);
  outline: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    position: absolute;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 128px;
  }

  .hero > img {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
    min-height: 0;
    order: 0;
    padding: 42px clamp(58px, 15vw, 108px);
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    padding-top: clamp(34px, 7vw, 58px);
  }

  h1 {
    font-size: clamp(2.7rem, 8vw, 3.65rem);
    max-width: 650px;
  }

  .intro-band,
  .service-list,
  .photographer,
  .gallery-group,
  .gallery-grid,
  .steps,
  .inquiry,
  .form-row,
  .process {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .service-list article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
  }

  .photographer-portrait {
    max-width: 520px;
  }

  .gallery-grid {
    grid-auto-rows: clamp(220px, 44vw, 360px);
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .steps li + li {
    border-left: 0;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    padding: 18px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-frame img {
    max-height: 72svh;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
    justify-self: stretch;
  }

  .lightbox-prev {
    grid-column: 1;
  }

  .lightbox-next {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 120px;
  }

  .brand img {
    height: 42px;
    width: 68px;
  }

  .brand span {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
  }

  nav {
    gap: 12px 16px;
  }

  nav a {
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-content {
    padding-inline: 18px;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .eyebrow::after {
    width: 36px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 2.55rem);
  }

  .hero > img {
    height: 230px;
    min-height: 0;
    padding: 34px 68px;
  }

}
