body {
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

:root {
  --font-size: 18px;
  --offblack: #38393C;
  --background: #FBFAF9;
  --blue: #3662FF;
  --green: #A2C62D;
  --content-width: 600px;
  --wider-content: 900px;
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  background-color: #FCFAF8;
  font-family: adobe-caslon-pro, serif;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

input, button {
  font-size: 1rem;
  font-family: adobe-caslon-pro, serif;
  font-weight: 400;
  font-style: italic;
}

input[type=text] {
  text-align: center;
  background-color: transparent;
  border: none;
  border-bottom: 0.5px solid var(--offblack);
  border-radius: 0;
}

input[type=text]:focus, input[type=text]:active {
  outline: none;
  border-radius: 0;
  border-bottom: 0.5px solid var(--offblack);
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: 100lvh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.main-content {
  margin-top: 8rem;
}

.main-content-centered {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-container.travel {
  max-width: 350px;
  margin: 0 2rem 10rem 2rem;
  margin-bottom: 10rem;
}
.page-container.travel .travel-section {
  margin-bottom: 5rem;
  text-align: center;
  line-height: 140%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-container.travel h2 {
  text-align: center;
  font-size: 1.5rem;
  line-height: 120%;
}
.page-container.travel ul {
  padding-left: 0;
  list-style-type: none;
}
.page-container.travel li {
  margin-bottom: 0.85rem;
}
.page-container.travel li.tight p {
  margin-top: 0;
  margin-bottom: 0;
}
.page-container.travel .light {
  opacity: 0.5;
  font-style: italic;
}

.ornamental-single-frame.halfway-header {
  margin-top: 50vh;
  transform: translateY(-50%);
  margin-bottom: 4vh;
}

.our-story {
  padding: 2rem;
  max-width: 400px;
}

.our-story p {
  text-align: justify;
  max-width: var(--content-width);
  margin: 0px auto 1rem auto;
}

.our-story p:first-of-type {
  padding-top: 2rem;
}

.our-story p:last-of-type {
  margin-bottom: 0;
}

.our-story p:first-of-type::first-letter {
  font-family: "Cancellarescab", cursive, serif;
  font-size: 5em;
  line-height: 1.2rem;
  font-weight: 400;
}

.fuzzy-frame {
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

.fuzzy-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/fuzzy-mask.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.hero-image {
  width: 60%;
}
.hero-image img {
  transform: scale(0.99);
}

.hero-image > * {
  width: 100%;
  /* height: 100%; */
}

.hero-logo {
  height: auto;
  width: 20vw;
  display: block;
}

canvas {
  display: block;
  z-index: 10;
  /* box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.04); */
  /* position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

/* Canvas positioning for ornamental frames - absolutely positioned relative to element */
.ornamental-single-frame canvas,
.ornamental-multi-frame canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

/* Ornamental container and frames */
.ornamental-container {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 20px;
  align-items: center;
}

@font-face {
  font-family: "Cancellarescab";
  src: url("../cancellaresca-script-std.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
.cancellaresca {
  /* Set cancellaresca font (if available) */
  font-family: "Cancellarescab", "cursive", "serif";
  /* font-style: italic; */
  font-weight: 400;
}

h1.cancellaresca, .h1.cancellaresca {
  font-size: 50px;
  text-align: center;
  line-height: 95%;
}

h1.gill {
  font-size: 36px;
}

.gill {
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.caslon {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 400;
}

.italic {
  font-style: italic;
}

.flex {
  display: flex;
}

.flex.centered {
  align-items: center;
  justify-content: center;
}

.ornamental-single-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  max-width: calc(100vw - 2rem);
  /* border: 1px solid #ffffff; */
  /* background-color: #fff;  */
  /* overflow: hidden;  */
}

/* Size frame to content + padding (e.g. "x more than the element measures") */
.ornamental-single-frame.frame-fit-content {
  width: fit-content;
  height: fit-content;
  max-width: 100%;
  padding: var(--frame-extra, 2rem);
  box-sizing: content-box;
}

/* Our Story frame: --frame-extra by breakpoint */
.our-story-frame {
  --frame-extra: 5.3rem;
  margin-bottom: 25svh;
}

.ornamental-single-frame h1 {
  margin: 0;
  padding: 10px 2rem;
}

.ornamental-multi-frame {
  height: 1200px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.ornamental-multi-frame > * {
  position: absolute;
  text-align: center;
}

.h2 {
  font-size: 20px;
}

/* Control Panel Styles */
.control-panel {
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(238, 238, 238, 0.8666666667);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  width: 200px;
  color: #000;
  z-index: 10000;
  transition: transform 0.3s ease;
}

.control-panel.hidden {
  transform: translateX(100%);
}

.control-panel-container {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.control-panel-checkbox-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0px;
}

.control-panel-label {
  font-family: serif;
  font-size: 14px;
  margin-bottom: 0px;
}

.control-panel-checkbox {
  width: 20px;
  height: 20px;
}

.control-panel-slider {
  width: 100%;
}

.control-panel-button {
  width: 100%;
  padding: 10px;
  font-family: monospace;
  font-size: 14px;
  background-color: #4a4a4a;
  color: #ffffff;
  border: 1px solid #666;
  cursor: pointer;
}

.control-panel-button:hover {
  background-color: #5a5a5a;
}

.control-panel-select {
  width: 100%;
  padding: 5px;
  font-family: monospace;
  font-size: 14px;
  background-color: #2a2a2a;
  color: #ffffff;
  border: 1px solid #666;
}

/* Debug Tooltip Styles */
.debug-tooltip {
  position: absolute;
  background-color: rgba(30, 30, 30, 0.94);
  border: 1px solid #666;
  border-radius: 4px;
  padding: 10px;
  color: #ffffff;
  font-family: monospace;
  font-size: 12px;
  line-height: 18px;
  pointer-events: none;
  z-index: 1000;
  display: none;
  min-width: 200px;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.debug-tooltip.visible {
  display: block;
}

.debug-tooltip.error {
  border-color: #ff0000;
}

.debug-tooltip .tooltip-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  color: #ffffff;
}

.debug-tooltip .tooltip-title.error {
  color: #ff6464;
}

.debug-tooltip .tooltip-label {
  color: #c8c8c8;
  margin-top: 5px;
}

.debug-tooltip .tooltip-value {
  color: #ffffff;
  margin-left: 5px;
}

/* Fixed Navigation */
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  padding: 1.5rem 1.5rem 3rem 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgb(252, 250, 248) 58.69%, rgba(252, 250, 248, 0.76) 85.47%, rgba(252, 250, 248, 0) 100%);
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.logo-image {
  height: 37px;
  width: auto;
}

.fuzzy-frame {
  transition: transform 3s ease;
  transform-origin: center;
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: adobe-caslon-pro, serif;
  font-weight: 400;
  font-style: italic;
  padding: 10px 0px;
  transition: opacity 0.3s ease;
}

.menu-button:hover {
  opacity: 0.7;
}

.menu-button-text {
  text-transform: lowercase;
  color: var(--offblack);
}

/* Fullscreen Navigation Menu */
.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FCFAF8;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  box-sizing: border-box;
}

.fullscreen-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: adobe-caslon-pro, serif;
  font-size: 36px;
  font-weight: 400;
  color: #000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.close-button:hover {
  opacity: 0.7;
}

.close-button-text {
  line-height: 1;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.nav-link {
  font-family: adobe-caslon-pro, serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-decoration: none;
  text-transform: lowercase;
  transition: opacity 0.3s ease;
  line-height: 100%;
  text-align: center;
  padding: 0.5rem;
}

.nav-link:hover {
  opacity: 0.7;
}

.rsvp-container {
  max-width: var(--content-width);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rsvp-title {
  text-align: center;
  margin-bottom: 2rem;
}

#rsvp-step-code {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100svh;
  justify-content: center;
  align-items: center;
}
#rsvp-step-code h1 {
  padding: 0 3rem;
}

textarea {
  line-height: 110%;
  font-style: italic;
}

#rsvp-code-input {
  width: 17rem;
}

#rsvp-step-form {
  margin-top: 25vh;
  margin-bottom: 40vh;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.rsvp-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 300px;
}

.rsvp-label {
  text-align: center;
  margin-bottom: -0.4rem !important;
}

.rsvp-input,
.rsvp-textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.rsvp-textarea {
  resize: vertical;
  font-family: inherit;
}

.rsvp-button {
  background-color: var(--background);
  padding: 0.35rem 2rem 0.15rem 2rem;
  border: none;
  border-radius: 1px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 0 0 0.5px var(--offblack), 0 0 0 5px var(--background), 0 0 0 5.5px var(--offblack);
  margin: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--offblack);
}

.rsvp-button-fleuron {
  height: 1.8rem;
  width: auto;
  display: block;
  margin-top: -0.3rem;
  pointer-events: none;
}

.rsvp-button-fleuron--right {
  transform: rotate(180deg);
}

.rsvp-button:hover:not(:disabled) {
  background-color: var(--blue);
  color: var(--background);
}
.rsvp-button:hover:not(:disabled) .rsvp-button-fleuron,
.rsvp-button:hover:not(:disabled) .rsvp-button-fleuron--left,
.rsvp-button:hover:not(:disabled) .rsvp-button-fleuron--right {
  filter: brightness(0) saturate(100%) invert(100%);
}
.rsvp-button:hover:not(:disabled) .rsvp-button-text {
  background-color: transparent !important;
}

.rsvp-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#rsvp-submit-button.rsvp-button {
  margin-top: 2rem;
  padding: 1rem 2rem 0.7rem 2rem;
  gap: 1rem;
  box-shadow: 0 0 0 0.5px var(--offblack), 0 0 0 5px var(--background), 0 0 0 5.5px var(--offblack), 0 0 0 10px var(--background), 0 0 0 10.5px var(--offblack);
}
#rsvp-submit-button.rsvp-button :hover:not(:disabled) {
  background-color: var(--blue);
}

.rsvp-guests-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 1rem;
}

.rsvp-guest-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rsvp-guest-name {
  text-align: center;
  text-transform: none;
  font-size: 2.5rem;
}

.rsvp-attending-select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.rsvp-field {
  margin-bottom: 1rem;
}

.rsvp-food-options .rsvp-radio-group {
  margin-top: 0;
}

.rsvp-radio-group {
  display: flex;
  flex-direction: column;
  /* gap: 0.75rem; */
  align-items: center;
}

.rsvp-radio-group > .rsvp-label,
.rsvp-radio-group > .rsvp-guest-name {
  width: 100%;
  margin-bottom: 0;
}

.rsvp-radio-options {
  display: flex;
  flex-direction: row;
  gap: -0.75rem;
  align-items: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 440px;
  margin-top: 1rem;
}
.rsvp-radio-options > * {
  margin-top: -0.6rem;
}

.rsvp-guest-item > .rsvp-radio-group:first-child {
  margin-top: 0;
}

.rsvp-radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.5rem 1rem 0.3rem 1rem;
  border-radius: 50%;
  transition: 0.2s;
  user-select: none;
  border: 0.5px solid white;
  font-style: italic;
}

