:root {
  --bg-color: #0f172a;
  --hero-overlay: rgba(15, 23, 42, 0.65);
  --text-light: #f8fafc;
  --text-muted: #cbd5e1;
  --accent: #f472b6;
  --button-bg: rgba(248, 113, 214, 0.95);
  --button-hover: #f9a8d4;
}

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-light);
  background: var(--bg-color);
  min-height: 100vh;
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-image {
  border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
filter: brightness(0.82);}

.overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.monogram {
  font-size: 1.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--accent);
}

.hero-content h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 0.5rem;
}

.hero-content h3 {
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

#countdown {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
}

.countdown-item {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.875rem;
}

.countdown-value {
  font-size: 1.75rem;
  font-weight: 700;
}

.countdown-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  background: var(--button-bg);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
transition: background 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;}

.button:hover,
.button:focus-visible {
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
background: var(--button-hover);
}

#story {
  max-width: 760px;
  margin: 4rem auto;
  padding: 0 2rem 4rem;
}

#story h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#story p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  #countdown {
    grid-template-columns: repeat(2, minmax(72px, 1fr));
  }
}
/* Wedding Details */

.section {
    padding: 100px 8%;
    background: #fff8fb;
    color: #49233f;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 14px;
    font-size: 52px;
    color: #49233f;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.7;
    color: #72566b;
}

.eyebrow {
    margin-bottom: 10px;
    color: #cc609e !important;
    font-size: 14px !important;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1050px;
    margin: 0 auto;
}

.detail-card {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);

    box-shadow: 0 18px 45px rgba(73, 35, 63, 0.12);

    text-align: center;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    width: 76%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #f8d8a8,
        #e9b96e,
        #f8d8a8
    );
}

.detail-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 28px 60px rgba(73, 35, 63, 0.18);
}

.detail-icon {
    margin-bottom: 18px;
    font-size: 42px;
}

.detail-card h3 {
    margin-bottom: 18px;
    color: #49233f;
    font-size: 30px;
}

.detail-card p,
.detail-card address {
    margin-bottom: 12px;
    color: #72566b;
    font-size: 17px;
    font-style: normal;
    line-height: 1.7;
}

.detail-time {
    color: #49233f !important;
    font-weight: bold;
}

.outline-button {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 26px;
    border: 2px solid #d866a7;
    border-radius: 50px;
    color: #9a346f;
    font-weight: bold;
    text-decoration: none;
    transition: 0.25s;
}

.outline-button:hover {
    background: #d866a7;
    color: white;
    transform: translateY(-2px);
}


/* Wedding Timeline */

.schedule-section {
    background: linear-gradient(180deg, #fff8fb, #f3e6f3);
}

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

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 145px;
    width: 2px;
    background: #e4b4d2;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 50px;
    padding-bottom: 45px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 137px;
    width: 18px;
    height: 18px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #d8b47a;
    box-shadow: 0 0 0 2px rgba(216, 180, 122, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item time {
    padding-top: 2px;
    color: #9a346f;
    font-size: 17px;
    font-weight: bold;
    text-align: right;
}

.timeline-item h3 {
    margin-bottom: 7px;
    color: #49233f;
    font-size: 24px;
}

.timeline-item p {
    color: #72566b;
    font-size: 17px;
    line-height: 1.6;
}


/* Phone and tablet layout */

@media (max-width: 760px) {
    .section {
        padding: 75px 22px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

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

    .detail-card {
        padding: 32px 24px;
    }

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-left: 42px;
    }

    .timeline-item::before {
        left: 1px;
    }

    .timeline-item time {
        text-align: left;
    }
}
/* Navigation */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
background: rgba(15, 23, 42, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    font-family: "Great Vibes", cursive;
    font-size: 2.2rem;
    color: #f8d8a8;
    text-decoration: none;
    letter-spacing: 0;
    font-weight: normal;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.08);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f472b6;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  padding-top: 100px;
}

@media (max-width: 760px) {
  .navbar {
    position: relative;
    padding: 18px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    padding-top: 2rem;
  }
}
/* Mobile navigation button */

.nav-toggle {
    display: none;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px 0;
    background: #f8fafc;
    transition: 0.25s ease;
}

@media (max-width: 760px) {
    .navbar {
        position: fixed;
        padding: 14px 22px;
        flex-direction: row;
        align-items: center;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        padding: 20px 22px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        background: rgba(15, 23, 42, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        padding-top: 90px;
    }
}
.and{
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 300;
    color:#f8d8a8;
    margin:10px 0;
}

.tagline{
    margin:30px auto;
    max-width:650px;
    color:#f1e7ea;
    font-size:20px;
    line-height:1.8;
}

.hero-content h1{
    font-family:"Cormorant Garamond",serif;
    font-weight:500;
    letter-spacing:1px;
}

.monogram{
    font-family:"Great Vibes",cursive;
    font-size:82px;
    color:#ffd99a;
    letter-spacing:normal;
    text-transform:none;
    margin-bottom:20px;
    text-shadow:0 0 20px rgba(0,0,0,.35);
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#countdown {
    margin-top: 20px;
    margin-bottom: 24px;
}

.hero-content .button {
    align-self: center;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(10, 15, 30, 0.35),
        rgba(10, 15, 30, 0.55)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
.subtitle::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    margin: 18px auto 0;
    background: #f8d8a8;
}
.countdown-item {
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.08);
    transition: transform .3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}
.detail-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(248, 216, 168, 0.18);
}

