@keyframes gentleSway {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
@keyframes petalFall {
  0% {
    top: -5%;
    opacity: 0;
    transform: rotate(0deg) translateX(0);
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    top: 105%;
    opacity: 0;
    transform: rotate(360deg) translateX(80px);
  }
}
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.8;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-weight: 300;
  color: #4a4540;
  background: #faf8f4;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(168, 197, 160, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(240, 196, 208, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 60% 80%, rgba(212, 192, 224, 0.06) 0%, transparent 50%);
}

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

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

.deco-leaf {
  position: fixed;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}
.deco-leaf--top-right {
  top: -20px;
  right: -20px;
  background: radial-gradient(ellipse at 100% 0%, #a8c5a0 0%, transparent 70%);
  border-radius: 0 0 0 100%;
}
.deco-leaf--bottom-left {
  bottom: -20px;
  left: -20px;
  background: radial-gradient(ellipse at 0% 100%, #f0c4d0 0%, transparent 70%);
  border-radius: 0 100% 0 0;
}
@media (min-width: 1024px) {
  .deco-leaf {
    width: 300px;
    height: 300px;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #fefcf8 0%, #eaf3e8 100%);
  border-right: 1px solid rgba(168, 197, 160, 0.25);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 30px rgba(107, 101, 96, 0.12);
}
.sidebar--open {
  transform: translateX(0);
}
.sidebar__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #8a8480;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.sidebar__close:hover {
  color: #4a4540;
  background: rgba(168, 197, 160, 0.15);
}
.sidebar__brand {
  text-align: center;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid #e8d8b0;
  margin-bottom: 1.5rem;
}
.sidebar__monogram {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2rem;
  font-weight: 300;
  color: #4a4540;
  letter-spacing: 0.15em;
}
.sidebar__date {
  display: block;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.75rem;
  color: #b0aaa5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.sidebar__links {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b6560;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}
.sidebar__link:hover {
  background: rgba(168, 197, 160, 0.12);
  color: #4a4540;
  transform: translateX(4px);
}
.sidebar__link--active {
  background: rgba(168, 197, 160, 0.2);
  color: #6a8a62;
  font-weight: 500;
}
.sidebar__link-icon {
  font-size: 1.1rem;
  width: 1.5rem;
  text-align: center;
}
.sidebar__footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e8d8b0;
}
.sidebar__flower {
  font-size: 1.8rem;
  color: #f0c4d0;
  animation: gentleSway 4s ease-in-out infinite;
}
@media (max-width: 400px) {
  .sidebar {
    width: 260px;
  }
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 69, 64, 0.2);
  backdrop-filter: blur(2px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
.sidebar-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.hamburger {
  position: fixed;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 998;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(168, 197, 160, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(107, 101, 96, 0.08);
}
.hamburger:hover {
  background: rgba(250, 248, 244, 0.95);
  border-color: #a8c5a0;
  box-shadow: 0 4px 12px rgba(107, 101, 96, 0.1);
}
.hamburger:hover .hamburger__line {
  background: #6a8a62;
}
.hamburger__line {
  display: block;
  width: 20px;
  height: 2px;
  background: #6b6560;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 400px) {
  .hamburger {
    top: 0.8rem;
    left: 0.8rem;
    width: 42px;
    height: 42px;
  }
}

.main-content {
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.5) 0%, rgba(250, 248, 244, 0.3) 50%, rgba(250, 248, 244, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero .petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.hero .petal {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: petalFall linear infinite;
}
.hero .petal--1 {
  left: 10%;
  background: #f0c4d0;
  animation-duration: 12s;
  animation-delay: 0s;
  width: 12px;
  height: 12px;
}
.hero .petal--2 {
  left: 25%;
  background: #f8e0e8;
  animation-duration: 15s;
  animation-delay: 2s;
  width: 12px;
  height: 12px;
}
.hero .petal--3 {
  left: 40%;
  background: #ece4f4;
  animation-duration: 11s;
  animation-delay: 4s;
  width: 12px;
  height: 12px;
}
.hero .petal--4 {
  left: 55%;
  background: #faeee4;
  animation-duration: 14s;
  animation-delay: 1s;
  width: 12px;
  height: 12px;
}
.hero .petal--5 {
  left: 70%;
  background: #f0c4d0;
  animation-duration: 13s;
  animation-delay: 3s;
  width: 12px;
  height: 12px;
}
.hero .petal--6 {
  left: 85%;
  background: #d4e8d0;
  animation-duration: 16s;
  animation-delay: 5s;
  width: 12px;
  height: 12px;
}
.hero .petal--7 {
  left: 15%;
  background: #d4c0e0;
  animation-duration: 10s;
  animation-delay: 6s;
  width: 8px;
  height: 8px;
}
.hero .petal--8 {
  left: 65%;
  background: #f5d8c4;
  animation-duration: 14s;
  animation-delay: 7s;
  width: 10px;
  height: 10px;
}
.hero__wreath {
  position: relative;
  width: 420px;
  height: 420px;
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
@media (min-width: 768px) {
  .hero__wreath {
    width: 500px;
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .hero__wreath {
    width: 560px;
    height: 560px;
  }
}
@media (max-width: 400px) {
  .hero__wreath {
    width: 300px;
    height: 300px;
  }
}
.hero__wreath-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: breathe 6s ease-in-out infinite;
}
.hero__text {
  animation: fadeInUp 1.2s ease-out 0.3s both;
  z-index: 4;
  position: relative;
  background: rgba(250, 248, 244, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 2rem 3rem 1.8rem;
  box-shadow: 0 4px 24px rgba(74, 69, 64, 0.08);
}
.hero__names {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 300;
  font-size: 4.5rem;
  letter-spacing: 0.08em;
  color: #4a4540;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3em;
}
@media (min-width: 768px) {
  .hero__names {
    font-size: 5.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__names {
    font-size: 6rem;
  }
}
@media (max-width: 400px) {
  .hero__names {
    font-size: 3.5rem;
  }
}
.hero__name {
  display: inline-block;
}
.hero__name--d {
  animation: fadeInLeft 1s ease-out 0.6s both;
}
.hero__name--m {
  animation: fadeInRight 1s ease-out 0.6s both;
}
.hero__ampersand {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 3rem;
  color: #4a4540;
  animation: fadeInUp 1s ease-out 0.8s both;
}
@media (min-width: 1024px) {
  .hero__ampersand {
    font-size: 3.5rem;
  }
}
@media (max-width: 400px) {
  .hero__ampersand {
    font-size: 2.2rem;
  }
}
.hero__divider {
  margin: 0.6rem 0;
}
.hero__divider-leaf {
  display: inline-block;
  font-size: 1.4rem;
  color: #a8c5a0;
  animation: gentleSway 4s ease-in-out infinite;
}
.hero__date {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #4a4540;
  letter-spacing: 0.12em;
  animation: fadeInUp 1.2s ease-out 0.5s both;
}
@media (min-width: 768px) {
  .hero__date {
    font-size: 2.6rem;
  }
}
@media (min-width: 1024px) {
  .hero__date {
    font-size: 2.8rem;
  }
}
@media (max-width: 400px) {
  .hero__date {
    font-size: 1.8rem;
  }
}
.hero__tagline {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #8a8480;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1rem;
  animation: fadeInUp 1.2s ease-out 0.7s both;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  color: #b0aaa5;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 4;
}

@media (prefers-reduced-motion: reduce) {
  .hero .petal, .hero__wreath-svg, .hero__divider-leaf, .hero__scroll-hint {
    animation: none !important;
  }
  .hero__wreath, .hero__text, .hero__name--d, .hero__name--m, .hero__ampersand, .hero__date, .hero__tagline {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.page-section {
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-section {
    padding: 5rem 2rem;
  }
}

.page-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: #4a4540;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  position: relative;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 3.2rem;
  }
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(168, 197, 160, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(107, 101, 96, 0.08);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(107, 101, 96, 0.1);
  border-color: rgba(168, 197, 160, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn--primary {
  background: #a8c5a0;
  color: white;
  box-shadow: 0 2px 12px rgba(168, 197, 160, 0.35);
}
.btn--primary:hover {
  background: #6a8a62;
  box-shadow: 0 4px 18px rgba(106, 138, 98, 0.3);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: #6b6560;
  border: 1px solid rgba(168, 197, 160, 0.4);
}
.btn--secondary:hover {
  background: #eaf3e8;
  border-color: #a8c5a0;
  color: #6a8a62;
}
.btn--blush {
  background: #f0c4d0;
  color: white;
  box-shadow: 0 2px 12px rgba(240, 196, 208, 0.35);
}
.btn--blush:hover {
  background: #c89898;
  transform: translateY(-1px);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #6b6560;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(168, 197, 160, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #4a4540;
  transition: all 0.3s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #a8c5a0;
  box-shadow: 0 0 0 3px rgba(168, 197, 160, 0.15);
  background: rgba(255, 255, 255, 0.9);
}
.form-input::-moz-placeholder, .form-select::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #b0aaa5;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #b0aaa5;
}

@media (prefers-reduced-motion: reduce) {
  .petal,
  .hero__wreath-svg,
  .sidebar__flower,
  .hero__divider-leaf,
  .hero__scroll-hint {
    animation: none !important;
  }
  .hero__wreath,
  .hero__text,
  .hero__name--d,
  .hero__name--m,
  .hero__ampersand,
  .hero__date,
  .hero__tagline {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.timeline-page {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.timeline {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #d4e8d0 5%, #d4e8d0 95%, transparent 100%);
  transform: translateX(-50%);
}
.timeline__item {
  position: relative;
  width: 50%;
  padding: 0 2.5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.timeline__item:nth-child(1) {
  animation-delay: 0.12s;
}
.timeline__item:nth-child(2) {
  animation-delay: 0.24s;
}
.timeline__item:nth-child(3) {
  animation-delay: 0.36s;
}
.timeline__item:nth-child(4) {
  animation-delay: 0.48s;
}
.timeline__item:nth-child(5) {
  animation-delay: 0.6s;
}
.timeline__item:nth-child(6) {
  animation-delay: 0.72s;
}
.timeline__item:nth-child(7) {
  animation-delay: 0.84s;
}
.timeline__item:nth-child(8) {
  animation-delay: 0.96s;
}
.timeline__item:nth-child(9) {
  animation-delay: 1.08s;
}
.timeline__item:nth-child(10) {
  animation-delay: 1.2s;
}
.timeline__item:nth-child(11) {
  animation-delay: 1.32s;
}
.timeline__item:nth-child(12) {
  animation-delay: 1.44s;
}
.timeline__item--right {
  margin-left: 50%;
}
.timeline__item--right .timeline__card {
  border-left: 3px solid #d4e8d0;
}
.timeline__item--right .timeline__card::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid rgba(255, 255, 255, 0.85);
}
.timeline__item--right .timeline__dot {
  left: -2.5rem;
  transform: translateX(-50%);
}
.timeline__item--left {
  margin-left: 0;
  text-align: right;
}
.timeline__item--left .timeline__card {
  border-right: 3px solid #f8e0e8;
}
.timeline__item--left .timeline__card::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid rgba(255, 255, 255, 0.85);
}
.timeline__item--left .timeline__dot {
  right: -2.5rem;
  transform: translateX(50%);
}
.timeline__item--left .timeline__hour {
  text-align: right;
}
.timeline__dot {
  position: absolute;
  top: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #d4e8d0;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(168, 197, 160, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}
.timeline__dot-icon {
  font-size: 1rem;
  line-height: 1;
}
.timeline__item:hover .timeline__dot {
  transform: translateX(-50%) scale(1.15);
  border-color: #a8c5a0;
  box-shadow: 0 3px 16px rgba(168, 197, 160, 0.3);
}
.timeline__item--left:hover .timeline__dot {
  transform: translateX(50%) scale(1.15);
}
.timeline__card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(107, 101, 96, 0.08);
  transition: all 0.3s ease;
}
.timeline__item:hover .timeline__card {
  box-shadow: 0 4px 12px rgba(107, 101, 96, 0.1);
  transform: translateY(-2px);
}
.timeline__hour {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #6a8a62;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}
.timeline__event-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #4a4540;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.timeline__event-desc {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #6b6560;
  line-height: 1.6;
}
.timeline__end {
  text-align: center;
  padding-top: 1rem;
  position: relative;
  z-index: 2;
}
.timeline__end-icon {
  display: inline-block;
  font-size: 1.6rem;
  color: #a8c5a0;
  background: #faf8f4;
  padding: 0 0.5rem;
  animation: gentleSway 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
    transform: none;
  }
  .timeline__item {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 3.5rem;
    padding-right: 0;
    text-align: left !important;
  }
  .timeline__item--right .timeline__dot, .timeline__item--left .timeline__dot {
    left: 0;
    right: auto;
    transform: translateX(0);
  }
  .timeline__item--right .timeline__card, .timeline__item--left .timeline__card {
    border-left: 3px solid #d4e8d0;
    border-right: none;
  }
  .timeline__item--right .timeline__card::before, .timeline__item--left .timeline__card::before {
    left: -10px;
    right: auto;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.85);
    border-left: none;
  }
  .timeline__item--right .timeline__hour, .timeline__item--left .timeline__hour {
    text-align: left;
  }
  .timeline__item:hover .timeline__dot {
    transform: translateX(0) scale(1.15);
  }
  .timeline__end {
    margin-left: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .timeline__item {
    opacity: 1 !important;
    animation: none !important;
  }
  .timeline__end-icon {
    animation: none !important;
  }
}
.historia-page {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.journal {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border-radius: 4px;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, rgba(160, 140, 100, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 75% 15%, rgba(180, 155, 100, 0.1) 0%, transparent 40%), radial-gradient(ellipse at 20% 85%, rgba(175, 155, 110, 0.08) 0%, transparent 45%), radial-gradient(ellipse at 50% 50%, #faf6e8 0%, #f5edd4 70%, #e8dbb8 100%);
  box-shadow: inset 0 0 80px rgba(100, 80, 50, 0.08), inset 0 0 30px rgba(120, 100, 60, 0.05), 0 2px 20px rgba(100, 80, 50, 0.12), 0 8px 40px rgba(100, 80, 50, 0.08);
  border: 1px solid rgba(216, 200, 160, 0.6);
  transform: rotate(-0.3deg);
}
.journal::before, .journal::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.journal::before {
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(150, 130, 90, 0.15) 20%, rgba(150, 130, 90, 0.2) 50%, rgba(150, 130, 90, 0.15) 80%, transparent 100%);
  top: 35%;
  z-index: 1;
}
.journal::after {
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(315deg, rgba(120, 100, 60, 0.08) 0%, transparent 60%);
  border-radius: 0;
  z-index: 1;
}
.journal__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(140, 120, 80, 0.02) 3px, rgba(140, 120, 80, 0.02) 4px), repeating-linear-gradient(90deg, transparent, transparent 5px, rgba(130, 110, 70, 0.015) 5px, rgba(130, 110, 70, 0.015) 6px), radial-gradient(circle at 15% 25%, rgba(100, 80, 40, 0.08) 0%, transparent 1%), radial-gradient(circle at 72% 18%, rgba(110, 85, 45, 0.06) 0%, transparent 1%), radial-gradient(circle at 45% 62%, rgba(100, 80, 40, 0.07) 0%, transparent 1%), radial-gradient(circle at 88% 75%, rgba(110, 90, 50, 0.05) 0%, transparent 1%), radial-gradient(circle at 25% 88%, rgba(105, 85, 45, 0.06) 0%, transparent 1%), radial-gradient(circle at 60% 35%, rgba(100, 80, 40, 0.04) 0%, transparent 1%);
}
.journal__corner {
  position: absolute;
  font-size: 1.4rem;
  color: #a09480;
  opacity: 0.35;
  z-index: 2;
  line-height: 1;
}
.journal__corner--tl {
  top: 1rem;
  left: 1.2rem;
  transform: rotate(0deg);
}
.journal__corner--tr {
  top: 1rem;
  right: 1.2rem;
  transform: scaleX(-1);
}
.journal__corner--bl {
  bottom: 1rem;
  left: 1.2rem;
  transform: scaleY(-1);
}
.journal__corner--br {
  bottom: 1rem;
  right: 1.2rem;
  transform: scale(-1);
}
.journal__header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
.journal__header-ornament {
  display: block;
  font-size: 0.85rem;
  color: #a09480;
  letter-spacing: 0.5em;
  margin-bottom: 0.3rem;
}
.journal__header-subtitle {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-size: 1rem;
  color: #7a6e5c;
  letter-spacing: 0.15em;
}
.journal__content {
  position: relative;
  z-index: 2;
}
.journal__section-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #3a3228;
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.journal__section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a09480, transparent);
  margin: 0.5rem auto 0;
}
.journal__text {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #5a4e40;
  line-height: 1.9;
  text-align: justify;
  text-indent: 2em;
  margin-bottom: 1rem;
  hyphens: auto;
}
.journal__text:last-child {
  margin-bottom: 0;
}
.journal__separator {
  text-align: center;
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}
.journal__separator span {
  display: inline-block;
  font-size: 1.2rem;
  color: #a09480;
  position: relative;
}
.journal__separator span::before, .journal__separator span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 148, 128, 0.4), transparent);
}
.journal__separator span::before {
  right: calc(100% + 12px);
}
.journal__separator span::after {
  left: calc(100% + 12px);
}
.journal__footer {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(160, 148, 128, 0.2);
  position: relative;
  z-index: 2;
}
.journal__footer-ornament {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #7a6e5c;
  letter-spacing: 0.15em;
}
.journal__footer-date {
  display: block;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.7rem;
  color: #a09480;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

@media (min-width: 768px) {
  .journal {
    padding: 3.5rem 3.5rem;
  }
  .journal__section-title {
    font-size: 1.8rem;
  }
  .journal__text {
    font-size: 1.1rem;
  }
}
@media (min-width: 1024px) {
  .journal {
    padding: 4rem 4.5rem;
  }
}
@media (max-width: 400px) {
  .journal {
    padding: 2rem 1.5rem;
    transform: rotate(0deg);
    margin: 0 0.5rem;
  }
  .journal__corner {
    display: none;
  }
  .journal__section-title {
    font-size: 1.35rem;
  }
  .journal__text {
    font-size: 0.95rem;
    text-indent: 1.5em;
  }
  .journal__separator span::before, .journal__separator span::after {
    width: 40px;
  }
  .historia-page {
    padding-top: 4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .journal {
    transform: none;
  }
}
.swiadkowie-page {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.witnesses {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.witness-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(168, 197, 160, 0.25);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.8rem 2rem;
  padding-left: 7.5rem;
  box-shadow: 0 1px 3px rgba(107, 101, 96, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.witness-card:nth-child(1) {
  animation-delay: 0.15s;
}
.witness-card:nth-child(2) {
  animation-delay: 0.3s;
}
.witness-card:nth-child(3) {
  animation-delay: 0.45s;
}
.witness-card:nth-child(4) {
  animation-delay: 0.6s;
}
.witness-card:nth-child(5) {
  animation-delay: 0.75s;
}
.witness-card:nth-child(6) {
  animation-delay: 0.9s;
}
.witness-card:nth-child(7) {
  animation-delay: 1.05s;
}
.witness-card:nth-child(8) {
  animation-delay: 1.2s;
}
.witness-card:hover {
  box-shadow: 0 4px 12px rgba(107, 101, 96, 0.1);
  border-color: rgba(168, 197, 160, 0.4);
  transform: translateY(-3px);
}
.witness-card__photo-wrap {
  position: absolute;
  top: -20px;
  left: 1.5rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 12px rgba(168, 197, 160, 0.2), 0 0 0 1px rgba(168, 197, 160, 0.15);
  background: linear-gradient(135deg, #eaf3e8, #fdf2f5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  z-index: 3;
  transition: all 0.3s ease;
}
.witness-card:hover .witness-card__photo-wrap {
  box-shadow: 0 4px 18px rgba(168, 197, 160, 0.3), 0 0 0 1px rgba(168, 197, 160, 0.25);
  transform: scale(1.05);
}
.witness-card__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.witness-card__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.witness-card__body {
  position: relative;
  z-index: 2;
}
.witness-card__name {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a4540;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}
.witness-card__role {
  display: inline-block;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: white;
  background: #a8c5a0;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.witness-card:nth-child(even) .witness-card__role {
  background: #f0c4d0;
}
.witness-card__desc {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #6b6560;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.witness-card__fun-fact {
  position: relative;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  color: #7a6e5c;
  background: rgba(234, 243, 232, 0.5);
  border-left: 3px solid #d4e8d0;
  border-radius: 0 8px 8px 0;
  padding: 0.7rem 1rem;
  line-height: 1.6;
}
.witness-card:nth-child(even) .witness-card__fun-fact {
  background: rgba(253, 242, 245, 0.5);
  border-left-color: #f8e0e8;
}
.witness-card__fun-fact-label {
  font-weight: 500;
  font-style: normal;
  color: #6a8a62;
  margin-right: 0.3em;
}
.witness-card:nth-child(even) .witness-card__fun-fact-label {
  color: #c89898;
}

@media (max-width: 768px) {
  .witness-card {
    padding: 1.5rem 1.5rem 1.4rem;
    padding-top: 4rem;
  }
  .witness-card__photo-wrap {
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
  }
  .witness-card:hover .witness-card__photo-wrap {
    transform: translateX(-50%) scale(1.05);
  }
  .witness-card__body {
    text-align: center;
  }
  .witness-card__name {
    font-size: 1.35rem;
  }
  .witness-card__desc {
    text-align: left;
  }
  .witness-card__fun-fact {
    text-align: left;
  }
  .witnesses {
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .witness-card {
    padding-left: 8rem;
  }
  .witness-card__photo-wrap {
    width: 100px;
    height: 100px;
    top: -22px;
    left: 1.8rem;
  }
  .witness-card__name {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .witness-card {
    padding: 2.2rem 2.5rem 2rem 9rem;
  }
  .witness-card__photo-wrap {
    width: 110px;
    height: 110px;
    top: -24px;
    left: 2rem;
  }
}
@media (max-width: 400px) {
  .swiadkowie-page {
    padding-top: 4rem;
  }
  .witness-card {
    margin: 0 0.25rem;
  }
  .witness-card__photo-wrap {
    width: 70px;
    height: 70px;
    top: -24px;
  }
  .witness-card__name {
    font-size: 1.2rem;
  }
  .witness-card__desc {
    font-size: 0.85rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .witness-card {
    opacity: 1 !important;
    animation: none !important;
  }
}
.galeria-page {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.gallery-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.gallery-header__text {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #6b6560;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.gallery-header__text--small {
  font-size: 0.85rem;
  color: #8a8480;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.gallery-subtitle {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #4a4540;
  text-align: center;
  margin: 2rem 0 1.5rem;
  letter-spacing: 0.03em;
}

.gallery-empty {
  text-align: center;
  padding: 4rem 1rem;
}
.gallery-empty__icon {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.gallery-empty__text {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  color: #b0aaa5;
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(168, 197, 160, 0.2);
  box-shadow: 0 1px 3px rgba(107, 101, 96, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}
.gallery-item:hover {
  box-shadow: 0 4px 12px rgba(107, 101, 96, 0.1);
  border-color: rgba(168, 197, 160, 0.35);
  transform: translateY(-2px);
}
.gallery-item__media {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-item__media {
  transform: scale(1.03);
}
.gallery-item__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.3s ease;
}
.gallery-item__play-icon svg {
  margin-left: 3px;
}
.gallery-item:hover .gallery-item__play-icon {
  background: rgba(0, 0, 0, 0.55);
  transform: translate(-50%, -60%) scale(1.1);
}
.gallery-item__caption {
  padding: 0.5rem 0.75rem;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: #6b6560;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(168, 197, 160, 0.1);
}
.gallery-item__select-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 69, 64, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 5;
}
.gallery-item__check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
}
.gallery-item__check svg {
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-grid--select-mode .gallery-item {
  cursor: pointer;
}
.gallery-grid--select-mode .gallery-item__select-overlay {
  opacity: 0;
  pointer-events: auto;
}
.gallery-grid--select-mode .gallery-item:hover .gallery-grid--select-mode .gallery-item__select-overlay {
  opacity: 1;
  background: rgba(74, 69, 64, 0.25);
}
.gallery-grid--select-mode .gallery-item:hover .gallery-grid--select-mode .gallery-item__media {
  transform: none;
}
.gallery-grid--select-mode .gallery-item__play-icon {
  display: none;
}
.gallery-grid--select-mode .gallery-item--selected {
  border-color: #a8c5a0;
  box-shadow: 0 0 0 2px #a8c5a0, 0 4px 12px rgba(107, 101, 96, 0.1);
}
.gallery-grid--select-mode .gallery-item--selected .gallery-item__select-overlay {
  opacity: 1;
  background: rgba(106, 138, 98, 0.45);
}
.gallery-grid--select-mode .gallery-item--selected .gallery-item__check {
  background: #a8c5a0;
  border-color: #a8c5a0;
}
.gallery-grid--select-mode .gallery-item--selected .gallery-item__check svg {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 69, 64, 0.35);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #fefcf8;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(107, 101, 96, 0.12);
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  animation: fadeInUp 0.35s ease-out;
}
.modal-box--compact {
  max-width: 400px;
}
.modal-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0.75rem;
}
.modal-box__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #4a4540;
  letter-spacing: 0.02em;
}
.modal-box__close {
  background: none;
  border: none;
  color: #8a8480;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.modal-box__close:hover {
  color: #4a4540;
  background: rgba(168, 197, 160, 0.1);
}
.modal-box__body {
  padding: 0.75rem 1.5rem 1rem;
}
.modal-box__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem 1.5rem;
}

.gallery-upload-error {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: #c0392b;
  font-weight: 400;
}

.gallery-rate-info {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #c89898;
  margin-top: 0.5rem;
}

.form-label--hint {
  font-size: 0.75rem;
  font-style: italic;
  color: #b0aaa5;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: zoom-out;
}
.lightbox--visible {
  opacity: 1;
  visibility: visible;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  z-index: 10;
}
.lightbox__close:hover {
  color: white;
}
.lightbox__img, .lightbox__video {
  max-width: 90vw;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  cursor: default;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.lightbox__video {
  outline: none;
}

@media (max-width: 400px) {
  .galeria-page {
    padding-top: 4rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .gallery-item__caption {
    font-size: 0.7rem;
    padding: 0.4rem 0.5rem;
  }
  .gallery-actions {
    flex-direction: column;
    align-items: center;
  }
  .modal-box {
    margin: 0.5rem;
    border-radius: 12px;
  }
  .lightbox {
    padding: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item, .gallery-item__media, .gallery-item__play-icon {
    transition: none !important;
  }
  .modal-box {
    animation: none !important;
  }
}
.form-radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.4rem;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #6b6560;
  transition: all 0.3s ease;
}
.form-radio:hover {
  color: #4a4540;
}
.form-radio__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form-radio__mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(168, 197, 160, 0.4);
  background: rgba(255, 255, 255, 0.6);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.form-radio__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a8c5a0;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-radio__input:checked ~ .form-radio__mark {
  border-color: #a8c5a0;
}
.form-radio__input:checked ~ .form-radio__mark::after {
  transform: translate(-50%, -50%) scale(1);
}
.form-radio__input:focus-visible ~ .form-radio__mark {
  box-shadow: 0 0 0 3px rgba(168, 197, 160, 0.2);
}
.form-radio__label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.lightbox__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 92vh;
  cursor: default;
}
.lightbox__info {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 0.5rem 1rem;
  max-width: 600px;
}
.lightbox__info--top {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4e8d0;
  margin-bottom: 0.5rem;
}
.lightbox__info--bottom {
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.6rem;
}
.lightbox__img, .lightbox__video {
  max-height: 75vh;
}

.quiz-page {
  padding-top: 5rem;
  padding-bottom: 6rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.quiz-card {
  width: 100%;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(168, 197, 160, 0.2);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(107, 101, 96, 0.1);
  padding: 2.5rem 2rem 2rem;
  animation: fadeInUp 0.6s ease-out;
}
.quiz-card__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #4a4540;
  text-align: center;
  letter-spacing: 0.03em;
}
.quiz-card__divider {
  width: 80%;
  max-width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 197, 160, 0.4), transparent);
  margin: 1rem auto 2rem;
}

.quiz-form__group {
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}
.quiz-form__group:nth-child(1) {
  animation-delay: 0.1s;
}
.quiz-form__group:nth-child(2) {
  animation-delay: 0.2s;
}
.quiz-form__group:nth-child(3) {
  animation-delay: 0.3s;
}
.quiz-form__group:nth-child(4) {
  animation-delay: 0.4s;
}
.quiz-form__group:nth-child(5) {
  animation-delay: 0.5s;
}
.quiz-form__group:nth-child(6) {
  animation-delay: 0.6s;
}
.quiz-form__group:nth-child(7) {
  animation-delay: 0.7s;
}
.quiz-form__group:nth-child(8) {
  animation-delay: 0.8s;
}
.quiz-form__group:nth-child(9) {
  animation-delay: 0.9s;
}
.quiz-form__group:nth-child(10) {
  animation-delay: 1s;
}
.quiz-form__label {
  display: block;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #4a4540;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.quiz-form__number {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #a8c5a0;
  margin-right: 0.2em;
}
.quiz-form__select-wrap {
  position: relative;
}
.quiz-form__select {
  width: 100%;
  padding: 0.75rem 2.8rem 0.75rem 1rem;
  border: 1px solid rgba(168, 197, 160, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #4a4540;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
}
.quiz-form__select:focus {
  outline: none;
  border-color: #a8c5a0;
  box-shadow: 0 0 0 3px rgba(168, 197, 160, 0.15);
  background: rgba(255, 255, 255, 0.9);
}
.quiz-form__select:hover {
  border-color: rgba(168, 197, 160, 0.5);
}
.quiz-form__select option[value=""] {
  color: #b0aaa5;
}
.quiz-form__select option {
  font-weight: 300;
  color: #4a4540;
  background: white;
  padding: 0.5rem;
}
.quiz-form__select-arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8a8480;
  pointer-events: none;
  transition: all 0.3s ease;
}
.quiz-form__select:focus ~ .quiz-form__select-arrow {
  color: #a8c5a0;
}
.quiz-form__submit-wrap {
  text-align: center;
  margin-top: 2.2rem;
  padding-top: 1rem;
}
.quiz-form__error {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #c0392b;
}

.btn--lg {
  padding: 0.85rem 2.5rem;
  font-size: 0.95rem;
}

.quiz-result {
  max-width: 480px;
  text-align: center;
}
.quiz-result__body {
  padding: 1rem 2rem 1.5rem;
}
.quiz-result__emoji {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  animation: gentleSway 3s ease-in-out infinite;
}
.quiz-result__intro {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: #8a8480;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.quiz-result__name {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #4a4540;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.quiz-result__name::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #a8c5a0, #f0c4d0);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.quiz-result__desc {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #6b6560;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .quiz-card {
    padding: 3rem 3rem 2.5rem;
  }
  .quiz-card__title {
    font-size: 2.1rem;
  }
  .quiz-form__select {
    font-size: 0.92rem;
  }
}
@media (min-width: 1024px) {
  .quiz-card {
    padding: 3.5rem 4rem 3rem;
  }
}
@media (max-width: 400px) {
  .quiz-page {
    padding-top: 4rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .quiz-card {
    padding: 1.8rem 1.2rem 1.5rem;
    border-radius: 12px;
  }
  .quiz-card__title {
    font-size: 1.4rem;
  }
  .quiz-form__label {
    font-size: 0.82rem;
  }
  .quiz-form__select {
    font-size: 0.82rem;
    padding: 0.65rem 2.5rem 0.65rem 0.8rem;
  }
  .quiz-result__emoji {
    font-size: 2.8rem;
  }
  .quiz-result__name {
    font-size: 1.6rem;
  }
  .quiz-result__desc {
    font-size: 0.85rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .quiz-card,
  .quiz-form__group {
    opacity: 1 !important;
    animation: none !important;
  }
  .quiz-result__emoji {
    animation: none !important;
  }
}
.hero__graphic {
  width: 44%;
  height: 44%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.hero__graphic-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(212, 232, 208, 0.6), 0 4px 20px rgba(168, 197, 160, 0.15);
}
.hero__graphic-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  border-radius: 50%;
}

.fotograf-page {
  padding-top: 5rem;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fotograf-card {
  width: 100%;
  max-width: 620px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(168, 197, 160, 0.2);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(107, 101, 96, 0.1);
  padding: 3rem 2.5rem;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}
.fotograf-card__icon {
  color: #a8c5a0;
  margin-bottom: 1.5rem;
  animation: gentleSway 5s ease-in-out infinite;
}
.fotograf-card__icon svg {
  opacity: 0.6;
}
.fotograf-card__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #4a4540;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.fotograf-card__text {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: #6b6560;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}
.fotograf-card__divider {
  width: 60%;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 197, 160, 0.35), transparent);
  margin: 2rem auto;
}

.fotograf-signup__text {
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #8a8480;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.fotograf-signup__form {
  max-width: 440px;
  margin: 0 auto;
}
.fotograf-signup__input-wrap {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
}
.fotograf-signup__input {
  flex: 1;
  min-width: 0;
}
.fotograf-signup__btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.fotograf-signup__msg {
  margin-top: 0.75rem;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  border-radius: 8px;
  padding: 0.6rem 1rem;
}
.fotograf-signup__msg--success {
  color: #6a8a62;
  background: rgba(234, 243, 232, 0.7);
  border: 1px solid rgba(168, 197, 160, 0.2);
}
.fotograf-signup__msg--error {
  color: #a83232;
  background: rgba(253, 242, 242, 0.8);
  border: 1px solid rgba(232, 160, 160, 0.25);
}

@media (min-width: 768px) {
  .fotograf-card {
    padding: 3.5rem 3rem;
  }
  .fotograf-card__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .fotograf-card {
    padding: 4rem 4rem;
  }
}
@media (max-width: 400px) {
  .fotograf-page {
    padding-top: 4rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .fotograf-card {
    padding: 2rem 1.3rem;
    border-radius: 12px;
  }
  .fotograf-card__icon svg {
    width: 48px;
    height: 48px;
  }
  .fotograf-card__title {
    font-size: 1.35rem;
  }
  .fotograf-card__text {
    font-size: 0.85rem;
  }
}
@media (max-width: 767px) {
  .fotograf-signup__input-wrap {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fotograf-card {
    animation: none !important;
  }
  .fotograf-card__icon {
    animation: none !important;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 197, 160, 0.12);
}
.pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(168, 197, 160, 0.25);
  background: rgba(255, 255, 255, 0.6);
  color: #6b6560;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.pagination__btn:hover:not(.pagination__btn--disabled) {
  background: #eaf3e8;
  border-color: #a8c5a0;
  color: #6a8a62;
  transform: translateY(-1px);
}
.pagination__btn--disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.pagination__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.5rem;
  border-radius: 50%;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #6b6560;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.pagination__num:hover:not(.pagination__num--active) {
  background: rgba(168, 197, 160, 0.08);
  border-color: rgba(168, 197, 160, 0.2);
  color: #6a8a62;
}
.pagination__num--active {
  background: #a8c5a0;
  color: white;
  font-weight: 500;
  border-color: #a8c5a0;
  box-shadow: 0 2px 8px rgba(168, 197, 160, 0.3);
  cursor: default;
}
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 38px;
  font-size: 0.85rem;
  color: #b0aaa5;
  letter-spacing: 0.1em;
  cursor: default;
}

@media (max-width: 400px) {
  .pagination {
    gap: 0.25rem;
    margin-top: 2rem;
  }
  .pagination__btn, .pagination__num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 0.8rem;
  }
  .pagination__ellipsis {
    min-width: 22px;
  }
}/*# sourceMappingURL=styles.css.map */