/* ============================================================
   Wedding — Dusty Sage, Soft Peach & Gold Style
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color: #3a3a3a;
  background: #ffffff;
}

body {
  font-family: 'Nunito', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: #C1D5C5;
  color: #3a3a3a;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Typography ---- */

h1, h2, h3, h4 {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 0.5rem;
}

p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  max-width: 60ch;
}

/* ---- Container ---- */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 0;
  background: linear-gradient(170deg, rgba(185,210,195,0.3) 0%, rgba(255,255,255,0.6) 45%, rgba(235,181,150,0.3) 100%);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.nav--scrolled {
  background: linear-gradient(90deg, rgba(185,210,195,0.4) 0%, rgba(255,255,255,0.95) 50%, rgba(235,181,150,0.4) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, #C1D5C5, #EBB596) 1;
  padding: 0.8rem 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  position: relative;
}

.nav__logo {
  font-family: 'Dancing Script', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #3a3a3a;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav__paw {
  width: 20px;
  height: auto;
  vertical-align: middle;
}

.hero__paw {
  width: 0.7em;
  height: auto;
  display: inline-block;
  margin: 0 auto;
}

.footer__paw {
  width: 24px;
  height: auto;
  vertical-align: middle;
}


.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  color: #5a5a5a;
  transition: color 0.3s;
}

.nav__links a:hover {
  color: #3a3a3a;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #8FAF97;
  transition: width 0.3s;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  border: 1px solid #8FAF97;
  color: #5A7E6A !important;
  padding: 0.4rem 1.2rem !important;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}

.nav__cta:hover {
  background: #8FAF97;
  border-color: #8FAF97;
  color: #fff !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 2rem;
}

.nav__toggle span {
  width: 24px;
  height: 1px;
  background: #3a3a3a;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__decoration {
  position: absolute;
  width: 80%;
  max-width: 600px;
  opacity: 0.4;
}

.hero__decoration--top {
  top: 5%;
}

.hero__decoration--bottom {
  bottom: 10%;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__date {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #888;
}

.hero__title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #8FAF97 0%, #C4A96C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  paint-order: stroke fill;
}

.hero__ampersand {
  display: block;
  font-size: 0.5em;
  font-style: normal;
  color: #fff;
  -webkit-text-stroke: 1px #aaa;
  margin: 0.3em 0;
}

.hero__photo {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  margin: 0 auto 2rem;
  object-fit: contain;
}

.hero__subtitle {
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #777;
  text-align: center;
}

.hero__scroll-hint {
  margin-top: 4rem;
  opacity: 0.4;
}

