:root {
  --black: #0a0a0a;
  --white: #f9f6f0;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --gold-dark: #9a6f2f;
  --cream: #f2ead8;
  --gray: #3a3a3a;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  background: #0a0a0a;
  color: #f9f6f0;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #c9a84c;
}

#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

@media (max-width: 600px) {
  #particles {
    opacity: 0.15;
  }
}
.gold-line {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 2rem auto;
  max-width: 340px;
}
.gold-line::before, .gold-line::after {
  content: "";
  flex: 1;
  height: 1px;
}
.gold-line::before {
  background: linear-gradient(to right, transparent, #c9a84c);
}
.gold-line::after {
  background: linear-gradient(to left, transparent, #c9a84c);
}

.gold-diamond {
  width: 8px;
  height: 8px;
  background: #c9a84c;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ornament {
  text-align: center;
  color: #c9a84c;
  opacity: 0.4;
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  margin: 8px 0;
}

section {
  padding: 80px 24px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: "Forum", serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: #c9a84c;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

h2 {
  font-family: "Forum", serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.2em;
  text-align: center;
  color: #f9f6f0;
}

p {
  line-height: 1.9;
  font-size: 0.9rem;
  color: #c8c0b0;
  text-align: center;
}

#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 70px;
  position: relative;
  z-index: 1;
  max-width: 100%;
  background-image: url("../img/photo/IMG_5956_2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero-frame {
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.hero-frame::before, .hero-frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #c9a84c;
  border-style: solid;
}
.hero-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}
.hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.hero-corner-br {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.hero-corner-tl-r {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.hero-corner-br,
.hero-corner-tl-r {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #c9a84c;
  border-style: solid;
}

.hero-eyebrow {
  font-family: "Forum", serif;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.monogram {
  font-family: "Corinthia", cursive;
  font-size: clamp(5rem, 20vw, 8rem);
  font-weight: 400;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.3);
}

.hero-names {
  font-family: "Corinthia", cursive;
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 400;
  color: #f9f6f0;
  line-height: 1.2;
}
.hero-names em {
  font-style: normal;
  color: #e8d08a;
}

.hero-amp {
  font-family: "Corinthia", cursive;
  color: #c9a84c;
  display: block;
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin: 4px 0;
  letter-spacing: 0.2em;
}

.hero-date-block {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Forum", serif;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  letter-spacing: 0.3em;
  color: #e8d08a;
}
.hero-date-block span {
  color: rgba(201, 168, 76, 0.5);
}

.hero-countdown {
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.hcd-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media (max-width: 400px) {
  .hcd-grid {
    gap: 2px;
  }
}

.hcd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 14px 12px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  min-width: 68px;
  position: relative;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(4px);
}
.hcd-unit::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #c9a84c;
  border-left: 1px solid #c9a84c;
}
.hcd-unit::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #c9a84c;
  border-right: 1px solid #c9a84c;
}
@media (max-width: 400px) {
  .hcd-unit {
    min-width: 56px;
    padding: 12px 10px 10px;
  }
}

.hcd-number {
  font-family: "Corinthia", cursive;
  font-size: clamp(2.2rem, 7vw, 3rem);
  color: #e8d08a;
  line-height: 1;
  display: block;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
  transition: opacity 0.15s ease;
}

.hcd-label {
  font-family: "Forum", serif;
  font-size: 0.4rem;
  letter-spacing: 0.35em;
  color: rgba(201, 168, 76, 0.55);
  text-transform: uppercase;
  display: block;
}

.hcd-sep {
  font-family: "Corinthia", cursive;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: rgba(201, 168, 76, 0.3);
  line-height: 1;
  margin-bottom: 18px;
  flex-shrink: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.hcd-message {
  font-family: "Corinthia", cursive;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: #e8d08a;
  text-align: center;
  margin-top: 20px;
  animation: ampGlow 3s ease-in-out infinite;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "Forum", serif;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: rgba(201, 168, 76, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #c9a84c, transparent);
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.band {
  background: #111;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 28px 24px;
  text-align: center;
  font-family: "Corinthia", cursive;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  color: #e8d08a;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
.band .band-source {
  font-family: "Forum", serif;
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(201, 168, 76, 0.5);
  margin-top: 6px;
}

.parallax-wrap {
  position: relative;
  overflow: hidden;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.parallax-wrap.full-bleed {
  max-width: 100%;
}

.parallax-img {
  width: 100%;
  display: block;
  will-change: transform;
  transition: transform 0s linear;
  transform: translateY(0);
  -o-object-fit: cover;
     object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.4);
  font-family: "Forum", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  gap: 12px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(201, 168, 76, 0.15);
}
.photo-placeholder svg {
  opacity: 0.3;
}
.photo-placeholder.ratio-wide {
  aspect-ratio: 16/7;
}
.photo-placeholder.ratio-hero {
  aspect-ratio: 3/2;
}
.photo-placeholder.ratio-port {
  aspect-ratio: 4/5;
}

.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.photo-full {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.couple-names {
  text-align: center;
  padding: 64px 24px;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.couple-names__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}
.couple-names__line--bottom {
  margin-top: 28px;
  margin-bottom: 0;
}
.couple-names__rule {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.6));
}
.couple-names__line--bottom .couple-names__rule {
  background: linear-gradient(to left, transparent, rgba(201, 168, 76, 0.6));
}
.couple-names__diamond {
  display: block;
  width: 7px;
  height: 7px;
  background: #c9a84c;
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
}
.couple-names__eyebrow {
  font-family: "Forum", serif;
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  color: rgba(201, 168, 76, 0.65);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.couple-names__name {
  font-family: "Corinthia", cursive;
  font-size: clamp(2.8rem, 9vw, 4.4rem);
  color: #e8d08a;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.couple-names__surname {
  font-family: "Forum", serif;
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  letter-spacing: 0.3em;
  color: rgba(249, 246, 240, 0.45);
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
  font-weight: 400;
}
.couple-names__amp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 20px 0;
}
.couple-names__amp-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
}
.couple-names__amp-glyph {
  font-family: "Corinthia", cursive;
  font-size: clamp(2rem, 6vw, 2.8rem);
  color: #c9a84c;
  line-height: 1;
  display: block;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
  animation: ampGlow 3s ease-in-out infinite;
}

@keyframes ampGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
  }
  50% {
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.55), 0 0 80px rgba(201, 168, 76, 0.15);
  }
}
#presentacion {
  z-index: 1;
}

