/* ===== Sweet Home Kitchen — warm, welcoming theme ===== */
:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --alt: #fdf1e7;
  --text: #3f3229;
  --muted: #8a7a6d;
  --accent: #d96c3f;        /* warm terracotta */
  --accent-dark: #b9522a;
  --border: #f0e4d8;
  --radius: 14px;
  --shadow: 0 4px 14px rgba(63, 50, 41, .08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, "Segoe UI", -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.muted { color: var(--muted); }
a { color: var(--accent); text-decoration: none; }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 245, .95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-size: 20px; font-weight: 700; color: var(--text); }
.nav-links { display: flex; gap: 22px; list-style: none; align-items: center; }
.nav-links a { color: var(--text); font-size: 15px; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 8px 16px; border-radius: 999px;
}
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--alt), #ffe9d6);
  padding: 110px 0;
  text-align: center;
}
.hero h1 { font-size: 44px; line-height: 1.15; margin-bottom: 18px; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid var(--accent);
  transition: all .2s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline { color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--alt); }
.section h2 { font-size: 32px; margin-bottom: 14px; }
.section .center + .card-grid { margin-top: 36px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.check-list { list-style: none; margin-top: 14px; }
.check-list li { padding: 4px 0; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.card h3 { margin: 14px 0 6px; font-size: 19px; }
.price { color: var(--accent); font-size: 20px; font-weight: 700; margin-top: 10px; }
.quote p { font-style: italic; }
.quote-author { margin-top: 12px; color: var(--muted); font-size: 14px; }

/* Placeholder images */
.img-placeholder {
  background: repeating-linear-gradient(45deg, #f7e8db, #f7e8db 12px, #fdf1e7 12px, #fdf1e7 24px);
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  min-height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 40px; color: var(--accent);
  gap: 8px;
}
.img-placeholder span { font-size: 13px; color: var(--muted); }
.img-placeholder.tall { min-height: 160px; font-size: 32px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}
.form-status { font-size: 14px; color: var(--accent); min-height: 20px; }

/* Footer */
.footer { background: #3f3229; color: #e8ddd3; padding: 40px 0; }
.footer .brand { color: #fff; }
.footer .muted { color: #b3a397; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: #e8ddd3; }
.footer-links a:hover { color: #fff; }

/* Responsive */
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
  .card-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 32px; }
}
@media (max-width: 560px) {
  .card-grid, .gallery-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 18px 20px;
    gap: 14px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hero { padding: 70px 0; }
}
