:root {
  --gold: #c7a83a;
  --gold-soft: #e7d79d;
  --ink: #3f3729;
  --ink-soft: #6c6252;
  --white: #ffffff;
  --surface: #faf7ef;
  --surface-strong: #f2ecd9;
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fffef9;
  line-height: 1.6;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #ebe4d3;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
}

.brand img {
  width: 96px;
}

nav {
  display: flex;
  gap: 14px;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--gold);
}

.hero {
  padding: 70px 0;
  background: linear-gradient(180deg, #fffdf7 0%, #f8f3e3 100%);
  border-bottom: 1px solid #eee2c1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 28px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 14px;
  line-height: 1.2;
}

.lead {
  color: var(--ink-soft);
  max-width: 58ch;
}

.btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--ink);
  color: #fff9ea;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(63, 55, 41, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(63, 55, 41, 0.22);
}

.hero-image {
  border-radius: var(--radius);
  min-height: 320px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(62, 53, 37, 0.18);
}

.section {
  padding: 72px 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  text-align: center;
  color: #5f4e28;
}

.section-note {
  text-align: center;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 10px auto 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid #ebdfbf;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 20px rgba(63, 55, 41, 0.08);
  text-align: center;
}

.logo-sub {
  width: 220px;
  margin: 0 auto 14px;
}

.section-alt {
  background: var(--surface-strong);
  color: var(--ink);
  border-top: 1px solid #e7d9b1;
  border-bottom: 1px solid #e7d9b1;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  background: #fbf7ea;
  border: 1px solid #e3d4aa;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 6px 18px rgba(63, 55, 41, 0.08);
}

.services h3 {
  color: #8e7332;
  margin-top: 0;
}

.services li {
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(63, 55, 41, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery img:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(63, 55, 41, 0.2);
}

.footer {
  background: #efe5c7;
  color: var(--ink);
  padding: 32px 0;
  border-top: 1px solid #dfcca0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer h3,
.footer h4 {
  color: #8e7332;
  margin: 0 0 8px;
}

.footer p {
  margin: 0 0 6px;
}

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .services,
  .gallery {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
  }

  nav {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
  }

  nav a {
    font-size: 0.9rem;
  }

  .brand img {
    width: 82px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