.detail-icon svg {
    width: 56px;
    height: 56px;
    fill: none;
    stroke: #b98a5a;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.floral-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.floral-divider::before,
.floral-divider::after {
    content: "";
    flex: 0 0 80px;
    height: 1px;
    background: #d8b47a;
    opacity: .8;
}

.floral-divider span {
    margin: 0 14px;
    color: #d8b47a;
    font-size: 1.2rem;
}
.story-section{
    padding:90px 8%;
}

.story-container{
    display:flex;
    align-items:center;
    gap:70px;
    max-width:1200px;
    margin:auto;
}

.story-image{
    flex:1;
}

.story-image img{
    width:100%;
    border-radius:30px;
    display:block;
    box-shadow:0 25px 60px rgba(73,35,63,.15);
}

.story-text{
    flex:1;
}

.story-text p{
    margin-bottom:22px;
    font-size:1.08rem;
    line-height:1.9;
    color:#6b5566;
}
@media (max-width:900px){

.story-container{
    flex-direction:column;
}

.story-image,
.story-text{
    width:100%;
}

}
.timeline-section {
    padding: 40px 8%;
    background: #fdf8f6;
}

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

.timeline::before {
    content: "";
    position: absolute;
    left: 149px;
    top: 36px;
    bottom: 40px;
    width: 3px;
    background: #d8b47a;
}

.timeline-item {
    position: relative;
    text-align: center;
    padding: 40px 0;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: #d8b47a;
    border: 4px solid #ffffff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(216, 180, 122, 0.25);
    transition: transform 0.3s ease;
}

.timeline-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a2944;
}

.timeline-event {
    font-size: 1rem;
    color: #6f5c6a;
}
.timeline-item:hover .timeline-dot{
    transform:scale(1.25);
    transition:.3s;
}

.timeline-item:hover h3{
    color:#d8b47a;
}
/* ================================
   FAQ PAGE
================================ */

.faq-page {
    min-height: 100vh;
    margin: 0;
    background:
        linear-gradient(rgba(18, 27, 35, 0.92), rgba(18, 27, 35, 0.97)),
        url("../images/engagement.jpg") center / cover fixed;
    color: #f8f3e9;
}

.faq-main {
    min-height: 100vh;
    padding: 140px 24px 80px;
}

.faq-hero {
    width: min(850px, 100%);
    margin: 0 auto 55px;
    text-align: center;
}

.faq-eyebrow {
    margin: 0 0 12px;
    color: #d8b47a;
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.faq-hero h1 {
    margin: 0;
    color: #fffaf0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1;
}

.faq-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: min(380px, 90%);
    margin: 28px auto;
}

