@font-face {
  font-family: NotoDevanagari;
  src: url("assets/fonts/noto-sans-devanagari.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url("assets/fonts/cormorant-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url("assets/fonts/cormorant-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
:root {
  --pine: #174650;
  --mist: #edf2eb;
  --white: #fbfbf7;
  --rose: #9b2352;
  --gold: #b78b3c;
  --muted: #405e57;
  --line: #b5c8b9;
  --serif: Cormorant, Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  color: var(--pine);
  background: var(--mist);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-tap-highlight-color: rgba(190, 171, 119, 0.2);
}
body:has(dialog[open]) {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
  color: inherit;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
}
a,
button,
summary,
input {
  outline-offset: 5px;
}
:focus-visible {
  outline: 2px solid var(--rose);
}
.hero :focus-visible,
.site-header :focus-visible,
.photo-dialog :focus-visible {
  outline-color: #fff;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
::selection {
  color: var(--white);
  background: var(--rose);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
h2 {
  font-size: 68px;
}
p {
  text-wrap: pretty;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1120px, calc(100% - 300px));
  margin-inline: auto;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-button {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}
.icon-button:hover {
  background: rgba(116, 153, 140, 0.15);
  border-color: currentColor;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 14px;
  transition:
    background-color 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.dark {
  background: var(--pine);
  color: var(--white);
}
.button.dark:hover {
  background: #245854;
}
.button.light {
  background: var(--white);
  color: var(--pine);
}
.button.light:hover {
  background: #dce7e0;
}
.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  min-height: 44px;
  padding: 5px 0;
  border-bottom: 1px solid currentColor;
}
.text-link:hover,
.text-button:hover {
  color: var(--rose);
}
.handwritten {
  font-family: var(--serif);
  font-style: italic;
  font-size: 29px;
  line-height: 1.25;
  color: var(--rose);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  transform: translateY(-180%);
  z-index: 50;
  background: var(--white);
  padding: 12px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 96px;
  padding: 16px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  z-index: 5;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 84px;
  height: 70px;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px #17465070);
}
.brand:hover img {
  filter: brightness(1.08) drop-shadow(0 1px 2px #17465070);
}
.site-header nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
}
.site-header nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}
.site-header nav a:hover {
  border-color: #fff;
}
.share-nav {
  border-color: #ffffff70;
}
.hero {
  position: relative;
  height: calc(100svh - 80px);
  min-height: 0;
  max-height: 1100px;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  background: #386c82;
}
.hero-picture,
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: scale(1.035);
  will-change: transform;
}
.hero-wash {
  z-index: -1;
  background:
    linear-gradient(to top, #071d20d9, #071d2099 115px, transparent 230px),
    rgba(9, 36, 45, 0.18);
}
.hero-copy {
  position: absolute;
  top: 18%;
  left: 24px;
  right: 24px;
  text-align: center;
  text-shadow: 0 2px 18px #12323a28;
}
.hero-prelude {
  font-family: var(--serif);
  font-style: italic;
  font-size: 29px;
  margin-top: 18px;
}
.hero h1 {
  font-size: 128px;
  line-height: 1.05;
  outline-offset: 12px;
}
.hero h1 em {
  font-size: 90px;
  margin-inline: 10px;
}
.hero-date {
  margin-top: 8px;
  font-size: 17px;
}
.hero-bottom {
  position: absolute;
  bottom: 35px;
  left: 56px;
  right: 56px;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: end;
  font-size: 15px;
  text-shadow: 0 1px 10px #102424;
}
.hero-bottom p span {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}
.hero-bottom-note {
  text-align: right;
  font-size: 17px;
  line-height: 1.65;
  text-wrap: balance;
}
.scroll-cue {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 48px;
  height: 62px;
  border: 1px solid #ffffff90;
  border-radius: 40px;
  transition: background 0.2s;
}
.scroll-cue:hover {
  background: #ffffff24;
}
.hero.is-entering .hero-copy {
  animation: hero-arrive 1.4s var(--ease) both;
}
@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.opening {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--pine);
}
.opening::backdrop {
  background: transparent;
}
.opening[open] {
  display: grid;
  place-items: safe center;
}
.opening-door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.2%;
  background: var(--mist);
  transition: transform 1.2s var(--ease);
}
.opening-door:after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid #bca77d6b;
  pointer-events: none;
}
.door-left {
  left: 0;
}
.door-right {
  right: 0;
}
.door-left:after {
  border-right: 0;
  right: 0;
  border-top-left-radius: 75% 36%;
}
.door-right:after {
  border-left: 0;
  left: 0;
  border-top-right-radius: 75% 36%;
}
.door-peacock {
  position: absolute;
  bottom: 5%;
  width: clamp(100px, calc(50vw - 280px), 330px);
  mix-blend-mode: multiply;
}
.door-left .door-peacock {
  left: 32px;
  transform: scaleX(-1);
}
.door-right .door-peacock {
  right: 32px;
}
.opening-content {
  position: relative;
  width: min(520px, 100%);
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  transition:
    opacity 0.3s,
    transform 0.5s var(--ease);
}
.opening-blessing {
  font-family: Georgia, "Kohinoor Devanagari", serif;
  font-size: 18px;
  color: #785823;
  margin-bottom: 14px;
}
.opening-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
}
.opening-logo {
  width: 360px;
  max-height: 44svh;
  object-fit: contain;
  mix-blend-mode: darken;
  margin: 4px 0;
}
.opening-date {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 22px;
}
.opening-location {
  font-size: 12px;
  margin-top: 14px;
}
.opening.leaving .opening-content {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.opening.leaving .door-left {
  transform: translateX(-100%);
}
.opening.leaving .door-right {
  transform: translateX(100%);
}
.letter {
  position: relative;
  padding: 80px 32px 110px;
  text-align: center;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}
.letter-inner {
  max-width: 640px;
  position: relative;
  margin: auto;
}
.botanical {
  position: absolute;
  top: 100px;
  height: 490px;
  width: 164px;
  background: url("assets/royal-vine.webp") center / contain no-repeat;
  pointer-events: none;
  opacity: 0.95;
  mix-blend-mode: multiply;
  transform-origin: 50% 100%;
  animation: stem-sway 9s ease-in-out infinite alternate;
}
.botanical-left {
  left: -24px;
}
.botanical-right {
  right: -24px;
  scale: -1 1;
  animation-delay: -3s;
}
.blessing {
  font-family: Georgia, "Kohinoor Devanagari", serif;
  font-size: 18px;
  color: #785823;
}
.letter-monogram {
  width: 170px;
  margin: -4px auto -18px;
  mix-blend-mode: darken;
}
.letter .handwritten {
  margin: 0 0 22px;
}
.letter h2 {
  font-size: 64px;
}
.letter-text {
  max-width: 510px;
  margin: 28px auto;
  color: var(--muted);
  line-height: 1.95;
}
.families {
  font-size: 13px;
  line-height: 1.8;
  margin: 32px 0 26px;
}
.families strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}
.letter .text-button {
  font-size: 12px;
}
.venue {
  padding: 94px 0 58px;
  background: transparent;
}
.venue-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 42px;
  gap: 36px;
}
.venue-heading h2 {
  font-size: 104px;
  margin-top: 6px;
}
.venue-heading > div {
  min-width: 0;
}
.venue-heading > div:first-child {
  flex-shrink: 0;
  max-width: 100%;
}
.venue-intro {
  padding-bottom: 5px;
  color: var(--muted);
}
.gallery-stage {
  position: relative;
  aspect-ratio: 2/1;
  max-height: 790px;
  background: #dbe4dd;
  overflow: hidden;
  isolation: isolate;
  touch-action: pan-y pinch-zoom;
  outline-offset: -5px;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}