.quote-verse {
  font-family: "Corinthia", cursive;
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  color: #e8d08a;
  text-align: center;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

.quote-source {
  font-family: "Forum", serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(201, 168, 76, 0.6);
  text-align: center;
  margin-top: 12px;
}

.parents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 2rem;
}
@media (min-width: 560px) {
  .parents-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.parent-card {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
}
.parent-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 168, 76, 0.06);
}

.parent-role {
  font-family: "Forum", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: #c9a84c;
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
}

.parent-name {
  font-family: "Corinthia", cursive;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 400;
  color: #f9f6f0;
  line-height: 1.4;
}

.parent-divider {
  width: 30px;
  height: 1px;
  background: #c9a84c;
  margin: 12px auto;
  opacity: 0.5;
}

.timeline {
  position: relative;
  max-width: 440px;
  margin: 2rem auto 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #c9a84c 20%, #c9a84c 80%, transparent);
  transform: translateX(-50%);
}
@media (max-width: 500px) {
  .timeline::before {
    left: 20px;
  }
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 0 16px;
  margin-bottom: 36px;
  align-items: start;
}
@media (max-width: 500px) {
  .timeline-item {
    grid-template-columns: 44px 1fr;
    gap: 0 12px;
  }
  .timeline-item .tl-left {
    display: none;
  }
  .timeline-item .tl-dot {
    margin-top: 4px;
  }
}

.tl-left {
  text-align: right;
}

.tl-right {
  text-align: left;
}

.tl-time {
  font-family: "Forum", serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #c9a84c;
  display: block;
  margin-bottom: 4px;
}

.tl-title {
  font-family: "Corinthia", cursive;
  font-size: 1.5rem;
  color: #f9f6f0;
  display: block;
}

.tl-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  color: #888;
  display: block;
  margin-top: 2px;
}

.tl-dot {
  width: 12px;
  height: 12px;
  border: 1px solid #c9a84c;
  background: #0a0a0a;
  border-radius: 50%;
  margin: 4px auto 0;
  position: relative;
}
.tl-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #c9a84c;
  border-radius: 50%;
}

.timeline-mobile {
  display: none;
}

@media (max-width: 700px) {
  .timeline-desktop {
    display: none;
  }
  .timeline-mobile {
    display: block;
    position: relative;
    margin: 2rem auto 0;
    padding-left: 36px;
  }
  .timeline-mobile::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #c9a84c 10%, #c9a84c 90%, transparent);
  }
  .tml-item {
    position: relative;
    margin-bottom: 32px;
  }
  .tml-item:last-child {
    margin-bottom: 0;
  }
  .tml-item::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 6px;
    width: 10px;
    height: 10px;
    border: 1px solid #c9a84c;
    background: #0a0a0a;
    border-radius: 50%;
  }
  .tml-item::after {
    content: "";
    position: absolute;
    left: -29px;
    top: 9px;
    width: 4px;
    height: 4px;
    background: #c9a84c;
    border-radius: 50%;
  }
  .tml-time {
    font-family: "Forum", serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: rgba(201, 168, 76, 0.7);
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
  }
  .tml-title {
    font-family: "Corinthia", cursive;
    font-size: 1.9rem;
    color: #f9f6f0;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
  }
  .tml-sub {
    font-family: "Montserrat", sans-serif;
    font-size: 0.73rem;
    color: #777;
    display: block;
  }
}
.venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 2rem;
}
@media (min-width: 560px) {
  .venue-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.venue-card {
  padding: 28px 24px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  text-align: center;
  position: relative;
}

.venue-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.venue-type {
  font-family: "Forum", serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: #c9a84c;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.venue-name {
  font-family: "Corinthia", cursive;
  font-size: 1.6rem;
  color: #f9f6f0;
  display: block;
  margin-bottom: 6px;
}

.venue-addr {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
}

.venue-cta {
  display: inline-block;
  margin-top: 14px;
  font-family: "Forum", serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: #c9a84c;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.venue-cta:hover {
  color: #e8d08a;
  border-color: #e8d08a;
}

.dresscode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}

