/* =========================================================
   GARY & VERONA WEDDING WEBSITE
   MASTER STYLESHEET
   Theme: A Night in New Orleans, 1926
   ========================================================= */


/* =========================================================
   ROOT COLORS
   ========================================================= */

:root{
  --burgundy:#9d435a;
  --burgundy-deep:#4f1c2c;
  --burgundy-dark:#2f131d;

  --blush:#ead0d4;
  --champagne:#d8b56f;
  --champagne-light:#f2d99d;

  --ivory:#fbf6ef;
  --cream:#f4eadf;
  --white:#fffdf9;

  --ink:#21171a;
  --muted:#7d6870;

  --shadow:0 24px 60px rgba(57,19,31,.14);
}


/* =========================================================
   RESET
   ========================================================= */

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  overflow-x:hidden;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  background:var(--ivory);
  color:var(--ink);

  line-height:1.7;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
}

button,
input,
textarea,
select{
  font:inherit;
}


/* =========================================================
   BACKGROUND TEXTURE
   ========================================================= */

body::before{
  content:"";

  position:fixed;
  inset:0;

  pointer-events:none;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(216,181,111,.06),
      transparent 22%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(157,67,90,.05),
      transparent 20%
    );

  z-index:-1;
}


/* =========================================================
   GLOBAL LAYOUT
   ========================================================= */

.section{
  padding:110px 22px;
}

.wrap{
  width:100%;
  max-width:1120px;
  margin:0 auto;
}

.section-head{
  text-align:center;
  margin-bottom:56px;
}

.section-head .small,
.jazz-interlude .small{
  color:var(--burgundy);

  text-transform:uppercase;
  letter-spacing:.26em;

  font-size:.72rem;
  font-weight:bold;
}

.section-head h2{
  margin:.18em 0;

  font-size:clamp(2.7rem,5vw,4.7rem);
  font-weight:500;
  line-height:1.05;
}

.section-kicker{
  max-width:680px;
  margin:10px auto 0;

  font-size:1.05rem;
  font-style:italic;

  color:var(--muted);
}

.gold-rule{
  width:92px;
  height:1px;

  margin:18px auto;

  background:var(--champagne);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav{
  position:fixed;

  top:0;
  left:0;
  right:0;

  z-index:100;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:28px;

  padding:18px 5vw;

  color:white;

  background:
    linear-gradient(
      to bottom,
      rgba(35,15,22,.84),
      rgba(35,15,22,.3),
      transparent
    );

  transition:
    background .3s ease,
    border-color .3s ease,
    padding .3s ease;
}

nav.scrolled{
  padding-top:13px;
  padding-bottom:13px;

  background:rgba(63,24,36,.97);

  border-bottom:
    1px solid rgba(216,181,111,.42);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.brand{
  flex:0 0 auto;

  font-size:.95rem;

  letter-spacing:.18em;
  text-transform:uppercase;
}

.navlinks{
  display:flex;
  align-items:center;

  gap:22px;

  flex-wrap:wrap;
}

.navlinks a{
  position:relative;

  text-decoration:none;

  text-transform:uppercase;
  letter-spacing:.16em;

  font-size:.68rem;

  opacity:.92;
}

.navlinks a::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-6px;

  width:100%;
  height:1px;

  background:var(--champagne);

  transform:scaleX(0);

  transition:transform .25s ease;
}

.navlinks a:hover::after{
  transform:scaleX(1);
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
  position:relative;

  min-height:100vh;

  display:grid;

  grid-template-columns:
    minmax(0,1.02fr)
    minmax(0,.98fr);

  overflow:hidden;

  color:white;

  background:
    linear-gradient(
      110deg,
      rgba(63,24,36,.98) 0%,
      rgba(114,41,63,.92) 54%,
      rgba(62,24,35,.78) 100%
    );
}


/* HERO COPY */

.hero-copy{
  position:relative;

  z-index:5;

  display:flex;
  flex-direction:column;
  justify-content:center;

  min-width:0;

  padding:
    120px 6vw
    90px;
}

.hero .eyebrow{
  color:var(--champagne-light);
}

.hero h1{
  margin:.4rem 0 1.4rem;

  font-size:
    clamp(4rem,8vw,7.8rem);

  line-height:.88;

  font-weight:500;
}

.hero h1 em{
  color:#f0d18d;
  font-style:italic;
}

.hero .subtitle{
  margin:0 0 16px;

  font-size:
    clamp(1.3rem,2.4vw,1.9rem);

  font-style:italic;

  color:#f7e6dc;
}

.hero .date{
  max-width:650px;

  margin:0 0 28px;

  font-size:1.05rem;

  letter-spacing:.07em;
}


/* MONOGRAM */

.monogram{
  width:86px;
  height:86px;

  display:grid;
  place-items:center;

  margin-bottom:28px;

  border:
    1px solid rgba(240,209,141,.75);

  transform:rotate(45deg);

  background:
    rgba(255,255,255,.03);
}

.monogram span{
  transform:rotate(-45deg);

  font-size:1.55rem;

  letter-spacing:.08em;

  color:#f2d99d;
}


/* HERO BUTTONS */

.actions{
  display:flex;

  flex-wrap:wrap;

  gap:14px;
}

.button{
  display:inline-block;

  padding:14px 25px;

  border:
    1px solid var(--champagne);

  background:transparent;

  color:inherit;

  text-decoration:none;

  text-transform:uppercase;

  letter-spacing:.15em;

  font-size:.74rem;

  cursor:pointer;

  transition:
    transform .28s ease,
    background .28s ease,
    color .28s ease;
}

.button.primary{
  background:var(--champagne);
  color:#3d2430;
}

.button:hover{
  transform:translateY(-3px);

  background:#eed49c;
  color:#3d2430;
}


/* HERO PHOTO */

.hero-photo{
  position:relative;

  min-height:100vh;

  overflow:hidden;
}

.hero-photo img{
  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center 34%;

  filter:
    saturate(.9)
    contrast(1.03)
    brightness(.93);
}

.hero-photo::after{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(80,28,43,.46),
      transparent 46%,
      rgba(46,17,26,.12)
    );
}


