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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#f8f4ef;
}

section{
    padding:100px 0;
}

h1,h2,h3,h4{
    font-family:'Playfair Display',serif;
}

/* HERO SECTION */

.about-hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(37,22,14,0.40),rgba(37,22,14,0.55)),
    url('./img/about\ us.png');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    position:relative;
}

.hero-content span{
    color:#d9b38c;
    letter-spacing:3px;
    font-size:15px;
    font-weight:500;
}

.hero-content h1{
    color:#fff;
    font-size:78px;
    line-height:1.2;
    margin:20px 0;
}

.hero-content p{
    color:#f2e5d8;
    line-height:2;
    max-width:650px;
    font-size:17px;
}

.hero-btn{
    display:inline-block;
    border:none;
    background:#c89b6d;
    color:#fff;
    padding:15px 40px;
    border-radius:50px;
    margin-top:20px;
    transition:0.4s;
    font-weight:600;
    text-decoration:none;
}

.hero-btn:hover{
    background:#fff;
    color:#4b2d1f;
    transform:translateY(-5px);
}

/* SECTION 2 */

.brand-section{
    background:#fff;
    scroll-margin-top:70px;
}

.brand-image{
    width:100%;
    border-radius:30px;
    height:650px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.small-title{
    color:#b8895d;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.main-title{
    font-size:52px;
    color:#3c2418;
    margin-bottom:25px;
}

.description{
    color:#7b685d;
    line-height:2;
    font-size:16px;
}

.stats-row{
    margin-top:40px;
}

.stat-box{
    background:#f7f2eb;
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.stat-box h2{
    color:#4b2d1f;
    font-size:42px;
}

.stat-box p{
    color:#8b7769;
    margin-top:10px;
}

/* SECTION 3 */

.collection-section{
    background:#f2ebe3;
}

.collection-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    height:500px;
}

.collection-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.collection-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.75),transparent);
    display:flex;
    align-items:flex-end;
    padding:35px;
}

.collection-overlay h3{
    color:#fff;
    font-size:34px;
}

.collection-overlay p{
    color:#f3e7da;
    margin-top:10px;
    line-height:1.8;
}

.collection-card:hover img{
    transform:scale(1.08);
}

/* SECTION 4 */

.process-section{
    background:#fff;
}

.process-card{
    background:#f9f5ef;
    padding:45px 30px;
    border-radius:30px;
    text-align:center;
    height:100%;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

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

.process-number{
    width:80px;
    height:80px;
    background:#4b2d1f;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:28px;
    font-weight:600;
    margin-bottom:25px;
}

.process-card h4{
    color:#4b2d1f;
    margin-bottom:15px;
}

.process-card p{
    color:#7f6d61;
    line-height:1.9;
}

/* SECTION 5 */

.cta-section{
    background:
    linear-gradient(rgba(46,27,18,0.82),rgba(46,27,18,0.82)),
    url('../img/cta.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
}

.cta-section h2{
    color:#fff;
    font-size:60px;
    margin-bottom:25px;
}

.cta-section p{
    color:#f1dfd1;
    max-width:750px;
    margin:auto;
    line-height:2;
    font-size:17px;
}

.cta-btn{
    margin-top:30px;
    border:none;
    background:#c89b6d;
    color:#fff;
    padding:16px 42px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.cta-btn:hover{
    background:#fff;
    color:#4b2d1f;
}

/* RESPONSIVE */

@media(max-width:991px){

.hero-content h1{
    font-size:55px;
}

.main-title{
    font-size:40px;
}

.brand-image{
    height:500px;
    margin-top:40px;
}

.cta-section h2{
    font-size:42px;
}

}

@media(max-width:768px){

section{
    padding:70px 0;
}

.hero-content h1{
    font-size:42px;
}

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

.main-title{
    font-size:32px;
}

.collection-card{
    height:400px;
}

.cta-section h2{
    font-size:34px;
}

}


.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1030;
  width: 100%;
  min-height: 52px;
  padding: 2px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(116, 78, 44, 0.22), transparent 28%),
    linear-gradient(90deg, #1c1108 0%, #110b06 55%, #070403 100%);
  border-bottom: 1px solid rgba(244, 226, 198, 0.08);
  box-shadow: 0 12px 28px rgba(17, 9, 4, 0.24);

}

.nav-shell {
  width: min(100%, 1600px);
  max-width: 1600px;
  min-height: 46px;
  padding: 0 clamp(18px, 2.4vw, 34px);
  align-items: center;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.04rem, 0.12vw, 0.1rem);
  min-width: 0;
  color: #fff8ed;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: #ffffff;
  opacity: 0.94;
  transform: translateY(-1px);
}

.navbar-logo {
  display: block;
  width: auto;
  height: clamp(28px, 2.8vw, 36px);
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.28));
}

.brand-wordmark {
  display: inline-block;
  padding-left: 0.3em;
  color: #e7c16e;
  background: linear-gradient(90deg, #f5dfaa 0%, #d8a943 48%, #fff0c0 58%, #a86f17 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.76rem, 0.86vw, 0.94rem);
  font-weight: 700;
  letter-spacing: clamp(0.2em, 0.45vw, 0.3em);
  line-height: 1;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.32);
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
}