.dc-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 24px 16px;
  text-align: center;
}

.dc-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dc-label {
  font-family: "Forum", serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #f9f6f0;
  display: block;
}

.dc-note {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  color: #777;
  margin-top: 4px;
  display: block;
}

.dresscode-note {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-left: 3px solid #c9a84c;
  padding: 16px 20px;
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  color: #aaa;
  text-align: left;
  line-height: 1.7;
}
.dresscode-note strong.label {
  font-family: "Forum", serif;
  color: #c9a84c;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.gift-cards {
  gap: 16px;
  margin-top: 2rem;
}
@media (min-width: 480px) {
  .gift-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.gift-card {
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.gift-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #9a6f2f, #e8d08a, #9a6f2f);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.gift-card:hover::after {
  transform: scaleX(1);
}

.gift-store {
  font-family: "Forum", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #c9a84c;
}

.gift-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: #888;
}

.gift-number {
  font-family: "Corinthia", cursive;
  font-size: 1.2rem;
  color: #f9f6f0;
  letter-spacing: 0.05em;
}

.gift-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Forum", serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: #c9a84c;
  text-decoration: none;
  margin-top: 4px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 1px;
  width: -moz-fit-content;
  width: fit-content;
}

.gift-cash {
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 24px;
  text-align: center;
  margin-top: 16px;
}
.gift-cash p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: #999;
  max-width: 380px;
  margin: 0 auto;
}

#confirmacion {
  background: #0d0d0d;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  max-width: 100%;
  padding: 80px 24px;
}
#confirmacion > .inner {
  max-width: 560px;
  margin: 0 auto;
}

.input-field {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #f9f6f0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}
.input-field::-moz-placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}
.input-field::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}
.input-field:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2);
}
.input-field option {
  background: #1a1a1a;
  color: #f9f6f0;
}

select.input-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea.input-field {
  resize: vertical;
  min-height: 100px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-family: "Forum", serif;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: #c9a84c;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.btn-confirm {
  width: 100%;
  background: transparent;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  font-family: "Forum", serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  padding: 16px 32px;
  cursor: pointer;
  transition: color 0.25s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn-confirm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #c9a84c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}
.btn-confirm:hover {
  color: #0a0a0a;
}
.btn-confirm:hover::before {
  transform: scaleX(1);
}
.btn-confirm span {
  position: relative;
  z-index: 1;
}

.form-msg {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  padding: 10px;
  margin-bottom: 12px;
}
.form-msg.success {
  color: #7cb87c;
}
.form-msg.error {
  color: #c87c7c;
}

.not-listed {
  text-align: center;
  margin-top: 20px;
  font-family: "Forum", serif;
  font-size: 0.78rem;
  color: rgba(201, 168, 76, 0.5);
  cursor: pointer;
  letter-spacing: 0.15em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.not-listed:hover {
  color: #c9a84c;
}

footer {
  padding: 48px 24px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-mono {
  font-family: "Corinthia", cursive;
  font-size: 4rem;
  color: #c9a84c;
  opacity: 0.12;
  display: block;
  margin-bottom: 16px;
}

footer p {
  font-family: "Forum", serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.15em;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 36px 28px;
  width: 100%;
  max-width: 400px;
  position: relative;
  animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(201, 168, 76, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover {
  color: #c9a84c;
}

.modal-title {
  font-family: "Corinthia", cursive;
  font-size: 1.8rem;
  color: #e8d08a;
  margin-bottom: 20px;
}

.modal-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: transparent;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  font-family: "Forum", serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  padding: 13px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.modal-btn:hover {
  background: #c9a84c;
  color: #0a0a0a;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.35s;
}

.reveal-delay-4 {
  transition-delay: 0.5s;
}

/*-----------------------------------------*/
#galeria {
  text-align: center;
  margin: 120px auto;
  max-width: 1000px;
}

.gallery-grid {
  margin-top: 50px;
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.gallery-item {
  margin-bottom: 16px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.4s;
}

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

/* MODAL */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 9999;
}

.gallery-modal img {
  max-width: 90%;
  max-height: 90%;
}

.gallery-modal.open {
  opacity: 1;
  pointer-events: auto;
}

/* MOBILE */
@media (max-width: 700px) {
  .gallery-grid {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    -moz-columns: 1;
         columns: 1;
  }
}/*# sourceMappingURL=theme.css.map */