/* HERO DECORATION */

.hero-frame{
  position:absolute;

  inset:28px;

  z-index:2;

  border:
    1px solid rgba(239,213,157,.65);

  pointer-events:none;
}

.deco-lines{
  position:absolute;

  inset:24px;

  z-index:2;

  border:
    1px solid rgba(216,181,111,.2);

  pointer-events:none;
}

.deco-lines::before,
.deco-lines::after{
  content:"";

  position:absolute;

  width:90px;
  height:90px;

  border:
    1px solid rgba(216,181,111,.4);

  transform:rotate(45deg);
}

.deco-lines::before{
  top:-45px;
  left:-45px;
}

.deco-lines::after{
  right:-45px;
  bottom:-45px;
}

.pearl-strand{
  position:absolute;

  top:55px;
  right:7%;

  z-index:4;

  width:210px;
  height:90px;

  border-top:
    2px solid rgba(255,244,225,.72);

  border-radius:50%;

  transform:rotate(8deg);

  pointer-events:none;
}

.pearl-strand::after{
  content:"";

  position:absolute;

  inset:-5px 0 auto;

  height:24px;

  background:
    radial-gradient(
      circle,
      #fffaf2 0 5px,
      #e6d9c5 6px,
      transparent 7px
    )
    0 0 / 24px 24px;
}


/* =========================================================
   HERO MUSIC CONTROL
   ========================================================= */

.music-toggle{
  position:absolute;

  right:32px;
  bottom:30px;

  z-index:20;

  display:inline-flex;
  align-items:center;

  gap:9px;

  padding:10px 18px;

  color:#f4dfb5;

  background:
    rgba(20,15,10,.58);

  border:
    1px solid rgba(244,223,181,.66);

  border-radius:30px;

  font-family:inherit;

  font-size:.76rem;

  letter-spacing:.12em;
  text-transform:uppercase;

  cursor:pointer;

  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);

  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease;
}

.music-toggle:hover,
.music-toggle.playing{
  background:
    rgba(244,223,181,.92);

  color:#24180f;
}

.music-toggle:hover{
  transform:translateY(-2px);
}

.music-toggle:focus-visible{
  outline:
    2px solid #f4dfb5;

  outline-offset:4px;
}

.music-icon{
  font-size:1.15rem;
  line-height:1;
}


/* =========================================================
   JAZZ INTERLUDE
   ========================================================= */

.jazz-interlude{
  padding:90px 22px;

  text-align:center;

  color:white;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(216,181,111,.10),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #4f1c2c,
      #7b3047 55%,
      #3c1825
    );
}