.navbar-nav {
  column-gap: clamp(0.85rem, 1.45vw, 1.7rem);
  align-items: center;
}

@media (min-width: 992px) {
  .navbar-nav {
    padding-inline-end: clamp(1.3rem, 3.5vw, 3.8rem);
  }
}

.navbar-nav .nav-link {
  position: relative;
  color: rgba(255, 248, 237, 0.92);
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 2px 0;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(0.78rem, 0.88vw, 0.94rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.18s ease, transform 0.18s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #d8ad68;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #e8bd75;
}

.main-navbar .navbar-nav .nav-link.active {
  color: #d8ad68;
}

.navbar-nav .nav-link:hover {
  transform: translateY(-0.5px);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.main-navbar .dropdown {
  position: relative;
}

.main-navbar .dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  margin: 0;
  border: 0;
  background: #d8ad68;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-navbar .dropdown-toggle.show::after,
.main-navbar .dropdown:hover .dropdown-toggle::after {
  transform: scaleX(1);
}

.luxury-dropdown {
  min-width: 255px;
  padding: 0.7rem;
  margin-top: 0.9rem;
  border: 1px solid rgba(213, 170, 113, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(31, 20, 11, 0.97), rgba(71, 43, 23, 0.95)),
    radial-gradient(circle at top left, rgba(213, 170, 113, 0.18), transparent 42%);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 238, 198, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.luxury-dropdown.show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .main-navbar .dropdown:hover>.luxury-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}

.luxury-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  color: rgba(255, 248, 230, 0.92);
  font-family: "Cormorant Garamond", serif;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.luxury-dropdown .dropdown-item:hover,
.luxury-dropdown .dropdown-item:focus {
  color: #ffd889;
  background: rgba(213, 170, 113, 0.13);
  transform: translateX(4px);
}

.main-navbar .luxury-dropdown .dropdown-item.active {
  color: #ffd889;
  background: rgba(213, 170, 113, 0.16);
}

.dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: #d5aa71;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(213, 170, 113, 0.36);
  border-radius: 50%;
  font-size: 0.9rem;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.luxury-dropdown .dropdown-item:hover .dropdown-icon,
.luxury-dropdown .dropdown-item:focus .dropdown-icon {
  color: #ffd889;
  background: rgba(213, 170, 113, 0.18);
  border-color: rgba(255, 216, 137, 0.72);
}

.dropdown-title,
.dropdown-copy {
  display: block;
}

.dropdown-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.dropdown-copy {
  margin-top: 0.18rem;
  color: rgba(255, 248, 230, 0.62);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-inline-start: clamp(1.35rem, 2.4vw, 2.75rem);
  padding: 10px 22px;
  color: #1d1108;
  background:
    linear-gradient(135deg, #fff2cc 0%, #d8ad68 48%, #a2673d 100%);
  border: 1px solid rgba(255, 238, 201, 0.62);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 22px rgba(0, 0, 0, 0.24);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.navbar-cta:hover,
.navbar-cta:focus {
  color: #120905;
  border-color: rgba(255, 246, 225, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 26px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.18);
  padding: 7px 9px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(216, 173, 104, 0.2);
}

@media (max-width: 991.98px) {


  .nav-shell {
    padding: 0 16px;
  }

  .navbar-brand {
    gap: 0.16rem;
  }

  .navbar-logo {
    height: 32px;
  }

  .brand-wordmark {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .navbar-toggler {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    background: rgba(143, 91, 52, 0.22);
    border: 1px solid rgba(244, 226, 198, 0.22);
  }

  .navbar-toggler:hover {
    background: rgba(166, 104, 60, 0.34);
    border-color: rgba(244, 226, 198, 0.34);
  }

  .navbar-toggler[aria-expanded="true"] {
    background: #a2673d;
    border-color: rgba(255, 242, 222, 0.54);
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.12),
      0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .navbar-toggler-icon {
    position: relative;
    width: 18px;
    height: 14px;
    background-image: none;
    border-top: 2px solid #fff8ed;
    border-bottom: 2px solid #fff8ed;
    transition: border-color 0.18s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff8ed;
    transform: translateY(-50%);
    transition: transform 0.22s ease, opacity 0.18s ease;
  }

  .navbar-toggler-icon::after {
    opacity: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(-50%) rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    opacity: 1;
    transform: translateY(-50%) rotate(-45deg);
  }



  /* .navbar-collapse.show {
    opacity: 1;
    transform: translateY(0);
  } */

  .navbar-collapse.collapsing {
    opacity: 0.45;
    transform: translateY(-8px);
  }

  .navbar-nav {
    gap: 8px;
  }

  .navbar-nav .nav-link {
    width: 100%;
    min-height: 42px;
    padding: 9px 14px;
    color: #fffaf2;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 600;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: #fff5dc;
    background: rgba(255, 232, 185, 0.12);
    border-color: rgba(255, 231, 188, 0.2);
    transform: translateX(3px);
  }

  .navbar-nav .nav-link.active {
    color: #ffe08f;
    background: linear-gradient(90deg, rgba(255, 207, 106, 0.18), rgba(255, 221, 155, 0.08));
    border-color: rgba(255, 215, 128, 0.72);
    box-shadow:
      inset 0 0 0 1px rgba(255, 246, 225, 0.12),
      0 8px 18px rgba(68, 35, 13, 0.12);
  }

  .navbar-nav .nav-link::after {
    left: 14px;
    right: 14px;
    bottom: 7px;
    width: auto;
    height: 2px;
    background: rgba(255, 231, 160, 0.72);
  }

  .navbar-cta {
    width: 100%;
    min-height: 44px;
    margin: 12px 0 0;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      0 10px 20px rgba(68, 35, 13, 0.18);
  }

  .luxury-dropdown {
    position: static !important;
    width: 100%;
    min-width: 0;
    margin: 0.35rem 0 0.5rem;
    padding: 0.55rem;
    background: rgba(35, 21, 12, 0.54);
    border-color: rgba(255, 216, 137, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 238, 198, 0.08);
    transform: none;
  }

  .luxury-dropdown.show {
    transform: none;
  }

  .luxury-dropdown .dropdown-item {
    padding: 0.72rem 0.75rem;
  }

  .luxury-dropdown .dropdown-item:hover,
  .luxury-dropdown .dropdown-item:focus {
    transform: translateX(3px);
  }




  .main-navbar {
    position: fixed;
    overflow: visible;
    min-height: 54px;
    padding: 3px 0;
  }

  .navbar-collapse {
    position: absolute;
    top: 58px;
    left: 16px;
    right: 16px;
    z-index: 999;

    margin-top: 0;
    padding: 16px 18px;

    background:
      linear-gradient(145deg,
        rgba(184, 116, 66, 0.96),
        rgba(142, 83, 45, 0.98));

    border-radius: 15px;
    border: 1px solid rgba(255, 231, 188, 0.18);

    box-shadow:
      0 20px 44px rgba(16, 8, 3, 0.38);

    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }

  .navbar-collapse.show {
    opacity: 1;
    transform: translateY(0);
  }

}



footer .container {
  max-width: 100%;
  padding: 0 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr) 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.footer-brand h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
  color: #ffbf3f;
}

.footer-column h5 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: #ffc857;
  font-family: 'Poppins', sans-serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.footer-column ul li a:hover {
  color: #ffc857;
}

.footer-newsletter h5 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: #ffc857;
  font-family: 'Poppins', sans-serif;
}

.newsletter-input {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-input input {
  flex: 1;
  padding: 0.8rem 1rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input input:focus {
  outline: none;
  border-color: #ffc857;
  background-color: rgba(255, 200, 87, 0.05);
}

.newsletter-input button {
  padding: 0.8rem 1rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffc857;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-input button:hover {
  border-color: #ffc857;
  background-color: rgba(255, 200, 87, 0.1);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-icon:hover {
  border-color: #ffc857;
  color: #ffc857;
  background-color: rgba(255, 200, 87, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  footer .container {
    padding: 0 1.5rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .newsletter-input {
    flex-direction: column;
  }

  .newsletter-input button {
    width: 100%;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }

  .hero-content {
    max-width: 100%;
    padding: 1.25rem 1.5rem 2rem 1.5rem;
    margin-top: 0;
    left: 0;
    top: 0;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
    margin-bottom: 1.2rem;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-actions {
    gap: 0.8rem;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: auto;
    padding-top: 4.75rem;
    padding-bottom: 2.5rem;
  }

  .hero-content {
    padding: 1rem 1rem 1.75rem 1rem;
    margin-top: 0;
    /* left: 10%; */
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(1.95rem, 9.6vw, 3rem);
    line-height: 1.05;
    margin-bottom: 0.8rem;
    max-width: 100%;
    white-space: nowrap;
  }

  .hero-title span,
  .hero-title .span-text {
    display: inline;
    white-space: nowrap;
  }

  .hero-copy {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
}

.shop-luxury-section {
  /* background: #1c3934; */
  background: #9C6239;





  border-radius: 48px;
  padding: 40px 32px;
  margin: 56px 0 32px;
  text-align: center;

  color: whitesmoke;
}

footer {
  background: #3B2417;
  padding: 48px 0 24px;
  /* margin-top: 70px; */
  border-top: 1px solid var(--champagne);
  text-align: center;
  color: #261311;
  padding: 3.5rem 0 2rem;
  color: white;
}



.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;

    /* background: #1c3934; */
    background:#2b2312;
    /* dark luxury green-black tone */
    color: #f5d9a2;
    /* warm brown-gold */

    border: 1px solid #c39e79;
    border-radius: 50%;

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

    font-size: 18px;
    cursor: pointer;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top:hover {
    background: #c39e79;
    /* warm brown */
    /* color: #1c3934; */
    color: #2f1f14;
    transform: translateY(-3px);
}

/* show state */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
