/* =====================================================
   YESHAMBEL WOOD CARVING â€” Main Stylesheet
   Color Palette: Warm wood tones
   #3D1F0D  deep espresso (darkest)
   #6B3A2A  rich mahogany
   #8B5E3C  warm walnut
   #C49A6C  golden oak
   #E8C99A  light birch
   #F5ECD7  cream linen (lightest bg)
   #2C1A0E  near-black for text
===================================================== */

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

:root {
  --espresso:   #3D1F0D;
  --mahogany:   #6B3A2A;
  --walnut:     #8B5E3C;
  --oak:        #C49A6C;
  --birch:      #E8C99A;
  --linen:      #F5ECD7;
  --cream:      #FBF6EE;
  --text-dark:  #2C1A0E;
  --text-mid:   #5C3D2A;
  --text-light: #9C7A5C;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(61,31,13,0.12);
  --shadow-md:  0 6px 24px rgba(61,31,13,0.18);
  --shadow-lg:  0 16px 48px rgba(61,31,13,0.22);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: all 0.3s ease;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Lato', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--espresso); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--text-mid); line-height: 1.8; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 90px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-top: 8px; }
.section-sub {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--walnut);
  background: rgba(196,154,108,0.15);
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid var(--birch);
}
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 16px;
}
.divider span { display: block; width: 60px; height: 2px; background: var(--birch); }
.divider i    { color: var(--oak); font-size: 1rem; }
.divider.light span { background: rgba(255,255,255,0.3); }
.divider.light i    { color: var(--birch); }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-sub { color: var(--birch); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

.center-btn { text-align: center; margin-top: 48px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--mahogany);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107,58,42,0.35);
}
.btn-primary:hover {
  background: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,58,42,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: var(--espresso);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(61,31,13,0.4);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-family: var(--font-head);
}
.nav-logo i { font-size: 1.6rem; color: var(--oak); }
.nav-logo span { font-size: 1rem; font-weight: 700; line-height: 1.2; }
.nav-logo small { font-size: 0.65rem; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-links a.active { color: var(--oak); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== ADMIN LOGIN BUTTON ===== */
.admin-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 16px;
  background: rgba(196,154,108,0.15);
  border: 1px solid rgba(196,154,108,0.3);
  border-radius: 50%;
  color: var(--oak);
  font-size: 0.85rem;
  transition: var(--transition);
  opacity: 0.7;
}
.admin-login-btn:hover {
  background: var(--oak);
  border-color: var(--oak);
  color: var(--white);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(196,154,108,0.4);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?w=1600&q=80') center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; text-align: center; padding: 120px 24px 80px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(61,31,13,0.75) 0%, rgba(61,31,13,0.55) 60%, rgba(61,31,13,0.80) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-tagline {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--oak); background: rgba(196,154,108,0.15);
  border: 1px solid rgba(196,154,108,0.4);
  display: inline-block; padding: 6px 20px; border-radius: 20px; margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--oak); font-style: italic; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(8px);} }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--espresso);
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; padding: 0;
}
.stat {
  flex: 1; min-width: 160px;
  text-align: center; padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 900;
  color: var(--oak); display: inline-block;
}
.stat > span:not(.stat-num) { font-size: 2rem; font-weight: 900; color: var(--oak); }
.stat p { color: rgba(255,255,255,0.65); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* ===== FEATURED WORKS ===== */
.featured { background: var(--cream); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.work-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.work-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.work-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-card:hover .work-img img { transform: scale(1.06); }
.work-overlay {
  position: absolute; inset: 0;
  background: rgba(61,31,13,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.work-card:hover .work-overlay { opacity: 1; }
.overlay-btn {
  padding: 10px 24px;
  background: var(--white); color: var(--espresso);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transform: translateY(10px); transition: var(--transition);
}
.work-card:hover .overlay-btn { transform: translateY(0); }
.work-info { padding: 20px 22px; }
.work-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--walnut); background: rgba(196,154,108,0.15);
  padding: 3px 10px; border-radius: 12px; margin-bottom: 10px; display: inline-block;
}
.work-info h3 { margin-bottom: 6px; font-size: 1.2rem; }
.work-info p  { font-size: 0.88rem; color: var(--text-light); margin-bottom: 14px; }
.work-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-head); font-size: 1.1rem; color: var(--mahogany); font-weight: 700; }
.work-order {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--walnut); display: flex; align-items: center; gap: 5px;
  transition: var(--transition);
}
.work-order:hover { color: var(--mahogany); gap: 8px; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--linen); }
.steps {
  display: flex; align-items: flex-start; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.step {
  flex: 1; min-width: 200px; max-width: 240px;
  text-align: center; padding: 32px 20px;
  position: relative;
}
.step-icon {
  width: 72px; height: 72px;
  background: var(--mahogany);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(107,58,42,0.3);
}
.step-icon i { font-size: 1.5rem; color: var(--white); }
.step-num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-head); font-size: 3rem; font-weight: 900;
  color: rgba(196,154,108,0.2); line-height: 1;
}
.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step p  { font-size: 0.88rem; }
.step-arrow { display: flex; align-items: center; padding: 32px 0; color: var(--birch); font-size: 1.2rem; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, var(--espresso) 0%, #5A2D1A 100%);
  overflow: hidden;
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials-track {
  display: flex; gap: 24px;
  overflow: hidden;
  position: relative;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  display: none;
}
.testimonial-card.active { display: block; }
.stars { color: var(--oak); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p {
  color: rgba(255,255,255,0.82); font-size: 0.95rem;
  font-style: italic; margin-bottom: 20px; line-height: 1.8;
}
.testimonial-card > p::before { content: '"'; font-family: var(--font-head); font-size: 3rem; color: var(--oak); line-height: 0; vertical-align: -1rem; margin-right: 4px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mahogany); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
}
.reviewer strong { display: block; color: var(--white); font-size: 0.95rem; }
.reviewer span   { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.testimonial-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 40px;
}
.t-prev, .t-next {
  width: 44px; height: 44px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.25);
  color: var(--white); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.t-prev:hover, .t-next:hover { background: var(--mahogany); border-color: var(--mahogany); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); cursor: pointer; transition: var(--transition);
}
.t-dot.active { background: var(--oak); width: 24px; border-radius: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  background: url('https://images.unsplash.com/photo-1542621334-a254cf47733d?w=1600&q=80') center/cover no-repeat;
  padding: 100px 24px;
  text-align: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(61,31,13,0.80);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-content p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 40vh;
  background: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: flex-end;
  position: relative;
  padding: 100px 24px 60px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(61,31,13,0.5) 0%, rgba(61,31,13,0.80) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.page-hero-content h1 { color: var(--white); margin: 8px 0; }
.page-hero-content p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--cream); }
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 30px;
  border: 2px solid var(--birch);
  color: var(--text-mid);
  background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--mahogany);
  border-color: var(--mahogany);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(107,58,42,0.3);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.hidden { display: none; }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,31,13,0.85) 0%, rgba(61,31,13,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-info .item-category {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--oak); margin-bottom: 4px; display: block;
}
.gallery-item-info h3 { color: var(--white); font-size: 1rem; margin-bottom: 3px; }
.gallery-item-info p  { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
.gallery-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  border-radius: 50%; color: var(--white); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-zoom:hover { background: var(--mahogany); }
.no-results {
  text-align: center; padding: 60px 20px;
  color: var(--text-light); grid-column: 1/-1;
}
.no-results i { font-size: 2.5rem; margin-bottom: 12px; display: block; }

/* ===== LIGHTBOX ===== */
.lightbox-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,12,4,0.92);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox-backdrop.open { opacity: 1; pointer-events: all; }
.lightbox {
  position: fixed; inset: 0; z-index: 2100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: row;
  max-width: 900px; width: 100%;
  max-height: 90vh;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s ease;
}
.lightbox.open .lightbox-content { transform: scale(1) translateY(0); }
.lightbox-content img {
  flex: 0 0 55%; max-width: 55%;
  object-fit: cover; height: 100%; max-height: 80vh;
}
.lightbox-details {
  flex: 1; padding: 36px 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
  overflow-y: auto;
}
.lightbox-category {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--walnut); background: rgba(196,154,108,0.15);
  padding: 4px 12px; border-radius: 12px; display: inline-block; width: fit-content;
}
.lightbox-details h3 { font-size: 1.5rem; margin-top: 4px; }
.lightbox-details p  { font-size: 0.9rem; color: var(--text-mid); }
.lightbox-meta { display: flex; gap: 20px; margin-top: 4px; }
.lightbox-meta span { font-size: 0.85rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.lightbox-meta i { color: var(--oak); }
.lightbox-close {
  position: fixed; top: 20px; right: 20px; z-index: 2200;
  width: 44px; height: 44px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--espresso);
  box-shadow: var(--shadow-md); transition: var(--transition);
}
.lightbox-close:hover { background: var(--mahogany); color: var(--white); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  z-index: 2200;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%; color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--mahogany); border-color: var(--mahogany); }

