:root {
  --bg: #f6efe9;
  --surface: rgba(255, 251, 247, 0.7);
  --surface-strong: rgba(255, 250, 245, 0.9);
  --text: #3f342e;
  --muted: #746760;
  --accent: #b88c7d;
  --accent-soft: #ead9d0;
  --line: rgba(136, 112, 101, 0.1);
  --shadow-soft: 0 18px 45px rgba(90, 68, 58, 0.05);
  --shadow-subtle: 0 10px 24px rgba(90, 68, 58, 0.035);
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #fbf6f1 0%, transparent 35%),
    radial-gradient(circle at top right, #efe3da 0%, transparent 28%),
    linear-gradient(180deg, #f8f2ec 0%, #f3ece5 100%);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero {
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(180deg, #f6efe8 0%, #f5efe8 100%);
}

.hero-shell,
.contact-shell,
.section-flow {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.8rem;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.38rem 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
  background: rgba(255, 251, 247, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-subtle);
}

h1,
h2,
h3 {
  line-height: 1.14;
  margin: 0 0 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.badge {
  border: 1px solid rgba(136, 112, 101, 0.12);
  background: rgba(255, 251, 247, 0.88);
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-subtle);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid rgba(90, 68, 58, 0.14);
  background: rgba(255, 251, 247, 0.82);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 26px rgba(90, 68, 58, 0.045);
}

.button.primary {
  background: linear-gradient(180deg, #b88c7d 0%, #a97c6f 100%);
  color: #fffaf7;
  border-color: transparent;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(90, 68, 58, 0.08);
  background: var(--surface-strong);
}

.portrait {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
}

.portrait-soft {
  border-radius: 38px;
  box-shadow: 0 24px 54px rgba(90, 68, 58, 0.08);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

section {
  padding: 5rem 0;
}

.section-head,
.contact-intro {
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

.muted {
  color: var(--muted);
}

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

.soft-panels,
.contact-soft-grid {
  align-items: start;
}

.soft-panel {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.78) 0%, rgba(255, 248, 243, 0.55) 100%);
  border: 1px solid rgba(136, 112, 101, 0.08);
  border-radius: 36px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.soft-panel-strong {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.88) 0%, rgba(255, 248, 243, 0.72) 100%);
}

.soft-note {
  padding: 1rem 0.4rem 0 0.4rem;
}

ul.clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.clean li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
}

ul.clean li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.contact-list {
  display: grid;
  gap: 0.95rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

footer {
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid rgba(136, 112, 101, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .hero-grid,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .portrait {
    max-width: 320px;
  }

  .portrait-soft,
  .soft-panel {
    border-radius: 28px;
  }

  section {
    padding: 3.2rem 0;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }
}