:root {
      --cream: #FDF7F2;
      --cream-alt: #FCF9F3;
      --white: #FFFFFF;
      --ink: #3B2E28;
      --body-text: #7C6C63;
      --rose: #D98C93;
      --rose-dark: #C4767E;
      --sage: #A9B594;
      --sage-dark: #8CA074;
      --border: #EFE1D8;

      --icon-green-bg: #DCE7D2;
      --icon-green-fg: #7E9A63;
      --icon-pink-bg: #F7DEE3;
      --icon-pink-fg: #D98C93;
      --icon-purple-bg: #E4DDF1;
      --icon-purple-fg: #9A87C9;
      --icon-peach-bg: #F8E6CE;
      --icon-peach-fg: #CE9A4C;
      --icon-mint-bg: #DCEAE3;
      --icon-mint-fg: #6FA88E;
      --icon-gold-bg: #F3E6C6;
      --icon-gold-fg: #BE9B3F;

      --container: 1180px;
      --radius-pill: 50px;
      --radius-md: 18px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--body-text);
      background: var(--cream);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

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

    ul {
      list-style: none;
    }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    h1,
    h2,
    h3 {
      font-family: 'Playfair Display', serif;
      color: var(--ink);
      font-weight: 600;
      line-height: 1.2;
    }

    .script {
      font-family: 'Dancing Script', cursive;
      color: var(--rose);
      font-weight: 700;
      display: inline-block;
    }

.testimonial-h2{
	text-align:center;
}
.process-h2{
	text-align:center;
}

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 2.5px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--rose);
      margin-bottom: 10px;
	 
    }
 .eyebrow1 {
      text-transform: uppercase;
      letter-spacing: 2.5px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--rose);
      margin-bottom: 10px;
	  text-align:center;
    }

    /* =========================================
   CENTER DIVIDER
========================================= */

.divider {
    width: 46px;
    height: 2px;
    background: linear-gradient(
        to right,
        var(--rose) 0 35%,
        transparent 35% 65%,
        var(--rose) 65% 100%
    );
    margin: 14px auto 0;
    position: relative;
}

.divider::before {
    content: "♥";
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: var(--rose);

    font-size: 11px;
    line-height: 1;

    background: transparent;
    padding: 0;
}


/* =========================================
   LEFT ALIGNED DIVIDER
========================================= */

.divider1 {
    width: 46px;
    height: 2px;
    background: linear-gradient(
        to right,
        var(--rose) 0 35%,
        transparent 35% 65%,
        var(--rose) 65% 100%
    );
    margin: 14px 0 0;
    position: relative;
}

.divider1::before {
    content: "♥";
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: var(--rose);

    font-size: 11px;
    line-height: 1;

    background: transparent;
    padding: 0;
}
    .section-head {
      max-width: 560px;
    }

    .section-head.center {
      margin: 0 auto 50px;
      text-align: center;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 32px;
      border-radius: var(--radius-pill);
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: .4px;
      text-transform: uppercase;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: all .25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--rose);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--rose-dark);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      border-color: var(--ink);
      color: var(--ink);
    }

    .btn-outline:hover {
      background: var(--ink);
      color: #fff;
    }

    .btn-sm {
      padding: 11px 22px;
      font-size: 12px;
    }

    /* Placeholder image blocks (client to replace with real photography) */
    .img-ph {
      position: relative;
      width: 100%;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: linear-gradient(135deg, #F3DCC9, #F6DDE3 45%, #E3DCF0 100%);
    }

    .img-ph::after {
      content: attr(data-label);
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 14px;
      color: rgba(59, 46, 40, .45);
      letter-spacing: .5px;
    }

    .img-ph svg {
      position: absolute;
      opacity: .18;
      width: 38%;
      height: 38%;
    }

    /* ============ HEADER ============ */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(253, 247, 242, .94);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 24px;
      gap: 20px;
    }

    .logo img {
      height: 70px;
      width: auto;
    }

    .nav-desktop {
      display: flex;
      gap: 34px;
    }

    .nav-desktop a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .6px;
      text-transform: uppercase;
      color: var(--ink);
      position: relative;
      padding: 4px 0;
    }

    .nav-desktop a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: var(--rose);
      transition: width .25s ease;
    }

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

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .socials {
      display: flex;
      gap: 1px;
    }

    .socials a {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: var(--rose)!important;
      transition: background .2s ease, color .2s ease;
    }

    .socials a:hover {
      background: var(--rose);
      color: #fff!important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: .25s;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }

    .mobile-menu.open {
      max-height: 420px;
    }

    .mobile-menu-inner {
      padding: 18px 24px 26px;
      display: flex;
      flex-direction: column;
      gap: 16px;
	  text-align: center;
      align-items: center;	
    }

    .mobile-menu-inner a {
      font-size: 14px;
      font-weight: 500;
      letter-spacing: .5px;
      text-transform: uppercase;
      color: var(--ink);
    }

    .mobile-menu-inner .btn {
      align-self: center;
      margin-top: 6px;
	  color: #fff;	
    }

    .mobile-menu-inner .socials {
      margin-top: 4px;
    }

    /* ============ HERO ============ */
    .hero {
      padding: 64px 0 80px;
      overflow: hidden;
	  background-color: #FDF7F0;	
    }

    .hero-inner {
      display: flex;
      align-items: center;
      gap: 56px;
    }

    .hero-text {
      flex: 1;
      min-width: 0;
		
    }

    .hero-text h1 {
      font-size: clamp(34px, 4.2vw, 52px);
	  text-align:center;	
    }

    .hero-text p.hero-desc {
  margin: 20px auto 30px;
  font-size: 15.5px;
  text-align: center;
  max-width: 440px;
}

    .btn-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
	  justify-content:center;	
    }

    .hero-image {
      flex: 1;
      min-width: 0;
    }

    .hero-image .img-ph {
      aspect-ratio: 6/4.6;
    }

    /* ============ ABOUT ============ */
    .about {
      padding: 80px 0;
	  background-color: #fff;
    }

    .about-inner {
      display: flex;
      align-items: center;
      gap: 60px;
    }

    .about-photo {
    flex: 0 0 320px;
}

.about-photo .img-ph {
    aspect-ratio: 3 / 3.8;
    border-radius: 180px 180px 24px 24px;
    overflow: hidden;
}

.about-photo .img-ph img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: inherit;
}

    .about-text {
      flex: 1;
      min-width: 0;
    }

    .about-text h2 {
      font-size: clamp(26px, 3vw, 36px);
      margin-bottom: 16px;
    }

    .about-text .quote {
      font-style: italic;
      color: var(--ink);
      font-size: 15.5px;
      padding-left: 18px;
      border-left: 3px solid var(--rose);
      margin-bottom: 16px;
	  margin-top: 16px;	
    }

    .about-text p:not(.quote) {
      margin-bottom: 22px;
      font-size: 14.5px;
    }
/* =========================================
   ABOUT - READ MORE
========================================= */

.about-more-content {
    display: none;
}

.about-more-content.show {
    display: block;
}

.about-read-more {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

    /* ============ SERVICES ============ */
    .services {
      padding: 80px 0;
      background: var(--cream-alt);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 22px;
    }

    .service-card {
    text-align: center;
    padding: 8px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgb(175 100 100 / 10%);
}

    .icon-circle {
      width: 78px;
      height: 78px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }

    .icon-circle svg {
      width: 30px;
      height: 30px;
    }

    .service-card h3 {
      font-size: 15.5px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .service-card p {
      font-size: 13px;
      line-height: 1.55;
    }

    /* ============ GALLERY ============ */
    .gallery {
      padding: 80px 0;
	  background-color: #fff;	
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .gallery-row {
      display: contents;
    }

    .gallery-row.hidden-row {
      display: none;
    }

    .gallery-item {
      aspect-ratio: 1/1.05;
      border-radius: 14px;
    }

    .gallery-btn-wrap {
      text-align: center;
      margin-top: 42px;
    }

    #galleryToggleBtn svg {
      width: 14px;
      height: 14px;
      transition: transform .3s ease;
    }

    #galleryToggleBtn.expanded svg {
      transform: rotate(180deg);
    }

    /* ============ WHY CHOOSE ============ */
    .why-choose {
      padding: 80px 0;
      background: var(--cream-alt);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 22px;
    }

    .why-card {
      text-align: center;
      padding: 26px 14px;
      background: var(--white);
      border-radius: var(--radius-md);
    }

    .why-card .icon-circle {
      width: 60px;
      height: 60px;
      background: var(--cream-alt);
      border: 1.5px solid var(--rose);
    }

    .why-card .icon-circle svg {
      width: 24px;
      height: 24px;
      color: var(--rose);
    }

    .why-card h3 {
      font-size: 14.5px;
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: 12.5px;
    }

    /* ============ TESTIMONIAL + PROCESS ============ */

.tp-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}


/* =====================================================
   FLOWER
   ===================================================== */

.tp-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 250px;
  height: 250px;

  background-image: url("https://wellwedplanners.com/wp-content/uploads/2026/08/Flower.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;

  opacity: 0.7;

  pointer-events: none;
  z-index: 0;
}


/* Section content above flower */

.tp-section > .container {
  position: relative;
  z-index: 1;
}


/* =====================================================
   TWO COLUMN
   ===================================================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}


/* =====================================================
   TESTIMONIAL CARD
   ===================================================== */

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  margin-top: 20px;
  position: relative;

  box-shadow: 3px 10px 30px rgb(0 0 0 / 9%);

  overflow: hidden;
}


/* =====================================================
   TESTIMONIAL SLIDER
   ===================================================== */