/* ===== ORDER PAGE ===== */
.order-section { background: var(--cream); }
.order-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.form-intro { margin-bottom: 32px; }
.form-intro h2 { margin-bottom: 10px; }
.form-section-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mahogany); background: rgba(107,58,42,0.07);
  padding: 10px 16px; border-radius: var(--radius-sm);
  border-left: 3px solid var(--mahogany);
  margin: 28px 0 18px;
  display: flex; align-items: center; gap: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-dark); letter-spacing: 0.5px;
}
.req { color: var(--mahogany); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--birch);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text-dark); background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--walnut);
  box-shadow: 0 0 0 3px rgba(139,94,60,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group small { font-size: 0.78rem; color: var(--text-light); }
.error-msg { font-size: 0.75rem; color: #c0392b; font-weight: 600; min-height: 16px; }
.char-count { font-size: 0.75rem; color: var(--text-light); text-align: right; }
.checkbox-label {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; font-size: 0.9rem; color: var(--text-mid);
}
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--mahogany); cursor: pointer; }
.form-note {
  text-align: center; font-size: 0.78rem; color: var(--text-light);
  margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-note i { color: var(--walnut); }

/* Order Sidebar */
.order-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--mahogany);
}
.sidebar-card h3 {
  font-size: 1rem; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
  color: var(--espresso);
}
.sidebar-card h3 i { color: var(--walnut); }
.sidebar-card p { font-size: 0.88rem; }
.sidebar-steps { padding-left: 0; counter-reset: steps; }
.sidebar-steps li {
  font-size: 0.88rem; color: var(--text-mid);
  padding: 6px 0 6px 32px;
  position: relative;
  border-bottom: 1px dashed var(--birch);
  counter-increment: steps;
}
.sidebar-steps li:last-child { border-bottom: none; }
.sidebar-steps li::before {
  content: counter(steps);
  position: absolute; left: 0; top: 6px;
  width: 22px; height: 22px;
  background: var(--mahogany); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}
