/* ===== Colours & fonts: change these to restyle the whole site ===== */
:root {
  --bg: #fbf8f4;
  --bg-alt: #f2ece4;
  --text: #2b2622;
  --muted: #6e645b;
  --accent: #a0714f;
  --accent-dark: #7f5539;
  --line: #e2d8cc;
  --radius: 10px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1120px, 100% - 32px); margin-inline: auto; }
.section { padding: 88px 0; }
.section.alt { background: var(--bg-alt); }
.center { text-align: center; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 20px; }
h3 { font-size: 1.45rem; margin-bottom: 8px; }
p { color: var(--muted); }

.eyebrow {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 10px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block; background: var(--accent); color: #fff; border: 2px solid var(--accent);
  padding: 13px 26px; border-radius: 999px; font-weight: 500; cursor: pointer;
  font-family: var(--sans); font-size: 1rem; transition: background .2s, color .2s;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--text); border-color: #fff; }
.btn-small { padding: 8px 18px; font-size: .9rem; color: #fff !important; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(251, 248, 244, .95); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.logo span { color: var(--accent); }
.menu { display: flex; align-items: center; gap: 28px; font-size: .95rem; }
.menu a:not(.btn):hover { color: var(--accent); }
.menu-toggle, .menu-icon { display: none; }

/* ===== Hero ===== */
.hero {
  min-height: 88vh; display: flex; align-items: center; color: #fff;
  /* Replace the gradient with a photo later: url("images/hero.jpg") center/cover */
  background:
    linear-gradient(100deg, rgba(30, 22, 16, .82) 0%, rgba(30, 22, 16, .45) 60%, rgba(30, 22, 16, .2) 100%),
    linear-gradient(135deg, #8a6a52, #c9ad8f 55%, #e8d9c5);
}
.hero-content { max-width: 680px; margin-left: max(16px, calc((100% - 1120px) / 2)); }
.hero .eyebrow { color: #e8d2bb; }
.hero .lead { color: #f1e8de; font-size: 1.15rem; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Layout helpers ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* Photo placeholders: swap for <img> tags once you have real project photos */
.placeholder {
  display: grid; place-items: center; aspect-ratio: 4 / 3; border-radius: var(--radius);
  background: linear-gradient(135deg, #d9c7b3, #efe5d9);
  color: var(--accent-dark); font-family: var(--serif); font-size: 1.3rem;
}
.placeholder.tall { aspect-ratio: 4 / 5; }

/* ===== About stats ===== */
.stats { list-style: none; display: flex; gap: 36px; margin-top: 28px; flex-wrap: wrap; }
.stats strong { display: block; font-family: var(--serif); font-size: 2.2rem; color: var(--accent); }
.stats span { font-size: .9rem; color: var(--muted); }

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(60, 40, 20, .08); }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.gallery img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }

/* ===== Process ===== */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.steps span {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 600; margin-bottom: 14px;
}

/* ===== Contact ===== */
.contact-list { list-style: none; margin-top: 24px; display: grid; gap: 10px; }
.contact-list a { color: var(--accent); }
.form {
  display: grid; gap: 16px; background: #fff; padding: 32px;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.form label { display: grid; gap: 6px; font-size: .9rem; font-weight: 500; }
.form input, .form select, .form textarea {
  font: inherit; padding: 11px 14px; border: 1px solid var(--line);
  border-radius: 8px; background: var(--bg);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }

/* ===== Footer ===== */
.footer { background: var(--text); color: #cfc5ba; padding: 28px 0; text-align: center; font-size: .9rem; }
.footer p { color: inherit; }

/* ===== Tablet ===== */
@media (max-width: 900px) {
  .cards, .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== Mobile ===== */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .cards, .gallery, .steps { grid-template-columns: 1fr; }
  .menu-icon { display: block; font-size: 1.6rem; cursor: pointer; }
  .menu {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 18px; padding: 24px;
    background: var(--bg); border-bottom: 1px solid var(--line);
  }
  .menu-toggle:checked ~ .menu { display: flex; }
}