.testimonial-slides {
  position: relative;
  width: 100%;
  overflow: hidden;

  cursor: grab;

  touch-action: pan-y;

  user-select: none;
  -webkit-user-select: none;

  -webkit-user-drag: none;

  will-change: height;

  display: grid;
}

.testimonial-slides.is-dragging {
  cursor: grabbing;
}


/* =====================================================
   INDIVIDUAL SLIDES
   ===================================================== */

.testimonial-slide {
  width: 100%;

  position: absolute;
  top: 0;
  left: 0;

  min-width: 100%;

  transform: translate3d(100%, 0, 0);

  opacity: 0;

  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;

  pointer-events: none;

  will-change: transform, opacity;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  grid-area: 1 / 1;
}


/* =====================================================
   ACTIVE SLIDE
   ===================================================== */

.testimonial-slide.active {
  position: relative;

  transform: translate3d(0, 0, 0);

  opacity: 1;

  pointer-events: auto;

  z-index: 2;
}


/* =====================================================
   QUOTE
   ===================================================== */

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--rose);
  line-height: 1;
}


/* =====================================================
   TESTIMONIAL TEXT
   ===================================================== */

.testimonial-card p.quote-text {
  font-size: 14.5px;
  font-style: italic;
  color: var(--ink);
  margin: 8px 0 22px;
}


/* =====================================================
   PERSON
   ===================================================== */

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}


/* =====================================================
   TESTIMONIAL AVATAR
   ===================================================== */

.testimonial-avatar {
  width: 52px;
  height: 52px;

  min-width: 52px;
  min-height: 52px;

  border-radius: 50%;

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

  overflow: hidden;

  flex-shrink: 0;

  position: relative;

  background: #f3dcc9;
}


/* =====================================================
   COUPLE IMAGE
   ===================================================== */

.testimonial-avatar img {
  display: block;

  width: 100%;
  height: 100%;

  max-width: none;

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

  border-radius: 50%;

  margin: 0;
  padding: 0;

  pointer-events: none;

  user-select: none;
  -webkit-user-select: none;

  -webkit-user-drag: none;
}


/* =====================================================
   PERSON NAME
   ===================================================== */

.testimonial-person h4 {
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0;
}

.testimonial-person span {
  font-size: 12px;
}


/* =====================================================
   DOTS
   ===================================================== */

.dots {
  display: flex;
  gap: 7px;
  margin-top: 24px;
  align-items: center;
}


.testimonial-dots button {
  width: 7px;
  height: 7px;

  padding: 0;
  margin: 0;

  border: 0;
  border-radius: 50%;

  background: var(--border);

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition:
    width 0.3s ease,
    background-color 0.3s ease,
    border-radius 0.3s ease,
    transform 0.3s ease;
}


.testimonial-dots button:hover {
  transform: scale(1.15);
}


.testimonial-dots button.active {
  width: 20px;
  height: 7px;

  background: var(--rose);

  border-radius: 5px;
}


/* =====================================================
   PROCESS
   ===================================================== */

.process-steps {
  margin: 18px auto 0;
  position: relative;

  width: fit-content;
  max-width: 100%;
}


.process-step {
  display: flex;
  gap: 18px;

  padding-bottom: 30px;

  position: relative;
}


.process-step:last-child {
  padding-bottom: 0;
}


/* =====================================================
   CONNECTING LINE
   ===================================================== */

.process-step::before {
  content: "";

  position: absolute;

  left: 26px;
  top: 56px;
  bottom: 0;

  width: 1px;

  background: repeating-linear-gradient(
    to bottom,
    var(--rose) 0 4px,
    transparent 4px 9px
  );
}


.process-step:last-child::before {
  display: none;
}


/* =====================================================
   PROCESS CIRCLE
   ===================================================== */

.process-num {
  flex-shrink: 0;

  width: 60px;
  height: 60px;

  border-radius: 50%;

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

  background: var(--icon-pink-bg);

  color: var(--rose-dark);

  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;

  z-index: 1;

  overflow: hidden;
}


/* =====================================================
   PROCESS IMAGE
   ===================================================== */

.process-num img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;

  padding: 10px;

  pointer-events: none;

  -webkit-user-drag: none;
}


/* =====================================================
   DIFFERENT CIRCLE COLORS
   ===================================================== */

.process-step:nth-child(2) .process-num {
  background: var(--icon-green-bg);
  color: var(--icon-green-fg);
}

.process-step:nth-child(3) .process-num {
  background: var(--icon-purple-bg);
  color: var(--icon-purple-fg);
}

.process-step:nth-child(4) .process-num {
  background: var(--icon-peach-bg);
  color: var(--icon-peach-fg);
}

.process-step:nth-child(5) .process-num {
  background: var(--icon-mint-bg);
  color: var(--icon-mint-fg);
}


/* =====================================================
   PROCESS NUMBER
   ===================================================== */

.process-number {
  display: block;

  color: #CE9A4C;

  font-family: 'Playfair Display', serif;
  font-weight: 700;

  font-size: 16px;

  line-height: 1;

  margin-bottom: 4px;
}


/* =====================================================
   PROCESS TITLE
   ===================================================== */

.process-text h4 {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}


/* =====================================================
   PROCESS DESCRIPTION
   ===================================================== */

.process-text p {
  font-size: 13px;
}


/* =====================================================
   MOBILE
   PROCESS FIRST
   ===================================================== */

@media (max-width: 767px) {

  .two-col {
    display: flex;
    flex-direction: column;
  }

  .process-col {
    order: 1;
  }

  .testimonial-col {
    order: 2;
  }

  .tp-section::before {
    left: 0;
    bottom: 0;

    width: 150px;
    height: 150px;

    background-position: left bottom;

    opacity: 0.7;
  }

  .testimonial-card {
    padding: 30px 24px;
  }

  .testimonial-slide {
    transition:
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.4s ease;
  }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 480px) {

  .testimonial-card {
    padding: 28px 20px;
  }

  .quote-mark {
    font-size: 54px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;

    min-width: 50px;
    min-height: 50px;
  }

}


    /* ============ CTA BANNER ============ */
    .cta-banner {
  padding: 70px 0;
  text-align: center;
  color: #fff;

  background:
    linear-gradient(
      rgba(59, 46, 40, 0.72),
      rgba(59, 46, 40, 0.72)
    ),
    url("https://wellwedplanners.com/wp-content/uploads/2026/08/CTA-Banner.png");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

    .cta-banner h2 {
      color: #fff;
      font-size: clamp(24px, 3.4vw, 34px);
      margin-bottom: 12px;
    }

    .cta-banner p {
      color: #EAD9D2;
      max-width: 520px;
      margin: 0 auto 28px;
      font-size: 14.5px;
    }

    /* ============ FOOTER ============ */
    .footer {
      background: #FDF7F0;
      padding-top: 64px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 40px;
      padding-bottom: 50px;
      border-bottom: 1px solid var(--border);
    }

    .footer-brand img {
      height: 100px;
      margin-bottom: 14px;
    }

    .footer-brand p {
      font-size: 13.5px;
      max-width: 240px;
      margin-bottom: 18px;
    }

    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      color: var(--ink);
      font-size: 16px;
      margin-bottom: 18px;
      font-weight: 600;
    }

    .footer-col ul li {
      margin-bottom: 11px;
      font-size: 13.5px;
    }

    .footer-col ul li a:hover {
      color: var(--rose);
    }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      margin-bottom: 14px;
    }
    
    .footer-contact li a {
  display: contents;
  color: inherit;
  text-decoration: none;
}

    .footer-contact svg {
      width: 16px;
      height: 16px;
      color: var(--rose);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-bottom {
      background: var(--sage);
      color: #fff;
      padding: 18px 0;
      margin-top: 0;
    }

    .footer-bottom .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 12.5px;
    }

    .footer-bottom a {
      opacity: .9;
    }

    .footer-bottom a:hover {
      opacity: 1;
      text-decoration: underline;
    }

