:root {
  --bg: #fdf6ee;
  --bg-alt: #f6e9d8;
  --fg: #4a3b30;
  --muted: #8a7563;
  --accent: #e08a4c;
  --accent-dark: #c5703a;
  --card: #fffaf3;
  --border: #ecd9c2;
  --shadow: 0 8px 28px rgba(140, 90, 45, 0.10);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.15; }

img { max-width: 100%; display: block; }

a { color: var(--accent-dark); text-decoration: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(253, 246, 238, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.brand { font-family: "Fraunces", serif; font-size: 1.3rem; font-weight: 600; color: var(--fg); }
.nav-links { list-style: none; display: flex; gap: 24px; }
.nav-links a { color: var(--muted); font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--accent); }

/* Buttons */
.btn, button[type="submit"] {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  padding: 14px 30px; border: none; border-radius: 999px;
  cursor: pointer; transition: background .2s, transform .1s;
}
.btn:hover, button[type="submit"]:hover { background: var(--accent-dark); }
.btn:active, button[type="submit"]:active { transform: translateY(1px); }

/* Hero */
.hero {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center; padding: 56px 24px;
}
.hero-text h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin-bottom: 18px; }
.hero-text p { font-size: 1.15rem; color: var(--muted); margin-bottom: 28px; max-width: 42ch; }
.hero-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

/* Sections */
.section { max-width: 1080px; margin: 0 auto; padding: 64px 24px; }
.section-alt { background: var(--bg-alt); max-width: none; }
.section-alt > * { max-width: 1080px; margin-left: auto; margin-right: auto; }
.section h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 60ch; margin-bottom: 36px; }

/* Cards */
.cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
}
.card-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--muted); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gallery figure { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.05); }

/* Form */
.form { display: flex; flex-direction: column; gap: 14px; max-width: 460px; }
.form input, .form textarea {
  font-family: inherit; font-size: 1rem;
  padding: 14px 16px; border: 1px solid var(--border);
  border-radius: 12px; background: var(--card); color: var(--fg);
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
.form button { align-self: flex-start; }
.ok { color: var(--accent-dark); font-weight: 600; }

/* Footer */
.site-footer { text-align: center; padding: 40px 24px; color: var(--muted); border-top: 1px solid var(--border); }

/* Desktop */
@media (min-width: 768px) {
  .hero { grid-template-columns: 1.1fr 1fr; padding: 80px 24px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
}
