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

:root {
  --cream: #faf7f2;
  --warm: #e8dfd0;
  --terracota: #b97a5a;
  --dark: #2c2418;
  --mid: #7a6a55;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Grain texture overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* Layout */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* Image side */
.image-side {
  flex-shrink: 0;
}

.image-frame {
  width: 320px;
  height: 420px;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  background-color: var(--warm);
  position: relative;
  box-shadow: 0 20px 60px rgba(44, 36, 24, 0.12);
}

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

.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--terracota);
  opacity: 0.5;
}

/* When image loads, hide placeholder */
.image-frame img + .image-placeholder {
  display: none;
}

/* Content side */
.content-side {
  max-width: 480px;
}

.badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracota);
  border: 1px solid var(--terracota);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.title {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 10px;
}

.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--mid);
  margin-bottom: 28px;
}

.divider {
  width: 48px;
  height: 1px;
  background-color: var(--terracota);
  margin-bottom: 28px;
  opacity: 0.6;
}

.message {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 40px;
}

.cta {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background-color: var(--terracota);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  background-color: var(--dark);
  transform: translateY(-1px);
}

/* Footer */
footer {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--mid);
  opacity: 0.6;
  border-top: 1px solid var(--warm);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 40px;
    padding: 48px 24px;
    text-align: center;
  }

  .image-frame {
    width: 220px;
    height: 290px;
  }

  .name {
    font-size: 42px;
  }

  .divider {
    margin: 0 auto 28px;
  }
}