/* ============ RESPONSIVE ============ */
    @media (max-width:1100px) {
      .nav-desktop {
        display: flex;
    gap: 25px;
      }
		.header-actions .btn-sm {
        display: flex;
      }
		.header-actions .btn-sm {
        display: flex;
      }
		
}

    /* ============ RESPONSIVE ============ */
    @media (max-width:900px) {
      .nav-desktop {
        display: none;
      }

      .header-actions .btn-sm {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .services-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 34px;
      }

      .why-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 18px;
      }

      .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
      }

      .about-inner {
        gap: 40px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 36px;
      }
    }

    @media (max-width:767px) {
      .hero-inner {
        flex-direction: column;
      }
		.header-actions .btn-sm {
        display: none;
      }

		.hamburger {
        display: flex;
      }
		.nav-desktop {
        display: none;
      }

      .hero-image {
        order: -1;
        width: 100%;
      }

      .hero-text {
        text-align: center;
      }

      .btn-group {
        width: 100%;
      }

      .btn-group .btn {
        flex: 1;
      }

      .about-inner {
        flex-direction: column;
        text-align: center;
      }

      .about-photo {
        flex: 0 0 auto;
        width: 70%;
      }

      .about-text .quote {
        text-align: left;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .footer-bottom .container {
        flex-direction: column;
        text-align: center;
      }

      .section-head:not(.center) {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      .about-text p:not(.quote) {
        text-align: center;
      }
		 .two-col {
        grid-template-columns: 1fr;
        gap: 56px;
      }
		.cta-banner {
  padding: 50px 0;
		}
    }

    @media (max-width:480px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .btn {
        padding: 13px 22px;
        font-size: 12.5px;
      }

      .hero {
        padding: 40px 0 56px;
      }

      
      .services,
      .gallery,
      .why-choose,
      .tp-section {
        padding: 56px 0;
      }
		.about{
			padding: 56px 0 56px 0;
		}
    }

    :focus-visible {
      outline: 2px solid var(--rose);
      outline-offset: 3px;
    }

/* =========================================
   CONSULTATION POPUP
========================================= */

body.consultation-open {
    overflow: hidden;
}

.consultation-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

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

    padding: 24px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.consultation-modal.open {
    opacity: 1;
    visibility: visible;
}

.consultation-overlay {
    position: absolute;
    inset: 0;

    background: rgba(59, 46, 40, .65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.consultation-popup {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 680px;
    max-height: calc(100vh - 48px);

    overflow-y: auto;
    overflow-x: hidden;

    background: var(--cream);

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(59, 46, 40, .25);

    transform: translateY(20px) scale(.97);

    transition: transform .3s ease;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.consultation-modal.open .consultation-popup {
    transform: translateY(0) scale(1);
}


/* =========================================
   CLOSE BUTTON
========================================= */

.consultation-close {
    position: absolute;

    top: 16px;
    right: 16px;

    z-index: 5;

    width: 38px;
    height: 38px;

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

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--white);
    color: var(--ink);

    font-size: 26px;
    line-height: 1;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.consultation-close:hover {
    background: var(--rose);
    color: #fff;

    transform: rotate(90deg);
}


/* =========================================
   POPUP CONTENT
========================================= */

.consultation-popup-content {
    padding: 42px;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.consultation-heading {
    text-align: center;

    max-width: 500px;

    margin: 0 auto 28px;
}

.consultation-heading .eyebrow {
    margin-bottom: 7px;
}

.consultation-heading h2 {
    font-size: clamp(26px, 4vw, 36px);

    margin-bottom: 12px;
}

.consultation-heading .divider {
    margin: 14px auto 18px;
}

.consultation-heading > p:last-child {
    font-size: 13.5px;

    max-width: 460px;

    margin: 0 auto;
}


/* =========================================
   FORM
========================================= */

.consultation-form {
    width: 100%;
    max-width: 100%;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    width: 100%;
    max-width: 100%;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.form-group {
    margin-bottom: 18px;

    min-width: 0;
    max-width: 100%;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--ink);

    font-size: 12.5px;
    font-weight: 600;
}

.form-group label span {
    color: var(--rose);
}


/* =========================================
   FORM FIELDS
========================================= */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    padding: 12px 14px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--white);

    color: var(--ink);

    font-family: 'Poppins', sans-serif;
    font-size: 13px;

    outline: none;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B4A69F;

    opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rose);

    box-shadow:
        0 0 0 3px rgba(217, 140, 147, .12);
}

.form-group textarea {
    resize: vertical;

    min-height: 110px;
}

.consultation-submit {
    width: 100%;

    margin-top: 4px;
}

.consultation-success {
    display: none;

    margin-top: 15px;

    padding: 12px 15px;

    border-radius: 10px;

    background: var(--icon-green-bg);
    color: var(--icon-green-fg);

    font-size: 13px;

    text-align: center;
}

.consultation-success.show {
    display: block;
}


/* =========================================
   WEDDING DATE FIELD
========================================= */

#consultationDate {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    height: 46px;

    display: block;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;

    padding: 12px 14px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--white);

    color: var(--ink);

    font-family: 'Poppins', sans-serif;
    font-size: 13px;

    line-height: 1.4;

    outline: none;

    -webkit-appearance: none;
    appearance: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


/* =========================================
   DATE PLACEHOLDER / DATE TEXT
========================================= */

#consultationDate::placeholder {
    color: #B4A69F;

    opacity: 1;
}

#consultationDate::-webkit-datetime-edit {
    padding: 0;

    color: var(--ink);
}

#consultationDate::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

#consultationDate::-webkit-datetime-edit-text {
    color: var(--body-text);

    padding: 0 2px;
}

#consultationDate::-webkit-datetime-edit-day-field,
#consultationDate::-webkit-datetime-edit-month-field,
#consultationDate::-webkit-datetime-edit-year-field {
    color: var(--ink);

    padding: 0;
}


/* =========================================
   CALENDAR ICON
========================================= */

#consultationDate::-webkit-calendar-picker-indicator {
    width: 16px;
    height: 16px;

    margin: 0;
    padding: 0;

    opacity: .9;

    cursor: pointer;
}


/* =========================================
   DATE FOCUS
========================================= */

#consultationDate:focus {
    border-color: var(--rose);

    box-shadow:
        0 0 0 3px rgba(217, 140, 147, .12);
}


/* =========================================
   CONSULTATION POPUP - MOBILE
========================================= */

@media screen and (max-width: 767px) {

    .consultation-modal {
        padding: 20px;

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

        width: 100%;
        max-width: 100%;

        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;

        box-sizing: border-box;
        -webkit-box-sizing: border-box;

        overflow: hidden;
    }

    .consultation-popup {
        width: 100%;
        max-width: 420px;

        height: 75dvh;
        max-height: calc(100dvh - 40px);

        min-height: 0;

        margin: auto;

        overflow-y: auto;
        overflow-x: hidden;

        border-radius: 20px;

        flex-shrink: 1;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: thin;
        scrollbar-color: var(--rose) var(--cream-alt);

        box-sizing: border-box;
        -webkit-box-sizing: border-box;

        /*
         * IMPORTANT:
         * Popup khud focus par scale/size change nahi karega.
         */
        transform-origin: center center;
    }


    /* =====================================
       SCROLLBAR
    ===================================== */

    .consultation-popup::-webkit-scrollbar {
        width: 5px;
    }

    .consultation-popup::-webkit-scrollbar-track {
        background: var(--cream-alt);

        border-radius: 10px;
    }

    .consultation-popup::-webkit-scrollbar-thumb {
        background: var(--rose);

        border-radius: 10px;
    }


    /* =====================================
       CONTENT
    ===================================== */

    .consultation-popup-content {
        padding: 38px 20px 24px;

        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }


    /* =====================================
       HEADING
    ===================================== */

    .consultation-heading {
        padding: 0 10px;

        margin: 0 auto 22px;

        max-width: 100%;
    }

    .consultation-heading h2 {
        font-size: 26px;
    }

    .consultation-heading > p:last-child {
        font-size: 12.5px;
    }


    /* =====================================
       CLOSE BUTTON
    ===================================== */

    .consultation-close {
        top: 10px;
        right: 10px;

        width: 34px;
        height: 34px;

        font-size: 22px;
    }


    /* =====================================
       FORM ROW
    ===================================== */

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;

        width: 100%;
        max-width: 100%;
    }

    .form-group {
        width: 100%;
        max-width: 100%;

        margin-bottom: 14px;

        min-width: 0;
    }


    /* =====================================
       MOBILE FORM FIELDS
       
       16px is intentional.
       iPhone Safari automatically zooms
       inputs smaller than 16px on focus.
    ===================================== */

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        padding: 11px 13px;

        /*
         * DO NOT change this to 13px.
         * 16px prevents iPhone Safari zoom.
         */
        font-size: 16px !important;

        line-height: 22px;

        box-sizing: border-box !important;
        -webkit-box-sizing: border-box !important;

        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .consultation-submit {
        width: 100%;
        max-width: 100%;
    }


    /* =====================================
       MOBILE DATE FIELD
    ===================================== */

    #consultationDate {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: 44px !important;

        padding: 11px 13px !important;

        border-radius: 10px !important;

        box-sizing: border-box !important;
        -webkit-box-sizing: border-box !important;

        -webkit-appearance: none !important;
        appearance: none !important;

        /*
         * 16px prevents iPhone Safari
         * automatic zoom on focus.
         */
        font-size: 16px !important;

        line-height: 22px !important;

        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
    }


    /* =====================================
       DATE TEXT MODE / PLACEHOLDER
    ===================================== */

    #consultationDate[type="text"] {
        color: #B4A69F !important;

        -webkit-text-fill-color: #B4A69F !important;

        background-color: var(--white) !important;

        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233B2E28' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");

        background-repeat: no-repeat;

        background-position: right 13px center;

        background-size: 15px 15px;

        padding-right: 40px !important;
    }

    #consultationDate[type="text"]::placeholder {
        color: #B4A69F !important;

        opacity: 1 !important;

        -webkit-text-fill-color: #B4A69F !important;
    }


    /* =====================================
       ACTUAL DATE
    ===================================== */

    #consultationDate[type="date"] {
        color: var(--ink) !important;

        -webkit-text-fill-color: var(--ink) !important;

        background-image: none !important;

        padding-right: 13px !important;
    }


    /* =====================================
       NATIVE DATE TEXT
    ===================================== */

    #consultationDate[type="date"]::-webkit-datetime-edit {
        color: var(--ink) !important;

        -webkit-text-fill-color: var(--ink) !important;
    }

    #consultationDate[type="date"]::-webkit-datetime-edit-fields-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }

    #consultationDate[type="date"]::-webkit-datetime-edit-text {
        color: var(--ink) !important;

        -webkit-text-fill-color: var(--ink) !important;
    }

    #consultationDate[type="date"]::-webkit-datetime-edit-day-field,
    #consultationDate[type="date"]::-webkit-datetime-edit-month-field,
    #consultationDate[type="date"]::-webkit-datetime-edit-year-field {
        color: var(--ink) !important;

        -webkit-text-fill-color: var(--ink) !important;
    }


    /* =====================================
       NATIVE CALENDAR ICON
    ===================================== */

    #consultationDate[type="date"]::-webkit-calendar-picker-indicator {
        width: 15px !important;
        height: 15px !important;

        margin: 0 0 0 auto !important;

        padding: 0 !important;

        opacity: .9 !important;
    }
}