.rsvp-radio-label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rsvp-radio-label span {
  display: block;
}

/* Selected state - border */
.rsvp-radio-label:has(input:checked) {
  border: 0.5px solid black;
  opacity: 1;
}

/* Unselected state - no border */
.rsvp-radio-label:not(:has(input:checked)) {
  border: 0.5px solid rgba(0, 0, 0, 0);
  opacity: 0.4;
}

/* Hover state for unselected options */
.rsvp-radio-label:not(:has(input:checked)):not(:has(input:disabled)):hover {
  opacity: 1;
}

/* Disabled state */
.rsvp-radio-label:has(input:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
}

.rsvp-food-radio:disabled,
.rsvp-attending-radio:disabled {
  cursor: not-allowed;
}

.rsvp-party-name {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.rsvp-code-hint {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.rsvp-error {
  color: #d32f2f;
  padding: 0.75rem;
  background-color: #ffebee;
  border-radius: 4px;
  margin-top: 1rem;
  text-align: center;
}

.rsvp-success {
  color: var(--green);
  padding: 0.75rem;
  background-color: #e8f5e9;
  border-radius: 4px;
  margin-top: 1rem;
  text-align: center;
}

.rsvp-success p {
  padding: 0 1rem;
}

.rsvp-message {
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  text-align: center;
}

.rsvp-submitted-date {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.hebrew-love-note {
  bottom: 1.5rem;
  font-family: "noto-rashi-hebrew", sans-serif;
  color: var(--offblack);
  font-weight: 600;
  font-style: normal;
}

.wedding-info-section {
  width: 100%;
  max-width: min(var(--wider-content), 100vw - 2rem);
  margin: 0vh 1rem 0 1rem;
  position: relative;
  box-sizing: border-box;
  container-type: inline-size;
  aspect-ratio: 1/2.8;
}

.wedding-info-section label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06rem;
  text-decoration: underline;
  margin-bottom: 1rem;
}

.ornamental-info-frame {
  position: absolute;
}

.info-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.1rem;
  width: max-content;
  position: absolute;
  font-size: 1rem;
  line-height: 120%;
  text-align: center;
  padding: 2rem;
}

.info-inner a {
  font-style: italic;
}

.info-inner > * {
  margin: 0;
  display: inline-block;
}

#info0 {
  width: 100%;
  max-width: 530px;
  height: 13rem;
  margin-top: 20svh;
  margin-bottom: 4.5rem;
}
#info0 h1 {
  padding: 2rem 2rem;
}