.faq-divider span:not(.faq-flower) {
    width: 120px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(216, 180, 122, 0.85),
        transparent
    );
}

.faq-flower {
    color: #d8b47a;
    font-size: 1.7rem;
}

.faq-intro {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 250, 240, 0.78);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
}

.faq-container {
    width: min(900px, 100%);
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid rgba(216, 180, 122, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(216, 180, 122, 0.55);
    background: rgba(255, 255, 255, 0.075);
}

.faq-item.active {
    border-color: rgba(216, 180, 122, 0.7);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 25px 28px;
    border: 0;
    background: transparent;
    color: #fffaf0;
    cursor: pointer;
    text-align: left;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 600;
}

.faq-question:focus-visible {
    outline: 2px solid #d8b47a;
    outline-offset: -4px;
}

.faq-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(216, 180, 122, 0.6);
    border-radius: 50%;
    color: #d8b47a;
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #d8b47a;
    color: #17212a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-answer-inner {
    padding: 0 28px 26px;
}

.faq-answer p {
    margin: 0 0 12px;
    color: rgba(255, 250, 240, 0.75);
    font-family: "Inter", sans-serif;
    font-size: 0.98rem;
    line-height: 1.8;
}

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

.faq-closing {
    margin-top: 70px;
    text-align: center;
}

.faq-closing p {
    margin: 0 0 6px;
    color: rgba(255, 250, 240, 0.72);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-style: italic;
}

.faq-closing h2 {
    margin: 0;
    color: #d8b47a;
    font-family: "Great Vibes", cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
}

/* FAQ MOBILE */