/* =========================================
   iPHONE / SAFARI EXTRA FIX
========================================= */

@supports (-webkit-touch-callout: none) {

    @media screen and (max-width: 767px) {

        /* =================================
           MODAL
        ================================= */

        .consultation-modal {
            width: 100% !important;
            max-width: 100% !important;

            height: 100dvh !important;
            min-height: 100dvh !important;
            max-height: 100dvh !important;

            padding: 20px !important;

            box-sizing: border-box !important;
            -webkit-box-sizing: border-box !important;

            overflow: hidden !important;

            /*
             * Prevent Safari from changing
             * the modal layout while keyboard opens.
             */
            position: fixed !important;
            inset: 0 !important;
        }


        /* =================================
           POPUP
        ================================= */

        .consultation-popup {
            width: 100% !important;
            max-width: 420px !important;

            height: 75dvh !important;
            max-height: calc(100dvh - 40px) !important;

            min-height: 0 !important;

            overflow-y: auto !important;
            overflow-x: hidden !important;

            flex-shrink: 1 !important;

            box-sizing: border-box !important;
            -webkit-box-sizing: border-box !important;

            transform-origin: center center !important;
        }


        /* =================================
           FORM - CRITICAL IPHONE FIX
        ================================= */

        .consultation-form input,
        .consultation-form select,
        .consultation-form textarea {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;

            /*
             * THIS IS THE MAIN FIX.
             *
             * Safari zooms when focused field
             * has font-size below 16px.
             */
            font-size: 16px !important;

            line-height: 22px !important;

            box-sizing: border-box !important;
            -webkit-box-sizing: border-box !important;

            -webkit-text-size-adjust: 100% !important;
            text-size-adjust: 100% !important;

            transform: none !important;
        }


        /* =================================
           DATE FIELD
        ================================= */

        #consultationDate {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;

            height: 44px !important;

            padding: 11px 13px !important;

            box-sizing: border-box !important;
            -webkit-box-sizing: border-box !important;

            border-radius: 10px !important;

            font-size: 16px !important;

            line-height: 22px !important;

            overflow: hidden !important;

            -webkit-appearance: none !important;
            appearance: none !important;

            -webkit-text-size-adjust: 100% !important;
            text-size-adjust: 100% !important;

            transform: none !important;
        }


        /* =================================
           DATE PLACEHOLDER MODE
        ================================= */

        #consultationDate[type="text"] {
            color: #B4A69F !important;

            -webkit-text-fill-color: #B4A69F !important;

            background-color: var(--white) !important;

            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233B2E28' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");

            background-repeat: no-repeat;

            background-position: right 13px center;

            background-size: 15px 15px;

            padding-right: 40px !important;

            transform: none !important;
        }

        #consultationDate[type="text"]::placeholder {
            color: #B4A69F !important;

            opacity: 1 !important;

            -webkit-text-fill-color: #B4A69F !important;
        }


        /* =================================
           DATE MODE
        ================================= */

        #consultationDate[type="date"] {
            color: var(--ink) !important;

            -webkit-text-fill-color: var(--ink) !important;

            background-image: none !important;

            padding-right: 13px !important;
        }


        /* =================================
           NATIVE DATE TEXT
        ================================= */

        #consultationDate[type="date"]::-webkit-datetime-edit {
            padding: 0 !important;
            margin: 0 !important;

            color: var(--ink) !important;

            -webkit-text-fill-color: var(--ink) !important;
        }

        #consultationDate[type="date"]::-webkit-datetime-edit-fields-wrapper {
            padding: 0 !important;
            margin: 0 !important;
        }

        #consultationDate[type="date"]::-webkit-datetime-edit-text {
            color: var(--ink) !important;

            -webkit-text-fill-color: var(--ink) !important;
        }

        #consultationDate[type="date"]::-webkit-datetime-edit-day-field,
        #consultationDate[type="date"]::-webkit-datetime-edit-month-field,
        #consultationDate[type="date"]::-webkit-datetime-edit-year-field {
            color: var(--ink) !important;

            -webkit-text-fill-color: var(--ink) !important;
        }


        /* =================================
           CALENDAR ICON
        ================================= */

        #consultationDate[type="date"]::-webkit-calendar-picker-indicator {
            margin: 0 0 0 auto !important;

            padding: 0 !important;

            width: 15px !important;
            height: 15px !important;

            opacity: .9 !important;
        }
    }
}


/* =========================================
   FINAL MOBILE SAFARI AUTO-ZOOM PROTECTION
========================================= */

@media screen and (max-width: 767px) {

    /*
     * Safari zoom prevention.
     * Keep ALL interactive form controls at 16px.
     */

    .consultation-popup input,
    .consultation-popup select,
    .consultation-popup textarea {
        font-size: 16px !important;

        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;

        box-sizing: border-box !important;
        -webkit-box-sizing: border-box !important;
    }

    /*
     * Prevent any Elementor/theme rule
     * from making fields wider on focus.
     */

    .consultation-popup input:focus,
    .consultation-popup select:focus,
    .consultation-popup textarea:focus {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        transform: none !important;

        box-sizing: border-box !important;
        -webkit-box-sizing: border-box !important;
    }
}

/* =========================================
   CONTACT FORM 7 - CONSULTATION RESET
========================================= */

/* Remove CF7 default spacing */
.consultation-popup .wpcf7 {
    width: 100%;
    margin: 0;
    padding: 0;
}

.consultation-popup .wpcf7 form {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Prevent CF7 from adding unwanted paragraph spacing */
.consultation-popup .wpcf7 form p {
    margin: 0;
    padding: 0;
}

/* CF7 field wrapper */
.consultation-popup .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Keep all CF7 controls inside the existing layout */
.consultation-popup .wpcf7-form-control {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/* Remove default CF7 submit wrapper spacing */
.consultation-popup .wpcf7-submit {
    margin: 0;
}

/* CF7 validation messages should not disturb layout */
.consultation-popup .wpcf7-not-valid-tip {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.3;
}

/* CF7 response message */
.consultation-popup .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 10px 14px !important;

    border-radius: 10px !important;

    font-size: 13px;
    line-height: 1.5;

    text-align: center;
}

/* =========================================
   GALLERY IMAGES
========================================= */

.gallery-item {
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition: transform .45s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}


/* =========================================
   GALLERY LIGHTBOX
========================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;

    z-index: 99999;

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

    padding: 30px;

    background: rgba(20, 15, 13, .92);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

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


.gallery-lightbox-content {
    position: relative;

    width: auto;
    max-width: 90vw;
    max-height: 90vh;

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


.gallery-lightbox-content img {
    display: block;

    max-width: 90vw;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}


/* =========================================
   CLOSE
========================================= */

.gallery-lightbox-close {
    position: absolute;

    top: 20px;
    right: 25px;

    z-index: 5;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, .12);
    color: #fff;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

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

    transition:
        background .2s ease,
        transform .2s ease;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, .22);

    transform: rotate(90deg);
}


/* =========================================
   PREVIOUS / NEXT
========================================= */

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 5;

    width: 48px;
    height: 48px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, .12);
    color: #fff;

    font-size: 22px;

    cursor: pointer;

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

    transition:
        background .2s ease,
        transform .2s ease;
}

.gallery-lightbox-prev {
    left: 25px;
}

.gallery-lightbox-next {
    right: 25px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, .22);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .gallery-lightbox {
        padding: 20px;
    }

    .gallery-lightbox-content {
        max-width: 94vw;
        max-height: 85vh;
    }

    .gallery-lightbox-content img {
        max-width: 94vw;
        max-height: 82vh;

        border-radius: 5px;
    }

    .gallery-lightbox-close {
        top: 12px;
        right: 12px;

        width: 38px;
        height: 38px;

        font-size: 27px;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 38px;
        height: 38px;

        font-size: 17px;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }
}

.services .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services .icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.why-choose .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-choose .icon-circle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

/* =====================================================
   TESTIMONIAL SLIDER
   ===================================================== */

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}


/* Dots */

.testimonial-card .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.testimonial-card .dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #D8C5A8;
    cursor: pointer;
}

.testimonial-card .dots button.active {
    background: #CE9A4C;
    transform: scale(1.25);
}
/* =====================================================
   BLOG PAGE
   ===================================================== */

.blog-hero {
    position: relative;
    min-height: 360px;

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

    background-image: url("https://wellwedplanners.com/wp-content/uploads/2026/08/Pages-Banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
    overflow: hidden;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(59, 46, 40, 0.62),
            rgba(59, 46, 40, 0.62)
        );
}

.blog-hero-content {
    position: relative;
    z-index: 1;

    text-align: center;
    padding: 80px 20px;
}

.blog-hero-eyebrow {
    margin: 0 0 10px;

    color: #F4D5D8;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.blog-hero h1 {
    margin: 0;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.15;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 18px;

    font-size: 13px;
}

.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.blog-breadcrumb span {
    color: rgba(255,255,255,.8);
}


/* =====================================================
   BLOG SECTION
   ===================================================== */

.blog-section {
    padding: 70px 0;

    background: #ffffff;
}


/* =====================================================
   BLOG HEADING
   ===================================================== */

.blog-heading {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 50px;
}

.blog-heading .eyebrow1 {
    margin-bottom: 8px;

    color: var(--rose);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
}