#info1 {
  top: 0;
  left: 0;
  width: 55cqw;
  aspect-ratio: 4/5;
}
#info1 .info-inner {
  top: 30%;
  right: -8%;
  padding: 4rem;
}
#info1 p:last-child {
  margin-top: 0.5rem;
  font-size: 0.75em;
}

.title-scoot {
  margin-left: -0.4em !important;
}

#info2 {
  top: 30cqw;
  right: 0;
  width: calc(45cqw - 2rem);
  aspect-ratio: 1/3;
}
#info2 .venue {
  top: 30%;
  left: 30%;
}
#info2 .venue-description {
  bottom: 25%;
  right: 10%;
  width: 200px;
  font-style: italic;
  padding: 2.5rem;
}

#info3 {
  top: 155cqw;
  right: 10cqw;
  width: 44cqw;
  aspect-ratio: 4/9;
  font-style: italic;
}
#info3 .attire {
  top: 20%;
  left: 22%;
  width: 250px;
  z-index: 24;
}
#info3 .attire2 {
  top: 50%;
  left: 10%;
  width: 250px;
  z-index: 24;
}
#info3 .attire3 {
  bottom: 14%;
  left: 25%;
  width: 150px;
  z-index: 24;
}

#info4 {
  width: 100vw;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  font-style: italic;
  height: 100svh;
}
#info4 .bottom-grove {
  height: 100%;
  width: 100%;
  position: absolute;
}
#info4 .love {
  margin-top: 5svh;
}
#info4 .fuzzy-frame {
  width: 20cqw;
  height: 26cqw;
}
#info4 .fuzzy-frame img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  transform: scale(0.99);
}
#info4 img.hebrew-love-note {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 0.75rem;
}