@media (max-width: 700px) {
    .faq-main {
        padding: 115px 16px 60px;
    }

    .faq-hero {
        margin-bottom: 38px;
    }

    .faq-divider {
        gap: 10px;
    }

    .faq-divider span:not(.faq-flower) {
        width: 75px;
    }

    .faq-question {
        padding: 21px 18px;
    }

    .faq-answer-inner {
        padding: 0 18px 22px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}
/*==========================
GALLERY PAGE
==========================*/

.gallery-page{

    background:#17212a;
    color:#fffaf0;
    min-height:100vh;

}

.gallery-main{

    padding:140px 20px 80px;

}

.gallery-header{

    max-width:900px;
    margin:auto;
    text-align:center;

}

.gallery-eyebrow{

    color:#d8b47a;
    font-size:.85rem;
    letter-spacing:4px;
    text-transform:uppercase;
    font-family:Inter,sans-serif;

}

.gallery-header h1{

    font-family:"Cormorant Garamond",serif;
    font-size:4rem;
    margin:15px 0;

}

.gallery-divider{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin:30px 0;

}

.gallery-divider span:first-child,
.gallery-divider span:last-child{

    width:170px;
    height:1px;
    background:#d8b47a;

}

.gallery-divider .flower{

    color:#d8b47a;
    font-size:1.7rem;

}

.gallery-intro{

    max-width:650px;
    margin:auto;
    line-height:1.8;
    color:rgba(255,250,240,.75);
    font-family:Inter,sans-serif;

}
/* ==========================
   GALLERY PHOTO GRID
========================== */

.gallery-grid {
    width: min(1100px, 100%);
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    gap: 22px;
}

.gallery-card {
    position: relative;
    display: block;
    min-height: 280px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(216, 180, 122, 0.3);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 20, 27, 0.3),
        transparent 45%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.gallery-card:hover img {
    transform: scale(1.045);
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card:focus-visible {
    outline: 3px solid #d8b47a;
    outline-offset: 5px;
}

.gallery-featured {
    grid-column: span 12;
    height: 520px;
}

.gallery-portrait {
    grid-column: span 5;
    height: 560px;
}

.gallery-landscape {
    grid-column: span 7;
    height: 360px;
}

.gallery-wide {
    grid-column: span 12;
    height: 430px;
}

/* GALLERY TABLET */

@media (max-width: 850px) {
    .gallery-grid {
        gap: 16px;
    }

    .gallery-featured,
    .gallery-wide {
        height: 400px;
    }

    .gallery-portrait,
    .gallery-landscape {
        grid-column: span 6;
        height: 420px;
    }
}

/* GALLERY MOBILE */

@media (max-width: 600px) {
    .gallery-grid {
        margin-top: 50px;
        display: block;
    }

    .gallery-card,
    .gallery-featured,
    .gallery-portrait,
    .gallery-landscape,
    .gallery-wide {
        width: 100%;
        height: 350px;
        margin-bottom: 18px;
    }

    .gallery-portrait {
        height: 460px;
    }
}
/* ==========================
   GALLERY LIGHTBOX
========================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 90px;
    background: rgba(7, 12, 17, 0.94);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
    object-fit: contain;

    opacity: 0;
    transform: scale(0.94);
    transition:
        opacity 0.35s ease,
        transform 0.4s ease;
}
.lightbox.open .lightbox-image {
    opacity: 1;
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    border: 0;
    background: transparent;
    color: #fffaf0;
    cursor: pointer;
    font-size: 3rem;
    line-height: 1;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid rgba(216, 180, 122, 0.7);
    border-radius: 50%;
    background: rgba(23, 33, 42, 0.75);
    color: #d8b47a;
    cursor: pointer;
    font-size: 2.4rem;
    line-height: 1;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    color: #ffffff;
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .lightbox {
        padding: 70px 18px;
    }

    .lightbox-image {
        max-width: 100%;
        max-height: 75vh;
    }

    .lightbox-arrow {
        top: auto;
        bottom: 18px;
        transform: none;
        width: 46px;
        height: 46px;
    }

    .lightbox-prev {
        left: calc(50% - 58px);
    }

    .lightbox-next {
        right: calc(50% - 58px);
    }
}
/* ========================================
   THANK YOU & SCRIPTURE
======================================== */

.thank-you-section {
    padding: 110px 24px;
    background: #17212a;
    color: #fffaf0;
    text-align: center;
}

.thank-you-content {
    width: min(760px, 100%);
    margin: 0 auto;
}

.thank-you-floral {
    margin-bottom: 18px;
    color: #d8b47a;
    font-size: 2rem;
}

.thank-you-section h2 {
    margin: 0 0 25px;
    color: #fffaf0;
    font-family: "Great Vibes", cursive;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 400;
}

.thank-you-intro {
    margin-bottom: 18px;
    color: #d8b47a;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-style: italic;
}

.thank-you-message {
    max-width: 680px;
    margin: 0 auto 18px;
    color: rgba(255, 250, 240, 0.78);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.9;
}

.scripture-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 55px auto 40px;
}

.scripture-divider span:not(.scripture-flower) {
    width: 150px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #d8b47a,
        transparent
    );
}

.scripture-flower {
    color: #d8b47a;
    font-size: 1.7rem;
}

.wedding-scripture {
    max-width: 650px;
    margin: 0 auto 18px;
    color: #fffaf0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-style: italic;
    line-height: 1.55;
}

.scripture-reference {
    color: #d8b47a;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wedding-signature {
    margin-top: 60px;
}

.wedding-signature p {
    margin-bottom: 5px;
    color: rgba(255, 250, 240, 0.7);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-style: italic;
}

.wedding-signature h3 {
    margin: 0;
    color: #d8b47a;
    font-family: "Great Vibes", cursive;
    font-size: clamp(2.8rem, 6vw, 4.3rem);
    font-weight: 400;
}

.wedding-signature span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 250, 240, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .thank-you-section {
        padding: 80px 20px;
    }

    .scripture-divider span:not(.scripture-flower) {
        width: 80px;
    }
}
/* ========================================
   OUR STORY PAGE
======================================== */

.story-page {
    min-height: 100vh;
    background:
        linear-gradient(
            rgba(23, 33, 42, 0.94),
            rgba(23, 33, 42, 0.98)
        );
    color: #fffaf0;
}

.story-page .story-section {
    min-height: 100vh;
    padding: 150px 8% 100px;
}

