:root {
  color-scheme: light;
  --ink: #273238;
  --muted: #61706e;
  --paper: #fffdf9;
  --white: #ffffff;
  --sage: #6f8878;
  --sage-dark: #405c4c;
  --lavender: #c9b8d9;
  --lavender-soft: #f2edf5;
  --rose: #a55f6d;
  --blue: #e5f0f4;
  --line: #dedbd4;
  --shadow: 0 18px 45px rgba(44, 54, 50, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

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

h1,
h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 4.6rem;
  line-height: 0.98;
}

h2 {
  font-size: 2.65rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 95px;
  padding: 0.6rem max(1rem, calc((100vw - 1260px) / 2));
  border-bottom: 1px solid rgba(222, 219, 212, 0.8);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 87px;
  height: 75px;
  border-radius: 4px;
  object-fit: cover;
}

.brand span {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.575rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 0.72rem 0.62rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--lavender);
  color: var(--sage-dark);
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.hero {
  display: grid;
  min-height: calc(100svh - 95px);
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  background: var(--white);
}

.hero-media {
  display: grid;
  min-height: 0;
  place-items: center;
  background: #dceee5;
  padding: 2.5rem;
}

.hero-media-inner {
  position: relative;
  width: min(66%, 520px);
}

.hero-media-inner img {
  width: 100%;
  max-height: calc(100svh - 150px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.hero-image-note {
  position: absolute;
  right: 50%;
  bottom: 1.35rem;
  min-width: 174px;
  transform: translateX(50%);
  border: 1px solid rgba(222, 219, 212, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-style: italic;
  padding: 0.55rem 1rem;
  text-align: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem clamp(2.5rem, 6vw, 7rem);
}

.hero-copy h1 {
  max-width: none;
  margin-bottom: 0.85rem;
  color: var(--sage-dark);
  font-size: 3rem;
  line-height: 1.08;
}

.hero-copy .lede {
  max-width: 38rem;
  margin-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 38rem);
  margin: 1.35rem 0;
  border-top: 2px solid rgba(111, 136, 120, 0.65);
  border-bottom: 2px solid rgba(111, 136, 120, 0.65);
  padding: 1rem 0;
}

.hero-stats div {
  text-align: center;
}

.hero-stats div + div {
  border-left: 1px solid var(--line);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1.05;
}

.hero-stats span {
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .button-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede {
  max-width: 48rem;
  color: #465653;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.55;
}

.small-note {
  max-width: 38rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  padding: 0.78rem 1.05rem;
  text-align: center;
  text-decoration: none;
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: #304939;
}

.button--quiet {
  border-color: var(--line);
  background: var(--white);
  color: var(--sage-dark);
}

.button--quiet:hover,
.button--quiet:focus-visible {
  border-color: var(--sage);
}

.text-link {
  display: inline-flex;
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration-color: var(--lavender);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24em;
}

main > section:not(.hero):not(.disclosure) {
  padding: 5.5rem 1rem;
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(100%, 820px);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2.2rem;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.band {
  background: var(--blue);
}

.band--soft {
  background: #f6f3ef;
}

.feature-split,
.wedding-split,
.content-columns,
.request-panel,
.story-layout,
.news-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 4.5rem;
  align-items: center;
}

.feature-photo {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.feature-photo--full {
  width: min(100%, 392px);
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  justify-self: center;
  object-fit: contain;
}

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

.quote-card {
  margin: 0;
  border-top: 3px solid var(--lavender);
  background: var(--white);
  padding: 1.25rem;
}

.quote-card blockquote {
  margin-bottom: 1rem;
  color: #485552;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
}

.quote-card figcaption {
  color: var(--rose);
  font-size: 0.85rem;
  font-weight: 850;
}

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

.detail-grid article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.2rem;
}

.detail-grid article:nth-child(3n + 1) {
  border-top-color: var(--sage);
}

.detail-grid article:nth-child(3n + 2) {
  border-top-color: var(--lavender);
}

.detail-grid article:nth-child(3n) {
  border-top-color: var(--rose);
}

.detail-grid p,
.size-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-actions {
  margin-top: 1.5rem;
}

.wedding-photos {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0.75rem;
  align-items: end;
}

.wedding-photos img {
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
  background: #20283b;
  object-fit: contain;
}

.wedding-photos img:last-child {
  height: 360px;
}

.disclosure {
  padding: 1.3rem 1rem;
  border-top: 1px solid #d7cde0;
  border-bottom: 1px solid #d7cde0;
  background: var(--lavender-soft);
}

.disclosure-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.disclosure strong {
  color: var(--sage-dark);
}

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

.news-strip h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 2rem;
}

.news-strip > .button,
.news-strip > .button-row {
  justify-self: end;
}

.photo-grid {
  columns: 4 230px;
  column-gap: 0.75rem;
}

.photo {
  display: block;
  width: 100%;
  margin: 0 0 0.75rem;
  break-inside: avoid;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #ece9e4;
  cursor: zoom-in;
  padding: 0;
}

.photo img {
  width: 100%;
  height: auto;
  transition: transform 180ms ease;
}

.photo:hover img,
.photo:focus-visible img {
  transform: scale(1.018);
}

.photo:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
}

.gallery-more {
  margin-top: 1.25rem;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, var(--lavender-soft), var(--paper) 60%, var(--blue));
}

.page-hero h1 {
  max-width: 16ch;
  color: var(--sage-dark);
}

.page-hero--photo {
  background: #f7f4ef;
}

.page-hero--photo .feature-photo {
  max-height: 430px;
  object-position: center 35%;
}

.notice-text {
  margin: 1.25rem 0;
  border-left: 4px solid var(--lavender);
  background: var(--white);
  color: var(--muted);
  padding: 1rem 1.1rem;
}

.notice-text p:last-child {
  margin-bottom: 0;
}

.size-list {
  display: grid;
  gap: 0.65rem;
}

.size-list article {
  border-left: 4px solid var(--sage);
  background: var(--white);
  padding: 1rem;
}

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

.size-list--large article {
  min-height: 145px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--sage);
  content: "\2713";
  font-weight: 900;
}