.gallery-slide[data-slide="interiors"] img {
  object-position: center 55%;
}
.gallery-slide[data-slide="evening"] img {
  object-position: center 54%;
}
.gallery-expand {
  position: absolute;
  top: 24px;
  right: 32px;
  background: var(--white);
  color: var(--pine);
  box-shadow: 0 2px 16px #12332922;
}
.gallery-arrows {
  position: absolute;
  left: 32px;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.gallery-arrows button {
  pointer-events: auto;
  background: var(--white);
  box-shadow: 0 2px 16px #12332922;
}
.gallery-arrows button:hover,
.gallery-expand:hover {
  background: var(--mist);
}
.gallery-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  border-bottom: 1px solid var(--line);
}
.gallery-selectors {
  display: flex;
  gap: 34px;
}
.gallery-selectors button {
  position: relative;
  min-height: 58px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 2px solid transparent;
}
.gallery-selectors button[aria-pressed="true"] {
  color: var(--pine);
  border-color: var(--pine);
}
.gallery-selectors button:hover {
  color: var(--rose);
}
#gallery-count {
  font-size: 12px;
  min-width: 35px;
}
.venue-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 34px;
  color: var(--muted);
  font-size: 14px;
}
.venue-note .text-link {
  flex-shrink: 0;
  color: var(--pine);
}
.airports {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.airports h3 {
  color: var(--rose);
  font-size: 42px;
}
.airports-intro {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
}
.airport-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}
.airport-list > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-block: 22px 8px;
  border-top: 1px solid var(--line);
  min-width: 0;
}
.airport-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  width: 100%;
}
.airport-heading h4 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
.airport-code {
  font-family: Manrope, Arial, sans-serif;
  font-size: 15px;
  color: var(--rose);
}
.airport-name {
  flex: 1;
  margin: 6px 0 18px;
  color: var(--muted);
  font-size: 16px;
}
html:lang(hi) .airports h3 {
  font-size: 30px;
}
html:lang(hi) .airport-heading h4 {
  font-size: 26px;
}
html:lang(hi) .airports-intro,
html:lang(hi) .airport-name {
  font-size: 18px;
}
@media (max-width: 760px) {
  .airport-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .airports h3 {
    font-size: 36px;
  }
  html:lang(hi) .airports h3 {
    font-size: 28px;
  }
}
.dates-section {
  background: transparent;
  color: var(--pine);
  padding: 96px 0 42px;
}
.dates-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 100px;
  align-items: center;
}
.dates-copy .handwritten {
  color: var(--rose);
  margin-bottom: 20px;
}
.dates-copy h2 {
  font-size: 80px;
  color: var(--rose);
}
.date-range {
  font-family: var(--serif);
  font-size: 32px;
  margin-top: 28px;
}
.dates-note {
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 28px;
}
.calendar {
  align-self: center;
  border-block: 1px solid var(--gold);
  padding-block: 24px;
}
.calendar-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--serif);
  font-size: 42px;
  margin-bottom: 24px;
}
.calendar-title span:last-child {
  font-size: 27px;
  color: var(--muted);
}
.calendar table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
}
.calendar th {
  height: 44px;
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
}
.calendar td {
  height: 68px;
  font-family: var(--serif);
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}
.calendar tbody tr {
  border-top: 1px solid var(--line);
}
.calendar td.celebration {
  background: var(--rose);
  color: #fff;
}
.calendar td.start {
  border-radius: 40px 0 0 40px;
}
.calendar td.end {
  border-radius: 0 40px 40px 0;
}
.celebration button {
  width: 100%;
  height: 100%;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}