/* Heading */

.story-page .section-heading {
    max-width: 800px;
    margin: 0 auto 65px;
    text-align: center;
}

.story-page .section-heading h1 {
    color: #fffaf0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 500;
}

.story-page .section-heading > p:not(.eyebrow) {
    color: rgba(255, 250, 240, 0.72);
}

.story-page .eyebrow {
    color: #d8b47a !important;
}

/* Story layout */

.story-page .story-container {
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(300px, 600px);
    align-items: center;
    justify-content: center;
    gap: 75px;

    width: min(1100px, 100%);
    margin: 0 auto;
}

/* Photo */

.story-page .story-image {
    width: 100%;
}

.story-page .story-image img {
    display: block;
    width: 100%;
    height: 520px;

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

    border: 7px solid rgba(255, 250, 240, 0.92);
    border-radius: 28px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(216, 180, 122, 0.25);
}

/* Story text */

.story-page .story-text p {
    margin: 0 0 24px;

    color: rgba(255, 250, 240, 0.8);

    font-family: "Inter", sans-serif;
    font-size: 1.03rem;
    line-height: 1.9;
}

/* Gold decoration */

.story-page .floral-divider {
    color: #d8b47a;
}

/* Mobile */

@media (max-width: 850px) {

    .story-page .story-section {
        padding: 125px 22px 80px;
    }

    .story-page .story-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .story-page .story-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .story-page .story-image img {
        height: auto;
        max-height: 600px;
    }

    .story-page .story-text {
        max-width: 650px;
        margin: 0 auto;
    }
}
/* ========================================
   WEDDING INFORMATION PAGE
======================================== */

.wedding-page {
    min-height: 100vh;
    background: #17212a;
    color: #fffaf0;
}

.wedding-main {
    overflow: hidden;
}

/* Hero */

.wedding-hero {
    padding: 155px 24px 75px;
    text-align: center;
}

.wedding-hero .section-heading {
    max-width: 800px;
    margin: 0 auto;
}

.wedding-hero h1 {
    margin: 10px 0 18px;
    color: #fffaf0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 500;
}

.wedding-hero .section-heading > p:not(.eyebrow) {
    color: rgba(255, 250, 240, 0.7);
    font-family: "Inter", sans-serif;
    line-height: 1.8;
}


/* Ceremony & Reception */

.wedding-info-section {
    padding: 20px 24px 100px;
}

.wedding-info-grid {
    width: min(1100px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.wedding-info-card {
    position: relative;

    padding: 55px 45px;

    border: 1px solid rgba(216, 180, 122, 0.28);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);

    text-align: center;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.wedding-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 180, 122, 0.6);
}

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

    color: #d8b47a;

    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wedding-info-card h2 {
    margin: 0 0 20px;

    color: #fffaf0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 500;
}

.venue-address {
    margin-bottom: 30px;

    color: rgba(255, 250, 240, 0.7);

    font-family: "Inter", sans-serif;
    line-height: 1.8;
}

.venue-times {
    margin: 30px 0;
    padding: 25px 0;

    border-top: 1px solid rgba(216, 180, 122, 0.2);
    border-bottom: 1px solid rgba(216, 180, 122, 0.2);
}

.venue-times p {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    margin: 10px 0;

    color: #fffaf0;

    font-family: "Inter", sans-serif;
}

.venue-times span {
    color: rgba(255, 250, 240, 0.58);
}

