* { box-sizing: border-box; }
:root {
  --bg: #f6f0e8;
  --ink: #211d1a;
  --muted: #756a60;
  --line: #ddd0c2;
  --accent: #9b4a25;
  --card: #fffaf4;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(246, 240, 232, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { font-family: Georgia, serif; font-size: 22px; text-decoration: none; color: var(--ink); letter-spacing: .04em; }
nav { display: flex; gap: 22px; }
nav a { color: var(--ink); text-decoration: none; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 7vw, 100px) clamp(20px, 4vw, 56px);
}
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; }
h1, h2 { font-family: Georgia, serif; font-weight: 500; line-height: .98; margin: 0; }
h1 { font-size: clamp(42px, 7vw, 92px); max-width: 820px; }
h2 { font-size: clamp(32px, 4vw, 58px); }
.intro { font-size: clamp(17px, 2vw, 22px); color: var(--muted); line-height: 1.55; max-width: 680px; }
.button { display: inline-block; margin-top: 18px; padding: 14px 20px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); text-decoration: none; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 700; }
.button:hover, .button.secondary { background: var(--ink); color: var(--bg); }
.hero-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hero-grid img { width: 100%; height: clamp(190px, 24vw, 340px); object-fit: cover; border-radius: 18px; box-shadow: 0 18px 48px rgba(47, 32, 20, .16); }
.hero-grid img:nth-child(2), .hero-grid img:nth-child(3) { transform: translateY(34px); }
.section { padding: clamp(44px, 7vw, 96px) clamp(20px, 4vw, 56px); border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter { border: 1px solid var(--line); background: var(--card); padding: 10px 14px; border-radius: 999px; cursor: pointer; color: var(--ink); }
.filter.active, .filter:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.gallery { columns: 4 260px; column-gap: 18px; }
.card { break-inside: avoid; margin: 0 0 18px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 12px 34px rgba(47, 32, 20, .08); }
.card img { width: 100%; display: block; }
.card figcaption { display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px; color: var(--muted); font-size: 13px; }
.card figcaption span { color: var(--ink); font-weight: 700; }
.card[hidden] { display: none; }
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 5vw, 76px); align-items: start; }
.about p:last-child, .contact p { color: var(--muted); font-size: 19px; line-height: 1.65; max-width: 850px; }
.contact { text-align: center; }
.contact h2, .contact p { margin-left: auto; margin-right: auto; }
footer { padding: 28px 56px; color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 850px) {
  .hero, .about { grid-template-columns: 1fr; }
  .hero-grid img:nth-child(2), .hero-grid img:nth-child(3) { transform: none; }
  .section-heading { display: block; }
  nav { gap: 12px; }
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
