:root {
  --paper: #f3efe6;
  --paper-2: #fffdf8;
  --ink: #1c1915;
  --muted: #746d61;
  --line: #ddd4c4;
  --accent: #9c3b16;
  --accent-hover: #7f2e10;
  --accent-soft: #f3e0d2;
  --shadow: 0 18px 40px rgba(48, 36, 20, 0.07);
  --sans: 'Outfit', 'Segoe UI', sans-serif;
  --serif: 'Fraunces', 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--ink);
  background:
    radial-gradient(1200px 420px at 10% -10%, #fff8ec 0%, transparent 50%),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

.wrap {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 230, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
}

.hero {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 80px 0;
}

.hero .wrap {
  max-width: 720px;
}

.hero h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero p.lede {
  max-width: 58ch;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
}

.examples {
  max-width: 42ch;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.examples li {
  padding: 0 0 0 12px;
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.examples li + li {
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: var(--accent);
  color: #fffaf4;
  font-weight: 600;
}

.btn:hover {
  background: var(--accent-hover);
  color: #fffaf4;
}

.btn-icon {
  width: 22px;
  height: 22px;
}

footer {
  margin-top: auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  flex: 1;
  padding: 72px 0 80px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.contact-card img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent-soft);
}

.contact-card h1 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 520;
  letter-spacing: -0.03em;
}

.contact-card .company {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 600;
}

.back {
  display: inline-flex;
  margin-top: 22px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 36px, 1180px);
  }

  .hero {
    padding: 56px 0;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card img {
    width: 128px;
    height: 128px;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }
}