.pricing-list { list-style: none; }
.pricing-list li {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-mid);
  padding: 7px 0; border-bottom: 1px dashed var(--birch);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li span:last-child { font-weight: 700; color: var(--mahogany); }
.sidebar-card small { font-size: 0.75rem; color: var(--text-light); display: block; margin-top: 8px; }
.sidebar-contact { background: var(--espresso); border-left-color: var(--oak); }
.sidebar-contact h3 { color: var(--white); }
.sidebar-contact p { color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.contact-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600;
  background: rgba(255,255,255,0.08); color: var(--white);
  margin-bottom: 8px; transition: var(--transition);
}
.contact-link:hover { background: var(--mahogany); }
.contact-link i { color: var(--oak); width: 16px; }
.contact-link.whatsapp i { color: #25D366; }

/* Form Success */
.form-success {
  text-align: center; padding: 60px 32px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.success-icon { font-size: 4rem; color: #27ae60; margin-bottom: 16px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 12px; }
.form-success p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 28px; }

/* ===== ABOUT PAGE ===== */
.about-story { background: var(--cream); }
.story-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.story-image { position: relative; }
.story-image img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--mahogany); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius-md);
  text-align: center; box-shadow: var(--shadow-md);
}
.badge-num { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--oak); }
.badge-txt { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; }
.story-text .section-sub { margin-bottom: 12px; }
.story-text h2 { 
  margin-bottom: 32px; 
  font-size: 2.2rem;
  line-height: 1.3;
  color: var(--mahogany);
}
.story-text p { 
  margin-bottom: 24px; 
  font-size: 1.05rem; 
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: 0.01em;
}
.story-text p:first-of-type {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}
.story-text p strong {
  color: var(--mahogany);
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 0.5px;
}
.story-signature {
  font-family: var(--font-head); font-size: 1.4rem; font-style: italic;
  color: var(--mahogany); margin-top: 20px;
}