.jazz-inner{
  width:100%;
  max-width:960px;

  margin:0 auto;
}

.jazz-interlude .small{
  color:#edcf8e;
}

.jazz-interlude h2{
  margin:.2em 0;

  font-size:
    clamp(2.5rem,5vw,4.2rem);

  font-weight:500;
}

.jazz-intro{
  max-width:670px;

  margin:0 auto 42px;

  color:#f2e4e6;

  font-style:italic;
  font-size:1.08rem;
}

.jazz-player{
  width:100%;
}

.jazz-track{
  display:grid;

  grid-template-columns:
    80px minmax(0,1fr);

  gap:18px 24px;

  align-items:center;

  padding:24px 28px;

  text-align:left;

  border:
    1px solid rgba(216,181,111,.55);

  background:
    rgba(255,255,255,.055);
}

.track-era{
  width:66px;
  height:66px;

  display:grid;
  place-items:center;

  border:
    1px solid var(--champagne);

  color:#f2d99d;

  font-size:.8rem;

  transform:rotate(45deg);
}

.track-era{
  line-height:1;
}

.track-era::before{
  content:"";
}

.track-info{
  min-width:0;
}

.track-info h3{
  margin:0;

  color:#f5dc9f;

  font-size:1.4rem;
}

.track-info p{
  margin:.25rem 0 0;

  color:#efe3e5;
}

.jazz-track audio{
  grid-column:1 / -1;

  width:100%;

  margin-top:4px;
}

.jazz-credit{
  margin:28px 0 0;

  color:#d8c8cb;

  font-size:.78rem;

  letter-spacing:.04em;
}


/* =========================================================
   OUR STORY
   ========================================================= */

.story-grid{
  display:grid;

  grid-template-columns:
    minmax(0,.95fr)
    minmax(0,1.05fr);

  gap:54px;

  align-items:center;
}

.story-image{
  position:relative;

  padding:14px;

  background:#fffaf2;

  border:
    1px solid #dfc690;

  box-shadow:var(--shadow);
}

.story-image::before{
  content:"";

  position:absolute;

  inset:
    28px -22px
    -22px 28px;

  z-index:-1;

  border:
    1px solid rgba(216,181,111,.45);
}

.story-image img{
  width:100%;
  height:640px;

  object-fit:cover;
  object-position:center;
}

.story-title{
  margin:.3em 0;

  font-size:
    clamp(2.7rem,5vw,4.5rem);

  font-weight:500;
  line-height:1.05;
}

.story-kicker{
  margin:
    0 0 24px;

  text-align:left;
}

.story-copy p{
  font-size:1.06rem;
}

.pullquote{
  margin:28px 0;

  padding:
    22px 0
    22px 26px;

  border-left:
    3px solid var(--champagne);

  color:var(--burgundy-deep);

  font-size:1.45rem;
  font-style:italic;
}


/* =========================================================
   QUOTE INTERLUDE
   ========================================================= */

.interlude{
  position:relative;

  overflow:hidden;

  padding:120px 24px;

  text-align:center;

  background:
    linear-gradient(
      180deg,
      #fffdf9 0%,
      #f5eadf 100%
    );
}

.interlude::before,
.interlude::after{
  content:"";

  position:absolute;

  left:50%;

  width:180px;
  height:1px;

  background:var(--champagne);

  transform:translateX(-50%);
}

.interlude::before{
  top:55px;
}

.interlude::after{
  bottom:55px;
}

.interlude blockquote{
  max-width:940px;

  margin:0 auto;

  color:var(--burgundy);

  font-size:
    clamp(2rem,4vw,3.5rem);

  line-height:1.5;

  font-style:italic;
}

.interlude cite{
  display:block;

  margin-top:24px;

  color:#8a7766;

  font-size:.8rem;

  letter-spacing:.14em;
  text-transform:uppercase;
}


/* =========================================================
   DARK SECTIONS
   ========================================================= */

.dark{
  color:white;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(216,181,111,.13),
      transparent 26%
    ),
    linear-gradient(
      145deg,
      #702840,
      #2b151d
    );
}

.dark .section-kicker{
  color:#ead7dc;
}


/* =========================================================
   CARDS
   ========================================================= */

.cards{
  display:grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap:24px;
}

