:root {
  --bg: #f7efe8;
  --bg-soft: #fdf7f1;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --text: #2f2a24;
  --muted: #6f675d;
  --line: rgba(95, 78, 58, 0.14);
  --accent: #a96f52;
  --accent-2: #8aa67f;
  --accent-soft: #f3e6db;
  --shadow: 0 18px 45px rgba(78, 60, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(169, 111, 82, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(138, 166, 127, 0.17), transparent 24%),
    linear-gradient(135deg, var(--bg) 0%, #fdf7f1 45%, #f5ebdf 100%);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(95, 78, 58, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(95, 78, 58, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 90%);
  z-index: -1;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.site-shell {
  width: min(1180px, calc(100% - 30px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 240, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  padding: 4px;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 62px 0 44px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-card h2 {
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  max-width: 620px;
}

.hero-text,
.section-heading p,
.service-card p,
.step-card p,
.team-card p,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #c08a68);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(169, 111, 82, 0.2);
}

.button:hover {
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}

.hero-note {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.hero-note p {
  margin: 0;
}

.hero-visual {
  position: relative;
}

.hero-card,
.service-card,
.step-card,
.team-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card {
  padding: 16px;
}

.hero-card img {
  height: 430px;
  border-radius: 18px;
}

.hero-card-content {
  padding: 16px 6px 6px;
}

.tiny {
  margin: 0 0 4px;
  color: var(--accent-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-card h3,
.service-card h3,
.step-card h3,
.team-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.section {
  padding: 48px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-heading h2,
.contact-card h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
}

.services-grid,
.steps-grid,
.team-grid {
  display: grid;
  gap: 16px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 22px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  padding: 22px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  padding: 22px;
}

.team-card a,
.contact-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero,
  .services-grid,
  .steps-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .topbar {
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 247, 240, 0.96);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-card img {
    height: 300px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