.directions-button {
    display: inline-block;

    margin-top: 10px;
    padding: 14px 28px;

    border: 1px solid #d8b47a;
    border-radius: 100px;

    color: #d8b47a;

    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.directions-button:hover {
    background: #d8b47a;
    color: #17212a;
    transform: translateY(-2px);
}


/* Guest Information */

.guest-info-section {
    padding: 100px 24px;
    background: rgba(255, 250, 240, 0.035);
}

.guest-info-section .section-heading {
    margin-bottom: 55px;
    text-align: center;
}

.guest-info-section h2 {
    color: #fffaf0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 500;
}

.guest-info-grid {
    width: min(1050px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guest-info-card {
    padding: 42px 30px;

    border: 1px solid rgba(216, 180, 122, 0.18);
    border-radius: 24px;

    background: rgba(23, 33, 42, 0.55);

    text-align: center;
}

.guest-info-icon {
    display: block;

    margin-bottom: 18px;

    color: #d8b47a;
    font-size: 2rem;
}

.guest-info-card h3 {
    margin-bottom: 14px;

    color: #fffaf0;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.guest-info-card p {
    margin: 0;

    color: rgba(255, 250, 240, 0.68);

    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
}


/* Wedding Schedule */

.wedding-schedule-section {
    padding: 110px 24px;
}

.wedding-schedule-section .section-heading {
    margin-bottom: 55px;
    text-align: center;
}

.wedding-schedule-section h2 {
    color: #fffaf0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 500;
}

.wedding-schedule-section .section-heading > p:not(.eyebrow) {
    color: rgba(255, 250, 240, 0.65);
}

.wedding-schedule {
    width: min(720px, 100%);
    margin: 0 auto;

    border-top: 1px solid rgba(216, 180, 122, 0.25);
}

.wedding-schedule-item {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    gap: 30px;

    padding: 22px 10px;

    border-bottom: 1px solid rgba(216, 180, 122, 0.18);
}

.wedding-schedule-item time {
    color: #d8b47a;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.wedding-schedule-item span {
    color: #fffaf0;

    font-family: "Inter", sans-serif;
    font-size: 1rem;
}


/* Contact */

.wedding-contact-section {
    padding: 30px 24px 120px;
}

.wedding-contact-card {
    width: min(720px, 100%);
    margin: 0 auto;

    padding: 65px 40px;

    border: 1px solid rgba(216, 180, 122, 0.3);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(216, 180, 122, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    text-align: center;
}

.wedding-contact-card h2 {
    margin: 10px 0 15px;

    color: #fffaf0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.3rem, 5vw, 3.4rem);
    font-weight: 500;
}

.wedding-contact-card > p:not(.eyebrow) {
    color: rgba(255, 250, 240, 0.68);
    font-family: "Inter", sans-serif;
    line-height: 1.8;
}

.contact-name {
    margin-top: 35px;

    color: #fffaf0;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
}

.contact-method {
    margin: 5px 0 10px;

    color: rgba(255, 250, 240, 0.55);

    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
}

.contact-phone {
    color: #d8b47a;

    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
}

.contact-phone:hover {
    text-decoration: underline;
}


/* Responsive */

@media (max-width: 850px) {

    .wedding-info-grid {
        grid-template-columns: 1fr;
    }

    .guest-info-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 600px) {

    .wedding-hero {
        padding: 125px 20px 55px;
    }

    .wedding-info-section,
    .guest-info-section,
    .wedding-schedule-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wedding-info-card {
        padding: 42px 24px;
    }

    .venue-times p {
        flex-direction: column;
        gap: 4px;
    }

    .wedding-schedule-item {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 20px 5px;
    }

    .wedding-contact-card {
        padding: 50px 24px;
    }
}
/* ========================================
   GUESTBOOK PAGE
======================================== */

.guestbook-page {
    min-height: 100vh;
    background: #17212a;
    color: #fffaf0;
}

.guestbook-main {
    overflow: hidden;
}


/* Hero */

.guestbook-hero {
    padding: 155px 24px 65px;
    text-align: center;
}

.guestbook-hero .section-heading {
    width: min(800px, 100%);
    margin: 0 auto;
}

.guestbook-hero h1 {
    margin: 10px 0 18px;

    color: #fffaf0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 500;
}

.guestbook-hero .section-heading > p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 auto;

    color: rgba(255, 250, 240, 0.7);

    font-family: "Inter", sans-serif;
    line-height: 1.8;
}


/* Main Guestbook Card */

.guestbook-form-section {
    padding: 20px 24px 100px;
}

.guestbook-card {
    width: min(760px, 100%);
    margin: 0 auto;

    padding: 65px 55px;

    border: 1px solid rgba(216, 180, 122, 0.28);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.28);

    position: relative;
}

.guestbook-card-heading {
    margin-bottom: 45px;
    text-align: center;
}

.guestbook-card-heading h2 {
    margin: 8px 0 12px;

    color: #fffaf0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 5vw, 3.7rem);
    font-weight: 500;
}

.guestbook-card-heading > p:not(.eyebrow) {
    max-width: 520px;
    margin: 0 auto;

    color: rgba(255, 250, 240, 0.65);

    font-family: "Inter", sans-serif;
    line-height: 1.75;
}


/* Form */

.guestbook-form {
    display: grid;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;

    color: #d8b47a;

    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 16px 18px;

    border: 1px solid rgba(216, 180, 122, 0.28);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.045);

    color: #fffaf0;

    font-family: "Inter", sans-serif;
    font-size: 1rem;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 170px;
    line-height: 1.7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 250, 240, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d8b47a;

    background: rgba(255, 255, 255, 0.065);

    box-shadow:
        0 0 0 3px rgba(216, 180, 122, 0.08);
}


/* Character Count */

.character-count {
    margin-top: 8px;

    color: rgba(255, 250, 240, 0.4);

    font-family: "Inter", sans-serif;
    font-size: 0.78rem;

    text-align: right;
}


/* Closing */

.guestbook-closing {
    padding: 50px 24px 120px;
    text-align: center;
}

.guestbook-closing-content {
    width: min(650px, 100%);
    margin: 0 auto;
}

.guestbook-quote {
    margin: 30px auto 15px;

    color: rgba(255, 250, 240, 0.78);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-style: italic;
    line-height: 1.6;
}

.guestbook-signature {
    margin: 0;

    color: #d8b47a;

    font-family: "Great Vibes", cursive;
    font-size: 2.6rem;
}


/* Mobile */

@media (max-width: 600px) {

    .guestbook-hero {
        padding: 125px 20px 50px;
    }

    .guestbook-form-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .guestbook-card {
        padding: 48px 24px;
    }

    .guestbook-submit {
        width: 100%;
    }

    .guestbook-closing {
        padding-bottom: 90px;
    }
}
/* ========================================
   GUESTBOOK THANK YOU MODAL
======================================== */

.guestbook-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;

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

    padding: 24px;

    background: rgba(7, 12, 17, 0.94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.guestbook-modal.show {
    opacity: 1;
    visibility: visible;
}

.guestbook-modal-card {
    position: relative;

    width: min(540px, 100%);

    padding: 70px 45px 60px;

    border: 1px solid rgba(216, 180, 122, 0.35);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #1c2933,
            #17212a
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5);

    text-align: center;

    opacity: 0;
    transform: scale(0.9);

    transition:
        opacity 0.35s ease,
        transform 0.4s ease;
}

.guestbook-modal.show .guestbook-modal-card {
    opacity: 1;
    transform: scale(1);
}

.guestbook-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;

    border: 0;
    background: transparent;

    color: rgba(255, 250, 240, 0.7);

    font-size: 2.4rem;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.guestbook-modal-close:hover {
    color: #d8b47a;
    transform: scale(1.08);
}

.guestbook-modal-heart {
    display: block;

    margin-bottom: 16px;

    color: #d8b47a;

    font-size: 2.8rem;
}

.guestbook-modal-card h2 {
    margin: 0 0 14px;

    color: #fffaf0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 500;
}

.guestbook-modal-card p {
    margin: 0 auto;

    color: rgba(255, 250, 240, 0.7);

    font-family: "Inter", sans-serif;
    line-height: 1.8;
}

.guestbook-modal-signature {
    display: block;

    margin-top: 30px;

    color: #d8b47a;

    font-family: "Great Vibes", cursive;
    font-size: 2rem;
}

body.guestbook-modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .guestbook-modal-card {
        padding: 60px 28px 50px;
    }
}
/* ========================================
   CONSISTENT NAVIGATION LOGO
======================================== */

