@import url(
  'https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Playfair+Display:wght@500;600&display=swap'
);

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #f7f3ee;
  color: #2f2926;
  font: 16px/1.7 Montserrat, Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 999;
  padding: 0.7rem;
  background: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.section {
  padding: 6rem 0;
}

.soft {
  background: #eee6dd;
}

.eyebrow {
  display: block;
  margin-bottom: 0.7rem;
  color: #8f674c;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

.h1 {
    font-size:4.8rem;
    line-height:.95;
    margin-bottom:.6rem;
}

.h2 {
    font-size:2.05rem;
    line-height:1.15;
    max-width:520px;
    margin-bottom:1.2rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  color: #766b64;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border: 2px solid #b78b67;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-primary {
  color: #302019;
}

.btn-primary:hover {
  background: #8f674c;
}

.btn-secondary:hover {
  background: #b78b67;
  color: #fff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.center {
  justify-content: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.feature-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.cards,
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.card,
.benefit,
.quote,
.step {
  background: #fff;
  border: 1px solid #ded5cc;
}

.card {
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body,
.benefit,
.quote,
.step {
  padding: 1.5rem;
}

.text-link {
  color: #8f674c;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto 50px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform .35s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.03);
}

.gallery-item {
  overflow: hidden;
  padding: 0;
  border: 0;
  background: none;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: 0.3s;
}

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

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

.testimonials,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.cta {
  padding: 4rem;
  background: #2f2926;
  color: #fff;
  text-align: center;
}

.cta p {
  max-width: 660px;
  margin: 1rem auto;
  color: #ddd4ce;
}

.cta .actions {
  justify-content: center;
}

.page-banner {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 9rem 0 4rem;
  background:
    linear-gradient(rgba(24, 20, 18, 0.52), rgba(24, 20, 18, 0.52)),
    image-set(url("../assets/images/hero/hero-bride-1024.webp") type("image/webp"), url("../assets/images/hero/hero-bride.jpg") type("image/jpeg")) center 35% / cover;
  color: #fff;
  text-align: center;
}

.page-banner .eyebrow {
  color: #ead7c7;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}

.service-row:nth-child(even) img {
  order: 2;
}

.service-row img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 0.6rem 0;
}

.check-list li::before {
  margin-right: 0.6rem;
  color: #8f674c;
  content: '✓';
}

.form-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
}

.form-card {
  padding: 2.2rem;
  background: #fff;
  border: 1px solid #ded5cc;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ded5cc;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  min-height: 1.7rem;
}

.form-message.success {
  color: #28673e;
}

.form-message.failure {
  color: #a33a33;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.2rem;
  border-left: 3px solid #b78b67;
  background: #fff;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.6rem 1rem;
  border: 1px solid #ded5cc;
  background: transparent;
}

.filter-btn.active {
  background: #b78b67;
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
}

.lightbox button {
  position: absolute;
  border: 0;
  background: none;
  color: #fff;
  font-size: 2rem;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(247, 243, 238, 0.97);
  color: #2f2926;
  box-shadow: 0 2px 15px #0002;
}

.navbar {
  display: flex;
  height: 88px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 0.3rem;
  font: 500 0.55rem Montserrat;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
}

.nav-link[aria-current='page'] {
  color: #e4b993;
}

.scrolled .nav-link[aria-current='page'] {
  color: #8f674c;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  padding: 1rem 0;
  border: 0;
  background: none;
  color: inherit;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  width: 220px;
  padding: 0.5rem;
  visibility: hidden;
  background: #fff;
  color: #2f2926;
  box-shadow: 0 12px 35px #2f29261c;
  opacity: 0;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: inherit;
  font-size: 1.7rem;
}

.hero {
  display: flex;
  min-height: 100svh;
  align-items: center;
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100svh;
  overflow: hidden;
  background: #2e2723;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;

  display: block;
  width: 100%;
  height: 100%;
  max-width: none;

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

.hero-overlay{
    background:
    linear-gradient(
        90deg,
        rgba(15,13,12,.68) 0%,
        rgba(15,13,12,.38) 35%,
        rgba(15,13,12,.10) 70%,
        rgba(15,13,12,0) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  padding-top: 6rem;
}

.hero-content {
  max-width: 560px;
  padding-top: 6rem;
}

.hero .eyebrow {
  color: #ead7c7;
}

.hero h1 span {
  display: block;
  font: 500 clamp(0.9rem, 2vw, 1.2rem) Montserrat;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero p {
  color: #f0eae6;
  max-width:500px;
    font-size:1.1rem;
    line-height:1.7;
    margin-bottom:2rem;
}

@media (max-width: 700px) {
  .hero {
    min-height: 100svh;
  }

  .hero-video {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(20, 17, 15, 0.72),
      rgba(20, 17, 15, 0.2)
    );
  }
  
}

.site-footer {
  padding: 4.5rem 0 1.5rem;
  background: #251f1c;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
}

.site-footer p,
.site-footer a {
  color: #c7bdb7;
  font-size: 0.88rem;
}

.site-footer h3 {
  font: 600 0.78rem Montserrat;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid #4a403b;
  text-align: center;
}

:focus-visible {
  outline: 3px solid #d8a77f;
  outline-offset: 3px;
}

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

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

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-nav {
    position: fixed;
    inset: 88px 0 0;
    display: none;
    overflow: auto;
    padding: 1.5rem;
    background: #f7f3ee;
    color: #2f2926;
  }

  .desktop-nav.open {
    display: block;
  }

  .nav-list {
    display: block;
  }

  .nav-list > li > a,
  .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #ded5cc;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: auto;
    visibility: visible;
    box-shadow: none;
    opacity: 1;
  }

  .dropdown.mobile-open .dropdown-menu {
    display: block;
  }

  .two-col,
  .service-row,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) img {
    order: 0;
  }

  .feature-image {
    height: 420px;
  }

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

  .testimonials,
  .steps {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .cards,
  .benefits,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-image,
  .service-row img {
    height: 350px;
  }

  .hero .btn {
    width: 100%;
    padding:16px 34px;
    font-size:.9rem;
    letter-spacing:.12em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}


/* Decorative points around center image */


/* ========================================
   WHY CHOOSE US
======================================== */

.why-section {
  padding: 90px 0 110px;
  background-color: #f8f1eb;
}

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

.why-heading .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #a86f47;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.why-heading h2 {
  margin: 0 0 18px;
  color: #2f2420;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
}

.why-heading p {
  max-width: 780px;
  margin: 0 auto;
  color: #725f55;
  font-size: 15px;
  line-height: 1.8;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(270px, 1fr) 380px minmax(270px, 1fr);
  align-items: center;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
}

.why-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
}

.why-column-left {
  text-align: right;
}

.why-column-right {
  text-align: left;
}

.why-item {
  position: relative;
}

.why-item h3 {
  margin: 0 0 8px;
  color: #4b2519;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.why-item p {
  margin: 0;
  color: #725f55;
  font-size: 14px;
  line-height: 1.7;
}

.why-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 380px;
  margin: 0 auto;
}