/* Values */
.values-section { background: var(--linen); }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 24px;
}
.value-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--mahogany); box-shadow: var(--shadow-md); }
.value-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mahogany), var(--walnut));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.value-icon i { font-size: 1.4rem; color: var(--white); }
.value-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.value-card p   { font-size: 0.88rem; }

/* Skills */
.skills-section { background: var(--cream); }
.skills-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.skills-text .section-sub { margin-bottom: 12px; }
.skills-text h2 { margin-bottom: 14px; }
.skills-text > p { margin-bottom: 32px; }
.skill-bar-wrap { display: flex; flex-direction: column; gap: 20px; }
.skill-label { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.skill-track {
  height: 8px; background: var(--birch); border-radius: 4px; overflow: hidden;
}
.skill-fill {
  height: 100%; background: linear-gradient(90deg, var(--mahogany), var(--oak));
  border-radius: 4px; width: 0; transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.skills-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* Tools */
.tools-section { background: var(--linen); }
.tools-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
  gap: 16px;
}
.tool-item {
  background: var(--white); border-radius: var(--radius-md);
  padding: 24px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.tool-item:hover { background: var(--espresso); transform: translateY(-3px); }
.tool-item i { font-size: 1.5rem; color: var(--oak); }
.tool-item span { font-size: 0.8rem; font-weight: 700; color: var(--text-mid); }
.tool-item:hover span { color: var(--white); }

/* Timeline */
.timeline-section {
  background: linear-gradient(135deg, var(--espresso) 0%, #5A2D1A 100%);
}
.timeline {
  position: relative; max-width: 760px; margin: 0 auto;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: rgba(255,255,255,0.15);
  transform: translateX(-50%);
}
.timeline-item {
  width: 48%; position: relative; margin-bottom: 40px;
}
.timeline-item.left  { margin-left: 0; text-align: right; }
.timeline-item.right { margin-left: 52%; text-align: left; }
.timeline-dot {
  position: absolute; top: 16px;
  width: 14px; height: 14px;
  background: var(--oak); border: 3px solid var(--espresso);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(196,154,108,0.3);
}
.timeline-item.left  .timeline-dot { right: -8%; }
.timeline-item.right .timeline-dot { left: -8%; }
.timeline-content {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 20px 24px;
}
.timeline-year {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--oak); margin-bottom: 6px; display: block;
}
.timeline-content h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.timeline-content p  { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 28px; font-size: 0.95rem; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); padding: 18px 20px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mahogany); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; flex-shrink: 0;
}
.contact-card-icon.whatsapp-icon { background: #25D366; }
.contact-card h4 { font-size: 0.85rem; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-card a { color: var(--mahogany); font-size: 0.9rem; font-weight: 600; display: block; }
.contact-card a:hover { color: var(--espresso); }
.contact-card small { font-size: 0.75rem; color: var(--text-light); display: block; margin-top: 2px; }

.hours-card {
  background: var(--espresso); border-radius: var(--radius-md);
  padding: 22px; margin-bottom: 24px;
}
.hours-card h4 { color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.hours-card h4 i { color: var(--oak); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.closed td { color: rgba(255,255,255,0.35); }
.tz-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 12px; display: flex; align-items: center; gap: 6px; }

.social-section h4 { margin-bottom: 8px; }
.social-section > p { font-size: 0.88rem; margin-bottom: 14px; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 700; color: var(--white);
  transition: var(--transition);
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.facebook  { background: #1877f2; }
.social-btn.pinterest { background: #E60023; }
.social-btn.youtube   { background: #FF0000; }

.contact-form-wrap h2 { margin-bottom: 20px; }
.contact-form { background: var(--white); padding: 32px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }

/* Map */
.map-section { margin-top: 56px; }
.map-section h3 { margin-bottom: 16px; display: flex; align-items: center; gap: 10px; color: var(--espresso); }
.map-placeholder { position: relative; }
.map-note {
  margin-top: 10px; padding: 10px 16px;
  background: var(--linen); border-radius: var(--radius-sm);
  font-size: 0.82rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 8px;
}
.map-note i { color: var(--walnut); }

/* FAQ */
.faq-section { background: var(--linen); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; text-align: left;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  color: var(--text-dark); transition: var(--transition);
}
.faq-question:hover { background: var(--linen); }
.faq-question[aria-expanded="true"] { color: var(--mahogany); background: rgba(107,58,42,0.04); }
.faq-question i { font-size: 0.8rem; color: var(--walnut); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); color: var(--mahogany); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-mid); }

/* ===== FOOTER ===== */
.footer { background: var(--espresso); }
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 64px 24px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
}
.social-links a:hover { background: var(--mahogany); border-color: var(--mahogany); color: var(--white); }
.footer-links h4, .footer-contact h4 {
  color: var(--white); font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links ul a:hover { color: var(--oak); padding-left: 4px; }
.footer-contact p {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 10px;
}
.footer-contact i { color: var(--oak); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366; color: var(--white);
  border-radius: 50%; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); background: #128C7E; }
@keyframes whatsapp-pulse {
  0%,100%{ box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50%    { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 44px; height: 44px;
  background: var(--mahogany); color: var(--white);
  border-radius: 50%; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--espresso); transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .order-layout    { grid-template-columns: 1fr; }
  .order-sidebar   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .story-layout    { grid-template-columns: 1fr; }
  .story-image     { max-width: 500px; margin: 0 auto; }
  .story-badge     { right: 0; }
  .skills-layout   { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; }
  .footer-container{ grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline::before{ left: 20px; }
  .timeline-item   { width: 100%; margin-left: 40px !important; text-align: left !important; }
  .timeline-item.left  .timeline-dot,
  .timeline-item.right .timeline-dot { left: -32px !important; right: auto !important; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 280px; background: var(--espresso);
    flex-direction: column; justify-content: center; gap: 8px;
    padding: 80px 24px 40px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    transition: right 0.4s ease;
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 12px 16px; font-size: 1rem; }
  .hamburger { display: flex; }

  .admin-login-btn { margin-left: 12px; margin-right: 8px; }

  .hero-btns { flex-direction: column; align-items: center; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .lightbox-content { flex-direction: column; }
  .lightbox-content img { max-width: 100%; max-height: 40vh; flex: none; }
  .works-grid { grid-template-columns: 1fr; }
  .order-sidebar { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .stats-strip { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); }
  .social-row { gap: 8px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 7px 16px; font-size: 0.72rem; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== FINALIZATION POLISH ===== */

/* Ensure hidden gallery items are truly gone */
.gallery-item.hidden { display: none !important; }

/* Lightbox image initial state */
#lightboxImg { transition: opacity 0.3s ease; }

/* Gift note wrap smooth reveal */
.gift-note-wrap {
  animation: slideDown 0.3s ease;
  overflow: hidden;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Form group bottom spacing consistency */
.order-form .form-group,
.contact-form .form-group { margin-bottom: 12px; }

/* Textarea resize constraint */
textarea { resize: vertical; min-height: 100px; }

/* Select arrow styling */
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B5E3C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px !important; }

/* Page hero background variety per page */
.gallery-section ~ .cta-banner,
.order-section  ~ .cta-banner { margin-top: 0; }

/* Ensure story badge doesn't overflow on small screens */
@media (max-width: 480px) {
  .story-badge { right: 8px; bottom: -16px; padding: 14px 16px; }
  .badge-num   { font-size: 1.6rem; }
  .order-layout { gap: 32px; }
}

/* Timeline dot positioning fine-tune */
@media (max-width: 1024px) {
  .timeline-item { width: calc(100% - 48px); }
  .timeline::before { left: 16px; }
  .timeline-dot { left: -28px !important; right: auto !important; top: 20px; }
}

/* Smooth page transitions */
body { animation: pageFadeIn 0.4s ease; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--oak);
  outline-offset: 3px;
}

/* Print: hide non-essential elements */
@media print {
  .navbar, .whatsapp-float, .scroll-top, .hero-scroll,
  .cta-banner, .footer { display: none; }
  body { background: white; color: black; }
}

/* =====================================================
   HOME PAGE REDESIGN â€” Hero Slideshow + Premium Sections
===================================================== */

/* ===== HERO SLIDESHOW ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  /* override old background-image set inline */
  background: var(--espresso) !important;
}

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

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.00) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, -1%); }
}

/* dark gradient overlay â€” stronger at bottom */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(30,10,3,0.55) 0%,
      rgba(30,10,3,0.35) 40%,
      rgba(30,10,3,0.72) 100%),
    linear-gradient(to right,
      rgba(30,10,3,0.3) 0%,
      transparent 40%,
      transparent 60%,
      rgba(30,10,3,0.3) 100%);
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 140px 24px 100px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  color: var(--oak);
}
.hero-line {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--oak);
  opacity: 0.6;
}
.hero-badge-text {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--birch);
}
.hero-badge i { font-size: 0.65rem; opacity: 0.7; }

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--oak);
  display: inline-block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
}

