.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100svh - 4.5rem);
}

.hero-copy {
  animation: rise-in 0.9s var(--ease) both;
}

.hero-visual {
  animation: rise-in 1.1s var(--ease) 0.15s both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-mark {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.brand-sub {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--brown);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
  max-width: 22ch;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 36ch;
  margin-bottom: 2rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  clip-path: polygon(2% 8%, 98% 0%, 100% 92%, 4% 100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 4px 8px 0 var(--ochre-wash);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
  clip-path: polygon(0% 6%, 97% 0%, 100% 94%, 3% 100%);
}

.btn-ghost:hover {
  background: var(--wash-warm);
  transform: translateY(-2px);
}

.portrait {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  aspect-ratio: 4 / 5;
}

.portrait-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2px 46% 2px 40% / 2px 8% 2px 12%;
  background: linear-gradient(160deg, var(--paper-deep) 0%, #e5dccb 100%);
}

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

.portrait-ink {
  position: absolute;
  inset: -12px -10px -14px -14px;
  pointer-events: none;
  z-index: 2;
}

.portrait-ink path {
  fill: none;
  stroke: var(--line);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.45;
}

.portrait-ink .accent {
  stroke: var(--ochre);
  stroke-width: 2;
  opacity: 0.65;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: draw-line 1.6s var(--ease) 0.5s forwards;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