.logo,
.nav-logo {    display: inline-block;

    color: #e6bd78;

    font-family: "Great Vibes", cursive;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.logo:visited,
.nav-logo:visited {
    color: #e6bd78;
}

.logo:hover,
.nav-logo:hover {
    color: #f2d49a;
    transform: scale(1.04);
}

.logo:focus-visible,
.nav-logo:focus-visible {
    outline: 2px solid #e6bd78;
    outline-offset: 6px;
    border-radius: 4px;
}
/* ========================================
   TIMELINE DOT ALIGNMENT FIX
======================================== */

.schedule-section .timeline-item::before {
    top: 46px;
}
/* ========================================
   DESKTOP NAV FIX
======================================== */

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}
/* ========================================
   MOBILE TIMELINE FIX
======================================== */

@media (max-width: 768px) {

    .schedule-section .timeline {
        position: relative;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        padding-left: 28px;
    }

    .schedule-section .timeline::before {
        content: "";
        position: absolute;

        left: 8px;
        top: 8px;
        bottom: 8px;

        width: 2px;

        background: rgba(216, 180, 122, 0.45);
    }

    .schedule-section .timeline-item {
        position: relative;

        display: block;

        padding: 0 0 34px 18px;
        margin: 0;

        text-align: left;
    }

    .schedule-section .timeline-item::before {
        content: "";

        position: absolute;

        left: -25px;
        top: 7px;

        width: 12px;
        height: 12px;

        border: 3px solid #17212a;
        border-radius: 50%;

        background: #d8b47a;

        box-sizing: content-box;
    }

    .schedule-section .timeline-item time {
        display: block;

        margin-bottom: 6px;

        color: #d8b47a;

        font-family: "Cormorant Garamond", serif;
        font-size: 1.15rem;
        font-weight: 600;
    }

    .schedule-section .timeline-item h3 {
        margin: 0 0 6px;

        font-size: 1.4rem;
    }

    .schedule-section .timeline-item p {
        margin: 0;

        line-height: 1.65;
    }

    .schedule-section .timeline-item:last-child {
        padding-bottom: 0;
    }
}
/* ========================================
   MOBILE HAMBURGER ICON FIX
======================================== */