/* Hero buttons â€” new styles */
.btn-hero-primary {
  background: var(--mahogany);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(107,58,42,0.5);
  transition: var(--transition);
  border: 2px solid var(--mahogany);
}
.btn-hero-primary:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(107,58,42,0.6);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-btns {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero trust badges */
.hero-trust {
  display: flex; gap: 24px;
  justify-content: center; flex-wrap: wrap;
}
.hero-trust span {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 7px;
}
.hero-trust i { color: var(--oak); font-size: 0.8rem; }

/* ===== HERO SLIDE INDICATORS ===== */
.hero-indicators {
  position: absolute; bottom: 80px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--oak);
  width: 28px;
  border-radius: 4px;
}

/* ===== HERO ARROWS ===== */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.hero-arrow:hover {
  background: var(--mahogany);
  border-color: var(--mahogany);
  transform: translateY(-50%) scale(1.08);
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* ===== HERO ORNAMENTS ===== */
.hero-ornament {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; font-size: 6rem;
  color: rgba(196,154,108,0.06);
  pointer-events: none;
}
.hero-ornament.left  { left: -20px; }
.hero-ornament.right { right: -20px; }

/* ===== HERO SCROLL ===== */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
}
.scroll-icon {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: bounce 2s ease-in-out infinite;
  font-size: 0.7rem;
}

