  /* ── VARIABLES ── */
  :root {
    --cream:     #f5f2eb;
    --cream-dark:#ede9df;
    --green:     #4a6650;
    --green-mid: #6b8a72;
    --green-light:#95a88e;
    --brown:     #7a5c3e;
    --brown-light:#a07850;
    --text:      #3a3228;
    --text-mid:  #6b5e52;
    --text-light:#9a8c80;
    --white:     #ffffff;
    --border:    rgba(106,120,98,0.25);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── FADE IN ANIMATIONS ── */
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ── HEADER / COVER ── */
  .cover {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
    background: var(--cream);
	  height: 767px;
  }

  .cover-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
	top: -100px;
  }

  .cover-bg img {
    width: 100%;
    max-width: 720px;
    object-fit: contain;
    opacity: 0.88;
    animation: gentle-float 8s ease-in-out infinite;
  }

  @keyframes gentle-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
  }

  .cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, transparent, var(--cream) 100%);
  }

  .cover-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
  }

  .cover-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
    display: block;
  }

  .cover-names {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.8rem, 11vw, 6.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }

  .cover-names em {
    font-style: normal;
    color: var(--green);
  }

  .cover-amp {
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(2.5rem, 7vw, 4rem);
    color: var(--brown-light);
    display: block;
    line-height: 1.1;
    margin: -6px 0;
  }

  .cover-date {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mid);
  }

  .cover-date-line {
    width: 40px;
    height: 1px;
    background: var(--green-light);
    opacity: 0.7;
  }

  /* ── DECORATIVE DIVIDER ── */
  .botanical-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .botanical-divider-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--green-light));
  }
  .botanical-divider-line.right {
    background: linear-gradient(to left, transparent, var(--green-light));
  }
  .botanical-divider svg {
    opacity: 0.6;
    flex-shrink: 0;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 72px 24px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .section-full {
    padding: 72px 24px;
    text-align: center;
  }

  .section-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--green);
    display: block;
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .section-title em {
    font-style: italic;
    color: var(--green);
  }

  .section-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    max-width: 520px;
    margin: 0 auto;
  }

  /* ── GREEN BAND ── */
  .green-band {
    background: var(--green);
    color: var(--white);
    padding: 56px 24px;
    text-align: center;
  }

  .green-band .section-label { color: rgba(255,255,255,0.6); }
  .green-band .section-title { color: var(--white); }
  .green-band .section-text { color: rgba(255,255,255,0.82); }

  /* ── LOCATION CARDS ── */
  .location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 560px;
    margin: 40px auto 0;
  }

  @media (min-width: 600px) {
    .location-grid { grid-template-columns: 1fr; }
  }

  .location-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .location-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--green-light), var(--green));
  }

  .location-card-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--green);
    display: block;
    margin-bottom: 10px;
  }

  .location-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .location-date-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 16px 0;
  }

  .location-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
  }

  .location-month-time {
    text-align: left;
  }

  .location-month {
    display: block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
  }

  .location-time {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--green);
  }

  .location-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
  }

  .location-address {
    font-size: 13px;
    color: var(--text-light);
    margin: 12px 0 20px;
    line-height: 1.6;
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }

  .map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.2s;
  }
  .map-btn:hover { opacity: 0.85; }



  /* ── SCHEDULE ── */
  .schedule-list {
    max-width: 480px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .schedule-item {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
  }

  .schedule-time {
    width: 76px;
    min-width: 76px;
    padding: 18px 16px 18px 0;
    text-align: right;
    font-size: 13px;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }

  .schedule-line-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
    min-width: 20px;
    flex-shrink: 0;
  }

  .schedule-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    border: 2px solid var(--cream);
    outline: 2px solid var(--green-light);
    margin-top: 22px;
    flex-shrink: 0;
  }

  .schedule-dot.small {
    background: var(--green-light);
    outline-color: transparent;
    width: 8px;
    height: 8px;
  }

  .schedule-connector {
    width: 1.5px;
    flex: 1;
    background: var(--border);
    min-height: 16px;
  }

  .schedule-card {
    flex: 1;
    padding: 14px 0 14px 16px;
    text-align: left;
  }

  .schedule-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 3px;
  }

  .schedule-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
  }

  /* ── INFO PILLS ── */
  .info-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
  }

  .info-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-mid);
  }

  .info-pill svg {
    color: var(--green);
    flex-shrink: 0;
  }

  /* ── DRESS CODE ── */
  .rules-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin-top: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .rule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1 1 160px;
    max-width: 200px;
  }

  .rule-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
  }

  .rule-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 400;
  }

  .rule-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
  }

  /* ── FOOTER BANNER ── */
  .footer-banner {
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 64px 24px;
    text-align: center;
  }

  .footer-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.3;
    max-width: 590px;
    margin: 0 auto 12px;
  }

  .footer-sub {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
  }

  /* ── PHOTO PLACEHOLDER ── */
  .photo-placeholder {
    /*width: auto;
    aspect-ratio: 16/9;
    background: var(--cream-dark);
    border: 2px dashed var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 13px;
    max-width: 1080px;
	  max-height: 480px;
    margin: 32px auto 0;
    overflow: hidden;*/
}
.swiper-pagination-bullet-active {
	background: #4a6650 !important;}
.photo-placeholder img{width: auto;
    max-width: 1080px;
    height: auto;
    max-height: 480px;
	border: 2px dashed var(--border);
    border-radius: 12px;
	
}
  .photo-placeholder svg { opacity: 0.4; 
border: 2px dashed var(--border);
    border-radius: 12px;}

  /* ── CONFETTI DECORATION ── */
  .leaf-decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.12;
  }


.gift-section{
  
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 24px;
    text-align: center;
}

/* ── CONFIRMATION SECTION ── */
  .rsvp-section {
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 24px;
    text-align: center;
  }

  .rsvp-note {
    max-width: 480px;
    margin: 24px auto 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  .rsvp-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.2s;
  }
  .rsvp-contact:hover { opacity: 0.85; }

.calendar{text-decoration: none;
    transition: opacity 0.2s;}

.calendar:hover .info-pill, .calendar:hover .info-pill svg{background: var(--green); color: var(--white);}

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }


.anillos{ width:90px; height:auto;}