* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #355c67;
  background: #fff5ec;
  font-family: "work-sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

[id] {
  scroll-margin-top: 70px;
}

a {
  color: inherit;
  text-decoration: none;
}
p a:not(.button) {
  text-decoration: underline;
  font-weight: 900;
}

strong {
  font-weight: 900;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #4b2510;
  box-shadow: 0 2px 16px rgba(0, 30, 50, 0.18);
}

.nav {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 620px) {
  .nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  color: #ffffff;
  font-family: "playfair-display", serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1;
}
.brand span {
  color: #ed4c4f;
}

.nav__links,
.footer__links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .nav__links {
    position: fixed;
    inset: 70px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 32px 28px;
    background: #4b2510;
    box-shadow: 0 16px 28px rgba(0, 30, 50, 0.22);
  }
  .nav__links a:not(.button) {
    padding: 16px 0;
  }
  .nav__links .button {
    margin-top: 10px;
  }
}

@media (max-width: 880px) {
  .nav__links.is-open {
    display: flex;
  }
}

.nav__links a:not(.button) {
  position: relative;
  padding: 24px 0 22px;
}
.nav__links a:not(.button)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 3px;
  background: #d78528;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}
.nav__links a:not(.button):hover::after, .nav__links a:not(.button).is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}
@media (max-width: 880px) {
  .nav__toggle {
    display: block;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 168px;
  padding: 0.8rem 1.4rem;
  border: 1px solid #ed4c4f;
  border-radius: 4px;
  background: #ed4c4f;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(237, 76, 79, 0.24);
}
@media (max-width: 620px) {
  .button {
    width: 100%;
  }
}

.button--small {
  min-width: 96px;
  min-height: 40px;
  padding: 0.65rem 1.2rem;
}

.button--outline {
  background: rgba(255, 255, 255, 0.5);
  border-color: #355c67;
  color: #355c67;
}
.button--outline:hover {
  box-shadow: 0 10px 24px rgba(53, 92, 103, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 452px;
  background: #fff5ec;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  width: min(100%, 1120px);
  min-height: 452px;
  margin: 0 auto;
  padding: 52px 32px;
}
@media (max-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }
}
@media (max-width: 620px) {
  .hero__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hero__content {
  align-self: center;
  padding-bottom: 26px;
}
.hero__content h1 {
  margin: 0 0 20px;
  color: #4b2510;
  font-family: "playfair-display", serif;
  font-size: clamp(4.2rem, 10vw, 7.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
}
.hero__content h1 span {
  color: #ed4c4f;
  margin-right: 16px;
}
@media (max-width: 620px) {
  .hero__content h1 {
    font-size: clamp(3.8rem, 20vw, 5.5rem);
  }
}
.hero__content p {
  margin: 0 0 24px;
  color: #355c67;
  font-size: clamp(1rem, 1.9vw, 1.24rem);
  font-weight: 400;
  letter-spacing: 0.11em;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
@media (max-width: 620px) {
  .hero__actions {
    gap: 12px;
  }
}

.couple-placeholder {
  position: relative;
  align-self: stretch;
  min-height: 410px;
  isolation: isolate;
}
@media (max-width: 880px) {
  .couple-placeholder {
    min-height: 330px;
  }
}
@media (max-width: 620px) {
  .couple-placeholder {
    min-height: 300px;
  }
}

.couple-placeholder__label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(80%, 330px);
  padding: 10px 14px;
  border: 1px dashed rgba(75, 37, 16, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  color: rgba(53, 92, 103, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.person {
  position: absolute;
  bottom: 50%;
  display: block;
  max-width: none;
  height: auto;
  background: none;
}
@media (max-width: 880px) {
  .person {
    bottom: 40px;
  }
}

.person--bride {
  left: 50%;
  z-index: 3;
  height: min(84%, 350px);
  transform: translateX(0) translateY(50%);
}
@media (max-width: 880px) {
  .person--bride {
    left: 46%;
    height: 78%;
    transform: translateX(0);
  }
}
@media (max-width: 620px) {
  .person--bride {
    left: 44%;
    height: min(75%, 52vw);
    transform: translateX(0);
  }
}

.person--groom {
  left: 50%;
  z-index: 2;
  height: min(84%, 350px);
  transform: translateX(-110%) translateY(50%);
}
@media (max-width: 880px) {
  .person--groom {
    left: 46%;
    height: 78%;
    transform: translateX(-112%);
  }
}
@media (max-width: 620px) {
  .person--groom {
    left: 44%;
    height: min(75%, 52vw);
    transform: translateX(-112%);
  }
}

.shape {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.shape--leaf-left {
  left: -160px;
  bottom: -1px;
  height: 400px;
}
@media (max-width: 880px) {
  .shape--leaf-left {
    left: 36px;
  }
}
@media (max-width: 620px) {
  .shape--leaf-left {
    left: 5px;
    height: 280px;
    bottom: -50px;
    transform: rotate(-25deg);
  }
}

.shape--stripes-left {
  left: -310px;
  bottom: -1px;
  height: 200px;
}
@media (max-width: 880px) {
  .shape--stripes-left {
    left: 128px;
    bottom: -48px;
  }
}
@media (max-width: 620px) {
  .shape--stripes-left {
    left: 150px;
    bottom: 200px;
    height: 150px;
  }
}

.shape--stripe-left {
  left: 0;
  bottom: 0;
  width: 84px;
  height: 154px;
  background: repeating-linear-gradient(90deg, #355c67 0 8px, transparent 8px 18px);
}

.shape--circle-left {
  left: -190px;
  bottom: 30px;
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background: #d78528;
  z-index: -2;
}
@media (max-width: 880px) {
  .shape--circle-left {
    left: 24px;
    bottom: 104px;
  }
}
@media (max-width: 620px) {
  .shape--circle-left {
    left: 350px;
    bottom: 250px;
  }
}

.shape--leaf-small-right {
  right: -250px;
  bottom: 60px;
  height: 144px;
  transform: rotate(90deg);
}
@media (max-width: 880px) {
  .shape--leaf-small-right {
    right: -32px;
  }
}
@media (max-width: 620px) {
  .shape--leaf-small-right {
    right: -32px;
    bottom: auto;
    top: 100px;
    height: 82px;
  }
}

.shape--circle-middle {
  right: -60px;
  top: 30px;
  width: 280px;
  height: 280px;
  border-radius: 100%;
  background: #355c67;
  z-index: -2;
}

.shape--circle-right {
  right: -190px;
  top: 30px;
  width: 180px;
  height: 180px;
  border-radius: 100%;
  background: #ed4c4f;
  z-index: -2;
}
@media (max-width: 880px) {
  .shape--circle-right {
    right: 38px;
    top: 50px;
  }
}
@media (max-width: 620px) {
  .shape--circle-right {
    right: 150px;
    top: auto;
    bottom: -20px;
    width: 104px;
    height: 104px;
  }
}

.shape--teal-right {
  right: 66px;
  bottom: 0;
  width: 330px;
  height: 330px;
  border-radius: 50% 50% 0 0;
  background: rgba(53, 92, 103, 0.95);
}
@media (max-width: 620px) {
  .shape--teal-right {
    opacity: 0.42;
  }
}

.shape--coral-right {
  right: 44px;
  top: 34px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #ed4c4f;
}
@media (max-width: 620px) {
  .shape--coral-right {
    opacity: 0.42;
  }
}

.shape--leaf-right {
  right: 16px;
  bottom: 0;
  width: 96px;
  height: 220px;
  background: radial-gradient(ellipse at 100% 28%, #d78528 0 28%, transparent 29%), radial-gradient(ellipse at 0 42%, #d78528 0 25%, transparent 26%), radial-gradient(ellipse at 100% 58%, #d78528 0 27%, transparent 28%), radial-gradient(ellipse at 0 74%, #d78528 0 26%, transparent 27%);
}
@media (max-width: 620px) {
  .shape--leaf-right {
    opacity: 0.42;
  }
}

.details {
  display: grid;
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100vw;
  margin: 0 auto;
  padding: 30px calc((100vw - 1120px) / 2 + 32px);
  background: rgb(255, 251.7105263158, 248.75);
  z-index: 1;
}
@media (max-width: 880px) {
  .details {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .details {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.details__item {
  display: grid;
  min-height: 126px;
  place-items: center;
  padding: 0 20px;
  border-left: 1px solid #d78528;
  text-align: center;
}
.details__item:last-child {
  border-right: 1px solid #d78528;
}
@media (max-width: 880px) {
  .details__item:nth-child(2) {
    border-right: 1px solid #d78528;
  }
}
@media (max-width: 620px) {
  .details__item, .details__item:nth-child(2), .details__item:last-child {
    border-right: 1px solid #d78528;
  }
}
.details__item h2 {
  margin: 8px 0 0;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.details__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #ed4c4f;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}

.details__icon--blue {
  background: #355c67;
}

.details__icon--teal {
  background: #355c67;
}

.details__icon--gold {
  background: #d78528;
}

.section {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 28px 32px;
}
@media (max-width: 620px) {
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.our-day {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 54px;
  align-items: center;
  padding-top: 26px;
}
@media (max-width: 880px) {
  .our-day {
    grid-template-columns: 1fr;
  }
}

.section__copy h2 {
  margin: 0 0 20px;
  color: #4b2510;
  font-family: "playfair-display", serif;
  font-size: clamp(2.9rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}
.section__copy h2::after {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 18px;
  background: #d78528;
  content: "";
}
.section__copy p {
  max-width: 420px;
  margin: 0 0 28px;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #355c67;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.text-link::after {
  color: #d78528;
  content: ">";
  font-size: 1.2rem;
}

.venue-placeholder {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  border-radius: 8px;
  background: #355c67;
  box-shadow: 0 18px 60px rgba(0, 44, 64, 0.08);
}
.venue-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
@media (max-width: 620px) {
  .venue-placeholder {
    min-height: 205px;
  }
}

.faqs {
  display: grid;
  grid-template-columns: 0.2fr 0.8fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
  border: 1px solid #d78528;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.26);
}
@media (max-width: 1120px) {
  .faqs {
    grid-template-columns: 1fr;
    border: 0;
  }
}
@media (max-width: 620px) {
  .faqs {
    padding-top: 24px;
  }
}

.accordion {
  overflow: hidden;
  border: 1px solid #d78528;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
}

.faq-categories {
  display: grid;
  gap: 28px;
}

.faq-category h3 {
  margin: 0 0 10px;
  color: #355c67;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 620px) {
  .faq-category h3 {
    font-size: 0.76rem;
  }
}

.accordion__item + .accordion__item {
  border-top: 1px solid #d78528;
}

.accordion__item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 45px;
  padding: 10px 24px;
  border: 0;
  background: transparent;
  color: #355c67;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: left;
}
@media (max-width: 620px) {
  .accordion__item button {
    padding-inline: 16px;
    font-size: 0.86rem;
  }
}

.accordion__symbol {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}
.accordion__symbol::before, .accordion__symbol::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #355c67;
  content: "";
  transform: translate(-50%, -50%);
}
.accordion__symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item.is-open .accordion__symbol::after {
  opacity: 0;
}

.accordion__panel {
  display: none;
  padding: 0 24px 16px;
}
@media (max-width: 620px) {
  .accordion__panel {
    padding-inline: 16px;
  }
}
.accordion__panel p {
  margin: 10px 0;
  color: rgba(53, 92, 103, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.accordion__panel p a:not(.button) {
  color: #355c67;
  font-size: 0.9rem;
}
.accordion__panel .button {
  margin-top: 20px;
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.rsvp-banner {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  padding: 22px 32px 18px;
  background: #355c67;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 620px) {
  .rsvp-banner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.rsvp-banner h2,
.rsvp-banner p,
.rsvp-banner .button {
  position: relative;
  z-index: 2;
}
.rsvp-banner h2 {
  margin: 0 0 4px;
  font-family: "playfair-display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.rsvp-banner p {
  margin: 0 0 16px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rsvp-banner .button {
  min-width: 262px;
}

.shape--footer-circle-right {
  right: 250px;
  bottom: -50px;
  width: 125px;
  height: 125px;
  border-radius: 100%;
  background: #ed4c4f;
  z-index: 0;
}
@media (max-width: 880px) {
  .shape--footer-circle-right {
    display: none;
  }
}

.shape--footer-circle-left {
  left: 550px;
  bottom: 10px;
  width: 75px;
  height: 75px;
  border-radius: 100%;
  background: #ed4c4f;
  z-index: 0;
}

.shape--footer-leaf-small-right {
  right: 250px;
  top: 60px;
  height: 100px;
  transform: rotate(90deg);
  z-index: 1;
}

.shape--footer-stripes {
  left: 118px;
  bottom: 0;
  width: 72px;
  height: 172px;
  background: repeating-linear-gradient(90deg, #ffffff 0 8px, transparent 8px 16px);
}
@media (max-width: 620px) {
  .shape--footer-stripes {
    display: none;
  }
}

.shape--footer-leaves {
  left: 174px;
  bottom: 0;
  width: 98px;
  height: 128px;
  background: radial-gradient(ellipse at 24% 42%, #d78528 0 22%, transparent 23%), radial-gradient(ellipse at 72% 35%, #d78528 0 24%, transparent 25%), radial-gradient(ellipse at 55% 72%, #d78528 0 28%, transparent 29%);
}
@media (max-width: 620px) {
  .shape--footer-leaves {
    display: none;
  }
}

.shape--footer-coral {
  right: 112px;
  bottom: 0;
  width: 108px;
  height: 108px;
  border-radius: 100% 0 0 0;
  background: #ed4c4f;
}

.shape--footer-cream {
  right: -40px;
  bottom: 0;
  width: 124px;
  height: 146px;
  border-radius: 100% 0 0 0;
  background: #fff5ec;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: 100%;
  min-height: 96px;
  margin: 0;
  padding: 0 max(32px, (100% - 1120px) / 2 + 32px);
  background: #4b2510;
  color: #ffffff;
}
@media (max-width: 880px) {
  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 24px;
    text-align: center;
  }
}
@media (max-width: 620px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer__links {
  justify-content: center;
  gap: 28px;
}
@media (max-width: 620px) {
  .footer__links {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}
.footer__links a + a {
  position: relative;
}
.footer__links a + a::before {
  position: absolute;
  left: -16px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.36);
  content: "";
  transform: translateY(-50%);
}

.footer__url {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

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