/* ===== STATS STRIP â€” REDESIGNED ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--espresso) 0%, #52250F 100%);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  border-bottom: 3px solid var(--mahogany);
}
.stat {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 180px;
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat:last-of-type { border-right: none; }
.stat-divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.stat-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(196,154,108,0.12);
  border: 1px solid rgba(196,154,108,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon i { font-size: 1.3rem; color: var(--oak); }
.stat-body { display: flex; flex-direction: column; }
.stat-row { display: flex; align-items: baseline; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 700;
  color: var(--oak);
  margin-left: 2px;
}
.stat-body p {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

/* ===== INTRO BANNER ===== */
.intro-banner {
  background: var(--cream);
  padding: 90px 0;
}
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-img-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 500px;
}
.intro-img-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.intro-img-main:hover img { transform: scale(1.04); }
.intro-img-side {
  display: flex; flex-direction: column; gap: 12px;
}
.intro-img-side img {
  flex: 1;
  width: 100%; height: 50%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s ease;
}
.intro-img-side img:hover { transform: scale(1.04); }

.intro-text { padding-left: 8px; }
.intro-text h2 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
}
.intro-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 16px 0 20px;
}
.intro-divider span { width: 50px; height: 2px; background: var(--birch); display: block; }
.intro-divider i    { color: var(--oak); }
.intro-text p { font-size: 0.94rem; margin-bottom: 14px; }