/* .blog-heading h2 {
    margin: 0;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: clamp(32px, 4vw, 44px);

    line-height: 1.2;
} */


/* =====================================================
   BLOG GRID
   ===================================================== */

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 32px;
}


/* =====================================================
   BLOG CARD
   ===================================================== */

.blog-card {
    background: #FDF7F0;

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: 5px 10px 30px rgb(0 0 0 / 9%);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.blog-card:hover {
    transform: translateY(-6px);

    box-shadow:
        3px 16px 35px rgb(0 0 0 / 11%);
}


/* =====================================================
   FEATURED IMAGE
   ===================================================== */

.blog-card-image {
    position: relative;

    height: 245px;

    overflow: hidden;

    background: #f4ebe5;
}

.blog-card-image > a {
    display: block;

    width: 100%;
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}


/* =====================================================
   NO IMAGE
   ===================================================== */

.blog-no-image {
    width: 100%;
    height: 100%;

    display: flex;

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

    background:
        linear-gradient(
            135deg,
            #F3DCC9,
            #E3DCF0
        );

    color: var(--rose-dark);

    font-family: 'Playfair Display', serif;

    font-size: 18px;
}


/* =====================================================
   CATEGORY
   ===================================================== */

.blog-category {
    position: absolute;

    left: 18px;
    top: 18px;

    padding: 7px 13px;

    background: var(--rose);

    color: #fff;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    line-height: 1;
}


/* =====================================================
   CARD CONTENT
   ===================================================== */

.blog-card-content {
    padding: 25px 24px 27px;
}


/* =====================================================
   META
   ===================================================== */

.blog-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 11px;

    color: var(--rose-dark);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.blog-meta-separator {
    color: var(--border);
}


/* =====================================================
   TITLE
   ===================================================== */

.blog-card-title {
    margin: 0 0 11px;

    font-family: 'Playfair Display', serif;

    font-size: 22px;

    line-height: 1.3;

    color: var(--ink);
}

.blog-card-title a {
    color: inherit;

    text-decoration: none;

    transition: color .25s ease;
}

.blog-card-title a:hover {
    color: var(--rose-dark);
}


/* =====================================================
   EXCERPT
   ===================================================== */

.blog-excerpt {
    color: var(--body-text);

    font-size: 13px;

    line-height: 1.75;

    margin-bottom: 19px;
}


/* =====================================================
   READ MORE
   ===================================================== */

.blog-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--rose-dark);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .5px;

    text-decoration: none;

    text-transform: uppercase;

    transition: gap .25s ease;
}

.blog-read-more:hover {
    gap: 12px;

    color: var(--rose);
}

.blog-read-more span {
    font-size: 17px;

    line-height: 1;
}


/* =====================================================
   NO POSTS
   ===================================================== */

.blog-no-posts {
    grid-column: 1 / -1;

    text-align: center;

    padding: 60px 20px;
}

.blog-no-posts h3 {
    margin-bottom: 8px;

    color: var(--ink);

    font-family: 'Playfair Display', serif;
}


/* =====================================================
   PAGINATION
   ===================================================== */

.blog-pagination {
    margin-top: 55px;

    display: flex;

    justify-content: center;
}

.blog-pagination ul {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.blog-pagination li {
    margin: 0;
    padding: 0;
}

.blog-pagination a,
.blog-pagination span {
    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 50%;

    border: 1px solid var(--border);

    color: var(--body-text);

    background: var(--white);

    font-size: 12px;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.blog-pagination a:hover,
.blog-pagination span.current {
    background: var(--rose);

    border-color: var(--rose);

    color: #fff;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

    .blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px;
    }

    .blog-card-image {
        height: 230px;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767px) {

    .blog-hero {
        min-height: 300px;
    }

    .blog-hero-content {
        padding: 65px 20px;
    }

    .blog-section {
        padding: 56px 0;
    }
	
	.cat-section {
        padding: 56px 0;
    }

    .blog-heading {
        margin-bottom: 38px;
    }

    .blog-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .blog-card-image {
        height: 240px;
    }
#about .divider1 {
    width: 46px;
    height: 2px;
    background: linear-gradient(
        to right,
        var(--rose) 0 35%,
        transparent 35% 65%,
        var(--rose) 65% 100%
    );
    margin: 14px auto 0;
    position: relative;
}

#about .divider1::before {
    content: "♥";
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: var(--rose);

    font-size: 11px;
    line-height: 1;

    background: transparent;
    padding: 0;
}
}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 480px) {
	.blog-section{
		padding: 56px 0;
	}
    .blog-hero {
        min-height: 270px;
    }

    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-card-content {
        padding: 22px 20px 24px;
    }

    .blog-card-title {
        font-size: 20px;
    }

}

/* =====================================================
   SINGLE BLOG POST
   ===================================================== */


/* =====================================================
   BLOG HERO
   ===================================================== */

.blog-single-hero {
    position: relative;

    min-height: 390px;

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

    background-image: url("https://wellwedplanners.com/wp-content/uploads/2026/08/CTA-Banner.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
    text-align: center;

    overflow: hidden;
}


.blog-single-hero-overlay {
    position: absolute;

    inset: 0;

    background: rgba(59, 46, 40, 0.58);
}


.blog-single-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    padding: 80px 20px;
}


.blog-hero-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #F3C3C8;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.blog-single-hero h1 {
    max-width: 900px;

    margin: 0 auto 18px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: clamp(36px, 5vw, 62px);

    line-height: 1.15;

    font-weight: 500;
}


.blog-breadcrumb {
    display: flex;

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

    flex-wrap: wrap;

    gap: 9px;

    font-size: 13px;
}


.blog-breadcrumb a {
    color: #fff;

    text-decoration: none;

    transition: color .25s ease;
}


.blog-breadcrumb a:hover {
    color: #F3C3C8;
}


.blog-breadcrumb span {
    color: rgba(255,255,255,.75);
}


/* =====================================================
   MAIN SECTION
   ===================================================== */

.blog-single-section {
    padding: 70px 0;

    background: #fff;
}


.blog-single-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 60px;

    align-items: start;
}


/* =====================================================
   MAIN BLOG
   ===================================================== */

.blog-single-main {
    min-width: 0;
}


/* =====================================================
   FEATURED IMAGE
   ===================================================== */

.blog-single-featured {
    width: 100%;

    margin-bottom: 25px;

    overflow: hidden;

    border-radius: var(--radius-md);

    background: var(--cream-alt);

    box-shadow:
        3px 10px 30px rgb(0 0 0 / 7%);
}


.blog-single-featured img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 600px;

    object-fit: cover;
}


/* =====================================================
   META
   ===================================================== */

.blog-single-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 13px;

    color: var(--body-text);

    font-size: 12px;
}


.blog-single-category {
    color: var(--rose);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    text-decoration: none;

    transition: color .25s ease;
}


.blog-single-category:hover {
    color: var(--rose-dark);
}


.blog-meta-separator {
    color: var(--border);
}


/* =====================================================
   POST TITLE
   ===================================================== */

.blog-single-title {
    margin: 0 0 25px;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;

    font-weight: 500;
}


/* =====================================================
   POST CONTENT
   ===================================================== */

.blog-single-content {
    color: var(--body-text);

    font-size: 15px;

    line-height: 1.85;
}


.blog-single-content p {
    margin-bottom: 20px;
}


.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
    margin: 35px 0 15px;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    line-height: 1.3;
}


.blog-single-content h2 {
    font-size: 30px;
}


.blog-single-content h3 {
    font-size: 25px;
}


.blog-single-content h4 {
    font-size: 21px;
}


.blog-single-content a {
    color: var(--rose-dark);

    text-decoration: underline;
}


.blog-single-content ul,
.blog-single-content ol {
    margin: 0 0 25px 22px;
}


.blog-single-content li {
    margin-bottom: 8px;
}


.blog-single-content blockquote {
    margin: 30px 0;

    padding: 25px 30px;

    border-left: 3px solid var(--rose);

    background: var(--cream-alt);

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: 19px;

    font-style: italic;
}


.blog-single-content img {
    display: block;

    max-width: 100%;
    height: auto;

    border-radius: 12px;
}


/* =====================================================
   TAGS
   ===================================================== */

.blog-single-tags {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}


.blog-tags-label {
    padding-top: 5px;

    color: var(--ink);

    font-size: 13px;

    font-weight: 600;
}


.blog-tags-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.blog-tags-list a {
    display: inline-flex;

    padding: 5px 12px;

    border: 1px solid var(--border);

    border-radius: var(--radius-pill);

    background: #fff;

    color: var(--body-text);

    font-size: 11px;

    text-decoration: none;

    transition: .25s ease;
}


.blog-tags-list a:hover {
    color: #fff;

    background: var(--rose);

    border-color: var(--rose);
}


/* =====================================================
   PREVIOUS / NEXT
   ===================================================== */

.blog-post-navigation {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-top: 40px;

    padding: 25px 0;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}


.blog-prev-post,
.blog-next-post {
    min-width: 0;
}


.blog-next-post {
    text-align: right;
}


.blog-nav-label {
    display: block;

    margin-bottom: 7px;

    color: var(--rose);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.blog-post-navigation a {
    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: 16px;

    line-height: 1.4;

    text-decoration: none;

    transition: color .25s ease;
}


.blog-post-navigation a:hover {
    color: var(--rose-dark);
}


.blog-nav-arrow {
    margin: 0 5px;

    color: var(--rose);

    font-family: 'Poppins', sans-serif;
}


/* =====================================================
   SIDEBAR
   ===================================================== */

.blog-single-sidebar {
    position: sticky;

    top: 30px;
}


.blog-sidebar-widget {
    padding: 28px;

    margin-bottom: 25px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow:
        2px 8px 25px rgb(0 0 0 / 4%);
}


.blog-sidebar-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: var(--rose);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;
}