.card{
  position:relative;

  min-width:0;
  min-height:245px;

  overflow:hidden;

  padding:32px;

  border:
    1px solid rgba(216,181,111,.62);

  background:
    rgba(255,255,255,.04);
}

.card::before{
  content:"";

  position:absolute;

  top:-40px;
  right:-40px;

  width:80px;
  height:80px;

  border:
    1px solid rgba(216,181,111,.28);

  transform:rotate(45deg);
}

.card .label{
  color:#edcf8e;

  text-transform:uppercase;

  letter-spacing:.18em;

  font-size:.68rem;
}

.card h3{
  margin:.5rem 0 .8rem;

  color:#f6dea8;

  font-size:1.55rem;

  line-height:1.25;
}

.card p:last-child{
  margin-bottom:0;
}


/* =========================================================
   TRAVEL
   ========================================================= */

.details-grid{
  display:grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap:28px;
}

.panel{
  min-width:0;

  padding:34px;

  background:#fffaf3;

  border:
    1px solid #dfcda8;
}

.panel h3{
  margin-top:0;

  color:var(--burgundy);

  font-size:1.65rem;
}

.hotel-note{
  margin-top:18px;

  padding:18px 20px;

  background:#f5eadf;

  border-left:
    3px solid var(--champagne);
}

.hotel-streetcar-note{
  margin-top:18px;
}

.panel .button{
  margin-top:10px;

  color:var(--burgundy-deep);
}


/* =========================================================
   RSVP
   ========================================================= */

.rsvp{
  position:relative;

  padding:110px 22px;

  color:white;

  text-align:center;

  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(216,181,111,.12),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #702840,
      #3a1824
    );
}

.rsvp-heading{
  max-width:760px;

  margin:
    0 auto 45px;

  text-align:center;
}

.rsvp-heading .eyebrow{
  color:#edcf8e;
}

.rsvp-heading h2{
  margin:.15em 0;

  font-size:
    clamp(3rem,6vw,5rem);

  font-weight:500;
  line-height:1.05;
}

.rsvp-intro{
  max-width:650px;

  margin:0 auto;

  color:#f3e5e7;

  font-size:1.08rem;
}

.rsvp-form-container{
  position:relative;

  width:100%;
  max-width:850px;

  margin:0 auto;

  padding:14px;

  background:#fffdf9;

  border:
    1px solid rgba(216,181,111,.75);

  box-shadow:
    0 30px 70px
    rgba(20,5,12,.35);
}

.rsvp-form-container::before{
  content:"";

  position:absolute;

  inset:7px;

  border:
    1px solid rgba(216,181,111,.35);

  pointer-events:none;
}

.rsvp-form{
  position:relative;

  z-index:2;

  display:block;

  width:100%;
  height:1050px;

  border:0;

  background:white;
}


/* COUNTDOWN */

.countdown{
  display:grid;

  grid-template-columns:
    repeat(4,minmax(90px,1fr));

  gap:16px;

  width:100%;
  max-width:720px;

  margin:36px auto 0;
}

.countdown-item{
  padding:22px 14px;

  border:
    1px solid rgba(240,209,141,.68);

  background:
    rgba(255,255,255,.07);

  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}

.countdown-item strong{
  display:block;

  margin-bottom:8px;

  color:#f2d99d;

  font-size:2rem;

  line-height:1;
}

.countdown-item span{
  font-size:.65rem;

  letter-spacing:.14em;
  text-transform:uppercase;
}


/* =========================================================
   ATTIRE
   ========================================================= */

.attire-section{
  width:100%;

  padding:90px 24px;

  overflow:hidden;

  background:#f5efe5;

  color:#281d18;
}

.attire-header{
  width:100%;
  max-width:760px;

  margin:
    0 auto 42px;

  text-align:center;
}

.attire-eyebrow{
  margin:0 0 12px;

  color:#8b6b3f;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size:.75rem;
  font-weight:700;

  letter-spacing:.22em;
  text-transform:uppercase;
}

.attire-title{
  margin:0 0 20px;

  color:#281d18;

  font-size:
    clamp(2.4rem,5vw,4.4rem);

  font-weight:400;

  line-height:1.05;
}

.attire-intro{
  width:100%;
  max-width:700px;

  margin:0 auto;

  color:#49372e;

  font-size:1.08rem;

  line-height:1.75;
}