.request-panel {
  grid-template-columns: minmax(0, 1fr) auto;
}

.story-tag {
  margin: 1.4rem 0;
  border-left: 4px solid var(--lavender);
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  padding-left: 1.1rem;
}

.story-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.story-copy > section {
  margin-bottom: 3rem;
}

.story-copy h2 {
  font-size: 2rem;
}

.story-copy p {
  color: #465653;
  font-size: 1.06rem;
}

.story-aside {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.story-aside img {
  width: 100%;
  max-height: 480px;
  border-radius: var(--radius);
  object-fit: cover;
}

.story-aside strong {
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2.5rem max(1rem, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.site-footer strong {
  color: var(--ink);
}

.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-brand img {
  width: 58px;
  height: 50px;
  border-radius: 4px;
  object-fit: cover;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.site-footer a {
  overflow-wrap: anywhere;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.lightbox {
  width: min(92vw, 1000px);
  max-height: 92vh;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0.8rem;
}

.lightbox::backdrop {
  background: rgba(20, 26, 24, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox p {
  margin: 0.7rem 3.2rem 0 0;
  color: var(--muted);
}

.lightbox button {
  position: sticky;
  top: 0;
  z-index: 1;
  float: right;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.noscript {
  margin: 2rem auto;
  max-width: 720px;
  padding: 1rem;
}

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

  h2 {
    font-size: 2.3rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0.5rem;
  }

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

  .site-nav a {
    border-bottom: 0;
    border-left: 3px solid transparent;
    padding: 0.8rem;
  }

  .site-nav a[aria-current="page"] {
    border-left-color: var(--lavender);
    background: var(--lavender-soft);
  }

  .hero-copy {
    padding: 2.5rem 2rem;
  }

  .feature-split,
  .wedding-split,
  .content-columns,
  .request-panel,
  .story-layout,
  .news-strip {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .news-strip > .button,
  .news-strip > .button-row {
    justify-self: start;
  }

  .story-aside {
    position: static;
    max-width: 440px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
    padding: 1.5rem;
  }

  .hero-media-inner {
    width: min(76%, 440px);
  }

  .hero-media-inner img {
    max-height: 540px;
  }

  .hero-copy {
    padding: 3rem 1.4rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .site-header {
    min-height: 83px;
    padding-inline: 0.8rem;
  }

  .brand img {
    width: 72px;
    height: 63px;
  }

  .brand strong {
    font-size: 1.38rem;
  }

  .brand small {
    display: none;
  }

  .hero-media-inner {
    width: min(88%, 390px);
  }

  .hero-media-inner img {
    max-height: 430px;
  }

  .hero-copy {
    padding: 2.5rem 1rem 3rem;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .lede {
    font-size: 1.12rem;
  }

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

  main > section:not(.hero):not(.disclosure) {
    padding: 3.8rem 0.9rem;
  }

  .quote-grid,
  .detail-grid,
  .size-list--large {
    grid-template-columns: 1fr;
  }

  .wedding-photos {
    grid-template-columns: 1fr 1fr;
  }

  .wedding-photos img,
  .wedding-photos img:last-child {
    height: 300px;
  }

  .disclosure-inner {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .photo-grid {
    columns: 2 140px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 1rem;
  }

  .footer-note {
    grid-column: 1;
  }
}

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

  .photo img {
    transition: none;
  }
}