.blog-sidebar-widget h3 {
    margin: 0;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: 23px;

    font-weight: 500;
}


.sidebar-divider {
    width: 35px;

    height: 2px;

    margin: 13px 0 20px;

    background: var(--rose);
}


/* =====================================================
   CATEGORY LIST
   ===================================================== */

.blog-category-list {
    list-style: none;

    margin: 0;
    padding: 0;
}


.blog-category-list li {
    margin: 0;

    border-bottom: 1px solid var(--border);
}


.blog-category-list li:last-child {
    border-bottom: 0;
}


.blog-category-list li a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 11px 4px;

    color: var(--body-text);

    font-size: 13px;

    text-decoration: none;

    transition: .25s ease;
}


.blog-category-list li a:hover {
    padding-left: 8px;

    color: var(--rose-dark);
}


.blog-category-list li.active a {
    justify-content: flex-start;

    padding-left: 8px;

    color: var(--rose-dark);

    font-weight: 600;
}


.blog-category-list li.active a::before {
    content: "";

    width: 3px;
    height: 18px;

    margin-right: 2px;

    background: var(--rose);

    border-radius: 3px;
}


.blog-category-list li.active a small {
    margin-left: auto;
}


.blog-category-list small {
    display: inline-flex;

    min-width: 22px;
    height: 22px;

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

    border-radius: 50%;

    background: var(--cream);

    color: var(--body-text);

    font-size: 10px;
}


.blog-category-list .no-categories {
    padding: 10px 0;

    color: var(--body-text);

    font-size: 12px;
}


/* =====================================================
   SIDEBAR RECENT POSTS
   ===================================================== */

.sidebar-recent-posts {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.sidebar-post {
    display: flex;

    gap: 12px;

    align-items: center;
}


.sidebar-post-image {
    width: 72px;
    height: 65px;

    min-width: 72px;

    display: flex;

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

    overflow: hidden;

    border-radius: 8px;

    background: var(--cream-alt);

    text-decoration: none;
}


.sidebar-post-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.sidebar-post-image span {
    color: var(--rose);

    font-family: 'Playfair Display', serif;

    font-size: 18px;
}


.sidebar-post-content {
    min-width: 0;
}


.sidebar-post-date {
    display: block;

    margin-bottom: 3px;

    color: var(--rose);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .7px;
}


.sidebar-post-content h4 {
    margin: 0;

    font-size: 12.5px;

    line-height: 1.45;
}


.sidebar-post-content h4 a {
    color: var(--ink);

    text-decoration: none;
}


.sidebar-post-content h4 a:hover {
    color: var(--rose-dark);
}


/* =====================================================
   SIDEBAR CTA
   ===================================================== */

.blog-sidebar-cta {
    padding: 35px 28px;

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            rgba(59, 46, 40, .86),
            rgba(59, 46, 40, .90)
        ),
        url("https://wellwedplanners.com/wp-content/uploads/2026/08/Sidebar-CTA.png");

    background-size: cover;

    background-position: center;

    color: #fff;

    text-align: center;
}


.blog-sidebar-cta-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #F3C3C8;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;
}


.blog-sidebar-cta h3 {
    margin-bottom: 12px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 25px;

    line-height: 1.25;

    font-weight: 500;
}


.blog-sidebar-cta p {
    margin-bottom: 20px;

    color: rgba(255,255,255,.82);

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   RELATED POSTS
   ===================================================== */

.related-posts {
    width: 100%;

    margin-top: 65px;
}


.related-heading {
    margin-bottom: 28px;
}


.related-heading .eyebrow1 {
    display: block;

    margin-bottom: 6px;

    color: var(--rose);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;
}


.related-heading h2 {
    margin: 0;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 500;
	text-align:center;
}


/* .related-heading .divider {
    width: 45px;

    height: 2px;

    margin-top: 12px;

    background: var(--rose);
} */


/* =====================================================
   RELATED GRID
   ONLY 2 CARDS
   ===================================================== */

.related-post-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;

    width: 100%;
}


/* =====================================================
   RELATED BLOG CARD
   ===================================================== */

.related-post-grid .blog-card {
    width: 100%;

    min-width: 0;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow:
        2px 8px 25px rgb(0 0 0 / 4%);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.related-post-grid .blog-card:hover {
    transform: translateY(-5px);

    box-shadow:
        3px 14px 30px rgb(0 0 0 / 9%);
}


/* =====================================================
   RELATED CARD IMAGE
   ===================================================== */

.related-post-grid .blog-card-image {
    position: relative;

    width: 100%;

    height: 210px;

    overflow: hidden;

    background: var(--cream-alt);
}


/* IMAGE LINK */

.related-post-grid .blog-card-image-link {
    display: block !important;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    text-decoration: none;
}


.related-post-grid .blog-card-image-link img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position: center;

    transition: transform .45s ease;
}


.related-post-grid .blog-card:hover .blog-card-image-link img {
    transform: scale(1.05);
}


/* =====================================================
   NO IMAGE
   ===================================================== */

.related-post-grid .blog-card-no-image {
    display: flex !important;

    width: 100%;
    height: 100%;

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

    background:
        linear-gradient(
            135deg,
            #F3DCC9,
            #E3DCF0
        );

    color: var(--rose);

    font-family: 'Playfair Display', serif;

    font-size: 22px;

    text-decoration: none;
}


/* =====================================================
   RELATED POST CATEGORY - TOP LEFT BADGE
   ===================================================== */

.related-post-grid .blog-card-image {
    position: relative;
    overflow: hidden;
}

.related-post-grid .blog-card-image .blog-card-category {
    position: absolute !important;

    top: 12px !important;
    left: 18px !important;
    bottom: auto !important;
    right: auto !important;

    width: auto !important;
    height: auto !important;
    max-width: calc(100% - 36px);

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    padding: 7px 14px !important;
    margin: 0 !important;

    background: var(--rose) !important;
    color: #fff !important;

    border: 0 !important;
    border-radius: 20px !important;

    font-family: 'Poppins', sans-serif;
    font-size: 9px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;

    letter-spacing: .7px;
    text-transform: uppercase;
    text-decoration: none;

    white-space: nowrap;

    z-index: 10;

    box-sizing: border-box;

    transition:
        background-color .25s ease,
        transform .25s ease;
}

.related-post-grid .blog-card-image .blog-card-category:hover {
    background: var(--rose-dark) !important;
    color: #fff !important;

    transform: translateY(-1px);
}


/* =====================================================
   RELATED CARD CONTENT
   ===================================================== */

.related-post-grid .blog-card-content {
    padding: 20px;
}


.related-post-grid .blog-card-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 9px;

    color: var(--rose);

    font-size: 9px;

    line-height: 1.4;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.related-post-grid .blog-card-content h3 {
    margin: 0 0 10px;

    font-family: 'Playfair Display', serif;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 500;
}


.related-post-grid .blog-card-content h3 a {
    color: var(--ink);

    text-decoration: none;

    transition: color .25s ease;
}


.related-post-grid .blog-card-content h3 a:hover {
    color: var(--rose-dark);
}


.related-post-grid .blog-card-content p {
    margin: 0 0 16px;

    color: var(--body-text);

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   READ MORE
   ===================================================== */

.related-post-grid .blog-read-more {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--rose-dark);

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;
}


.related-post-grid .blog-read-more span {
    display: inline-block;

    transition: transform .25s ease;
}


.related-post-grid .blog-read-more:hover span {
    transform: translateX(4px);
}


/* =====================================================
   RESPONSIVE - TABLET
   ===================================================== */

@media (max-width: 991px) {

    .blog-single-layout {
        grid-template-columns:
            minmax(0, 1fr)
            280px;

        gap: 35px;
    }


    .related-post-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .related-post-grid .blog-card-image {
        height: 190px;
    }


    .related-post-grid .blog-card-content {
        padding: 18px;
    }


    .related-post-grid .blog-card-content h3 {
        font-size: 19px;
    }

}


/* =====================================================
   RESPONSIVE - MOBILE
   ===================================================== */

@media (max-width: 767px) {

    .blog-single-hero {
        min-height: 330px;
    }

	.blog-single-section {
    padding: 65px 0;
}

    .blog-single-hero-content {
        padding: 70px 20px;
    }


    .blog-single-hero h1 {
        font-size: 36px;
    }


    .blog-single-section {
        padding: 55px 0;
    }


    .blog-single-layout {
        display: flex;

        flex-direction: column;

        gap: 45px;
    }


    .blog-single-main,
    .blog-single-sidebar {
        width: 100%;
    }


    .blog-single-sidebar {
        position: static;
    }


    .blog-single-title {
        font-size: 32px;
    }


    .blog-post-navigation {
        grid-template-columns: 1fr;
    }


    .blog-next-post {
        text-align: left;
    }


    /* Related posts stay 2 columns on tablet/mobile breakpoint */
    .related-post-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 15px;
    }


    .related-post-grid .blog-card-image {
        height: 170px;
    }


    .related-post-grid .blog-card-content {
        padding: 16px;
    }


    .related-post-grid .blog-card-content h3 {
        font-size: 18px;
    }


    .related-post-grid .blog-card-content p {
        font-size: 11px;

        line-height: 1.6;
    }

}


/* =====================================================
   RESPONSIVE - SMALL MOBILE
   ===================================================== */

