:root {
  --bg: #f4efe7;
  --ink: #1f1c17;
  --muted: #655f56;
  --brand: #b67634;
  --brand-dark: #8b5420;
  --panel: #fffaf3;
  --line: rgba(31, 28, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 0% 0%, #ffe3bf 0%, transparent 28%),
    radial-gradient(circle at 100% 0%, #f7f0e6 0%, transparent 30%), var(--bg);
  font-family: "Manrope", sans-serif;
}

.site-header,
.section,
.hero,
footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
}

.site-header {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(8px);
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding-top: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  color: var(--brand-dark);
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

h1 {
  margin-top: 0.4rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.03;
}

.hero p {
  color: var(--muted);
  max-width: 62ch;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 15px 40px rgba(49, 29, 11, 0.09);
}

.hero-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.address {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.section {
  margin-top: 1.4rem;
}

.section-head h2 {
  margin-top: 0.4rem;
}

.service-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

.service-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem;
}

.service-grid p {
  color: var(--muted);
}

.service-grid strong {
  font-size: 1.2rem;
  color: var(--brand-dark);
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.contact {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(140deg, #2c2015, #4b3420);
  border-radius: 20px;
  color: #fff4e5;
  margin-bottom: 2rem;
}

.contact .kicker,
.contact p {
  color: #e3cab0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(120deg, var(--brand), #d68d42);
}

button.btn {
  font: inherit;
}

.btn:hover {
  filter: brightness(1.03);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-small {
  padding: 0.5rem 0.9rem;
}

.cta-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.template-switcher {
  margin-top: 1rem;
}

.preset-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.preset-row .btn-ghost {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.5);
}

footer {
  text-align: center;
  color: var(--muted);
  padding-bottom: 2rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
  }
}
