:root {
  --bg: #f7f3ef;
  --panel: #ffffff;
  --text: #1f1a17;
  --muted: #5f5248;
  --accent: #b07d42;
  --border: #e2d6cc;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --max-width: 1100px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "SF Pro Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, #fdf8f3, #f7f3ef 45%),
              radial-gradient(circle at 80% 0%, #f8f3ec, #f7f3ef 40%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.hero {
  min-height: 90vh;
  padding: 32px 24px 64px;
  position: relative;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.04);
}

.hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 16px 0;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  margin: 12px 0 16px;
  letter-spacing: -0.03em;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--text);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 30px rgba(31, 26, 23, 0.2);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(31, 26, 23, 0.25);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.button.ghost:hover {
  border-color: #cbb9a9;
  transform: none;
}

.hero__badge {
  position: absolute;
  right: 32px;
  bottom: 32px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--muted);
}

.section {
  padding: 72px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  max-width: 760px;
  margin-bottom: 32px;
}

.section h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4.5vw, 40px);
  letter-spacing: -0.02em;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
}

.process .steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: #fdfaf6;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  align-items: start;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.step__number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--text);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.gallery__item {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery__image {
  position: relative;
  padding-top: 65%;
  background-size: cover;
  background-position: center;
}

.gallery__image.placeholder {
  background: repeating-linear-gradient(135deg, #f1e7df, #f1e7df 12px, #e6d8cd 12px, #e6d8cd 24px);
}

.gallery__caption {
  padding: 14px 16px 16px;
  font-weight: 600;
}

.about {
  background: #fdfaf6;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 48px 32px;
}

.about__content {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.about__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about__card h3 {
  margin-top: 0;
}

.about__card ul {
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  background: var(--text);
  color: #f9f4ee;
  padding: 64px 24px 32px;
  margin-top: 72px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.footer__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .button {
  background: #f1e7df;
  color: var(--text);
  box-shadow: none;
}

.footer .button.ghost {
  color: #f9f4ee;
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.footer__meta {
  max-width: var(--max-width);
  margin: 24px auto 0;
  color: rgba(249, 244, 238, 0.7);
  font-size: 14px;
}

@media (max-width: 720px) {
  .nav nav {
    gap: 8px;
  }
  .hero__badge {
    position: static;
    margin-top: 32px;
  }
  .hero__content {
    padding-top: 16px;
  }
}