@media (max-width: 480px) {

    .blog-single-hero {
        min-height: 300px;
    }
	
	.blog-single-section {
    padding: 56px 0;
}


    .blog-hero-eyebrow {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .blog-single-hero h1 {
        font-size: 31px;
    }


    .blog-breadcrumb {
        font-size: 11px;
    }


    .blog-single-section {
        padding: 56px 0;
    }


    .blog-single-featured {
        border-radius: 12px;
    }


    .blog-single-meta {
        font-size: 10px;
    }


    .blog-single-title {
        font-size: 29px;
    }


    .blog-single-content {
        font-size: 14px;
    }


    .blog-sidebar-widget {
        padding: 24px 20px;
    }


    .blog-sidebar-cta {
        padding: 30px 22px;
    }


    /* 2 cards become 1 card on very small screens */
    .related-post-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .related-post-grid .blog-card-image {
        height: 210px;
    }


    .related-post-grid .blog-card-content {
        padding: 20px;
    }


    .related-post-grid .blog-card-content h3 {
        font-size: 20px;
    }


    .related-post-grid .blog-card-content p {
        font-size: 12px;
    }

}

/* =====================================================
   CATEGORY PAGE
   ===================================================== */

.cat-hero {
    position: relative;
    min-height: 360px;

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

    background-image: url("https://wellwedplanners.com/wp-content/uploads/2026/08/Pages-Banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
    overflow: hidden;
}

.cat-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(59, 46, 40, 0.62),
            rgba(59, 46, 40, 0.62)
        );
}

.cat-hero-content {
    position: relative;
    z-index: 1;

    text-align: center;

    padding: 80px 20px;
}

.cat-hero-eyebrow {
    margin: 0 0 10px;

    color: #F4D5D8;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.cat-hero h1 {
    margin: 0;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.15;
}

.cat-breadcrumb {
    display: flex;

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

    gap: 10px;

    margin-top: 18px;

    font-size: 13px;
}

.cat-breadcrumb a {
    color: #fff;

    text-decoration: none;

    transition: color .25s ease;
}

.cat-breadcrumb a:hover {
    color: #F4D5D8;
}

.cat-breadcrumb span {
    color: rgba(255,255,255,.8);
}


/* =====================================================
   CATEGORY SECTION
   ===================================================== */

.cat-section {
    padding: 70px 0;

    background: var(--cream);
}


/* =====================================================
   CATEGORY HEADING
   ===================================================== */

.cat-heading {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 50px;
}

.cat-heading .eyebrow1 {
    margin-bottom: 8px;

    color: var(--rose);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.cat-heading h2 {
    margin: 0;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: clamp(32px, 4vw, 44px);

    line-height: 1.2;
}


/* =====================================================
   CATEGORY DESCRIPTION
   ===================================================== */

.cat-description {
    max-width: 650px;

    margin: 15px auto 0;

    color: var(--body-text);

    font-size: 13.5px;

    line-height: 1.8;
}

.cat-description p {
    margin: 0;
}


/* =====================================================
   CATEGORY GRID
   ===================================================== */

.cat-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 32px;
}


/* =====================================================
   CATEGORY CARD
   ===================================================== */

.cat-card {
    background: #FDF7F0;

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: 5px 10px 30px rgb(0 0 0 / 9%);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.cat-card:hover {
    transform: translateY(-6px);

    box-shadow:
        3px 16px 35px rgb(0 0 0 / 11%);
}


/* =====================================================
   FEATURED IMAGE
   ===================================================== */

.cat-card-image {
    position: relative;

    height: 245px;

    overflow: hidden;

    background: #f4ebe5;
}

.cat-card-image > a {
    display: block;

    width: 100%;
    height: 100%;
}

.cat-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.cat-card:hover .cat-card-image img {
    transform: scale(1.05);
}


/* =====================================================
   NO IMAGE
   ===================================================== */

.cat-no-image {
    width: 100%;
    height: 100%;

    display: flex;

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

    background:
        linear-gradient(
            135deg,
            #F3DCC9,
            #E3DCF0
        );

    color: var(--rose-dark);

    font-family: 'Playfair Display', serif;

    font-size: 18px;
}


/* =====================================================
   CATEGORY BADGE
   ===================================================== */

.cat-category {
    position: absolute;

    left: 18px;
    top: 18px;

    padding: 7px 13px;

    background: var(--rose);

    color: #fff;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    line-height: 1;
}


/* =====================================================
   CARD CONTENT
   ===================================================== */

.cat-card-content {
    padding: 25px 24px 27px;
}


/* =====================================================
   META
   ===================================================== */

.cat-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 11px;

    color: var(--rose-dark);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.cat-meta-separator {
    color: var(--border);
}


/* =====================================================
   TITLE
   ===================================================== */

.cat-card-title {
    margin: 0 0 11px;

    font-family: 'Playfair Display', serif;

    font-size: 22px;

    line-height: 1.3;

    color: var(--ink);
}

.cat-card-title a {
    color: inherit;

    text-decoration: none;

    transition: color .25s ease;
}

.cat-card-title a:hover {
    color: var(--rose-dark);
}


/* =====================================================
   EXCERPT
   ===================================================== */

.cat-excerpt {
    color: var(--body-text);

    font-size: 13px;

    line-height: 1.75;

    margin-bottom: 19px;
}


/* =====================================================
   READ MORE
   ===================================================== */

.cat-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--rose-dark);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .5px;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        gap .25s ease,
        color .25s ease;
}

.cat-read-more:hover {
    gap: 12px;

    color: var(--rose);
}

.cat-read-more span {
    font-size: 17px;

    line-height: 1;
}


/* =====================================================
   NO POSTS
   ===================================================== */

.cat-no-posts {
    grid-column: 1 / -1;

    text-align: center;

    padding: 60px 20px;
}

.cat-no-posts h3 {
    margin-bottom: 8px;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: 28px;
}

.cat-no-posts p {
    margin-bottom: 20px;

    color: var(--body-text);

    font-size: 14px;
}

.cat-back-home {
    display: inline-flex;

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

    padding: 11px 22px;

    border-radius: var(--radius-pill);

    background: var(--rose);

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}

.cat-back-home:hover {
    background: var(--rose-dark);

    transform: translateY(-2px);
}


/* =====================================================
   PAGINATION
   ===================================================== */

.cat-pagination {
    margin-top: 55px;

    display: flex;

    justify-content: center;
}