.celebration button:hover {
  background: #f6f1e3;
  color: var(--rose);
}
.celebration button:focus-visible {
  background: var(--pine);
  color: #fff;
  outline-color: #fff;
  outline-offset: -5px;
}
.calendar-legend {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  color: var(--rose);
}
.calendar-legend .icon {
  width: 17px;
  height: 17px;
}
.countdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 78px;
  padding-top: 28px;
}
.countdown-row > p {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--pine);
}
.countdown {
  display: flex;
  gap: 38px;
  font-variant-numeric: tabular-nums;
}
.countdown > span {
  display: flex;
  gap: 7px;
  align-items: baseline;
  min-width: 86px;
}
.countdown strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
}
.countdown small {
  font-size: 10px;
  color: var(--muted);
}
.guest-note {
  padding-block: 110px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}
.guest-heading .handwritten {
  margin-bottom: 20px;
}
.guest-heading h2 {
  font-size: 62px;
}
.guest-heading > p:last-child {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}
.questions {
  padding-top: 8px;
}
.questions details {
  border-bottom: 1px solid var(--line);
}
.questions details:first-child {
  border-top: 1px solid var(--line);
}
.questions summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  padding: 25px 0;
  font-size: 15px;
}
.questions summary::-webkit-details-marker {
  display: none;
}
.questions summary:hover {
  color: var(--rose);
}
.questions summary .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.questions details[open] summary .icon {
  transform: rotate(180deg);
}
.answer {
  padding: 0 34px 26px 0;
  color: var(--muted);
  font-size: 14px;
}
.answer .text-link {
  margin-top: 10px;
  color: var(--pine);
  font-size: 12px;
}
.closing {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: transparent;
  padding: 84px 24px 38px;
  isolation: isolate;
}
.closing .botanical {
  top: 80px;
}
.closing-inner {
  position: relative;
  z-index: 1;
}
.closing h2 {
  font-size: 92px;
  margin-top: 22px;
}
.closing-inner > p:not(.handwritten) {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 22px;
}
.closing .button {
  margin-top: 26px;
}
.closing-inner > .closing-family {
  font-family: var(--serif);
  font-size: 25px !important;
  margin-top: 32px !important;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 100px;
  color: var(--muted);
  font-size: 11px;
}
.footer > div {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer .text-button {
  font-size: 11px;
  border: 0;
}
.footer .icon {
  width: 16px;
  height: 16px;
}
.footer > a:hover {
  text-decoration: underline;
}
.mobile-actions {
  display: none;
}
.mobile-actions :focus-visible {
  outline-color: #fff;
  outline-offset: 2px;
}
dialog:not(.opening) {
  border: 0;
  color: var(--pine);
  padding: 0;
  max-height: calc(100dvh - 40px);
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: rgba(13, 32, 29, 0.72);
}
.sheet {
  width: min(490px, calc(100% - 32px));
  border-radius: 8px;
  background: var(--white);
}
.sheet-content {
  position: relative;
  padding: 52px 34px 28px;
  text-align: center;
}
.close-dialog {
  position: absolute;
  top: 9px;
  right: 9px;
}
.sheet-icon {
  width: 28px;
  height: 28px;
  color: var(--rose);
  margin-bottom: 22px;
}
.sheet h2 {
  font-size: 47px;
  line-height: 1.05;
}
.sheet h2 + p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.8;
}
.sheet-options {
  display: grid;
  margin-top: 28px;
  text-align: left;
}
.option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 60px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  font-size: 13px;
  text-align: left;
}
.option:hover {
  color: var(--rose);
}
.option:last-child {
  border-bottom: 1px solid var(--line);
}
.sheet-footnote {
  margin-top: 22px;
  font-size: 12px;
  color: var(--muted);
  min-height: 21px;
}
#copy-fallback {
  margin-top: 20px;
  text-align: left;
  font-size: 12px;
}
#invitation-url {
  display: block;
  font-size: 16px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px;
  width: 100%;
  margin-top: 6px;
}
.keepsake-dialog {
  width: min(600px, calc(100% - 32px));
  padding: 18px 24px 24px !important;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}