@media (max-width: 768px) {

    .menu-toggle,
    .nav-toggle {
        width: 34px;
        height: 28px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;

        padding: 0;

        border: none;
        background: transparent;

        cursor: pointer;
    }

    .menu-toggle span,
    .nav-toggle span {
        display: block;

        width: 26px;
        height: 2px;

        border-radius: 2px;

background-color: #d8b47a !important;    }
}
/* ========================================
   GUESTBOOK SUBMIT BUTTON FIX
======================================== */

.guestbook-submit {
    justify-self: center;

    min-width: 220px;

    padding: 15px 30px;

    border: 1px solid #d8b47a;
    border-radius: 100px;

    background: transparent;

    color: #d8b47a;

    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.guestbook-submit:hover {
    background: #d8b47a;
    color: #17212a;

    transform: translateY(-2px);

    box-shadow:
        0 10px 28px rgba(216, 180, 122, 0.18);
}

.guestbook-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}
/* ========================================
   HOME MOBILE HAMBURGER FIX
======================================== */

.nav-toggle {
    display: none;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
        width: 34px;
        height: 28px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .nav-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        border-radius: 2px;
        background: #d8b47a;
    }
}
/* ========================================
   FINAL MOBILE NAVIGATION FIX
======================================== */

/* Desktop */
.navbar .nav-toggle {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {

    .navbar .nav-toggle {
        display: flex !important;

        width: 34px;
        height: 28px;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 5px;

        padding: 0;
        margin: 0;

        border: none;
        background: transparent;

        cursor: pointer;
    }

    .navbar .nav-toggle span {
        display: block !important;

        width: 26px;
        height: 2px;

        margin: 0;

        border: none;
        border-radius: 2px;

        background: #d8b47a !important;
    }

    .navbar .nav-links {
        display: none;
    }

    .navbar .nav-links.open {
        display: flex;
        flex-direction: column;
    }
}
