*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  background: #FFF8F0;
  color: #2C2015;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: #2C2015;
}



/* navbar start */

nav {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #EDD9C4;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(196, 98, 45, 0.08);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #8B3D18;
  text-decoration: none;
  line-height: 1.2;
}

.logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #D4855A;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  color: #7A5C44;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: #C4622D;
  transition: width 0.25s;
}

.nav-links a:hover { 
    color: #C4622D; 
}

.nav-links a:hover::after { 
    width: 100%; 
}

.nav-links a.active { 
    color: #C4622D; 
}

.nav-links a.active::after { 
    width: 100%; 
}

.nav-cta {
  background: #C4622D;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: #8B3D18;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #2C2015;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { 
    transform: rotate(45deg) translate(5px, 5px); 
}

.hamburger.open span:nth-child(2) { 
    opacity: 0; 
}

.hamburger.open span:nth-child(3) { 
    transform: rotate(-45deg) translate(5px, -5px); 
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #FFFDF9;
  border-bottom: 1px solid #EDD9C4;
  padding: 1.5rem 5%;
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu.open { 
    display: flex; 
}

.mobile-menu a {
  text-decoration: none;
  font-size: 1rem;
  color: #7A5C44;
  font-weight: 400;
}

.mobile-menu a:hover { 
    color: #C4622D; 
}

@media (max-width: 900px) {

  .nav-links,nav .nav-cta { 
    display: none; 
  }

  .hamburger { 
    display: flex; 
  }

}

/* navbar end */

/* Home Banner start */

.hero {
  min-height: 100vh;
  padding: 8rem 5% 5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #FFF8F0;
  max-width: 100%;
}

.hero-bg-dots {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-image: radial-gradient(circle, #DEC9B0 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-bg-circle {
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, #F5E6D3 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: slideUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFE8D6;
  color: #8B3D18;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px; height: 7px;
  background: #C4622D;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.18;
  color: #2C2015;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  color: #C4622D;
  font-style: italic;
}

.hero-desc {
  font-size: 1rem;
  color: #7A5C44;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: #C4622D;
  color: #fff;
  padding: 13px 30px;
  border-radius: 32px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #8B3D18;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #C4622D;
  padding: 13px 30px;
  border-radius: 32px;
  border: 1.5px solid #C4622D;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  background: #C4622D;
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #EDD9C4;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: #C4622D;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: #B89A80;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: slideUp 0.8s 0.2s ease both;
}

.hero-card-main {
  background: #FFFDF9;
  border: 1px solid #EDD9C4;
  border-radius: 24px;
  padding: 2.5rem;
  width: 320px;
  box-shadow: 0 24px 64px rgba(196, 98, 45, 0.1);
}

.hero-card-icon {
  width: 64px; height: 64px;
  background: #FFE8D6;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.hero-card-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #2C2015;
  margin-bottom: 0.5rem;
}

.hero-card-main p {
  font-size: 0.85rem;
  color: #7A5C44;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #D4EDDA;
  color: #155724;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 12px;
}

.floating-pill {
  position: absolute;
  background: #FFFDF9;
  border: 1px solid #EDD9C4;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #2C2015;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.pill-1 { 
    top: -20px;  
    right: -20px; 
    animation-delay: 0s;   
}

.pill-2 { 
    bottom: 20px; 
    left: -30px; 
    animation-delay: 1.5s; 
}

.pill-icon { 
    font-size: 1rem; 
}


@keyframes slideUp {

  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }

  to   { 
    opacity: 1; 
    transform: translateY(0);    
  }

}

@keyframes pulse {
  0%, 100% { 
    opacity: 1;   
  }

  50% { 
    opacity: 0.3; 
  }

}

@keyframes float {

  0%, 100% { 
    transform: translateY(0px);  
  }

  50% { 
    transform: translateY(-8px); 
  }

}

@media (max-width: 900px) {
  .hero-inner { 
    grid-template-columns: 1fr; 
  }

  .hero-visual { 
    display: none; 
  }
}

@media (max-width: 560px) {
  .hero { 
    padding: 7rem 5% 4rem; 
  }

  .hero-stats { 
    gap: 1.5rem; 
    flex-wrap: wrap; 
  }
}

/* Home Banner end */

/* long strip start */

.features-strip {
  background: #C4622D;
  padding: 2rem 5%;
}

.features-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.strip-item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.strip-item strong {
  font-size: 0.88rem;
  font-weight: 500;
  display: block;
}

.strip-item span {
  font-size: 0.75rem;
  opacity: 0.75;
  font-weight: 300;
}

@media (max-width: 900px) {
  .features-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .strip-item-icon {
    font-size: 1.2rem;
  }

  .strip-item strong {
    font-size: 0.82rem;
  }
}

/* long strip end */

/* what we offer start */

.services {
  padding: 6rem 5%;
  background: #FFF8F0;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C4622D;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #2C2015;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 0.95rem;
  color: #7A5C44;
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #FFFDF9;
  border: 1px solid #EDD9C4;
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #C4622D;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(196, 98, 45, 0.12);
  border-color: #DEC9B0;
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px; height: 52px;
  background: #FFE8D6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #2C2015;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.87rem;
  color: #7A5C44;
  line-height: 1.75;
  font-weight: 300;
}

.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  color: #C4622D;
  background: #FFE8D6;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services {
    padding: 4rem 5%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* what we offer end */

/* who we are start */

.about-strip {
  background: #F5E6D3;
  padding: 6rem 5%;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-img-block {
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  border: 1px solid #EDD9C4;
}

.about-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-img-block:hover img {
  transform: scale(1.04);
}

.about-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mini-card {
  background: #FFFDF9;
  border: 1px solid #EDD9C4;
  border-radius: 14px;
  padding: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.08);
}

.mini-card-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.mini-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #2C2015;
  margin-bottom: 0.25rem;
}

