@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Homemade+Apple&family=Montserrat:wght@300;400;500&display=swap");

:root {
  color-scheme: light;
  --paper: #f8f4e8;
  --ink: #1a1a17;
  --olive: #777854;
  --terracotta: #a86d57;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.85), transparent 31rem),
    linear-gradient(115deg, rgba(119, 120, 84, 0.035), transparent 42%),
    var(--paper);
  font-family: "Cormorant Garamond", Georgia, serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.landing {
  min-height: 100svh;
}

.hero {
  width: min(100%, 880px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 6.5rem) clamp(1.5rem, 7vw, 5rem) 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-mark {
  width: clamp(200px, 38vw, 330px);
  color: #11110f;
  animation: reveal 1.1s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.monogram {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.letter {
  stroke-width: 7;
}

.leaf {
  color: var(--olive);
  stroke-width: 1.55;
}

.hero-copy {
  width: min(100%, 670px);
  margin-top: clamp(0.5rem, 2vh, 1.5rem);
  animation: rise 0.9s 0.2s ease-out both;
}

h1 {
  margin: 0 0 clamp(2.25rem, 6vh, 4.25rem);
  font-family: "Homemade Apple", "Segoe Print", cursive;
  font-size: clamp(1.65rem, 4.6vw, 3rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

p {
  margin: 0 auto 1.15rem;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 400;
  line-height: 1.48;
  text-wrap: balance;
}

.intro {
  margin-bottom: 1.55rem;
}

strong {
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.signature {
  margin: 1.35rem 0 2.5rem;
  font-size: 1.35rem;
}

.heart {
  margin-left: 0.3rem;
  color: var(--terracotta);
}

@keyframes reveal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

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

@media (max-height: 760px) and (min-width: 600px) {
  .hero { padding-top: 2rem; }
  .brand-mark { width: 210px; }
  h1 { margin-bottom: 1.75rem; }
  p { font-size: 1.13rem; }
}

@media (min-width: 980px) {
  .hero {
    width: min(100%, 1500px);
    padding: clamp(3rem, 7vh, 5.5rem) clamp(4rem, 8vw, 9rem);
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
    column-gap: clamp(4rem, 8vw, 10rem);
    align-items: center;
  }

  .brand-mark {
    width: min(100%, 520px);
    justify-self: end;
  }

  .hero-copy {
    width: min(100%, 720px);
    margin-top: 0;
    justify-self: start;
  }

  h1 {
    margin-bottom: clamp(2rem, 5vh, 3.5rem);
    font-size: clamp(2.25rem, 3.3vw, 3.7rem);
  }

  p {
    font-size: clamp(1.25rem, 1.55vw, 1.65rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
