:root {
  --primary-color: #7A5C1E;
  --secondary-color: #5C420F;
  --accent-color: #B8892F;
  --light-color: #FDF5E0;
  --dark-color: #2A1E08;
  --gradient-primary: linear-gradient(135deg, #7A5C1E 0%, #B8892F 100%);
  --hover-color: #5C420F;
  --background-color: #FEFAF0;
  --text-color: #2E2208;
  --border-color: rgba(122, 92, 30, 0.16);
  --divider-color: rgba(92, 66, 15, 0.11);
  --shadow-color: rgba(122, 92, 30, 0.11);
  --highlight-color: #E8A020;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Open Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; }

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: linear-gradient(160deg, #FEFAF0 0%, var(--light-color) 100%);
  line-height: 1.65;
  margin: 0; padding: 0;
  width: 100%; min-width: 320px;
}

img { max-width: 100%; height: auto; }

.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 1rem;
}

h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 1rem 0;
}

h1 { font-size: clamp(1.9rem, 5vw, 3.8rem); line-height: 1.15; }
h2 { font-size: clamp(1.45rem, 4vw, 2.4rem); line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); line-height: 1.35; }
p  { margin: 0 0 1rem 0; font-size: clamp(0.98rem, 2vw, 1.1rem); }

.hamburger {
  display: none; flex-direction: column; cursor: pointer;
  padding: 10px; background: rgba(255,255,255,0.95);
  border-radius: 4px; border: 1px solid var(--border-color);
}
.hamburger .line {
  width: 22px; height: 2px; background: var(--primary-color);
  margin: 2px 0; transition: 0.3s; border-radius: 1px;
}

#menu-toggle { display: none; }
#menu-toggle:checked ~ .mobile-nav { max-height: 400px; opacity: 1; }

.mobile-nav {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color); z-index: 1000;
}
.mobile-nav ul { padding: 2rem; margin: 0; list-style: none; }
.mobile-nav li { margin: 1rem 0; }
.mobile-nav a {
  display: block; padding: 0.8rem 0;
  color: var(--text-color); text-decoration: none;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid transparent; transition: all 0.3s;
}
.mobile-nav a:hover { color: var(--primary-color); border-bottom-color: var(--primary-color); }

header {
  background: rgba(255,255,255,0.96);
  padding: 1.2rem 0; position: relative; z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow-color);
}
header .container { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 3rem; width: auto; }

.navigation ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 2rem; }
.navigation a { text-decoration: none; color: var(--text-color); font-weight: 500; transition: all 0.3s; }
.navigation a:hover { color: var(--primary-color); }

.grid { display: grid; width: 100%; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.8rem; width: 100%; }

/* Feature cards: horizontal split — icon left column, text right column */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  width: 100%;
}

.feature-card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 16px var(--shadow-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  min-height: 120px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 90px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #FDF5E0 0%, #f5e8c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border-right: 1px solid var(--border-color);
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  border-right-color: transparent;
}

.feature-content {
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.feature-content h3 {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.93rem;
  margin: 0;
  color: var(--text-color);
  line-height: 1.55;
}

/* Testimonials: soft card with star rating top */
.testimonial {
  background: white;
  border-radius: 12px;
  padding: 1.8rem 2rem;
  box-shadow: 0 3px 16px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  width: 100%;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: 0 7px 26px var(--shadow-color); }

.testimonial-stars {
  color: var(--highlight-color);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin: 1rem 0; padding: 1.8rem 2rem;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all 0.3s; width: 100%;
}
.faq-item:hover { transform: translateY(-2px); box-shadow: 0 5px 20px var(--shadow-color); border-color: var(--primary-color); }

input, textarea {
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 8px; padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.9);
  color: var(--text-color); font-size: 1rem;
  width: 100%; transition: all 0.3s;
}
input:focus, textarea:focus {
  outline: none; border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(122,92,30,0.1); background: white;
}

.btn, button {
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white; border: none;
  padding: 1rem 2rem; 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 4px 20px rgba(122,92,30,0.26);
}
.btn:hover, button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(122,92,30,0.36);
}

/* Random block: checklist / do-dont style */
.checklist-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.checklist-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: var(--main-font);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.checklist-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.checklist-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.96rem;
  line-height: 1.5;
}

.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.check-yes { background: rgba(46,160,90,0.18); color: #1a7a3c; }
.check-no  { background: rgba(200,60,50,0.14); color: #a02020; }

.pattern-bg {
  background-image:
    radial-gradient(circle at 25% 75%, rgba(184,137,47,0.07) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(122,92,30,0.06) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1' fill='%237A5C1E' fill-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, 40px 40px;
}

footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 3rem 0 1rem;
}

#contact > div > div { width: 80%; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .features-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .grid { grid-template-columns: 1fr !important; gap: 1.4rem; }
  .checklist-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  #contact > div > div { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  .feature-card { flex-direction: column; min-height: auto; }
  .feature-icon { width: 100%; height: 70px; border-right: none; border-bottom: 1px solid var(--border-color); font-size: 2rem; }
  .faq-item { padding: 1.4rem 1rem; }
}

a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}