:root {
  --bg: #f7f7f9;
  --text: #222222;
  --accent: #c06a7f;
  --accent-soft: #f5e1e7;
  --card: #ffffff;
  --border: #e1e1e6;
  --muted: #666a73;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */

.site-header {
  padding: 24px 20px 0;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

nav a {
  margin-left: 16px;
  font-size: 14px;
  color: var(--muted);
}

/* Hero */

.hero {
  max-width: 1080px;
  margin: 16px auto 40px;
  padding: 32px 20px 40px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-size: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--muted);
  max-width: 540px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
}

.badge {
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
}

.hero-photo {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */

.section {
  max-width: 1080px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.section-header {
  margin-bottom: 20px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 4px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--muted);
}

/* Layouts */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px 18px;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

ul {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
}

li {
  margin-bottom: 6px;
  color: var(--muted);
}

/* Grid for modeling */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.thumb {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 10px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
}

.thumb-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--accent-soft);
}

.thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 4px;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 24px;
  align-items: flex-start;
}

form {
  display: grid;
  gap: 12px;
}

.field label {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 8px 10px;
  font-size: 14px;
  font-family: var(--font-main);
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */

.site-footer {
  max-width: 1080px;
  margin: 20px auto 32px;
  padding: 0 20px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  nav a {
    margin-left: 0;
    margin-right: 16px;
    margin-top: 8px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