.hero__scroll-dot {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* ============================================================
   Section
   ============================================================ */

.section {
  padding: 8rem 0;
}

.section--apricot {
  background: #ffffff;
}

.section {
  position: relative;
  overflow: hidden;
}

/* Pet decorations next to section titles */
.section__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section__title-row .section__title {
  margin-bottom: 0;
}

.pet-header {
  width: 100px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .pet-header {
    width: 65px;
  }
}

/* Top border accent alternating colors */
.section:nth-child(odd) .section__line {
  background: #C1D5C5;
}

.section:nth-child(even) .section__line {
  background: #EBB596;
}

.section__header {
  text-align: center;
  margin-bottom: 5rem;
}

.section__number {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #8FAF97;
  margin-bottom: 1rem;
}

.section__title {
  margin-bottom: 1.5rem;
}

.section__line {
  width: 60px;
  height: 1px;
  background: #8FAF97;
  margin: 0 auto;
}

.section__subtitle {
  margin-top: 1.5rem;
  color: #888;
  font-size: 0.9rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Story
   ============================================================ */

.story__chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.story__chapter:last-child {
  margin-bottom: 0;
}

.story__chapter--reverse {
  direction: rtl;
}

.story__chapter--reverse > * {
  direction: ltr;
}

.story__year {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #5A7E6A;
  border: 1px solid #8FAF97;
  padding: 0.2rem 0.8rem;
  margin-bottom: 1rem;
}

.story__text h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.story__text p {
  color: #666;
  line-height: 1.8;
}

/* ============================================================
   Placeholders
   ============================================================ */

.placeholder {
  background: #fafaf9;
  border: 1px dashed #B8CEBC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.placeholder svg {
  width: 60%;
  opacity: 0.5;
}

.placeholder__text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #bbb;
  margin-top: 0.5rem;
}

.placeholder--gallery {
  aspect-ratio: auto;
  height: 100%;
  min-height: 200px;
}

/* ============================================================
   Svatba (wedding overview)
   ============================================================ */

.section--wedding {
  background: linear-gradient(170deg, #d8eadf 0%, #fff 45%, #f5dece 100%);
}

.section--wedding .section__header {
  margin-bottom: 3.5rem;
}

.wedding-list {
  max-width: 420px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #8FAF97;
  border-radius: 6px;
  padding: 2rem 3rem;
}

.wedding-list__item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.wedding-list__item:last-child {
  border-bottom: none;
}

.wedding-list__item dt {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: #3a3a3a;
  width: 80px;
  flex-shrink: 0;
  text-align: right;
}

.wedding-list__item dd {
  font-size: 1.05rem;
  color: #555;
}

.wedding-list__item {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wedding-list__item:nth-child(2) {
  transition-delay: 0.15s;
}

.wedding-list__item:nth-child(3) {
  transition-delay: 0.3s;
}

.revealed .wedding-list__item,
[data-reveal].revealed .wedding-list__item {
  opacity: 1;
  transform: translateY(0);
}

.wedding-list__note {
  color: #aaa;
  font-size: 0.85rem;
  margin-left: 0.3rem;
}

.wedding-info__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.wedding-info__link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5A7E6A;
  border: 1px solid #C1D5C5;
  padding: 0.6rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.wedding-info__link:hover {
  background: #8FAF97;
  border-color: #8FAF97;
  color: #fff;
}

.placeholder--map {
  aspect-ratio: 21/9;
  margin-top: 3rem;
}

.placeholder--feast {
  aspect-ratio: 4/3;
}

.placeholder--accommodation {
  aspect-ratio: 16/10;
}

/* ============================================================
   Gallery
   ============================================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

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

.gallery__section {
  margin-bottom: 4rem;
}

.gallery__section:last-child {
  margin-bottom: 0;
}

.gallery__theme {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #5A7E6A;
  letter-spacing: 0.05em;
}

.gallery__description {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  max-width: 50ch;
  margin: 0 auto 1.5rem;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* ---- Gallery Timeline ---- */

/* Story photo strip — horizontal scrollable timeline */
.story-strip {
  margin-top: 4rem;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #C1D5C5 transparent;
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.story-strip::-webkit-scrollbar {
  height: 4px;
}

.story-strip::-webkit-scrollbar-thumb {
  background: #C1D5C5;
  border-radius: 2px;
}

.story-strip__track {
  display: flex;
  gap: 2rem;
  padding: 1rem 0 1.5rem;
  position: relative;
}

.story-strip__track::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.55rem;
  height: 1px;
  background: #C1D5C5;
}

.story-strip__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.story-strip__item::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid #8FAF97;
  background: #fff;
  position: relative;
  z-index: 1;
}

.story-strip__item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
}

.story-strip__date {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: #5A7E6A;
  white-space: nowrap;
}

/* ============================================================
   Venue (Místo svatby)
   ============================================================ */

.venue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.placeholder--venue {
  aspect-ratio: 4/3;
}

.venue__info h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.venue__info > p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.venue__details-grid {
  display: grid;
  gap: 1.2rem;
}

.venue__detail strong {
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5A7E6A;
}

.venue__detail p {
  color: #555;
}

.venue__detail a {
  color: #5A7E6A;
  border-bottom: 1px solid #8FAF97;
  transition: color 0.3s;
}

.venue__detail a:hover {
  color: #2c2c2c;
}

.venue__map {
  margin-top: 3rem;
}

/* ============================================================
   Timeline
   ============================================================ */

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #C1D5C5;
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  position: relative;
}

.timeline__time {
  width: 60px;
  text-align: right;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #999;
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.timeline__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid #8FAF97;
  background: #fff;
  flex-shrink: 0;
  margin-top: 0.35rem;
  position: relative;
  z-index: 1;
}

.timeline__content h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
}

.timeline__content p {
  color: #888;
  font-size: 0.85rem;
}