.intro-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 24px 0 28px;
}
.intro-feat {
  display: flex; align-items: center; gap: 10px;
  background: var(--linen);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--oak);
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-dark);
}
.intro-feat i { color: var(--mahogany); font-size: 0.9rem; flex-shrink: 0; }

/* ===== FEATURED WORKS â€” PREMIUM ===== */
.featured { background: var(--linen); }

.section-desc {
  font-size: 0.95rem; color: var(--text-light);
  max-width: 580px; margin: 12px auto 0;
  text-align: center;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(196,154,108,0.1);
}
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196,154,108,0.3);
}

/* Work badge (Bestseller / Showcase) */
.work-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--mahogany); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(107,58,42,0.35);
}
.work-badge.new { background: #1a6b3a; }

.work-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.work-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-card:hover .work-img img { transform: scale(1.07); }

.work-overlay {
  position: absolute; inset: 0;
  background: rgba(30,10,3,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
}
.work-card:hover .work-overlay { opacity: 1; }
.overlay-btn {
  padding: 11px 26px;
  background: var(--white); color: var(--espresso);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 8px;
  transform: translateY(12px); transition: transform 0.35s ease;
}
.work-card:hover .overlay-btn { transform: translateY(0); }

.work-info { padding: 20px 22px 22px; }
.work-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--walnut); background: rgba(196,154,108,0.12);
  padding: 4px 11px; border-radius: 12px;
  display: inline-block; margin-bottom: 10px;
}
.work-info h3 {
  font-size: 1.1rem; margin-bottom: 7px;
  color: var(--espresso);
}
.work-info p { font-size: 0.86rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.work-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--linen);
}
.price {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700;
  color: var(--mahogany);
}
.work-order {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--walnut);
  display: flex; align-items: center; gap: 5px;
  transition: var(--transition);
}
.work-order:hover { color: var(--mahogany); gap: 8px; }

/* ===== HOW IT WORKS â€” PREMIUM ===== */
.how-it-works { background: var(--cream); }
.steps {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 190px; max-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 22px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 4px solid transparent;
  transition: var(--transition);
  margin: 0 4px;
}
.step:hover { border-top-color: var(--mahogany); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--mahogany), var(--walnut));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(107,58,42,0.3);
}
.step-icon i { font-size: 1.3rem; color: var(--white); }
.step-num {
  position: absolute; top: 14px; right: 16px;
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 900;
  color: rgba(196,154,108,0.15); line-height: 1;
}
.step h3 { font-size: 1rem; margin-bottom: 10px; color: var(--espresso); }
.step p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }
.step-arrow {
  display: flex; align-items: center; padding: 0 4px;
  color: var(--birch); font-size: 1rem; flex-shrink: 0;
}

/* ===== RESPONSIVE â€” NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .works-grid      { grid-template-columns: repeat(2, 1fr); }
  .intro-layout    { grid-template-columns: 1fr; }
  .intro-img-grid  { height: 360px; }
  .intro-text      { padding-left: 0; }
  .stat-divider    { display: none; }
  .stat            { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.4rem; }
  .hero-trust      { gap: 12px; flex-direction: column; align-items: center; }
  .hero-arrow      { width: 40px; height: 40px; font-size: 0.8rem; }
  .hero-prev       { left: 10px; }
  .hero-next       { right: 10px; }
  .works-grid      { grid-template-columns: 1fr; }
  .intro-img-grid  { grid-template-columns: 1fr; height: auto; }
  .intro-img-main  { grid-row: auto; height: 260px; }
  .intro-img-side  { flex-direction: row; }
  .intro-img-side img { height: 160px; }
  .intro-features  { grid-template-columns: 1fr; }
  .steps           { flex-direction: column; align-items: center; }
  .step            { max-width: 100%; width: 100%; margin: 4px 0; }
  .step-arrow      { display: none; }
}

@media (max-width: 480px) {
  .hero-content    { padding: 120px 16px 90px; }
  .hero-sub br     { display: none; }
  .stat            { padding: 24px 16px; }
  .stat-icon       { width: 42px; height: 42px; }
  .stat-num        { font-size: 1.8rem; }
}