#sec1 .top-tri {
  height: 29cqw;
  width: 50cqw;
  top: 0;
}
#sec1 .left {
  left: 0;
}
#sec1 .right {
  right: 0;
}
#sec1 .house-shape {
  top: 7cqw;
  left: 0;
  height: 80cqw;
  width: 100cqw;
}
#sec1 .house-shape .left-trimask {
  height: 29cqw;
  width: 50cqw;
  top: 0;
  left: 0;
  padding: 0;
}
#sec1 .house-shape .right-trimask {
  height: 29cqw;
  width: 50cqw;
  top: 0;
  right: 0;
  padding: 0;
}
#sec1 .house-shape .date {
  width: 55cqw;
  height: 30cqw;
  top: 17cqw;
  left: 25cqw;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sec1 .tall-triangle {
  top: 87cqw;
  width: 48cqw;
  height: 70cqw;
  right: 2cqw;
}
#sec1 .small-tri-flourish {
  top: 90cqw;
  width: 12cqw;
  height: 12cqw;
  right: 52cqw;
}
#sec1 .location {
  top: 87cqw;
  left: 12.5cqw;
  width: 30cqw;
  height: 68cqw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding: 0;
  z-index: 20;
}
#sec1 .location .venue-description {
  font-style: italic;
}
#sec1 .location > * {
  margin: 0;
}
#sec1 .location-border {
  top: 87cqw;
  right: 44cqw;
  width: 65cqw;
  height: 75cqw;
}
#sec1 .location-border .location-border-mask {
  width: 50cqw;
  height: 66cqw;
  top: 0;
  right: 0;
  padding: 0;
}
#sec1 .curly {
  top: 160cqw;
  left: 5cqw;
  width: 44cqw;
  aspect-ratio: 4/9;
}

