/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pine:        #2d4a3e;
  --pine-dark:   #1e3329;
  --bark:        #6b5848;
  --bark-light:  #8a7460;
  --cream:       #f7f3ec;
  --cream-dark:  #efe7d8;
  --stone:       #e2dccc;
  --gold:        #c9a14a;
  --gold-light:  #e0c476;
  --text:        #2b2622;
  --text-light:  #6b635a;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(43, 38, 34, 0.12);
  --shadow-lg:   0 12px 40px rgba(43, 38, 34, 0.18);
  --radius:      14px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.25;
}

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine);
}
.btn-primary:hover { background: var(--pine-dark); border-color: var(--pine-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-full { width: 100%; }

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(45, 74, 62, 0.0);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(247, 243, 236, 0.97);
  box-shadow: 0 2px 16px rgba(43,38,34,0.1);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
#navbar:not(.scrolled) .logo { color: var(--white); }
#navbar.scrolled .logo { color: var(--pine); }
.logo-mark { font-size: 26px; }
.nav-links { list-style: none; display: flex; gap: 36px; }
.nav-links a {
  font-weight: 600; font-size: 16px;
  color: rgba(255,255,255,0.9); transition: color var(--transition);
  position: relative; padding-bottom: 4px;
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--cream); border-radius: 2px; transition: var(--transition); }
#navbar.scrolled .nav-toggle span { background: var(--pine); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(30,51,41,0.55) 0%, rgba(30,51,41,0.35) 50%, rgba(30,51,41,0.7) 100%),
    url('https://images.unsplash.com/photo-1518173946687-a4c8892a8b4c?auto=compress&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 14px; font-weight: 700;
  color: var(--gold-light); margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--white);
  margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,0.92);
  margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 28px; animation: bounce 2s infinite; z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-dark); }
.section-eyebrow {
  text-transform: uppercase; letter-spacing: 2.5px; font-size: 13px; font-weight: 700;
  color: var(--gold); margin-bottom: 10px;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--pine-dark); margin-bottom: 12px; }
.section-sub { color: var(--text-light); font-size: 1.05rem; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--pine-dark); margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; color: var(--text-light); }
.about-values { list-style: none; margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-values li { font-weight: 600; color: var(--pine); font-size: 16px; }
.about-card {
  background: var(--white); border-radius: var(--radius); padding: 48px 36px;
  text-align: center; box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--gold);
}
.about-stat { display: flex; flex-direction: column; gap: 6px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--pine); }
.stat-label { font-size: 15px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.about-divider { height: 1px; background: var(--stone); margin: 28px 20px; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.service-icon { font-size: 38px; margin-bottom: 16px; }
.service-card h3 { font-size: 1.3rem; color: var(--pine-dark); margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 16px; }

/* ===== SALES / CAROUSEL ===== */
.sales-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sale-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.sale-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sale-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: var(--gold); color: var(--white); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
}
.sale-image {
  height: 200px; display: flex; align-items: flex-end; padding: 16px;
  background-size: cover; background-position: center; position: relative;
  background-color: var(--pine);
}
.sale-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5)); }
.sale-img-1 { background-image: url('https://images.unsplash.com/photo-1554995207-c18c203602cb?auto=compress&fit=crop&w=600&q=80'); }
.sale-img-2 { background-image: url('https://images.unsplash.com/photo-1567538096630-e0c55bd6374c?auto=compress&fit=crop&w=600&q=80'); }
.sale-img-3 { background-image: url('https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?auto=compress&fit=crop&w=600&q=80'); }
.sale-date {
  position: relative; z-index: 2; background: rgba(247,243,236,0.95); color: var(--pine-dark);
  padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 15px;
}
.sale-body { padding: 24px; }
.sale-body h3 { font-size: 1.3rem; color: var(--pine-dark); margin-bottom: 6px; }
.sale-loc { font-size: 15px; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.sale-body p { color: var(--text-light); font-size: 16px; margin-bottom: 16px; }
.sale-link { color: var(--pine); font-weight: 700; transition: color var(--transition); }
.sale-link:hover { color: var(--gold); }

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  flex: 1;
  padding: 8px 4px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .sale-card {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
}
.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--stone);
  background: var(--white);
  color: var(--pine);
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.carousel-btn:hover { background: var(--pine); color: var(--cream); border-color: var(--pine); }
.carousel-btn:disabled { opacity: 0.35; cursor: default; }
.carousel-btn:disabled:hover { background: var(--white); color: var(--pine); border-color: var(--stone); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--stone);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}
.carousel-dot.active { background: var(--gold); }

/* Coming Soon card */
.sale-card.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
  border: 2px dashed var(--stone);
  background: var(--cream);
}
.sale-card.coming-soon .coming-soon-icon { font-size: 48px; margin-bottom: 16px; }
.sale-card.coming-soon h3 { font-size: 1.4rem; color: var(--pine-dark); margin-bottom: 8px; }
.sale-card.coming-soon p { color: var(--text-light); font-size: 16px; }

/* ===== TESTIMONIAL ===== */
.testimonial-section { background: var(--pine); color: var(--cream); }
.testimonial { text-align: center; max-width: 720px; }
.quote-mark { font-size: 60px; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.testimonial blockquote {
  font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic; line-height: 1.6; margin-bottom: 24px;
}
.testimonial-author { font-size: 16px; color: var(--gold-light); font-weight: 600; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--pine-dark); margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-row { font-size: 17px; color: var(--text); }
.contact-row a { color: var(--pine); font-weight: 600; transition: color var(--transition); }
.contact-row a:hover { color: var(--gold); }
.contact-form {
  background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--pine-dark); font-size: 15px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--stone); border-radius: 8px;
  font-family: inherit; font-size: 16px; color: var(--text); background: var(--cream);
  transition: border-color var(--transition);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); }
.form-row textarea { resize: vertical; }
.form-note { margin-top: 14px; font-weight: 600; color: var(--pine); text-align: center; min-height: 22px; }

/* ===== FOOTER ===== */
.footer { background: var(--pine-dark); color: rgba(247,243,236,0.85); padding: 48px 0; text-align: center; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--cream); margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.footer-tagline { margin-bottom: 16px; font-size: 16px; }
.footer-copy { font-size: 14px; color: rgba(247,243,236,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .carousel-track .sale-card { flex: 0 0 calc((100% - 28px) / 2); }
}
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 70%; max-width: 300px;
    background: var(--pine); flex-direction: column; padding: 80px 32px; gap: 24px;
    transition: right var(--transition); z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--cream); font-size: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }
  .carousel-track .sale-card { flex: 0 0 85%; }
}