.timeline__day {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.timeline__day:first-of-type {
  margin-top: 0;
}

/* ============================================================
   Accommodation
   ============================================================ */

.accommodation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.accommodation--single {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

.accommodation__card--full .placeholder--accommodation {
  aspect-ratio: 16/9;
}

.accommodation__highlight {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: #EEF3F0;
  border-left: 3px solid #8FAF97;
}

.accommodation__highlight strong {
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5A7E6A;
}

.accommodation__highlight p {
  color: #555;
  font-size: 1rem;
}

.accommodation__card {
  border: 1px solid #B8CEBC;
  overflow: hidden;
}

.accommodation__info {
  padding: 1.5rem 2rem 2rem;
}

.accommodation__info h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.accommodation__distance {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1rem;
}

.accommodation__info > p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn--outline {
  border: 1px solid #8FAF97;
  background: transparent;
  color: #3a3a3a;
}

.btn--outline:hover {
  background: #8FAF97;
  color: #fff;
}

.btn--primary {
  background: #8FAF97;
  color: #fff;
  border: 1px solid #8FAF97;
}

.btn--primary:hover {
  background: #7AA087;
  border-color: #7AA087;
  color: #fff;
}

/* ============================================================
   Dress code
   ============================================================ */

.dresscode {
  text-align: center;
}

.dresscode__palette {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.dresscode__color {
  width: 56px;
  height: 72px;
  border: 1px solid #e8e8e8;
}

.dresscode__text h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.dresscode__text > p {
  max-width: 55ch;
  margin: 0 auto;
  color: #666;
}

.dresscode__suggestions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.dresscode__suggestion h4 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.dresscode__suggestion p {
  color: #666;
  font-size: 0.9rem;
}

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

.section--rsvp {
}

.rsvp-form {
  max-width: 640px;
  margin: 0 auto;
}

.rsvp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.rsvp-form__field {
  margin-bottom: 1.5rem;
}

.rsvp-form__field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5A7E6A;
  margin-bottom: 0.5rem;
}

.rsvp-form__field input[type="text"],
.rsvp-form__field input[type="email"],
.rsvp-form__field select,
.rsvp-form__field textarea {
  width: 100%;
  padding: 0.8rem 0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
  color: #3a3a3a;
  transition: border-color 0.3s;
  outline: none;
}

.rsvp-form__field input:focus,
.rsvp-form__field select:focus,
.rsvp-form__field textarea:focus {
  border-bottom-color: #8FAF97;
}

.rsvp-form__field textarea {
  resize: vertical;
  border: 1px solid #e0e0e0;
  padding: 0.8rem;
  margin-top: 0.2rem;
}

.rsvp-form__field textarea:focus {
  border-color: #8FAF97;
}

.rsvp-form__field select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6'%3E%3Cpath d='M0 0l6 6 6-6' fill='none' stroke='%23999' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.rsvp-form__radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.rsvp-form__radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.rsvp-form__radio input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #bbb;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.rsvp-form__radio input[type="radio"]:checked {
  border-color: #8FAF97;
}

.rsvp-form__radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: #8FAF97;
  border-radius: 50%;
}

.rsvp-form .btn {
  margin-top: 1rem;
  width: 100%;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  text-align: center;
  padding: 4rem 2rem 3rem;
  background: linear-gradient(170deg, rgba(193,213,197,0.15) 0%, rgba(255,255,255,0) 50%, rgba(235,181,150,0.15) 100%);
  border-top: 1px solid #e8e8e8;
}

.footer__decoration {
  max-width: 300px;
  margin: 0 auto 2rem;
  opacity: 0.4;
}

.footer__names {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
}

.footer__date {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #aaa;
  margin-top: 0.5rem;
}

.footer__love {
  font-size: 0.8rem;
  color: #bbb;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ============================================================
   Reveal animation
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .nav__links.active {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .story__chapter,
  .story__chapter--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .wedding-info__links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

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

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

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

  .venue {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .rsvp-form__row {
    grid-template-columns: 1fr;
  }

  .rsvp-form__radio-group {
    flex-direction: column;
    gap: 1rem;
  }

  .dresscode__suggestions {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .dresscode__color {
    width: 44px;
    height: 56px;
  }

  .timeline::before {
    left: 52px;
  }

  .timeline__time {
    width: 40px;
    font-size: 0.75rem;
  }

  .story-strip__item img {
    width: 140px;
    height: 140px;
  }

  .section {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.8rem;
  }

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

  .dresscode__palette {
    gap: 0.5rem;
  }

  .dresscode__color {
    width: 36px;
    height: 48px;
  }
}