.why-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed #c9aa95;
  border-radius: 50%;
}

.why-circle {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 280px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #c39471;
}

.why-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Decorative boxes */
.why-image-wrap .decor {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  background-color: #bc8b66;
  color: #ffffff;
  font-size: 17px;
}

.why-image-wrap .decor-top-left {
  top: 65px;
  left: -4px;
}

.why-image-wrap .decor-top-right {
  top: 30px;
  right: 26px;
}

.why-image-wrap .decor-bottom-left {
  bottom: 32px;
  left: 10px;
}

.why-image-wrap .decor-bottom-right {
  right: 34px;
  bottom: 4px;
}

@media (max-width:768px){

.gallery{
    display:flex;
    gap:16px;

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

    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;

    padding:0 20px 10px;

    scrollbar-width:none;
}

.gallery::-webkit-scrollbar{
    display:none;
}
    
.gallery img{
    flex:0 0 82%;
    max-width:320px;
    scroll-snap-align:center;
}
}

.brands-section {
  padding: 70px 0;
  overflow: hidden;
  background: #ffffff;
}

.brands-heading {
  margin-bottom: 38px;
  text-align: center;
}

.brands-heading h2 {
  margin: 0;
  color: #34211c;
  font-size: clamp(30px, 4vw, 44px);
}