.attire-content{
  width:100%;
  max-width:900px;

  margin:0 auto;

  overflow:hidden;

  background:#fffaf2;

  border:
    1px solid rgba(92,65,42,.18);

  box-shadow:
    0 18px 45px
    rgba(50,35,25,.08);
}

.attire-image-wrap{
  position:relative;

  width:100%;

  overflow:hidden;

  background:#ded4c7;
}

.attire-photo{
  width:100%;
  height:auto;

  object-fit:contain;
}

.attire-image-label{
  position:absolute;

  left:20px;
  bottom:20px;

  max-width:
    calc(100% - 40px);

  padding:10px 15px;

  background:
    rgba(30,21,16,.88);

  color:#fff7e9;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size:.7rem;
  font-weight:600;

  line-height:1.2;

  letter-spacing:.13em;
  text-transform:uppercase;
}

.attire-description{
  width:100%;

  padding:30px 40px;

  text-align:center;
}

.attire-description p{
  width:100%;
  max-width:720px;

  margin:
    0 auto 14px;

  color:#49372e;

  font-size:1rem;

  line-height:1.75;
}

.attire-description p:last-child{
  margin-bottom:0;
}

.attire-note{
  width:100%;
  max-width:850px;

  margin:
    45px auto 0;

  padding:22px 18px;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:15px;

  border-top:
    1px solid #a68453;

  border-bottom:
    1px solid #a68453;

  text-align:center;
}

.attire-note p{
  max-width:700px;

  margin:0;

  color:#49372e;

  font-size:.96rem;

  line-height:1.65;
}

.attire-star{
  flex:0 0 auto;

  color:#a68453;

  font-size:1.05rem;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery{
  display:grid;

  grid-template-columns:
    1.2fr .8fr .8fr;

  grid-auto-rows:290px;

  gap:18px;
}

.gallery figure{
  margin:0;

  overflow:hidden;

  background:#2b151d;

  border:
    1px solid rgba(216,181,111,.55);
}

.gallery img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:
    transform .5s ease;
}

.gallery figure:hover img{
  transform:scale(1.04);
}

.gallery .tall{
  grid-row:span 2;
}

.gallery .wide{
  grid-column:span 2;
}


/* =========================================================
   NEW ORLEANS HAPPENINGS
   ========================================================= */

.happenings-intro{
  max-width:820px;

  margin:
    0 auto 55px;

  text-align:center;

  color:#f3e6e9;

  font-size:1.05rem;
}

.happenings-group{
  margin-bottom:65px;
}

.happenings-group:last-child{
  margin-bottom:0;
}

.happenings-heading{
  margin-bottom:32px;

  text-align:center;
}

.happenings-heading h3{
  margin:.3rem 0;

  color:#fff7ea;

  font-size:2.1rem;

  font-weight:normal;
}


/* =========================================================
   CLOSING
   ========================================================= */

.closing{
  padding:90px 24px;

  text-align:center;

  background:#fffaf3;
}

.closing-inner{
  max-width:820px;

  margin:0 auto;
}

.closing p{
  margin:
    0 0 28px;

  color:var(--burgundy-deep);

  font-size:
    clamp(1.35rem,2.8vw,2rem);

  font-style:italic;
}