.keepsake-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
}
.keepsake-top h2 {
  font-size: 30px;
}
.keepsake-dialog > img {
  max-height: 70svh;
  max-width: 100%;
  width: auto;
  margin: auto;
  object-fit: contain;
}
.keepsake-dialog > .button {
  margin-top: 20px;
}
.photo-dialog {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none !important;
  background: #102b29;
}
.photo-dialog[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 30px 16px;
}
.photo-dialog > img {
  width: 100%;
  min-height: 0;
  flex: 1;
  object-fit: contain;
}
.photo-close {
  position: absolute;
  right: 18px;
  top: 10px;
  color: var(--white);
}
.photo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--white);
  min-height: 70px;
  font-size: 13px;
  flex-shrink: 0;
}
.photo-controls p {
  min-width: 180px;
  text-align: center;
}
.noscript-note {
  padding: 24px;
  text-align: center;
  text-decoration: underline;
}
.opening-motion {
  position: absolute;
  top: max(20px, env(safe-area-inset-top));
  right: max(20px, env(safe-area-inset-right));
  background: var(--mist);
  z-index: 3;
}
.motion-dock {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9;
  background: var(--mist);
  border-color: #b8b991;
  box-shadow: 0 3px 16px #164b4b18;
}
.motion-dock:hover {
  background: #f8e3e7;
}
.music-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  min-width: 148px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--pine);
  background: var(--mist);
  border: 1px solid #b8b991;
  border-radius: 4px;
}
.music-toggle[aria-pressed="true"] {
  color: var(--rose);
  border-color: currentColor;
}
.music-toggle:hover {
  background: #f8e3e7;
}
.opening-music {
  margin-top: 12px;
}
.music-dock {
  position: fixed;
  right: 84px;
  bottom: 20px;
  z-index: 9;
  box-shadow: 0 3px 16px #164b4b18;
}
.music-credit {
  flex-basis: 100%;
  padding-bottom: 20px;
  font-size: 12px;
  line-height: 1.8;
}
.music-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 760px) {
  .music-dock {
    right: 76px;
    bottom: max(18px, env(safe-area-inset-bottom));
  }
  body:has(.mobile-actions.is-visible) .music-dock {
    display: none;
  }
  .mobile-actions .mobile-music {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 420px) {
  .mobile-actions .mobile-share span {
    display: none;
  }
  .mobile-actions .mobile-share {
    width: 44px;
    flex: 0 0 44px;
  }
}
.venue:before,
.dates-section:before,
.guest-section:before,
.closing:before {
  content: "";
  position: absolute;
  top: -60px;
  left: calc(50% - 30px);
  width: 60px;
  height: 180px;
  background: url("assets/royal-vine.webp") center / contain no-repeat;
  transform: rotate(90deg);
  mix-blend-mode: multiply;
  opacity: 1;
  pointer-events: none;
}
.letter-garden {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.garden-peacock {
  position: absolute;
  bottom: 55px;
  width: min(22%, 330px);
}
.peacock-left {
  left: 2%;
  transform: scaleX(-1);
}
.peacock-right {
  right: 2%;
}
.letter-garden .garden-flourish {
  display: none;
}
.closing-garden {
  position: relative;
  max-width: 1280px;
  margin: 28px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  mix-blend-mode: multiply;
}
.garden-leopard {
  width: 42%;
}
.leopard-right {
  transform: scaleX(-1);
}
.garden-flourish {
  align-self: center;
  width: 80px;
  height: 190px;
  background: url("assets/royal-vine.webp") center / contain no-repeat;
  transform-origin: 50% 100%;
  animation: stem-sway 8s ease-in-out -4s infinite alternate;
}
.petal-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.petal {
  position: absolute;
  top: -24px;
  left: var(--left);
  width: 12px;
  height: 18px;
  border-radius: 80% 0 70% 30%;
  background: #c03872;
  opacity: 0;
  animation: petal-fall var(--duration) linear var(--delay) infinite;
}
.petal:nth-child(even) {
  background: #b48838;
  width: 8px;
  height: 13px;
}
[data-living]:not(.is-in-view)
  :is(
    .petal,
    .botanical,
    .garden-flourish,
    .garden-bloom,
    .scroll-cue .icon,
    .door-vine,
    .gallery-slide img
  ),
body.page-hidden
  :is(
    .petal,
    .botanical,
    .garden-flourish,
    .garden-bloom,
    .scroll-cue .icon,
    .door-vine,
    .gallery-slide img
  ),
body:has(dialog[open])
  main
  :is(
    .petal,
    .botanical,
    .garden-flourish,
    .garden-bloom,
    .scroll-cue .icon,
    .gallery-slide img
  ) {
  animation-play-state: paused;
}
.scroll-cue .icon {
  animation: scroll-invitation 2.8s ease-in-out infinite;
}
/* One painted garden connects every chapter of the invitation. */
.venue,
.dates-section,
.guest-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.venue > .wrap,
.dates-section > .wrap,
.guest-section > .wrap {
  position: relative;
  z-index: 1;
}
main > section:not(.hero) {
  background: var(--mist);
  border-inline: 1px solid #b78b3c55;
  margin-inline: 24px;
}
.venue-heading h2,
.guest-heading h2 {
  color: #235972;
}
.letter h2,
.closing h2 {
  color: var(--rose);
}
.dates-copy .button.light {
  background: var(--pine);
  color: #fff;
}
.dates-copy .button.light:hover {
  background: #235972;
}
.button.dark {
  border: 1px solid #b78b3c99;
}
.header-actions,
.language-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-actions {
  gap: 18px;
}
.language-trigger {
  min-height: 46px;
  padding: 8px 0;
  font-size: 14px;
  white-space: nowrap;
}
.language-trigger:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.language-trigger .icon {
  width: 18px;
  height: 18px;
}
.language-sheet .language-options {
  margin-top: 32px;
}
.language-sheet #language-dialog-title {
  font-size: 32px;
  line-height: 1.6;
}
.language-sheet #language-dialog-title [lang="hi"] {
  font-size: 26px;
}
.language-sheet .sheet-content {
  padding-bottom: 48px;
}
.door-vine {
  position: absolute;
  top: 4%;
  height: 62%;
  width: min(150px, 25%);
  background: url("assets/royal-vine.webp") center / contain no-repeat;
  mix-blend-mode: multiply;
  transform-origin: center bottom;
  animation: stem-sway 10s ease-in-out infinite alternate;
}
.door-left .door-vine {
  left: 6%;
}
.door-right .door-vine {
  right: 6%;
  scale: -1 1;
  animation-delay: -5s;
}
.gallery-stage {
  width: min(1320px, calc(100% - 300px));
  margin-inline: auto;
  border: 1px solid var(--gold);
}
.gallery-slide img {
  animation: palace-drift 18s ease-in-out infinite alternate;
}
.gallery-slide:not(.is-active) img {
  animation-play-state: paused;
}
.gallery-slide[data-slide="interiors"] img {
  animation-direction: alternate-reverse;
}
.sheet[open],
.keepsake-dialog[open] {
  animation: invitation-unfold 0.45s var(--ease) both;
}
.sheet[open]::backdrop,
.keepsake-dialog[open]::backdrop {
  animation: backdrop-arrive 0.35s ease-out both;
}
dialog.sheet {
  border: 1px solid var(--gold);
  background: var(--mist);
}
@media (min-width: 1100px) and (min-height: 800px) {
  .opening .opening-logo {
    max-height: 42svh;
    width: 380px;
  }
}
.questions details[open] .answer {
  animation: answer-arrive 0.35s var(--ease) both;
}
.garden-bloom.is-bloomed {
  animation: garden-bloom 1.8s var(--ease) both;
}
@keyframes garden-bloom {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes palace-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
@keyframes invitation-unfold {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes backdrop-arrive {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes answer-arrive {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes stem-sway {
  from {
    transform: rotate(-2deg) translateY(0);
  }
  to {
    transform: rotate(2deg) translateY(8px);
  }
}
@keyframes petal-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0);
  }
  12% {
    opacity: 0.55;
  }
  80% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift), var(--fall), 0) rotate(210deg);
  }
}
@keyframes scroll-invitation {
  0%,
  100% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(5px);
  }
}
body.motion-paused *,
body.motion-paused *:before,
body.motion-paused *:after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
body.motion-paused .hero-picture img {
  transform: none !important;
}
html:has(body.motion-paused) {
  scroll-behavior: auto;
}
body.motion-paused .petal-field {
  display: none;
}
@media (min-width: 1800px) {
  .hero h1 {
    font-size: 152px;
  }
  .hero-copy {
    top: 20%;
  }
  .wrap {
    width: min(1320px, calc(100% - 240px));
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 200px);
  }
  .hero h1 {
    font-size: 100px;
  }
  .hero h1 em {
    font-size: 70px;
  }
  .site-header {
    padding-inline: 36px;
  }
  .hero-bottom {
    left: 36px;
    right: 36px;
  }
  .dates-layout {
    gap: 60px;
  }
  .guest-note {
    gap: 60px;
  }
  .botanical {
    width: 100px;
  }
  .botanical-left {
    left: -28px;
  }
  .botanical-right {
    right: -28px;
  }
  .letter-inner {
    max-width: 670px;
  }
  .letter-garden {
    position: relative;
    inset: auto;
    width: min(560px, 100%);
    height: 300px;
    margin: 38px auto -56px;
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .garden-peacock {
    position: static;
    width: 42%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
  }
  .letter-garden .garden-flourish {
    display: block;
    height: 130px;
    width: 50px;
  }
  .letter h2 {
    font-size: 58px;
  }
  .countdown {
    gap: 18px;
  }
  .countdown > span {
    min-width: 70px;
  }
  .footer {
    flex-wrap: wrap;
    padding-block: 20px;
  }
}
@media (max-width: 760px) {
  .venue:before,
  .dates-section:before,
  .guest-section:before,
  .closing:before {
    top: -44px;
    left: calc(50% - 22px);
    width: 44px;
    height: 132px;
  }
  main > section:not(.hero) {
    margin-inline: 10px;
  }
  .header-actions {
    gap: 14px;
  }
  .language-trigger {
    gap: 7px;
    font-size: 13px;
  }
  .header-actions .language-trigger .icon {
    display: none;
  }
  .gallery-stage {
    width: calc(100% - 32px);
  }
  .botanical {
    width: 60px;
    height: 340px;
    opacity: 0.8;
  }
  .botanical-left {
    left: -38px;
  }
  .botanical-right {
    right: -38px;
  }
  .door-vine {
    width: 36px;
    height: 44%;
    top: 12%;
  }
  .door-left .door-vine {
    left: -12px;
  }
  .door-right .door-vine {
    right: -12px;
  }
  html {
    scroll-padding-top: 24px;
    scroll-padding-bottom: 100px;
  }
  main :is(a, button, summary) {
    scroll-margin-bottom: 100px;
  }
  .wrap {
    width: calc(100% - 56px);
  }
  .site-header {
    height: 80px;
    padding: 14px 20px;
  }
  .brand {
    width: 72px;
    height: 60px;
  }
  .site-header nav {
    display: none;
  }
  .site-header nav a:first-child {
    display: none;
  }
  .site-header .icon-button {
    width: 40px;
    height: 40px;
  }
  .hero {
    height: calc(100svh - 70px);
    min-height: 0;
    max-height: 1000px;
  }
  .hero-picture img {
    object-position: 50% 65%;
  }
  .hero-copy {
    top: 17%;
    left: 18px;
    right: 18px;
  }
  .hero-prelude {
    font-size: 25px;
    margin-top: 14px;
  }
  .hero h1 {
    font-size: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 540px;
    margin: auto;
    column-gap: 14px;
    row-gap: 0;
  }
  .hero h1 em {
    font-size: 48px;
    margin-inline: 0;
  }
  .hero-date {
    margin-top: 8px;
    font-size: 14px;
  }
  .hero-bottom {
    left: 20px;
    right: 20px;
    bottom: 28px;
    grid-template-columns: 1fr auto;
    row-gap: 16px;
    align-items: center;
    font-size: 14px;
  }
  .hero-bottom-note {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: left;
    font-size: 16px;
  }
  .hero-bottom .scroll-cue {
    width: 40px;
    height: 52px;
  }
  .letter {
    padding: 48px 24px 74px;
  }
  .letter .botanical {
    width: 60px;
    top: 160px;
    bottom: auto;
    height: 220px;
    opacity: 0.8;
  }
  .letter .botanical-left {
    left: -38px;
  }
  .letter .botanical-right {
    right: -38px;
  }
  .letter-monogram {
    width: 150px;
  }
  .blessing {
    font-size: 16px;
  }
  .handwritten {
    font-size: 25px;
  }
  .letter h2 {
    font-size: 44px;
  }
  .letter .handwritten {
    margin-bottom: 20px;
  }
  .letter-text {
    font-size: 14px;
    line-height: 1.9;
    max-width: 430px;
    margin-top: 22px;
  }
  .families strong {
    font-size: 25px;
  }
  .venue {
    padding: 60px 0 40px;
  }
  .venue-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .venue-heading h2 {
    font-size: 80px;
  }
  .venue-intro {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    width: 100%;
  }
  .gallery-stage {
    aspect-ratio: 4/3;
  }
  .gallery-expand {
    top: 16px;
    right: 16px;
  }
  .gallery-arrows {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 16px;
    transform: none;
    justify-content: flex-end;
    gap: 8px;
  }
  .gallery-selectors {
    gap: 22px;
  }
  .gallery-selectors button {
    font-size: 12px;
    min-height: 53px;
  }
  .gallery-caption {
    gap: 10px;
  }
  .venue-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    font-size: 13px;
  }
  .dates-section {
    padding: 64px 0 32px;
  }
  .dates-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }
  .dates-copy {
    text-align: center;
  }
  .dates-copy h2 {
    font-size: 68px;
  }
  .dates-copy h2 br {
    display: none;
  }
  .dates-copy .handwritten {
    margin-bottom: 20px;
  }
  .date-range {
    font-size: 31px;
    margin-top: 24px;
  }
  .calendar {
    width: min(470px, 100%);
    margin: auto;
  }
  .calendar-title {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .calendar td {
    height: 55px;
    font-size: 26px;
  }
  .calendar-legend {
    font-size: 21px;
  }
  .countdown-row {
    flex-direction: column;
    gap: 20px;
    margin-top: 44px;
    padding-top: 28px;
  }
  .countdown-row > p {
    font-size: 24px;
  }
  .countdown {
    width: min(420px, 100%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    text-align: center;
  }
  .countdown > span {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .countdown strong {
    font-size: 39px;
  }
  .countdown small {
    font-size: 10px;
  }
  .guest-note {
    padding-block: 66px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .guest-heading h2 {
    font-size: 53px;
  }
  .guest-heading h2 br {
    display: none;
  }
  .guest-heading > p:last-child {
    margin-top: 18px;
  }
  .questions summary {
    font-size: 14px;
    gap: 16px;
    padding-block: 23px;
  }
  .answer {
    font-size: 13px;
    padding-right: 24px;
  }
  .closing {
    padding: 62px 24px 38px;
  }
  .closing .botanical {
    width: 60px;
    opacity: 0.8;
  }
  .closing .botanical-left {
    left: -38px;
  }
  .closing .botanical-right {
    right: -38px;
  }
  .closing-garden {
    justify-content: center;
    margin-top: 32px;
  }
  .closing-garden .garden-flourish,
  .leopard-right {
    display: none;
  }
  .garden-leopard {
    width: min(100%, 520px);
  }
  .letter-garden {
    height: 260px;
    width: calc(100% + 12px);
    max-width: 480px;
    margin: 24px auto -26px;
    left: -6px;
  }
  .garden-peacock {
    width: 45%;
  }
  .closing .handwritten {
    max-width: 250px;
    margin: auto;
  }
  .closing h2 {
    font-size: 57px;
    max-width: 450px;
    margin: 22px auto 0;
  }
  .footer {
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding-block: 24px 108px;
  }
  .footer > span {
    width: 100%;
  }
  .footer > a {
    width: 100%;
  }
  .footer > div {
    gap: 16px;
  }
  .mobile-actions {
    position: fixed;
    z-index: 8;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100vw;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px max(12px, env(safe-area-inset-right))
      calc(10px + env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
    color: var(--white);
    background: var(--pine);
    border-top: 1px solid #ffffff25;
    transform: translateY(110%);
    transition: transform 0.4s var(--ease);
  }
  .mobile-actions.is-visible {
    transform: translateY(0);
  }
  .mobile-actions > button:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    min-height: 44px;
    background: var(--white);
    color: var(--pine);
    border-radius: 3px;
    font-size: 13px;
  }
  .mobile-actions > .icon-button {
    border: 1px solid #ffffff55;
  }
  .opening-content {
    padding: 24px 20px 110px;
  }
  .opening-title {
    font-size: 22px;
  }
  .opening-logo {
    width: 270px;
    max-height: 43svh;
  }
  .opening-door:after {
    inset: 14px;
  }
  .door-left:after {
    right: 0;
  }
  .door-right:after {
    left: 0;
  }
  .door-peacock {
    width: min(50%, 120px);
    bottom: 18px;
  }
  .door-left .door-peacock {
    left: 12px;
  }
  .door-right .door-peacock {
    right: 12px;
  }
  .opening-motion {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
  .opening-date {
    font-size: 24px;
  }
  .sheet {
    max-height: calc(100dvh - 32px);
  }
  .sheet-content {
    padding: 50px 25px 24px;
  }
  .sheet h2 {
    font-size: 41px;
  }
  .photo-dialog[open] {
    padding-inline: 12px;
  }
  .keepsake-dialog {
    padding-inline: 14px !important;
  }
}
@media (max-width: 400px) {
  .hero h1 {
    font-size: 68px;
    max-width: 315px;
    column-gap: 12px;
  }
  .hero h1 span:first-child {
    flex-basis: 100%;
  }
  .hero-copy {
    top: 16%;
  }
  .hero-prelude {
    font-size: 23px;
  }
  .hero-date {
    margin-top: 8px;
  }
  .hero {
    min-height: 0;
  }
  .letter h2 {
    font-size: 40px;
  }
  .letter-garden {
    height: 230px;
  }
  .gallery-selectors {
    gap: 16px;
  }
  .gallery-selectors button {
    font-size: 11px;
  }
  .venue-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .venue-heading h2 {
    font-size: 65px;
  }
  .dates-copy h2 {
    font-size: 58px;
  }
  .calendar td {
    height: 48px;
  }
  .calendar-legend {
    font-size: 19px;
  }
  .closing h2 {
    font-size: 50px;
  }
  .sheet-content {
    padding-inline: 20px;
  }
}
@media (max-height: 650px) {
  .hero {
    height: calc(100svh - 70px);
  }
  .hero-copy {
    top: 90px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero h1 em {
    font-size: 42px;
  }
  .hero-prelude {
    font-size: 22px;
    margin-top: 8px;
  }
  .hero-date {
    font-size: 13px;
    margin-top: 10px;
  }
  .opening-content {
    padding: 12px;
  }
  .door-peacock {
    max-height: 42svh;
    width: 50%;
    object-fit: contain;
    object-position: bottom;
  }
  .opening-logo {
    max-height: 32svh;
  }
  .opening-title {
    font-size: 21px;
  }
  .opening-blessing {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .opening-date {
    margin-bottom: 12px;
    font-size: 21px;
  }
  .opening-location {
    margin-top: 6px;
  }
  .opening .button {
    min-height: 46px;
    padding-block: 8px;
  }
}
@media (max-width: 760px) and (max-height: 650px) {
  .opening-content {
    padding: 12px 12px 96px;
  }
}
@media (max-height: 450px) and (min-width: 600px) {
  .door-peacock {
    max-width: calc(50vw - 245px);
  }
  .hero {
    height: calc(100svh - 52px);
  }
  .letter {
    padding-top: 16px;
  }
  .site-header {
    height: 65px;
  }
  .hero-copy {
    top: 65px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-prelude {
    font-size: 20px;
    margin-top: 4px;
  }
  .hero-bottom {
    bottom: 14px;
  }
  .hero-bottom-note {
    display: none;
  }
  .scroll-cue {
    width: 40px;
    height: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero-picture img {
    transform: none !important;
  }
  .petal-field {
    display: none;
  }
}

/* Language selection is available on entry and on demand, never fixed. */
.opening-language > p {
  font-size: 15px;
  line-height: 1.5;
}
.language-options {
  display: inline-flex;
  flex-shrink: 0;
  border: 1px solid #698677;
  border-radius: 4px;
  overflow: visible;
}
.language-options button {
  min-height: 46px;
  min-width: 82px;
  padding: 7px 14px;
  font-size: 16px;
  line-height: 1.6;
}
.language-options button:first-child {
  border-radius: 3px 0 0 3px;
}
.language-options button:last-child {
  border-radius: 0 3px 3px 0;
}
.language-options button[aria-pressed="true"] {
  background: var(--pine);
  color: #fff;
}
.language-options button:hover {
  box-shadow: inset 0 0 0 2px var(--gold);
}
[lang="hi"] {
  font-family: NotoDevanagari, "Kohinoor Devanagari", sans-serif;
}
.language-options [lang="en"],
.language-trigger [lang="en"],
.opening-language [lang="en"] {
  font-family: Manrope, Arial, sans-serif;
}
.opening-language {
  margin-bottom: 20px;
}
.opening-language > p {
  margin-bottom: 10px;
}
.opening-content {
  padding-block: 32px;
  margin-block: auto;
}
.opening-logo {
  max-height: 34svh;
  flex-shrink: 0;
}
.opening-location {
  font-size: 15px;
}
.hero-bottom p .hero-place {
  font-size: inherit;
  margin-top: 0;
}
.hero-date {
  font-size: 17px;
}
.button,
.text-link,
.text-button,
.option,
.gallery-selectors button,
.questions summary {
  font-size: 16px;
}
.button {
  min-height: 56px;
}
.letter-text,
.dates-note,
.venue-note,
.guest-heading > p:last-child,
.answer,
.sheet h2 + p,
.closing-inner > p:not(.handwritten) {
  font-size: 16px;
}
.families,
.sheet-footnote,
.letter .text-button {
  font-size: 15px;
}
.keepsake-hindi {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.85;
}
.photo-controls p {
  min-width: 0;
}
html:lang(hi) {
  --serif: NotoDevanagari, "Kohinoor Devanagari", sans-serif;
  --sans: NotoDevanagari, "Kohinoor Devanagari", sans-serif;
}
html:lang(hi) body {
  font-size: 18px;
  line-height: 1.85;
}
html:lang(hi) h1,
html:lang(hi) h2,
html:lang(hi) h3 {
  line-height: 1.5;
}
html:lang(hi) .hero h1 {
  font-size: 76px;
}
html:lang(hi) .hero h1 em {
  font-size: 36px;
  font-style: normal;
}
html:lang(hi) .hero-prelude {
  font-size: 24px;
  font-style: normal;
}
html:lang(hi) .handwritten {
  font-size: 24px;
  font-style: normal;
  line-height: 1.7;
}
html:lang(hi) .letter h2,
html:lang(hi) .guest-heading h2 {
  font-size: 40px;
}
html:lang(hi) .venue-heading h2,
html:lang(hi) .closing h2 {
  font-size: 58px;
}
html:lang(hi) .dates-copy h2 {
  font-size: 48px;
}
html:lang(hi) .opening-title {
  font-size: 20px;
  line-height: 1.7;
  font-style: normal;
}
html:lang(hi) .opening-date,
html:lang(hi) .date-range {
  font-size: 25px;
}
html:lang(hi) .letter-text,
html:lang(hi) .answer,
html:lang(hi) .venue-note,
html:lang(hi) .dates-note,
html:lang(hi) .guest-heading > p:last-child,
html:lang(hi) .sheet h2 + p {
  font-size: 18px;
}
html:lang(hi) .families strong,
html:lang(hi) .closing-inner > .closing-family {
  font-size: 24px !important;
}
html:lang(hi) .calendar-title {
  font-size: 30px;
}
html:lang(hi) .calendar-title span:last-child {
  font-size: 24px;
}
html:lang(hi) .calendar td {
  font-size: 24px;
}
html:lang(hi) .calendar-legend {
  font-size: 18px;
  font-style: normal;
}
html:lang(hi) .countdown strong {
  font-size: 32px;
}
html:lang(hi) .countdown small {
  font-size: 13px;
}
html:lang(hi) .countdown-row > p {
  font-size: 21px;
}
html:lang(hi) .sheet h2 {
  font-size: 30px;
}
html:lang(hi) .keepsake-top h2 {
  font-size: 22px;
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }
  .language-options button {
    min-width: 78px;
    padding-inline: 12px;
  }
  .site-header nav {
    font-size: 14px;
    gap: 18px;
  }
  .site-header .icon-button {
    width: 44px;
    height: 44px;
  }
  .opening-content {
    padding: 28px 20px 124px;
  }
  .opening-logo {
    max-height: 28svh;
  }
  .opening-language {
    margin-bottom: 18px;
  }
  .opening-language > p {
    font-size: 14px;
  }
  .opening-title {
    font-size: 23px;
  }
  .opening-location {
    font-size: 14px;
  }
  .gallery-selectors {
    gap: 18px;
  }
  .gallery-selectors button {
    font-size: 14px;
  }
  .venue-intro {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  .answer .text-link {
    font-size: 15px;
  }
  .questions summary {
    font-size: 16px;
  }
  .mobile-actions > button:first-child {
    font-size: 15px;
    min-height: 52px;
    padding: 8px;
    gap: 8px;
  }
  .mobile-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 52px;
    padding: 8px;
    border: 1px solid #ffffff70;
    border-radius: 3px;
    font-size: 14px;
  }
  .mobile-share:hover {
    background: #ffffff18;
  }
  .motion-dock {
    display: inline-grid;
    bottom: 18px;
    right: 12px;
  }
  body:has(.mobile-actions.is-visible) .motion-dock {
    display: none;
  }
  .photo-controls {
    gap: 12px;
    font-size: 15px;
  }
  html:lang(hi) .hero h1 {
    font-size: 49px;
    line-height: 1.55;
  }
  html:lang(hi) .hero h1 em {
    font-size: 25px;
  }
  html:lang(hi) .hero-prelude {
    font-size: 19px;
  }
  html:lang(hi) .handwritten {
    font-size: 21px;
  }
  html:lang(hi) .letter h2,
  html:lang(hi) .guest-heading h2 {
    font-size: 30px;
  }
  html:lang(hi) .venue-heading h2,
  html:lang(hi) .closing h2 {
    font-size: 40px;
  }
  html:lang(hi) .dates-copy h2 {
    font-size: 36px;
  }
  html:lang(hi) .opening-date,
  html:lang(hi) .date-range {
    font-size: 23px;
  }
  html:lang(hi) .families strong,
  html:lang(hi) .closing-inner > .closing-family {
    font-size: 21px !important;
  }
  html:lang(hi) .closing .handwritten {
    max-width: 100%;
  }
  html:lang(hi) .gallery-selectors {
    gap: 16px;
  }
  html:lang(hi) .gallery-selectors button {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  html:lang(hi) .hero h1 {
    font-size: 43px;
  }
  html:lang(hi) .hero-prelude {
    font-size: 18px;
  }
  html:lang(hi) .gallery-selectors {
    gap: 12px;
  }
  html:lang(hi) .gallery-selectors button {
    font-size: 12px;
  }
}
@media (max-height: 700px) {
  .opening-logo {
    max-height: 20svh;
  }
  .opening-content {
    padding-block: 24px;
  }
  .opening-language {
    margin-bottom: 14px;
  }
  .opening-title {
    font-size: 20px;
  }
  .opening-date {
    margin-bottom: 12px;
  }
}
@media (max-width: 760px) and (max-height: 700px) {
  .opening .door-peacock {
    display: none;
  }
}
@media (max-height: 450px) {
  .opening[open] {
    align-items: start;
  }
  .opening .door-peacock {
    display: none;
  }
  .opening-content {
    padding: 20px;
  }
  .opening-logo {
    max-height: 90px;
  }
  html:lang(hi) .hero h1 {
    font-size: 42px;
    line-height: 1.4;
  }
  html:lang(hi) .hero-prelude {
    font-size: 18px;
  }
}
