@font-face {
    font-family: "Citadel Script";
    src: url("fonts/CitadelScript.otf") format("opentype");
}
:root {
  --cream: #f2ede2;
  --soft: #d8cfbd;
  --olive: #4f5430;
  --dark: #14140f;
  --white: #fffaf0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--dark); font-family: 'Montserrat', sans-serif; }
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 42px; background: rgba(20,20,15,.35); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,250,240,.2);
}
.brand, .nav a { color: var(--white); text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.brand { font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: .18em; }
.nav { display: flex; gap: 28px; }
.hero {
  min-height: 100vh; position: relative; display: grid; place-items: center; overflow: hidden;
  background: url('assets/couple-bg.jpeg') center/cover no-repeat;
}
.ampersand {
    display: inline-block;
    margin: 10px 0px;
}
.hero::before { content: ''; position: absolute; inset: 0; background: inherit; transform: scale(1.02); filter: grayscale(100%) contrast(.95) brightness(.72); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,8,.12), rgba(12,12,8,.38) 55%, rgba(12,12,8,.68)); }
.hero-content { position: relative; text-align: center; color: var(--white); padding: 0 20px; transform: translateY(-42px); }
.hero-logo {
    width: clamp(180px, 22vw, 320px); /* größer */
    height: auto;
    display: block;
    margin: 0 auto 10px;
    position: relative;
    top: 10px;                      /* höher */
    filter: invert(1) drop-shadow(0 8px 25px rgba(0,0,0,.45));
    opacity: .96;
}
.eyebrow, .hero-meta, .section-kicker { text-transform: uppercase; letter-spacing: .55em; font-size: 12px; font-weight: 500; }
.eyebrow {
    margin: 0 0 18px;
    position: relative;
    top: 0px;
}
.hero h1 { margin: 10px 0 16px; font-family: 'Citadel Script', cursive; font-weight: 400; font-size: clamp(48px, 10vw, 120px); line-height: .78; text-shadow: 0 8px 30px rgba(0,0,0,.45); }
.hero h1 span { font-family: 'Citadel Script', cursive; font-size: .32em; vertical-align: middle; }
.hero-meta { letter-spacing: .42em; }
.section { padding: 110px 9vw; }
.light { background: var(--cream); }
.dark {
    background: #722F37;
    color: var(--white);
}
.center { text-align: center; }

.section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 6vw, 78px);
   font-weight: 300; margin: 12px 0 20px; }


#details .names{
    font-family: 'Citadel Script', cursive !important;
    font-size: clamp(55px, 7vw, 90px);
    font-weight: 400;
}

.section p { max-width: 720px; font-size: 17px; margin: 0 auto; line-height: 1.8; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px;
   align-items: center; background: var(--soft); }

.detail-card { background: rgba(255,250,240,.62); padding: 42px; 
  border: 1px solid rgba(20,20,15,.12); }

.detail-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 
  38px; margin: 8px 0; }

.button { display: inline-block; margin-top: 18px; padding: 14px 26px; 
  border: 1px solid currentColor; color: var(--dark); text-decoration: none; 
  text-transform: uppercase; letter-spacing: .18em; font-size: 12px; }

.dark-button { background: var(--dark); color: var(--white); }

.timeline { max-width: 760px; margin-top: 38px; display: grid; gap: 22px; }

.timeline div { display: grid; grid-template-columns: 120px 1fr; border-bottom:
   1px solid rgba(255,255,255,.25); padding-bottom: 18px; }

.timeline span { letter-spacing: .24em; }

.timeline p { margin: 0; }

footer { text-align: center; padding: 34px; background: var(--dark); color: var(--white); letter-spacing: .18em; font-size: 12px; text-transform: uppercase; }

.faq-section{
  background: var(--cream);
}

.faq-container{
  width:90%;
  max-width:1500px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:70px;
}

.faq-text{
  flex:1;
}

.faq-image{
  flex:1;
}

.faq-image img{
  width:100%;
  height:auto;
  border-radius:8px;
  display:block;
}

.faq-item{
  border-bottom:1px solid rgba(20,20,15,.18);
  padding:22px 0;
}

.faq-item h3{
  font-family:'Cormorant Garamond', serif;
  font-size:30px;
  font-weight:300;
  margin-bottom:8px;
}

.faq-item p{
  margin:0;
  max-width:none;
}


@media (max-width: 760px) {
  .site-header { padding: 16px 20px; }
  .nav { gap: 14px; font-size: 10px; overflow-x: auto; }
  .brand { display: none; }
  .hero-content { transform: translateY(-28px); }
  .hero-logo { width: 150px; margin-bottom: 14px; }
  .hero h1 { font-size: 78px; }
  .hero-meta, .eyebrow { letter-spacing: .28em; }
  .split { grid-template-columns: 1fr; }
  .timeline div { grid-template-columns: 1fr; gap: 8px; }
}

.story-container{
  max-width:1800px;
  width:95%;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:40px;
  padding:10px 2px;
}

.story-text{
  flex:0.9;
}

.story-image{
  flex:1.4;
}


.story-image img{
  width:100%;
  height:auto;
  object-fit:contain;
  border-radius:6px;
}
@media (max-width:900px){

.story-container{
    flex-direction:column;
    gap:50px;
}

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

.faq-container{
  flex-direction: column;
  gap: 45px;
}

.faq-image{
  width: 100%;
}

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

}

.button,
nav a{
    position:relative;
    overflow:hidden;
    display:inline-block;
}


.ripple{
  position:absolute;
  border-radius:50%;
  background:rgba(226,211,175,.55);
  transform:scale(0);
  animation:ripple .6s linear;
  pointer-events:none;
}

@keyframes ripple{
    to{
        transform:scale(4);
        opacity:0;
    }
}