.closing-signature{
  color:var(--burgundy);

  font-size:1.35rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer{
  padding:36px 20px;

  color:#dcc69b;

  text-align:center;

  background:#28131b;
}

footer p{
  margin:.25rem 0;
}

.footer-monogram{
  width:54px;
  height:54px;

  display:grid;
  place-items:center;

  margin:
    0 auto 18px;

  border:
    1px solid rgba(216,181,111,.6);

  transform:rotate(45deg);
}

.footer-monogram span{
  color:#e6c77f;

  font-size:.95rem;

  transform:rotate(-45deg);
}


/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal{
  opacity:0;

  transform:
    translateY(24px);

  transition:
    opacity .75s ease,
    transform .75s ease;
}

.reveal.visible{
  opacity:1;

  transform:none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:920px){

  nav{
    padding:
      14px 20px;
  }

  .navlinks{
    display:none;
  }


  /* HERO */

  .hero{
    grid-template-columns:1fr;
  }

  .hero-copy{
    min-height:72vh;

    align-items:center;

    padding:
      120px 24px
      70px;

    text-align:center;
  }

  .hero-photo{
    min-height:62vh;
    height:62vh;
  }

  .hero-photo img{
    object-position:center 30%;
  }

  .hero .date{
    max-width:620px;
  }

  .actions{
    justify-content:center;
  }

  .pearl-strand{
    display:none;
  }


  /* STORY */

  .story-grid{
    grid-template-columns:1fr;

    gap:42px;
  }

  .story-image{
    max-width:680px;

    margin:0 auto;
  }

  .story-image img{
    height:520px;
  }

  .story-copy{
    max-width:760px;

    margin:0 auto;
  }


  /* CARDS */

  .cards{
    grid-template-columns:1fr;
  }


  /* TRAVEL */

  .details-grid{
    grid-template-columns:1fr;
  }


  /* GALLERY */

  .gallery{
    grid-template-columns:
      1fr 1fr;

    grid-auto-rows:250px;
  }

  .gallery .tall{
    grid-row:span 1;
  }

  .gallery .wide{
    grid-column:span 2;
  }


  /* ATTIRE */

  .attire-section{
    padding:
      70px 22px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:700px){

  .section{
    padding:
      78px 18px;
  }


  /* HERO */

  .hero-copy{
    min-height:78vh;

    padding:
      110px 18px
      70px;
  }

  .hero h1{
    font-size:
      clamp(3.6rem,18vw,5rem);
  }

  .hero .subtitle{
    font-size:1.25rem;
  }

  .hero .date{
    font-size:.93rem;
  }

  .actions{
    width:100%;
  }

  .actions .button{
    flex:
      1 1 100%;

    text-align:center;
  }

  .hero-photo{
    min-height:55vh;
    height:55vh;
  }

  .hero-frame{
    inset:15px;
  }

  .deco-lines{
    inset:12px;
  }

  .music-toggle{
    right:18px;
    bottom:18px;

    padding:
      9px 14px;

    font-size:.68rem;
  }


  /* JAZZ */

  .jazz-interlude{
    padding:
      72px 18px;
  }

  .jazz-track{
    grid-template-columns:1fr;

    padding:
      24px 18px;

    text-align:center;
  }

  .track-era{
    margin:0 auto;
  }

  .jazz-track audio{
    grid-column:auto;
  }


  /* STORY */

  .story-image img{
    height:420px;
  }

  .story-kicker{
    text-align:left;
  }

  .pullquote{
    font-size:1.25rem;
  }


  /* RSVP */

  .rsvp{
    padding:
      80px 12px;
  }

  .rsvp-form-container{
    padding:7px;
  }

  .rsvp-form{
    height:1250px;
  }


  /* COUNTDOWN */

  .countdown{
    grid-template-columns:
      repeat(2,1fr);
  }


  /* ATTIRE */

  .attire-section{
    padding:
      55px 16px;
  }

  .attire-header{
    margin-bottom:30px;
  }

  .attire-eyebrow{
    font-size:.64rem;

    letter-spacing:.14em;
  }

  .attire-title{
    font-size:
      2.65rem;
  }

  .attire-intro{
    font-size:.98rem;

    line-height:1.65;
  }

  .attire-description{
    padding:
      24px 20px;
  }

  .attire-description p{
    font-size:.94rem;

    line-height:1.65;
  }

  .attire-image-label{
    left:12px;
    bottom:12px;

    max-width:
      calc(100% - 24px);

    padding:
      8px 10px;

    font-size:.58rem;

    letter-spacing:.09em;
  }

  .attire-note{
    margin-top:35px;

    padding:
      18px 10px;

    gap:8px;
  }

  .attire-note p{
    font-size:.86rem;

    line-height:1.55;
  }


  /* GALLERY */

  .gallery{
    grid-template-columns:1fr;

    grid-auto-rows:300px;
  }

  .gallery .wide{
    grid-column:span 1;
  }


  /* HAPPENINGS */

  .happenings-heading h3{
    font-size:1.75rem;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:480px){

  .hero h1{
    font-size:3.5rem;
  }

  .monogram{
    width:74px;
    height:74px;
  }

  .section-head h2{
    font-size:2.6rem;
  }

  .story-image img{
    height:360px;
  }

  .card,
  .panel{
    padding:25px 22px;
  }

  .countdown-item{
    padding:
      18px 10px;
  }

  .countdown-item strong{
    font-size:1.7rem;
  }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;

    transition-duration:.01ms !important;
  }

  .reveal{
    opacity:1;
    transform:none;
  }

}