@media (max-width: 1000px) {
  .bottom-grove {
    display: none;
  }
}
@media (max-width: 700px) {
  .wedding-info-section {
    aspect-ratio: 1/5;
  }
  #info0 {
    width: 90%;
    height: 19rem;
    margin-top: 5svh;
    margin-bottom: 12rem;
  }
  #info0 h1 {
    padding: 2rem 1rem;
  }
  #info1 {
    width: 90cqw;
    aspect-ratio: 4/6;
  }
  #info1 .info-inner {
    left: 10%;
    top: 20%;
    width: 62cqw;
  }
  #info2 {
    top: 10cqw;
    left: 5cqw;
    width: 95cqw;
  }
  #info2 .venue {
    top: 17%;
  }
  #info2 .venue-description {
    width: 175px;
  }
  #info3 {
    top: 275cqw;
    left: 10cqw;
    width: 89cqw;
    aspect-ratio: 4/10;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  #info3 .attire {
    width: 190px;
    top: 15%;
    left: 11%;
  }
  #info3 .attire2 {
    width: 100px;
  }
  #info3 .attire3 {
    width: 190px;
    bottom: 10%;
  }
  #info4 .love {
    width: 80cqw;
  }
  #info4 .fuzzy-frame {
    width: 66cqw;
    height: auto;
    aspect-ratio: 4/5;
  }
  #sec1 {
    --location-window: 120cqw;
    --house-height: 140cqw;
  }
  #sec1 .house-shape {
    top: 17cqw;
    height: calc(var(--house-height) - 17cqw);
  }
  #sec1 .house-shape .date {
    width: 90cqw;
    height: 70cqw;
    left: 5cqw;
  }
  #sec1 .laborday {
    font-size: 14px;
  }
  #sec1 .tall-triangle {
    top: var(--house-height);
    width: 18cqw;
  }
  #sec1 .small-tri-flourish {
    top: var(--house-height)3cqw;
    right: 24cqw;
  }
  #sec1 .location {
    width: 65cqw;
    top: var(--house-height);
    height: var(--location-window);
  }
  #sec1 .location .venue-description {
    max-width: 209px;
  }
  #sec1 .location-border {
    top: var(--house-height);
    height: calc(var(--location-window) + 20cqw);
    right: 34cqw;
  }
  #sec1 .location-border .location-border-mask {
    height: var(--location-window);
    right: 10px;
  }
  #sec1 .curly {
    display: none;
  }
}
@media (max-width: 375px) {
  .wedding-info-section {
    aspect-ratio: 1/5.7;
  }
  #sec1 {
    --house-height: 170cqw;
    --location-window: 160cqw;
  }
  #sec1 .tall-triangle {
    display: none;
  }
  #sec1 .location {
    left: 20cqw;
  }
  #info3 {
    top: 340cqw;
  }
}
@media (max-width: 600px) {
  :root {
    font-size: 16px;
  }
  .our-story {
    padding: 1rem;
  }
  .our-story-frame {
    --frame-extra: 4rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .h1.cancellaresca {
    font-size: 38px;
  }
  .nav-logo {
    position: static;
    transform: unset;
  }
  .logo-image {
    height: 26px;
  }
  .hero-image {
    width: 100%;
  }
  .fuzzy-frame.hero-image {
    transform: scale(1.4);
  }
}
/* RSVP view (admin list) */
.rsvp-view-container {
  max-width: var(--wider-content);
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.rsvp-view-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.rsvp-view-subtitle {
  text-align: center;
  font-style: italic;
  color: var(--offblack);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.rsvp-view-loading,
.rsvp-view-error {
  text-align: center;
  font-style: italic;
}

.rsvp-view-error {
  color: #c00;
}

.rsvp-view-empty {
  text-align: center;
  font-style: italic;
  opacity: 0.8;
}

.rsvp-view-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rsvp-view-card {
  border: 0.5px solid var(--offblack);
  padding: 1.25rem 1.5rem;
  background: var(--background);
}

.rsvp-view-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.5px solid rgba(56, 57, 60, 0.2);
}

.rsvp-view-party {
  font-weight: 600;
  font-style: italic;
}

.rsvp-view-date {
  font-size: 0.9rem;
  opacity: 0.85;
}

.rsvp-view-guests {
  margin: 0;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.rsvp-view-guest {
  margin-bottom: 0.25rem;
}

.rsvp-view-email,
.rsvp-view-notes {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.rsvp-view-notes {
  font-style: italic;
}

/*# sourceMappingURL=main.css.map */