.mini-card p {
  font-size: 0.8rem;
  color: #7A5C44;
  font-weight: 300;
  line-height: 1.6;
}

.about-text .section-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C4622D;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.about-text .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #2C2015;
  margin-bottom: 0.75rem;
}

.about-text .section-sub {
  font-size: 0.95rem;
  color: #7A5C44;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D4EDDA;
  color: #155724;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  margin-top: 1.5rem;
}

.btn-primary {
  background: #C4622D;
  color: #fff;
  padding: 13px 30px;
  border-radius: 32px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: #8B3D18;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.3);
}

@keyframes pulse {
  0%, 100% { opacity: 1;   }
  50%       { opacity: 0.3; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-block {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .about-strip {
    padding: 4rem 5%;
  }

  .about-mini-cards {
    grid-template-columns: 1fr 1fr;
  }

  .about-img-block {
    height: 180px;
  }
}

/* who we are end */

/* testimonial start */

.testimonials {
  padding: 6rem 5%;
  background: #FFF8F0;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C4622D;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #2C2015;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #FFFDF9;
  border: 1px solid #EDD9C4;
  border-radius: 20px;
  padding: 2rem;
  transition: transform .25s, box-shadow .25s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(196, 98, 45, .1);
}

.stars {
  color: #C4622D;
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #7A5C44;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #EDD9C4;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.nav-btn {
  font: 500 0.88rem 'Lexend', sans-serif;
  color: #C4622D;
  background: #FFFDF9;
  border: 1.5px solid #EDD9C4;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .2s;
}

.nav-btn:hover:not(:disabled) {
  background: #C4622D;
  color: #FFF;
  border-color: #C4622D;
  transform: translateY(-2px);
}

.nav-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFE8D6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: #2C2015;
  margin-bottom: 2px;
}

.author-loc {
  font-size: 0.75rem;
  color: #B89A80;
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EDD9C4;
  cursor: pointer;
  transition: all .2s;
}

.dot.active {
  background: #C4622D;
  width: 24px;
  border-radius: 4px;
}

.dot:hover {
  background: #D4855A;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .testimonials {
    padding: 4rem 5%;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* testimonial end */

/* contact banner start */

.cta-banner {
  background: #C4622D;
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.cta-bg-ring {
  position: absolute;
  width: 400px; height: 400px;
  border: 60px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  right: -80px; top: -80px;
  pointer-events: none;
}

.cta-bg-ring2 {
  position: absolute;
  width: 250px; height: 250px;
  border: 40px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  left: 10%; bottom: -60px;
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: #C4622D;
  padding: 13px 30px;
  border-radius: 32px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-white:hover {
  background: #FFE8D6;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .cta-banner {
    padding: 4rem 5%;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-white,
  .btn-outline-white {
    width: 100%;
    text-align: center;
  }
}

/* contact banner end */

/* footer start */

footer {
  background: #2C2015;
  color: #C8B5A0;
  padding: 4rem 5% 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #3D2E20;
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #FFE8D6;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.footer-brand .logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B89A80;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  font-weight: 300;
  color: #A0876F;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFE8D6;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: #A0876F;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #FFE8D6;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 0.75rem;
  font-size: 0.83rem;
  color: #A0876F;
  font-weight: 300;
  line-height: 1.6;
  align-items: flex-start;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6B5240;
  flex-wrap: wrap;
  gap: 0.5rem;
}

span a {
  font-family: 'Lexend', sans-serif;
  font-size: inherit;
  font-weight: 500;
  color: #E8845A;
  text-decoration: none;
  border-bottom: 1px solid #E8845A;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

span a:hover {
  color: #C4622D;
  border-bottom-color: #C4622D;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  footer {
    padding: 3rem 5% 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-top .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }
}
/* footer end */