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

:root {
  --brown:       #5c3d2e;
  --brown-dark:  #2e1b0e;
  --brown-mid:   #4a3020;
  --brown-light: #8b6347;
  --cream:       #faf7f2;
  --cream-dark:  #f0e9df;
  --cream-border:#e0d5c7;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #fdf6e3;
  --green:       #2d6a4f;
  --text:        #1a1208;
  --text-muted:  #6b5c4e;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(46,27,14,0.08);
  --shadow:      0 4px 24px rgba(46,27,14,0.12);
  --shadow-lg:   0 12px 48px rgba(46,27,14,0.18);
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--brown); color: var(--white); border-color: var(--brown); }
.btn-primary:hover { background: var(--brown-dark); border-color: var(--brown-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,27,14,0.25); }
.btn-secondary { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-secondary:hover { background: var(--brown); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--brown-dark); border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-white { background: var(--white); color: var(--brown-dark); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }
.full-width { width: 100%; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  color: var(--brown);
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-header p { color: var(--text-muted); font-size: 17px; line-height: 1.65; }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-border);
  box-shadow: 0 1px 16px rgba(46,27,14,0.07);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--brown);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.logo-main { display: block; font-size: 20px; font-weight: 800; color: var(--brown-dark); line-height: 1.2; letter-spacing: -0.02em; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 14px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.2s, background 0.2s; }
.nav a:hover { color: var(--brown); background: var(--cream); }
.nav-cta { background: var(--brown) !important; color: var(--white) !important; border-radius: 50px !important; padding: 10px 22px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--brown-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--brown-dark); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  background: var(--brown-dark);
  color: var(--white);
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(139,99,71,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-container { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: end; }
.hero-content { padding-bottom: 80px; position: relative; z-index: 1; }
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
}
.hero-rating .stars { color: var(--gold-light); letter-spacing: 1px; }
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }
.trust-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero-card-stack {
  position: relative;
  padding-bottom: 40px;
  z-index: 1;
  align-self: flex-end;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.hero-card-title { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.service-list { display: flex; flex-direction: column; gap: 12px; }
.service-list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
}
.service-list-item .icon { font-size: 18px; }
.hero-wave { line-height: 0; }
.hero-wave svg { display: block; width: 100%; }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-border);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brown), var(--gold));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--cream-dark); }
.service-card:hover::before { opacity: 1; }
.featured-card {
  background: linear-gradient(135deg, var(--gold-pale), #fff9ed);
  border-color: rgba(201,168,76,0.4);
}
.featured-card::before { opacity: 1 !important; background: linear-gradient(90deg, var(--gold), #e8a020); }
.service-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--brown-dark);
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
}
.service-icon { font-size: 40px; margin-bottom: 18px; }
.service-card h3 { font-size: 19px; font-weight: 800; color: var(--brown-dark); margin-bottom: 10px; letter-spacing: -0.01em; }
.service-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.service-tag {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  color: var(--brown);
  font-size: 12px; font-weight: 600;
  padding: 4px 11px; border-radius: 50px;
}

/* ===== STORES SECTION ===== */
.stores { background: var(--white); }
.stores-intro { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.stores-intro h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: var(--brown-dark); margin-bottom: 12px; letter-spacing: -0.02em; }
.stores-intro p { color: var(--text-muted); font-size: 17px; }
.stores-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 40px; }
.store-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream);
  border: 2px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-weight: 700; font-size: 15px; color: var(--brown-dark);
  transition: all 0.2s;
}
.store-chip:hover { border-color: var(--brown); background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.store-chip .store-icon { font-size: 22px; }
.stores-note {
  max-width: 560px; margin: 0 auto;
  background: var(--gold-pale);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  font-size: 15px; color: var(--brown); font-weight: 500;
}
.stores-note strong { color: var(--brown-dark); }

/* ===== WHY US ===== */
.why-us { background: var(--brown-dark); color: var(--white); }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: rgba(255,255,255,0.65); }
.why-us .section-badge { background: rgba(201,168,76,0.2); border-color: rgba(201,168,76,0.3); color: var(--gold-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s;
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ===== AREAS ===== */
.areas { background: var(--cream); }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 24px; }
.area-chip {
  background: var(--white); border: 2px solid var(--cream-border);
  color: var(--brown); font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: 50px; transition: all 0.2s;
}
.area-chip:hover { background: var(--brown); color: var(--white); border-color: var(--brown); transform: translateY(-2px); }
.areas-note { text-align: center; color: var(--text-muted); font-size: 15px; }

/* ===== REVIEWS ===== */
.reviews { background: var(--white); }
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--cream-border);
  border-radius: 50px; padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}
.google-logo { font-size: 18px; }
.google-overall { display: flex; align-items: center; gap: 8px; }
.google-overall .stars { color: #FBBC04; font-size: 16px; letter-spacing: 1px; }
.google-overall strong { color: var(--text); font-size: 15px; }
.reviews-header-row { display: flex; flex-direction: column; align-items: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--cream-border);
  transition: all 0.22s;
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--cream-dark); }
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.reviewer-name { font-size: 15px; font-weight: 700; color: var(--brown-dark); }
.reviewer-date { font-size: 12px; color: var(--text-muted); }
.review-stars { color: #FBBC04; font-size: 14px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.72; font-style: italic; }
.review-text::before { content: '"'; font-size: 28px; color: var(--gold); line-height: 0; vertical-align: -10px; margin-right: 2px; }
.google-icon { width: 20px; height: 20px; margin-left: auto; flex-shrink: 0; margin-top: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: -0.02em; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info .section-badge { margin-bottom: 14px; }
.contact-info h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; color: var(--brown-dark); margin-bottom: 12px; letter-spacing: -0.02em; }
.contact-info > p { color: var(--text-muted); font-size: 16px; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-border);
  transition: all 0.2s;
}
.contact-item:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--cream-dark); }
.contact-icon { font-size: 22px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 11px; font-weight: 700; color: var(--brown); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item span { font-size: 15px; color: var(--text); font-weight: 500; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--cream-border);
}
.contact-form h3 { font-size: 22px; font-weight: 800; color: var(--brown-dark); margin-bottom: 28px; letter-spacing: -0.01em; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--brown); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.07em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 17px;
  border: 2px solid var(--cream-border);
  border-radius: var(--radius);
  font-size: 15px; font-family: inherit; color: var(--text);
  background: var(--cream); transition: all 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brown); background: var(--white); box-shadow: 0 0 0 3px rgba(92,61,46,0.1); }
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
.footer { background: #1a0e06; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 72px 0 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-mark { width: 38px; height: 38px; font-size: 18px; }
.footer-brand .logo-main { color: var(--white); font-size: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col strong { display: block; color: var(--white); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom a { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1020px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-card-stack { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 16px 24px 24px; border-bottom: 1px solid var(--cream-border); box-shadow: var(--shadow); z-index: 99; }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 64px 0 0; min-height: auto; }
  .hero-actions { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}
