:root {
  --cream: #fbf6ef;
  --ink: #2a2521;
  --muted: #625a53;
  --cherry: #dfb0b0;
  --cherry-deep: #d29b9b;
  --stripe-a: #dfb0b0;
  --stripe-b: #fbe4e2;
  --sage: #dde5d3;
  --sage-ink: #3f4a38;

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-logo: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-script: "Sacramento", "Brush Script MT", cursive;
  --font-sans: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Logo */
.brand {
  position: absolute;
  z-index: 2;
  top: clamp(1.25rem, 3.5vh, 2.25rem);
  left: clamp(1.25rem, 3.5vw, 2.75rem);
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
  padding: 1.25rem 2.75rem;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  outline: 2.5px dashed var(--cherry);
  outline-offset: -12px;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-logo);
  line-height: 1;
  transform: rotate(-4deg);
  transition: transform 180ms ease;
}

.logo:hover {
  transform: rotate(-4deg) translateY(-1px);
}

.logo:focus-visible {
  outline-color: var(--ink);
}

.logo__word {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-left: 0.16em;
}

.logo__amp {
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--cherry);
  -webkit-text-stroke: 0.4px currentColor;
  margin: -0.05em 0;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
}

.panel {
  position: relative;
}

/* Copy panel */
.panel--copy {
  background: var(--cream);
  padding: clamp(2.5rem, 7vw, 5.5rem) clamp(1.5rem, 5.5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stamp {
  position: absolute;
  z-index: 1;
  top: clamp(2.75rem, 8vh, 4.5rem);
  right: clamp(2.5rem, 4vw, 4.5rem);
  margin: 0;
  padding: 0.8rem 1.8rem;
  border: 4px solid var(--cherry);
  border-radius: 10px;
  color: var(--cherry);
  font-size: clamp(0.95rem, 1.25vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(11deg);
  box-shadow: inset 0 0 0 2px var(--cream), inset 0 0 0 4px rgba(223, 176, 176, 0.35);
}

.handle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.handle__mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--cherry);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px -8px rgba(223, 176, 176, 0.6);
}

.handle__mark svg {
  width: 1.2rem;
  height: 1.2rem;
}

.handle:hover .handle__text {
  text-decoration: underline;
  text-decoration-color: var(--cherry);
  text-underline-offset: 3px;
}

.headline {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(3rem, 6.8vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.headline__accent {
  color: var(--cherry);
}

.lede {
  margin: 0 0 2.25rem;
  max-width: 42ch;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  background: var(--cherry);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 16px 30px -12px rgba(223, 176, 176, 0.55);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  background: var(--cherry-deep);
  transform: translateY(-1px);
  box-shadow: 0 20px 34px -12px rgba(223, 176, 176, 0.6);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.cta__note {
  margin: 0;
  font-family: var(--font-script);
  font-size: 1.85rem;
  font-weight: 700;
  -webkit-text-stroke: 0.6px currentColor;
  line-height: 1;
  color: var(--cherry);
  transform: rotate(-6deg) translateY(-0.15em);
}

/* Photo panel */
.panel--photo {
  background: repeating-linear-gradient(
    45deg,
    var(--stripe-a) 0 22px,
    var(--stripe-b) 22px 44px
  );
  display: grid;
  place-items: center;
  padding: clamp(4rem, 12vh, 7rem) clamp(1.5rem, 4vw, 3rem);
}

.frame {
  position: relative;
  height: min(68svh, 600px);
  aspect-ratio: 4 / 5;
  max-width: 100%;
}

.arch {
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px 999px 28px 28px;
  border: 10px solid #fff;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px -28px rgba(74, 32, 36, 0.45);
}

.arch picture,
.arch img {
  display: block;
  width: 100%;
  height: 100%;
}

.arch img {
  object-fit: cover;
  object-position: 55% center;
}

.tag {
  position: absolute;
  top: clamp(1.25rem, 4vh, 2.5rem);
  right: clamp(1.25rem, 4vw, 2.5rem);
  margin: 0;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--sage-ink);
  font-size: 0.85rem;
  font-weight: 800;
  transform: rotate(4deg);
  box-shadow: 0 6px 14px -8px rgba(63, 74, 56, 0.5);
}

.tag__sun {
  margin-left: 0.15rem;
}

.badge {
  position: absolute;
  right: -3rem;
  bottom: -0.75rem;
  margin: 0;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: var(--cherry);
  color: #fff;
  font-family: var(--font-script);
  font-size: 1.45rem;
  line-height: 1.05;
  text-align: center;
  display: grid;
  place-items: center;
  transform: rotate(-12deg);
  box-shadow: 0 18px 34px -14px rgba(210, 155, 155, 0.7);
}

/* Responsive */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .panel--photo {
    order: -1;
    min-height: 62svh;
    padding: 8.5rem 1.5rem 4rem;
  }

  .frame {
    height: auto;
    width: min(74%, 340px);
  }

  .arch {
    border-width: 8px;
  }

  .badge {
    width: 6rem;
    height: 6rem;
    font-size: 1.25rem;
    right: -2rem;
    bottom: -0.5rem;
  }

  .panel--copy {
    padding: 3rem 1.5rem 3.5rem;
  }

  .logo {
    padding: 0.95rem 2rem;
  }

  .logo__word {
    font-size: 1rem;
  }

  .logo__amp {
    font-size: 1.55rem;
  }

  .stamp {
    position: static;
    display: inline-block;
    width: max-content;
    margin: 0 0 1.75rem;
    font-size: 0.7rem;
    transform: rotate(-4deg);
  }

  .handle {
    margin-bottom: 1.5rem;
  }

  .cta__note {
    font-size: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
