nav {
  color: #ffffff;
  position: relative; /* desktop default */
  width: 100%;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
nav .nav-toggle {
  display: none;
}
nav ul {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  padding: 16px 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
nav ul li {
  line-height: 3;
}
nav ul .nav-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
nav ul a {
  vertical-align: middle;
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
  }
  nav .nav-toggle {
    position: absolute;
    top: 10px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: #d7c5a7;
    border: 0;
    cursor: pointer;
    z-index: 1100;
  }
  nav .nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
  }
  nav .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    z-index: 1000;
  }
  nav .nav-menu.open {
    display: flex;
  }
  nav .nav-menu.animate-in {
    animation: navFadeIn 0.28s ease both;
  }
  nav .nav-menu.animate-out {
    animation: navFadeOut 0.22s ease both;
  }
  @keyframes navFadeIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes navFadeOut {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-8px);
    }
  }
  nav .nav-menu .nav-title {
    order: -1;
    font-size: 20px;
    margin-bottom: 8px;
  }
  nav .nav-menu li {
    line-height: 1;
  }
  nav .nav-menu a {
    font-size: 18px;
  }
  nav.nav-scrolled {
    background: #d7c5a7;
  }
}
body.no-scroll {
  overflow: hidden;
}

p, a {
  font-family: "Montserrat", sans-serif;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #ffffff;
}
a:hover {
  color: #ffffff;
}

.image-shadow {
  position: relative;
}
.image-shadow::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background: #d7c5a7;
  z-index: 1;
}

.cursor-default {
  cursor: default;
}

.home {
  background-image: url("../img/home.png");
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0) 70%, #c5a97d 100%);
}
.home--content {
  position: relative;
  z-index: 1;
  height: 80%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home--content h1, .home--content p {
  text-shadow: -10px 10px 10px rgb(0, 0, 0);
}
.home--content--date {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d7c5a7;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 50px;
  position: relative;
}
.home--content--date::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 5px;
  background: #d7c5a7;
}
.home--content--subtitle {
  margin-top: 30px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 6px;
}
.home--content--title {
  color: #ffffff;
  font-size: 4.5rem;
  font-family: "Tempting";
}

@media (max-width: 768px) {
  .home {
    height: 85vh;
  }
  .home--content {
    height: 75%;
  }
  .home--content--date {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .home--content--date::before {
    height: 4px;
    width: 70px;
  }
  .home--content--title {
    font-size: 3rem;
  }
  .home--content--subtitle {
    font-size: 14px;
    letter-spacing: 4px;
  }
}
@media (max-width: 480px) {
  .home {
    height: 70vh;
  }
  .home--content--title {
    font-size: 2.4rem;
  }
  .home--content--subtitle {
    font-size: 12px;
    letter-spacing: 3px;
  }
}
@media (max-width: 600px) {
  .home {
    background-position: 70% center;
  }
}
@media (max-width: 600px) {
  .home--content {
    padding-top: 30vh;
    align-items: center;
    text-align: center;
  }
  .home--content .row {
    justify-content: center;
  }
  .home--content .col-6 {
    width: 100%;
  }
  .home--content--date::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.countdown {
  position: absolute;
  z-index: 5;
  top: 100vh;
  left: 50%;
  border: 4px solid #ffffff;
  background: #d7c5a7;
  margin: 0 auto;
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0px;
  align-items: center;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease, transform 0.7s ease;
}
.countdown.visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.countdown-title {
  font-family: "Tempting", cursive;
  text-align: center;
  color: white;
  padding: 15px 10px;
  background-color: #c5a97d;
  font-size: 24px;
  letter-spacing: 1px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-unit {
  text-align: center;
  color: white;
  padding: 35px 10px;
}
.time-unit .time-number {
  font-family: "Tempting", cursive;
  display: block;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}
.time-unit .time-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

@media (max-width: 780px) {
  .countdown {
    margin: 0;
    padding: 10px 8px;
    max-width: 95vw;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    top: 85vh;
  }
  .countdown-title {
    font-size: 14px;
    padding: 8px 6px;
  }
  .time-unit {
    padding: 8px 6px;
  }
  .time-unit .time-number {
    font-size: 16px;
  }
  .time-unit .time-label {
    font-size: 8px;
  }
}
@media (max-width: 768px) {
  .countdown {
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .countdown {
    top: 70vh;
  }
}
.history {
  padding-top: 180px;
  padding-bottom: 100px;
  background-color: #eeeeee;
}
.history--image {
  position: relative;
}
.history--image--square {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: #c5a97d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.history--image--square--icon {
  width: 50px;
}
.history--image--img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.history--image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background: #d7c5a7;
  z-index: 1;
}
.history--content--subtitle {
  margin-bottom: 0;
  font-size: 24px;
  font-family: "Tempting";
  color: #d7c5a7;
}
.history--content--title {
  font-family: "Times New Roman", Times, serif;
  font-size: 3rem;
}
.history--content--description {
  margin-top: 20px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  line-height: 2.5;
}
.history--content--description--end {
  margin-top: 24px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}
.history--content--image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .history {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .history--content--title {
    font-size: 2.2rem;
  }
  .history--content--description, .history--content--description--end {
    font-size: 16px;
    line-height: 2;
  }
  .history--image--square {
    width: 56px;
    height: 56px;
  }
  .history--image--square--icon {
    width: 40px;
  }
}
.gallery {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #eeeeee;
}
.gallery--title {
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  color: #1d1d1d;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  letter-spacing: 1px;
}
.gallery--title::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background-color: #d7c5a7;
}
.gallery--image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  overflow: hidden;
}
.gallery--image:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.gallery--image:not(:hover) {
  transform: scale(1);
  transition: transform 0.3s ease;
}
.gallery--image--overlay {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

#galleryModal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh; /* full dynamic viewport height on mobile */
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  /* account for iOS safe areas */
  padding-top: max(24px, env(safe-area-inset-top));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  overflow: auto;
}

#galleryModal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#galleryModal .modal-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  display: block;
}

