:root {
  --primary-color: #8B3A3A;
  --secondary-color: #612929;
  --accent-color: #C47A5A;
  --light-color: #FDF3EE;
  --dark-color: #2E1515;
  --gradient-primary: linear-gradient(135deg, #8B3A3A 0%, #C47A5A 100%);
  --hover-color: #612929;
  --background-color: #FBF6F2;
  --text-color: #312020;
  --border-color: rgba(139, 58, 58, 0.2);
  --divider-color: rgba(97, 41, 41, 0.15);
  --shadow-color: rgba(139, 58, 58, 0.1);
  --highlight-color: #D4A840;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Poppins', sans-serif;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
.hamburger .line {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}
#menu-toggle { display: none; }
#menu-toggle:checked ~ .mobile-nav {
  max-height: 350px;
  opacity: 1;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--border-color);
  z-index: 1000;
}
.mobile-nav ul { padding: 2rem; margin: 0; list-style: none; }
.mobile-nav li { margin: 0.8rem 0; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.mobile-nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Feature Cards — numbered steps, card with big number badge */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.feature-card {
  background: white;
  border-radius: 14px;
  padding: 2.4rem 1.8rem 2rem;
  box-shadow: 0 4px 18px var(--shadow-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, rgba(196, 122, 90, 0.12) 0%, transparent 60%);
  border-radius: 0 14px 0 80px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-step {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--main-font);
  color: rgba(139, 58, 58, 0.12);
  margin-bottom: 0.6rem;
  display: block;
}

.feature-icon {
  font-size: 2rem;
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 14px rgba(139, 58, 58, 0.25);
  margin: 0 auto 1.2rem auto;
  transition: all 0.3s ease;
  align-self: center;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 58, 58, 0.35);
}

.feature-card h3 {
  margin-bottom: 0.7rem;
  width: 100%;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.testimonial {
  background: white;
  border-radius: 14px;
  padding: 2.4rem 2rem;
  box-shadow: 0 4px 18px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5.5rem;
  color: var(--accent-color);
  opacity: 0.18;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

/* FAQ Items */
.faq-item {
  background: white;
  border-radius: 12px;
  margin: 1.2rem 0;
  box-shadow: 0 3px 14px var(--shadow-color);
  transition: all 0.3s ease;
  padding: 2.2rem 2.2rem 2.2rem 4rem;
  position: relative;
  border: 1px solid var(--border-color);
}

.faq-item::before {
  content: 'Q';
  position: absolute;
  left: 1.2rem;
  top: 2rem;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: var(--main-font);
  color: var(--accent-color);
  opacity: 0.7;
}

.faq-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 25px var(--shadow-color);
  border-color: var(--accent-color);
}

.faq-item h3 {
  margin-bottom: 1rem;
}

/* Form */
input, textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.1rem;
  background-color: white;
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 58, 58, 0.1);
}
input:hover, textarea:hover { border-color: var(--secondary-color); }

/* Button */
button, .btn {
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 14px rgba(139, 58, 58, 0.28);
}
button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(139, 58, 58, 0.38);
}

/* Typography */
html { scroll-behavior: smooth; }
body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.7;
  max-width: 100vw;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
}

/* Header / Footer */
header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  color: var(--text-color);
  padding: 1.2rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 18px var(--shadow-color);
}
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 3.5rem 0 1.5rem;
}

/* Focus */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Pattern BG */
.pattern-bg {
  background-image:
    radial-gradient(ellipse at 5% 50%, rgba(139, 58, 58, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 20%, rgba(196, 122, 90, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 90%, rgba(212, 168, 64, 0.04) 0%, transparent 40%);
  background-size: 100% 100%;
}

/* Random block — Day timeline */
.timeline-banner {
  width: 100%;
  background: linear-gradient(150deg, #2E1515 0%, #612929 50%, #8B3A3A 100%);
  padding: 4.5rem 0;
}

.timeline-track {
  position: relative;
  margin-top: 3rem;
  padding: 0 1rem;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.tl-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.tl-dot.active {
  background: var(--gradient-primary);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(196, 122, 90, 0.25);
}

.tl-time {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 0.4rem;
  font-family: var(--alt-font);
  letter-spacing: 0.04em;
}

.tl-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.3rem;
}

.tl-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.4;
}

/* Contact */
.contact-inner { width: 80%; margin: 0 auto; }

/* Base */
* { box-sizing: border-box; }
body { overflow-x: hidden; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

@media (max-width: 900px) {
  .timeline-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline-track::before { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .hero h1 { font-size: 2.4rem; line-height: 1.2; padding: 0 1rem; }
  .container { padding: 0 1rem; max-width: 100vw; }
  .features-grid { grid-template-columns: 1fr; gap: 1.6rem; padding: 0 0.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 0.5rem; }
  .feature-card, .testimonial, .faq-item { margin: 1rem 0; padding: 2rem 1.5rem; max-width: 100%; word-wrap: break-word; }
  .faq-item { padding: 2rem 1.5rem 2rem 3.4rem; }
  .timeline-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .timeline-track::before { display: none; }
  .contact-inner { width: 100%; }
  .space-x-8 { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; line-height: 1.25; padding: 0 0.5rem; }
  .hero p { font-size: 1rem; padding: 0 0.5rem; }
  .feature-card, .testimonial, .faq-item { padding: 1.5rem 1rem; max-width: 100%; }
  .faq-item { padding: 1.5rem 1rem 1.5rem 3rem; }
  .timeline-steps { grid-template-columns: 1fr; }
  .container { padding: 0 0.5rem; }
  input, textarea { font-size: 16px; padding: 1rem; }
  .btn { padding: 1rem 2rem; font-size: 0.95rem; }
}