.brands-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Soft fade on both sides */

.brands-marquee::before,
.brands-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  content: "";
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brand-scroll 24s linear infinite;
  will-change: transform;
}

.brand-item {
  display: flex;
  flex: 0 0 190px;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding: 20px 30px;
}

.brand-item img {
  display: block;
  width: auto;
  max-width: 135px;
  height: auto;
  max-height: 65px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========================================
   HOME STORY SECTION
======================================== */

.home-story-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(
      circle at 92% 15%,
      rgba(219, 186, 161, 0.13),
      transparent 27%
    ),
    #fbf7f2;
}

.home-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: clamp(55px, 7vw, 100px);
}


/* IMAGE */

.home-story-image {
  width: 100%;
  min-height: 720px;
  overflow: hidden;
}

.home-story-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center top;
}

/* CONTENT */

.home-story-content {
  max-width: 720px;
}

.home-story-welcome {
  margin-top: 13px;
  color: #4a3025;
  line-height: 0.9;
}

.home-story-welcome span,
.home-story-welcome strong {
  display: block;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 400;
}

.home-story-welcome span {
  font-size: 34px;
}

.home-story-welcome strong {
  margin-left: 42px;
  font-size: 52px;
}

.home-story-content h2 {
  max-width: 690px;
  margin: 25px 0 0;
  color: #302019;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -1.4px;
}

.home-story-content h2 em {
  display: block;
  color: #8f5b3d;
  font-weight: 400;
}

.home-story-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  margin: 27px 0 30px;
  color: #b77a52;
}

.home-story-divider span {
  height: 1px;
  flex: 1;
  background: #d8bca8;
}

.home-story-divider i {
  font-size: 16px;
  font-style: normal;
}

.home-story-text {
  max-width: 690px;
}

.home-story-text p {
  margin: 0 0 17px;
  color: #705e55;
  font-size: 15px;
  line-height: 1.82;
}

.home-story-text p:first-child {
  color: #443129;
  font-size: 17px;
}

.home-story-signature {
  margin: 28px 0 25px;
  color: #9a6443;
}

.home-story-signature span,
.home-story-signature strong {
  display: block;
}

.home-story-signature span {
  margin-bottom: 3px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.home-story-signature strong {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 34px;
  font-weight: 400;
}

.home-story-content .btn {
  min-width: 180px;
  min-height: 52px;
}


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

@media (max-width: 950px) {
  .home-story-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
  }

  .home-story-content h2 {
    font-size: 47px;
  }

  .home-story-welcome strong {
    font-size: 45px;
  }
}


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

@media (max-width: 700px) {
  .home-story-section {
    padding: 70px 0;
  }

  .home-story-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .home-story-content {
    text-align: left;
  }

  .home-story-welcome span {
    font-size: 29px;
  }

  .home-story-welcome strong {
    margin-left: 28px;
    font-size: 41px;
  }

  .home-story-content h2 {
    font-size: 42px;
  }

  .home-story-text p {
    font-size: 14px;
  }

  .home-story-text p:first-child {
    font-size: 16px;
  }

  .home-story-content .btn {
    width: 100%;
  }
}

/* ========================================
   SIMPLE HOME SERVICE CARDS
======================================== */

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.home-service-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: #e9ddd2;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(54, 36, 28, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.home-service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(54, 36, 28, 0.16);
}

.home-service-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

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

.home-service-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(38, 24, 18, 0.78) 0%,
      rgba(38, 24, 18, 0.14) 48%,
      transparent 72%
    );
  content: "";
}

.home-service-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.home-service-overlay h3 {
  max-width: 75%;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.home-service-arrow {
  display: flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-size: 21px;
  backdrop-filter: blur(7px);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.home-service-card:hover .home-service-arrow {
  background: #ffffff;
  color: #9f6846;
  transform: translateX(4px);
}

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

  .home-service-card:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 650px) {
  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-service-card,
  .home-service-card:last-child {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .home-service-overlay {
    padding: 22px;
  }

  .home-service-overlay h3 {
    font-size: 28px;
  }

  .home-service-arrow {
    width: 44px;
    height: 44px;
  }
}

/* ========================================
   WHY CHOOSE US
======================================== */

.why-choose-section {
  position: relative;
  overflow: hidden;
  padding: 95px 0 105px;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(223, 192, 169, 0.16),
      transparent 28%
    ),
    #fbf7f2;
}

.why-choose-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.why-choose-heading .eyebrow {
  display: block;
  margin-bottom: 13px;
}

.why-choose-heading h2 {
  margin: 0 0 20px;
  color: #302019;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.7px;
}

.why-choose-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #705e55;
  font-size: 16px;
  line-height: 1.8;
}