.cat-pagination ul {
    display: flex;

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

    gap: 8px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.cat-pagination li {
    margin: 0;
    padding: 0;
}

.cat-pagination a,
.cat-pagination span {
    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 50%;

    border: 1px solid var(--border);

    color: var(--body-text);

    background: var(--white);

    font-size: 12px;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.cat-pagination a:hover,
.cat-pagination span.current {
    background: var(--rose);

    border-color: var(--rose);

    color: #fff;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

    .cat-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px;
    }

    .cat-card-image {
        height: 230px;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767px) {

    .cat-hero {
        min-height: 300px;
    }

    .cat-hero-content {
        padding: 65px 20px;
    }
.container.cat-hero-content .cat-breadcrumb {
    display: block;
}
    .cat-section {
        padding: 65px 0;
    }

    .cat-heading {
        margin-bottom: 38px;
    }

    .cat-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cat-card-image {
        height: 240px;
    }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 480px) {

    .cat-hero {
        min-height: 270px;
    }
	.cat-section {
        padding: 56px 0;
    }

    .cat-hero h1 {
        font-size: 36px;
    }

    .cat-card-content {
        padding: 22px 20px 24px;
    }

    .cat-card-title {
        font-size: 20px;
    }

}


/* =====================================================
   PRIVACY POLICY HERO
===================================================== */

.privacy-hero {
    position: relative;
    min-height: 360px;

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

    background-image: url("https://wellwedplanners.com/wp-content/uploads/2026/08/Pages-Banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
    overflow: hidden;
}

.privacy-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(59, 46, 40, 0.62),
            rgba(59, 46, 40, 0.62)
        );
}

.privacy-hero-content {
    position: relative;
    z-index: 1;

    text-align: center;

    padding: 80px 20px;
}

.privacy-hero-eyebrow {
    margin: 0 0 10px;

    color: #F4D5D8;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.privacy-hero h1 {
    margin: 0;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.15;
}

.privacy-breadcrumb {
    display: flex;

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

    gap: 10px;

    margin-top: 18px;

    font-size: 13px;
}

.privacy-breadcrumb a {
    color: #fff;

    text-decoration: none;
}

.privacy-breadcrumb span {
    color: rgba(255,255,255,.8);
}


/* =====================================================
   PRIVACY SECTION
===================================================== */

.privacy-section {
    padding: 70px 0;

    background: #fff;
}


/* =====================================================
   PRIVACY CONTENT
===================================================== */

.privacy-content {
    max-width: 900px;

    margin: 0 auto;

    background: var(--cream);

    padding: 55px 60px;

    border-radius: var(--radius-md);

    box-shadow:
        0 8px 25px rgba(59, 46, 40, 0.12),
        0 20px 45px rgba(59, 46, 40, 0.10);
}


/* =====================================================
   INTRO / PAGE HEADING
===================================================== */

.privacy-intro {
    text-align: center;

    margin-bottom: 48px;
}

.privacy-eyebrow {
    margin: 0 0 8px;

    color: var(--rose);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* .privacy-intro h2 {
    margin: 0;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: clamp(32px, 4vw, 44px);

    line-height: 1.2;
} */


/* =====================================================
   HEART DIVIDER
===================================================== */

.privacy-divider {
    width: 46px;
    height: 2px;

    background: var(--rose);

    margin: 14px auto 16px;

    position: relative;
}

.privacy-divider::before {
    content: "♥";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: var(--white);

    color: var(--rose);

    font-size: 11px;

    padding: 0 8px;
}


/* =====================================================
   EFFECTIVE DATE
===================================================== */

.privacy-effective-date {
    margin: 0;

    color: var(--body-text);

    font-size: 13px;

    line-height: 1.7;
}

.privacy-effective-date strong {
    color: var(--ink);
}


/* =====================================================
   PRIVACY BLOCK
===================================================== */

.privacy-block {
    margin-bottom: 38px;
}

.privacy-block:last-of-type {
    margin-bottom: 0;
}

.privacy-block h3 {
    margin: 0 0 13px;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: 25px;

    line-height: 1.3;
}

.privacy-block p {
    margin: 0 0 14px;

    color: var(--body-text);

    font-size: 14px;

    line-height: 1.85;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   LIST
===================================================== */

.privacy-block ul {
    margin: 8px 0 16px;

    padding-left: 22px;

    color: var(--body-text);

    font-size: 14px;

    line-height: 1.85;
}

.privacy-block li {
    margin-bottom: 5px;

    padding-left: 5px;
}

.privacy-block li::marker {
    color: var(--rose);
}


/* =====================================================
   LINKS
===================================================== */

.privacy-block a {
    color: var(--rose-dark);

    font-weight: 600;

    text-decoration: none;

    transition: color .25s ease;
}

.privacy-block a:hover {
    color: var(--rose);
}


/* =====================================================
   CONTACT BLOCK
===================================================== */

.privacy-contact-block {
    padding-top: 8px;
}

.privacy-contact-block p:last-child {
    margin-top: 18px;
}


/* =====================================================
   LAST UPDATED
===================================================== */

.privacy-last-updated {
    margin-top: 45px;

    padding-top: 22px;

    border-top: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    color: var(--body-text);

    font-size: 12px;

    letter-spacing: .3px;
}

.privacy-last-updated strong {
    color: var(--rose-dark);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .privacy-section {
        padding: 70px 0;
    }

    .privacy-content {
        padding: 45px 40px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .privacy-hero {
        min-height: 300px;
    }

    .privacy-hero-content {
        padding: 65px 20px;
    }

    .privacy-hero h1 {
        font-size: 38px;
    }

    .privacy-section {
        padding: 60px 0;
    }

    .privacy-content {
        padding: 38px 24px;
        border-radius: var(--radius-md);
    }

    .privacy-intro {
        margin-bottom: 38px;
    }

    .privacy-intro h2 {
        font-size: 34px;
    }

    .privacy-block {
        margin-bottom: 32px;
    }

    .privacy-block h3 {
        font-size: 22px;
    }

    .privacy-block p,
    .privacy-block ul {
        font-size: 13px;
        line-height: 1.8;
    }

    .privacy-last-updated {
        margin-top: 35px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
	
    .privacy-section {
        padding: 56px 0;
      }
	
    .privacy-hero {
        min-height: 270px;
    }

    .privacy-hero h1 {
        font-size: 34px;
    }

    .privacy-content {
        padding: 32px 20px;
    }

    .privacy-intro h2 {
        font-size: 31px;
    }

    .privacy-block h3 {
        font-size: 21px;
    }

    .privacy-last-updated {
        flex-direction: column;
        gap: 3px;
    }

}


/* =====================================================
   TERMS HERO
===================================================== */

.terms-hero {
    position: relative;

    min-height: 360px;

    display: flex;

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

    background-image: url("https://wellwedplanners.com/wp-content/uploads/2026/08/Pages-Banner.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    color: #fff;

    overflow: hidden;
}

.terms-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(59, 46, 40, 0.62),
            rgba(59, 46, 40, 0.62)
        );
}

.terms-hero-content {
    position: relative;

    z-index: 1;

    text-align: center;

    padding: 80px 20px;
}

.terms-hero-eyebrow {
    margin: 0 0 10px;

    color: #F4D5D8;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.terms-hero h1 {
    margin: 0;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.15;
}

.terms-breadcrumb {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 18px;

    font-size: 13px;
}

.terms-breadcrumb a {
    color: #fff;

    text-decoration: none;
}

.terms-breadcrumb span {
    color: rgba(255,255,255,.8);
}


/* =====================================================
   TERMS SECTION
===================================================== */

.terms-section {
    padding: 70px 0;

    background: #fff;
}


/* =====================================================
   TERMS CONTENT
===================================================== */

.terms-content {
    max-width: 900px;

    margin: 0 auto;

    background: var(--cream);

    padding: 55px 60px;

    border-radius: var(--radius-md);

    box-shadow:
        0 8px 25px rgba(59, 46, 40, 0.12),
        0 20px 45px rgba(59, 46, 40, 0.10);
}


/* =====================================================
   INTRO / PAGE HEADING
===================================================== */

.terms-intro {
    text-align: center;

    margin-bottom: 48px;
}

.terms-eyebrow {
    margin: 0 0 8px;

    color: var(--rose);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.terms-intro h2 {
    margin: 0;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: clamp(32px, 4vw, 44px);

    line-height: 1.2;
}


/* =====================================================
   HEART DIVIDER
===================================================== */

.terms-divider {
    width: 46px;

    height: 2px;

    background: var(--rose);

    margin: 14px auto 16px;

    position: relative;
}

.terms-divider::before {
    content: "♥";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: var(--cream);

    color: var(--rose);

    font-size: 11px;

    padding: 0 8px;
}


/* =====================================================
   EFFECTIVE DATE
===================================================== */

.terms-effective-date {
    margin: 0;

    color: var(--body-text);

    font-size: 13px;

    line-height: 1.7;
}

.terms-effective-date strong {
    color: var(--ink);
}


/* =====================================================
   TERMS BLOCK
===================================================== */

.terms-block {
    margin-bottom: 38px;
}

.terms-block:last-of-type {
    margin-bottom: 0;
}

.terms-block h3 {
    margin: 0 0 13px;

    color: var(--ink);

    font-family: 'Playfair Display', serif;

    font-size: 25px;

    line-height: 1.3;
}

.terms-block p {
    margin: 0 0 14px;

    color: var(--body-text);

    font-size: 14px;

    line-height: 1.85;
}

.terms-block p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   LIST
===================================================== */

.terms-block ul {
    margin: 8px 0 16px;

    padding-left: 22px;

    color: var(--body-text);

    font-size: 14px;

    line-height: 1.85;
}

.terms-block li {
    margin-bottom: 5px;

    padding-left: 5px;
}

.terms-block li::marker {
    color: var(--rose);
}


/* =====================================================
   LINKS
===================================================== */

.terms-block a {
    color: var(--rose-dark);

    font-weight: 600;

    text-decoration: none;

    transition: color .25s ease;
}

.terms-block a:hover {
    color: var(--rose);
}


/* =====================================================
   CONTACT BLOCK
===================================================== */

.terms-contact-block {
    padding-top: 8px;
}

.terms-contact-block p:last-child {
    margin-top: 18px;
}


/* =====================================================
   LAST UPDATED
===================================================== */

.terms-last-updated {
    margin-top: 45px;

    padding-top: 22px;

    border-top: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    color: var(--body-text);

    font-size: 12px;

    letter-spacing: .3px;
}

.terms-last-updated strong {
    color: var(--rose-dark);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .terms-section {
        padding: 70px 0;
    }

    .terms-content {
        padding: 45px 40px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .terms-hero {
        min-height: 300px;
    }

    .terms-hero-content {
        padding: 65px 20px;
    }

    .terms-hero h1 {
        font-size: 38px;
    }

    .terms-section {
        padding: 60px 0;
    }

    .terms-content {
        padding: 38px 24px;

        border-radius: var(--radius-md);
    }

    .terms-intro {
        margin-bottom: 38px;
    }

    .terms-intro h2 {
        font-size: 34px;
    }

    .terms-block {
        margin-bottom: 32px;
    }

    .terms-block h3 {
        font-size: 22px;
    }

    .terms-block p,
    .terms-block ul {
        font-size: 13px;

        line-height: 1.8;
    }

    .terms-last-updated {
        margin-top: 35px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .terms-section {
        padding: 56px 0;
    }

    .terms-hero {
        min-height: 270px;
    }

    .terms-hero h1 {
        font-size: 34px;
    }

    .terms-content {
        padding: 32px 20px;
    }

    .terms-intro h2 {
        font-size: 31px;
    }

    .terms-block h3 {
        font-size: 21px;
    }

    .terms-last-updated {
        flex-direction: column;

        gap: 3px;
    }

}
/* =====================================================
   404 HERO
   ===================================================== */

.error-404-section {
    position: relative;
    min-height: 360px;

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

    background-image: url("https://wellwedplanners.com/wp-content/uploads/2026/08/Pages-Banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
    text-align: center;
    overflow: hidden;

    padding: 70px 0;
}

/* Overlay */
.error-404-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(59, 46, 40, 0.62),
        rgba(59, 46, 40, 0.62)
    );
}

/* Content */
.error-404-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Eyebrow */
.error-404-section .eyebrow {
    margin: 0 0 12px;
    color: #fff;
}

/* Heading */
.error-404-section h1 {
    margin: 0;
    color: #fff;
}

/* Description */
.error-404-text {
    max-width: 520px;
    margin: 20px auto 30px;
    color: #fff;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 768px) {

    .error-404-section {
        padding: 65px 0;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 480px) {

    .error-404-section {
        padding: 56px 0;
    }

}
