/* =========================================
   05 Elegant Bride (Editorial & Minimalist)
   ========================================= */

:root {
    --white: #FFFFFF;
    --off-white: #FCFAFA;
    --black: #111111;
    --gray: #666666;
    --blush: #F5E6E8;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.editorial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

/* Typography & Core Elements */
.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 30px;
}

.names {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 40px;
    color: var(--black);
}

.tagline {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 500px;
    line-height: 1.8;
}

/* Sections */
.ed-hero {
    margin-bottom: 100px;
}

.ed-divider {
    width: 100%;
    height: 1px;
    background-color: #EAEAEA;
    margin: 80px 0;
}

.ed-details {
    display: flex;
    gap: 80px;
}

.detail-col {
    flex: 1;
}

.detail-col h3 {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 20px;
}

.detail-col .big-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--black);
}

.detail-col p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black);
    transition: gap 0.3s ease, color 0.3s ease;
}
.btn-text:hover {
    gap: 15px;
    color: #999;
    border-color: #999;
}

/* RSVP */
.ed-rsvp {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.ed-rsvp h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.ed-rsvp p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 40px;
}

.ed-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ed-form input,
.ed-form select {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #CCC;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    outline: none;
    border-radius: 0;
    transition: border-color 0.3s ease;
}
.ed-form input:focus,
.ed-form select:focus {
    border-color: var(--black);
}
.ed-form select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.btn-ed-solid {
    width: 100%;
    padding: 15px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}
.btn-ed-solid:hover {
    background-color: var(--gray);
}

.form-message {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Footer */
.ed-footer {
    margin-top: 150px;
    text-align: center;
    font-size: 0.8rem;
    color: #AAA;
}
.ed-footer a {
    color: var(--black);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .editorial-wrapper { padding: 60px 20px; }
    .names { font-size: 5rem; }
    .ed-details { flex-direction: column; gap: 40px; }
    .detail-col .big-text { font-size: 3.5rem; }
}