/* MAIN LAYOUT */

.why-choose-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(330px, 0.82fr)
    minmax(0, 1fr);
  align-items: center;
  gap: clamp(35px, 5vw, 70px);
}


/* FEATURE COLUMNS */

.why-choose-column {
  display: grid;
  gap: 18px;
}

.why-feature-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  min-height: 145px;
  padding: 23px 24px;
  border: 1px solid #e1cdbf;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 12px 30px rgba(61, 40, 31, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.why-feature-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(61, 40, 31, 0.09);
}

.why-feature-number {
  color: #bd835f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 1px;
}

.why-feature-card h3 {
  margin: 0 0 9px;
  color: #37251e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}

.why-feature-card p {
  margin: 0;
  color: #746159;
  font-size: 14px;
  line-height: 1.65;
}


/* CENTER IMAGE */

.why-choose-visual {
  position: relative;
  display: flex;
  min-height: 470px;
  align-items: center;
  justify-content: center;
}

.why-choose-orbit {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(202, 153, 120, 0.42);
  border-radius: 50%;
}

.why-choose-orbit::before {
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(202, 153, 120, 0.34);
  border-radius: 50%;
  content: "";
}

.why-choose-image {
  position: relative;
  z-index: 2;
  width: 310px;
  height: 310px;
  overflow: hidden;
  border: 10px solid #f7eee7;
  border-radius: 50%;
  background: #e8ddd4;
  box-shadow: 0 22px 50px rgba(57, 37, 28, 0.14);
}

.why-choose-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.why-choose-caption {
  position: absolute;
  right: 34px;
  bottom: 9px;
  left: 34px;
  z-index: 4;
  padding: 15px 18px;
  border: 1px solid #e0c7b7;
  border-radius: 12px;
  background: rgba(251, 247, 242, 0.92);
  text-align: center;
  backdrop-filter: blur(8px);
}

.why-choose-caption span,
.why-choose-caption strong {
  display: block;
}

.why-choose-caption span {
  margin-bottom: 4px;
  color: #a66d49;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.why-choose-caption strong {
  color: #37251e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
}


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

@media (max-width: 1050px) {
  .why-choose-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .why-choose-visual {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 440px;
    margin-bottom: 10px;
  }

  .why-choose-column {
    align-content: start;
  }
}


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

@media (max-width: 700px) {
  .why-choose-section {
    padding: 70px 0;
  }

  .why-choose-heading {
    margin-bottom: 40px;
    padding: 0 18px;
  }

  .why-choose-heading h2 {
    font-size: 45px;
  }

  .why-choose-heading p {
    font-size: 14px;
  }

  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-choose-visual {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
    margin-bottom: 12px;
  }

  .why-choose-orbit {
    width: 320px;
    height: 320px;
  }

  .why-choose-image {
    width: 250px;
    height: 250px;
  }

  .why-sparkle {
    width: 41px;
    height: 41px;
  }

  .why-sparkle-one {
    top: 35px;
    left: 17px;
  }

  .why-sparkle-two {
    top: 55px;
    right: 13px;
  }

  .why-sparkle-three {
    right: 21px;
    bottom: 50px;
  }

  .why-choose-caption {
    right: 20px;
    bottom: 8px;
    left: 20px;
  }

  .why-feature-card {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: auto;
    padding: 21px 19px;
  }

  .why-feature-card h3 {
    font-size: 20px;
  }

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

/* ========================================
   WHY CHOOSE CONNECTOR LINES
======================================== */

.why-choose-layout {
  position: relative;
}

.why-connectors {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.why-line {
  position: absolute;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(201, 153, 121, 0.15),
      rgba(201, 153, 121, 0.9)
    );
  transform-origin: center;
}

.why-line::after {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid #c98f69;
  border-radius: 50%;
  background: #fbf7f2;
  content: "";
  transform: translateY(-50%);
}


/* LEFT CONNECTORS */

.why-line-left-top {
  top: 20%;
  left: 24%;
  width: 22%;
  transform: rotate(17deg);
}

.why-line-left-middle {
  top: 50%;
  left: 24%;
  width: 22%;
}

.why-line-left-bottom {
  top: 80%;
  left: 24%;
  width: 22%;
  transform: rotate(-17deg);
}

.why-line-left-top::after,
.why-line-left-middle::after,
.why-line-left-bottom::after {
  left: 0;
}


/* RIGHT CONNECTORS */

.why-line-right-top {
  top: 20%;
  right: 24%;
  width: 22%;
  background:
    linear-gradient(
      90deg,
      rgba(201, 153, 121, 0.9),
      rgba(201, 153, 121, 0.15)
    );
  transform: rotate(-17deg);
}

.why-line-right-middle {
  top: 50%;
  right: 24%;
  width: 22%;
  background:
    linear-gradient(
      90deg,
      rgba(201, 153, 121, 0.9),
      rgba(201, 153, 121, 0.15)
    );
}

.why-line-right-bottom {
  top: 80%;
  right: 24%;
  width: 22%;
  background:
    linear-gradient(
      90deg,
      rgba(201, 153, 121, 0.9),
      rgba(201, 153, 121, 0.15)
    );
  transform: rotate(17deg);
}

.why-line-right-top::after,
.why-line-right-middle::after,
.why-line-right-bottom::after {
  right: 0;
}


/* Keep content above connectors */

.why-choose-column,
.why-choose-visual {
  position: relative;
  z-index: 2;
}

@media (max-width: 1050px) {
  .why-connectors {
    display: none;
  }
}

.brand-slider{

    overflow:hidden;
    position:relative;
    width:100%;
    margin-top:60px;

}

.brand-track{

    display:flex;
    align-items:center;
    gap:80px;

    width:max-content;

    animation:brandScroll 28s linear infinite;

}

.brand-logo{

    flex:0 0 auto;

}

.brand-logo img{

    height:42px;
    width:auto;

    opacity:.75;
    filter:grayscale(100%);
    transition:.3s;

}

.brand-logo:hover img{

    opacity:1;
    filter:none;
    transform:scale(1.08);

}

@keyframes brandScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

.brand-slider::before,
.brand-slider::after{

    content:"";

    position:absolute;

    top:0;

    width:120px;

    height:100%;

    z-index:5;

    pointer-events:none;

}

.brand-slider::before{

    left:0;

    background:linear-gradient(
        to right,
        #fbf7f2,
        transparent
    );

}

.brand-slider::after{

    right:0;

    background:linear-gradient(
        to left,
        #fbf7f2,
        transparent
    );

}

.brand-slider:hover .brand-track{

    animation-play-state:paused;

}

@media (max-width: 700px) {
  .home-story-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-story-image,
  .home-story-image img {
    min-height: 520px;
  }

  .home-story-content {
    max-width: none;
    padding: 0;
  }
}

/* Contact Hero */

.contact-banner{
    background:
        linear-gradient(rgba(24,20,18,.52), rgba(24,20,18,.52)),
        image-set(url("../assets/images/hero/contact-hero-2560.webp") type("image/webp"), url("../assets/images/hero/contact-hero.jpeg") type("image/jpeg"))
        center 20% / cover no-repeat;
}

/* ========================================
   SIMPLE GLOBAL FOOTER
======================================== */

.simple-footer {
  border-top: 6px solid #6f503f;
  background: #eee9e3;
  color: #30231d;
}

.simple-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
  min-height: 165px;
  padding-top: 34px;
  padding-bottom: 34px;
}

/* LEFT */

.simple-footer-brand {
  justify-self: start;
}

.simple-footer-brand a {
  display: inline-flex;
  flex-direction: column;
  color: #30231d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
}

.simple-footer-brand small {
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* CENTER */

.simple-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
}

.simple-footer-nav a {
  position: relative;
  color: #43342d;
  font-size: 13px;
  text-decoration: none;
}

.simple-footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: #b77b57;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.simple-footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* RIGHT */

.simple-footer-contact {
  justify-self: end;
  min-width: 205px;
}

.simple-footer-contact h3 {
  margin: 0 0 14px;
  color: #30231d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.simple-footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.simple-footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #43342d;
  font-size: 12px;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.simple-footer-socials a:hover {
  color: #b77b57;
  transform: translateY(-2px);
}

.simple-footer-socials svg {
  flex-shrink: 0;
}

/* BOTTOM */

.simple-footer-bottom {
  padding-top: 16px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(111, 80, 63, 0.16);
  text-align: center;
}

.simple-footer-bottom p {
  margin: 0;
  color: #79685f;
  font-size: 11px;
}

/* TABLET */

@media (max-width: 950px) {
  .simple-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 45px;
    padding-bottom: 38px;
    text-align: center;
  }

  .simple-footer-brand,
  .simple-footer-contact {
    justify-self: center;
  }

  .simple-footer-nav {
    flex-wrap: wrap;
  }

  .simple-footer-socials {
    justify-content: center;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .simple-footer {
    border-top-width: 4px;
  }

  .simple-footer-grid {
    gap: 26px;
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .simple-footer-brand a {
    font-size: 26px;
  }

  .simple-footer-nav {
    max-width: 300px;
    gap: 15px 20px;
  }

  .simple-footer-nav a {
    font-size: 12px;
  }

  .simple-footer-contact {
    min-width: 0;
  }

  .simple-footer-socials {
    flex-direction: column;
    gap: 12px;
  }
}

.simple-footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .simple-footer-socials {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .hero-content {
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 auto;
    padding: 0 0 58px;
    transform: none !important;
  }
}

@media (max-width: 700px) {
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content h2,
  .hero-content p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-content h1 {
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1;
  }

  .hero-content h2 {
    font-size: clamp(24px, 7vw, 31px);
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-content .actions,
  .hero-content .btn {
    width: 100%;
  }
}

/* ========================================
   MOBILE NAVIGATION — FINAL OVERRIDE
======================================== */

@media (max-width: 768px) {
  .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 5000;
    pointer-events: auto;
  }

  .navbar {
    position: relative;
    z-index: 5001;
  }

  .menu-toggle {
    position: relative;
    z-index: 5003;
    display: flex !important;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto !important;
    touch-action: manipulation;
  }

  .desktop-nav {
    position: fixed;
    inset: 0;
    z-index: 5002;
    display: flex !important;
    min-height: 100dvh;
    padding: 115px 25px 40px;
    align-items: flex-start;
    justify-content: center;
    background: rgba(37, 27, 22, 0.98);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-15px);

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .desktop-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: flex !important;
    width: min(100%, 350px);
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 0;
    list-style: none;
  }

  .nav-list > li {
    width: 100%;
  }

  .nav-link,
  .dropdown-toggle {
    display: flex;
    width: 100%;
    min-height: 53px;
    padding: 13px 4px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 8px 0 12px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown.mobile-open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    display: block;
    padding: 11px 4px;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-list .btn {
    display: flex;
    width: 100%;
    margin-top: 22px;
    justify-content: center;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* ========================================
   CONSISTENT MOBILE HAMBURGER POSITION
======================================== */

@media (max-width: 768px) {
  .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5000;
    width: 100%;
  }

  .site-header .navbar {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px;
  }

  .menu-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    left: auto;

    z-index: 6000;
    display: flex !important;
    width: 44px;
    height: 44px;
    padding: 0;

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

    border: 0;
    background: transparent;
    color: #ffffff;

    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .desktop-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    min-height: 100dvh;
  }
}

@media (max-width: 768px) {
  body.menu-open .menu-toggle {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
  }
}

@media (max-width: 768px) {
  .site-header .navbar {
    width: 100%;
    max-width: none;
    padding-inline: 18px;
  }

  .menu-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    left: auto;
    z-index: 6000;

    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;

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

    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }
}

/* FINAL MOBILE HEADER POSITION */

@media (max-width: 768px) {
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    width: 100%;
  }

  .site-header .navbar {
    position: relative;
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 auto;
    padding: 0;
  }

  .menu-toggle {
    position: absolute !important;
    top: 14px !important;
    right: 0 !important;
    left: auto !important;
    z-index: 6000;

    display: flex !important;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;

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

    border: 0;
    background: transparent;
    color: #ffffff;

    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
  }
}

/* Keep the dark hero overlay visual-only */
.hero-overlay {
  pointer-events: none;
}

/* Keep hero text and buttons above the video/overlay */
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content .actions,
.hero-content .btn {
  position: relative;
  z-index: 4;
  pointer-events: auto;
}

/* Book appointment button: desktop + mobile interaction */

.hero-content .btn-primary {
  background: transparent;
  border: 1px solid #c58e62;
  color: #ffffff;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

/* Desktop mouse hover */
.hero-content .btn-primary:hover {
  background: #b98560;
  border-color: #b98560;
  color: #ffffff;
}

/* Mobile tap */
.hero-content .btn-primary:active {
  background: #b98560;
  border-color: #b98560;
  color: #ffffff;
  transform: scale(0.97);
}

/* Keyboard accessibility */
.hero-content .btn-primary:focus-visible {
  background: #b98560;
  border-color: #b98560;
  color: #ffffff;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.hero-content .btn-primary.is-tapped {
  background: #b98560;
  border-color: #b98560;
  color: #ffffff;
  transform: scale(0.97);
}

.contact-cta{
    background:#f7f3ee;
    padding:80px 20px;
    text-align:center;
}

.contact-cta h2{
    font-size:42px;
    margin-bottom:15px;
    color:#2f2926;
}

.contact-cta p{
    max-width:600px;
    margin:0 auto 35px;
    color:#666;
    line-height:1.7;
}

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:15px 32px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1ea952;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(37,211,102,.25);
}

.whatsapp-btn i{
    font-size:22px;
}

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

.bridal-cta {
  padding: 85px 0;
  background: #b98460;
  color: #ffffff;
}

.bridal-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.bridal-cta-inner > div:first-child {
  max-width: 690px;
}

.bridal-light-eyebrow {
  color: #f6dfd0;
}

.bridal-cta h2 {
  margin: 12px 0 18px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.bridal-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.bridal-cta-actions {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.bridal-light-button {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #35241e;
}

.bridal-light-button:hover {
  background: transparent;
  color: #ffffff;
}

.bridal-outline-light-button {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: #ffffff;
}

.bridal-outline-light-button:hover {
  background: #ffffff;
  color: #35241e;
}

picture {
  display: contents;
}

/* Mobile CTA layout */
@media (max-width: 1000px) {
  .bridal-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 35px;
  }

  .bridal-cta-inner > div:first-child {
    width: 100%;
    max-width: 100%;
  }

  .bridal-cta-actions {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .bridal-cta {
    overflow: hidden;
  }

  .bridal-cta-inner {
    width: 100%;
    gap: 30px;
  }

  .bridal-cta-inner h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .bridal-cta-inner p {
    width: 100%;
    max-width: 100%;
  }

  .bridal-cta-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .bridal-cta-actions a,
  .bridal-cta-actions .btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

@media (max-width: 700px) {
  .bridal-cta {
    padding: 70px 20px;
  }

  .bridal-cta .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .bridal-cta-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .bridal-cta-inner > div:first-child {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .bridal-cta h2 {
    width: 100%;
    max-width: 100%;
    margin: 12px 0 18px;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: normal;
  }

  .bridal-cta p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
  }

  .bridal-cta-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .bridal-cta-actions a {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }
}

/* Mobile navigation Book Now button */
@media (max-width: 768px) {
    .nav-list .btn,
    .nav-list .btn-primary {
        color: #ffffff !important;
        background: transparent;
        border: 1px solid rgba(255,255,255,.35);
    }

    .nav-list .btn:hover,
    .nav-list .btn-primary:hover {
        color: #ffffff !important;
    }
}

@media (max-width: 768px) {
  /* Transparent header over dark hero */
  .site-header .menu-toggle {
    color: #ffffff !important;
  }

  /* Light navbar after scrolling */
  .site-header.scrolled .menu-toggle {
    color: #2b1d16 !important;
  }

  /* When the mobile menu is open */
  body.menu-open .site-header .menu-toggle {
    color: #ffffff !important;
  }
}