:root {
  --bg: #f4efe7;
  --text: #191713;
  --muted: #6f675c;
  --cream: #fffaf1;
  --border: rgba(25, 23, 19, 0.16);
  --dark: #191713;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.9), transparent 28%),
    linear-gradient(135deg, #f4efe7 0%, #e8dfd2 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  padding: 34px 7vw 26px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto 1fr auto;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.navbar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  letter-spacing: 0.28em;
  font-size: 24px;
  font-weight: 600;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  font-size: 14px;
}

.content {
  align-self: center;
  max-width: 680px;
  padding-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 22px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  margin: 0 0 28px;
  font-weight: 700;
}

.subtitle {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
  max-width: 570px;
  margin: 0 0 34px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 14px;
  transition: 0.2s ease;
}

.primary {
  background: var(--dark);
  color: var(--cream);
}

.secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.28);
}

.btn:hover {
  transform: translateY(-2px);
}

.note {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.note span {
  width: 48px;
  height: 1px;
  background: var(--text);
  display: inline-block;
}

.visual {
  position: relative;
  align-self: center;
  min-height: 580px;
}

.card {
  position: absolute;
  border: 1px solid var(--border);
  background: rgba(255, 250, 241, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(25, 23, 19, 0.12);
}

.card-one {
  width: min(370px, 76vw);
  height: 520px;
  right: 8%;
  top: 0;
  border-radius: 210px 210px 24px 24px;
  overflow: hidden;
}

.fabric {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(140deg, #d6c5ad, #fff6e8 48%, #9e8970);
  background-size: 22px 22px, 22px 22px, cover;
}

.card-two {
  width: 220px;
  height: 260px;
  left: 4%;
  bottom: 20px;
  border-radius: 120px 120px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-two p {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 0.95;
  text-align: center;
  margin: 0;
}

.line {
  position: absolute;
  width: 1px;
  height: 72%;
  background: rgba(25, 23, 19, 0.24);
  right: 0;
  top: 14%;
}

footer {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .content {
    padding-top: 60px;
  }

  .visual {
    min-height: 420px;
  }

  .card-one {
    height: 380px;
    right: 0;
  }

  .card-two {
    width: 170px;
    height: 210px;
    left: 0;
  }

  .card-two p {
    font-size: 32px;
  }
}

@media (max-width: 520px) {
  .navbar {
    align-items: flex-start;
  }

  .nav-link {
    font-size: 13px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .visual {
    min-height: 360px;
  }

  .card-one {
    width: 78vw;
    height: 330px;
  }

  .card-two {
    width: 145px;
    height: 180px;
  }
}