#galleryModal .close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#galleryModal .close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.ubicacion {
  padding: 80px 80px 0 80px;
  background-color: #ffffff;
}
.ubicacion .section-title-center {
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  color: #1d1d1d;
  margin-bottom: 30px;
  position: relative;
}
.ubicacion .section-title-center::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background-color: #d7c5a7;
}
.ubicacion .ubicacion-content {
  text-align: center;
  margin-bottom: 60px;
}
.ubicacion .event-details .event-date {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: #1d1d1d;
  margin-bottom: 0;
}
.ubicacion .event-details .event-location {
  font-family: "Montserrat", sans-serif;
  color: #1d1d1d;
  margin-bottom: 30px;
  font-weight: 500;
}
.ubicacion .event-details .maps-button {
  background: transparent;
  border: 2px solid #d7c5a7;
  color: #d7c5a7;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ubicacion .event-details .maps-button:hover {
  background-color: #d7c5a7;
  color: #ffffff;
}

.timeline-section {
  padding-bottom: 60px;
  background-color: #ffffff;
}
.timeline-section .timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 60px;
}
.timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #d7c5a7;
  transform: translateX(-50%);
}
.timeline-section .timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.timeline-section .timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-section .timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #d7c5a7;
  border-radius: 50%;
  z-index: 2;
}
.timeline-section .timeline-side {
  flex: 1;
  max-width: 360px;
}
.timeline-section .timeline-side--time {
  padding-right: 40px;
}
.timeline-section .timeline-side--time .timeline-time {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #1d1d1d;
  font-weight: 600;
}
.timeline-section .timeline-side--content {
  text-align: left;
  padding-left: 40px;
}
.timeline-section .timeline-side--content .timeline-icon-inline {
  background: #ffffff;
  margin: 0 0 12px 0;
}
.timeline-section .timeline-side--content .timeline-icon-inline img {
  width: 60px;
}
.timeline-section .timeline-side--content .timeline-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #d7c5a7;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}
.timeline-section .timeline-side--content .timeline-description {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #1d1d1d;
  line-height: 1.6;
}
.timeline-section .timeline-item:nth-child(even) .timeline-side--content {
  padding-left: 0;
  padding-right: 40px;
  text-align: right;
}
.timeline-section .timeline-item:nth-child(even) .timeline-side--time {
  padding-left: 40px;
  padding-right: 0;
}
.timeline-section .dress-code {
  text-align: center;
  margin-top: 40px;
}
.timeline-section .dress-code .dress-code-title {
  font-family: "Montserrat", sans-serif;
  color: #1d1d1d;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1.2rem;
}
.timeline-section .dress-code .dress-code-note {
  font-family: "Montserrat", sans-serif;
  color: #1d1d1d;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .timeline-section {
    /* Force even items to align left too */
  }
  .timeline-section .timeline::before {
    left: 30px;
  }
  .timeline-section .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 56px;
  }
  .timeline-section .timeline-item::before {
    left: 30px;
  }
  .timeline-section .timeline-item .timeline-side--time {
    padding: 0;
    text-align: left;
  }
  .timeline-section .timeline-item .timeline-side--content {
    padding: 0;
    text-align: left;
    max-width: 100%;
  }
  .timeline-section .timeline-item:nth-child(even) .timeline-side--content {
    text-align: left !important;
    padding: 0;
  }
  .timeline-section .timeline-item:nth-child(even) .timeline-side--time {
    text-align: left !important;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .ubicacion {
    padding: 60px 20px 0 20px;
  }
}
.gifts {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ffffff;
}
.gifts--title {
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  color: #1d1d1d;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  letter-spacing: 1px;
}
.gifts--title::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  background-color: #d7c5a7;
}
.gifts--content--description {
  font-family: "Montserrat", sans-serif;
  color: #1d1d1d;
  text-align: center;
  margin-bottom: 30px;
}
.gifts--content--buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.gifts--content--button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 36px;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.1s ease;
}
.gifts--content--button img {
  height: 26px;
  display: inline-block;
}
.gifts--content--button:active {
  transform: translateY(1px);
}
.gifts--content--button--envelop {
  background: #eeeeee;
  color: #1d1d1d;
}
.gifts--content--button--envelop:hover {
  background: #eeeeee;
}
.gifts--content--button--amazon {
  cursor: pointer;
  background: #d7c5a7;
  color: #ffffff;
}
.gifts--content--button--amazon:hover {
  background: #d7c5a7;
}

@media (max-width: 576px) {
  .gifts--content--buttons {
    gap: 16px;
  }
  .gifts--content--button {
    width: 100%;
    justify-content: center;
  }
}
.footer {
  background-color: #ffffff;
  padding: 40px 0;
}
.footer--title {
  margin: 0;
  font-family: "Tempting", Times, serif;
  font-size: 2rem;
  text-align: center;
  line-height: 1;
  color: #d7c5a7;
}

.rsvp {
  background: url("../img/rsvp.png");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}
.rsvp--content {
  padding: 180px 0;
}
.rsvp-box {
  background-color: #ffffff;
  padding: 50px;
}
.rsvp-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.5rem;
  position: relative;
}
.rsvp-title::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 60px;
  height: 5px;
  background-color: #d7c5a7;
}
.rsvp-input {
  background-color: #eeeeee;
  border: none;
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
}
.rsvp-input:focus {
  outline: none;
}
.rsvp-button {
  background-color: transparent;
  color: #d7c5a7;
  border: 1px solid #d7c5a7;
  padding: 8px 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.rsvp-button:hover {
  background-color: #d7c5a7;
  color: #ffffff;
}
.rsvp-button:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .rsvp .row {
    justify-content: center;
  }
  .rsvp .col-5 {
    width: 100%;
    max-width: 520px;
  }
  .rsvp .rsvp-form .text-end {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .rsvp-box {
    padding: 46px;
  }
  .rsvp-button {
    width: 100%;
  }
  .rsvp .col-5 {
    max-width: 100%;
  }
  .rsvp .rsvp-form .text-end {
    text-align: center;
  }
}
.access-gate {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  height: 100svh; /* safari dynamic */
  background: #ffffff;
  display: none; /* shown by JS */
  align-items: center;
  justify-content: center;
  z-index: 4000;
  padding: 24px;
  padding-top: max(24px, env(safe-area-inset-top));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}

.access-gate__inner {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.access-gate__title {
  font-family: "Tempting";
  color: #d7c5a7;
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.access-gate__subtitle {
  font-family: "Montserrat", sans-serif;
  color: #1d1d1d;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.access-gate__form {
  display: grid;
  gap: 16px;
}

.access-gate__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd4dc;
  font-size: 1.1rem;
  text-align: center;
  appearance: none;
}

.access-gate__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.access-gate__button {
  background: #d7c5a7;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
}

.access-gate__error {
  color: #b30000;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .access-gate__title {
    font-size: 2.2rem;
  }
  .access-gate__subtitle {
    font-size: 1rem;
  }
}
@font-face {
  font-family: "Tempting";
  src: url("../fonts/tempting.woff2") format("woff2"), url("../fonts/tempting.woff") format("woff"), url("../fonts/tempting.ttf") format("truetype"), url("../fonts/tempting.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.08s ease;
  border-radius: 0;
}
.button:active {
  transform: translateY(1px);
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button-primary {
  background-color: #d7c5a7;
  color: #ffffff;
  border: 1px solid #d7c5a7;
}
.button-primary:hover:not(:disabled) {
  background-color: #c5a97d;
  border-color: #c5a97d;
}

.button-light {
  background-color: transparent;
  color: #d7c5a7;
  border: 1px solid #d7c5a7;
}
.button-light:hover:not(:disabled) {
  background-color: #d7c5a7;
  color: #ffffff;
}

.modal-footer .button {
  min-width: 120px;
}
@media (max-width: 576px) {
  .modal-footer {
    flex-wrap: wrap;
    gap: 10px;
  }
  .modal-footer .button {
    width: 100%;
  }
}

.audio-control {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1400;
}

.audio-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #d7c5a7;
  background-color: #d7c5a7;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.08s ease;
}
.audio-btn:hover {
  background-color: #c5a97d;
  border-color: #c5a97d;
}
.audio-btn:active {
  transform: translateY(1px);
}

@media (max-width: 480px) {
  .audio-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .audio-control {
    right: 14px;
    bottom: 14px;
  }
}

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