:root {
  --paper: #f7f3eb;
  --ink: #20231d;
  --moss: #51624b;
  --sage: #aeb99b;
  --petal: #d69aa4;
  --wine: #6f2f3d;
  --clay: #b66b52;
  --line: rgba(32, 35, 29, 0.14);
  --shadow: 0 24px 70px rgba(32, 35, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.ambient-stems {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ambient-stems span {
  position: absolute;
  bottom: -20vh;
  width: 1px;
  height: 60vh;
  background: linear-gradient(transparent, rgba(81, 98, 75, 0.26), transparent);
  transform-origin: bottom;
}

.ambient-stems span:nth-child(1) { left: 8%; transform: rotate(-12deg); }
.ambient-stems span:nth-child(2) { left: 28%; height: 76vh; transform: rotate(8deg); }
.ambient-stems span:nth-child(3) { left: 52%; transform: rotate(-5deg); }
.ambient-stems span:nth-child(4) { left: 76%; height: 72vh; transform: rotate(10deg); }
.ambient-stems span:nth-child(5) { left: 92%; transform: rotate(-8deg); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 54px);
  color: var(--paper);
  mix-blend-mode: difference;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 12px;
  height: 28px;
  border-radius: 50% 50% 2px 2px;
  background: currentColor;
  transform: rotate(25deg);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 9px 15px;
  border-radius: 999px;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) 44px;
}

.hero-copy {
  min-width: 0;
  padding-bottom: 8vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 680;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.88;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.95;
}

h3 {
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.05;
}

.hero-text {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(32, 35, 29, 0.72);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
}

.button.ghost {
  background: transparent;
}

.hero-media {
  position: relative;
  min-height: min(76vh, 820px);
  overflow: hidden;
  border-radius: 2px 2px 160px 2px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(32, 35, 29, 0.1));
}

.hero-media img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 178px;
  padding: 18px;
  color: var(--paper);
  background: rgba(32, 35, 29, 0.76);
  backdrop-filter: blur(14px);
}

.hero-note span,
.product span,
.service-card p {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 6px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 29px;
  line-height: 0.95;
}

.intro,
.contact {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 6vw, 110px);
  padding: clamp(82px, 12vw, 160px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.intro > p,
.compose-copy p,
.contact h2 + p {
  margin: 0;
  color: rgba(32, 35, 29, 0.7);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
}

.composition {
  position: relative;
  z-index: 1;
  min-height: 220vh;
}

.compose-stage {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: center;
  padding: 40px clamp(18px, 5vw, 72px);
  background: #e8e3d6;
  overflow: hidden;
}

.compose-copy {
  max-width: 520px;
}

.bouquet {
  position: relative;
  height: min(78vh, 760px);
  min-height: 520px;
}

.stem,
.leaf,
.flower,
.ribbon {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform-origin: bottom center;
}

.stem {
  width: 7px;
  height: 60%;
  border-radius: 999px;
  background: linear-gradient(#6f7f58, #394b36);
}

.s1 { transform: translateX(-20px) rotate(-18deg); }
.s2 { transform: translateX(0) rotate(6deg); height: 70%; }
.s3 { transform: translateX(24px) rotate(18deg); height: 64%; }
.s4 { transform: translateX(12px) rotate(-4deg); height: 76%; }

.leaf {
  width: 110px;
  height: 46px;
  border-radius: 90% 6%;
  background: linear-gradient(135deg, #8a9b6c, #415638);
}

.l1 { bottom: 34%; transform: translateX(-92px) rotate(-26deg); }
.l2 { bottom: 42%; transform: translateX(22px) rotate(34deg) scale(0.9); }
.l3 { bottom: 25%; transform: translateX(8px) rotate(18deg) scale(0.74); }

.flower {
  width: 150px;
  height: 150px;
  border-radius: 50% 50% 44% 56%;
  background:
    radial-gradient(circle at 50% 50%, #ead0b6 0 12%, transparent 13%),
    radial-gradient(circle at 34% 34%, #d88596 0 28%, transparent 29%),
    radial-gradient(circle at 66% 38%, #bb5f77 0 28%, transparent 29%),
    radial-gradient(circle at 40% 70%, #e4a9ad 0 31%, transparent 32%),
    radial-gradient(circle at 70% 68%, #9e415b 0 27%, transparent 28%);
  filter: drop-shadow(0 18px 20px rgba(32, 35, 29, 0.14));
}

.flower i {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: #d5a35b;
}

.f1 { bottom: 64%; transform: translateX(-142px) rotate(-15deg); }
.f2 { bottom: 70%; transform: translateX(8px) rotate(11deg) scale(1.1); }
.f3 { bottom: 55%; transform: translateX(112px) rotate(18deg) scale(0.86); }
.f4 { bottom: 48%; transform: translateX(-12px) rotate(-5deg) scale(0.78); background-color: #f0ded5; }

.ribbon {
  width: 150px;
  height: 34px;
  bottom: 13%;
  border-radius: 999px;
  background: var(--wine);
  transform: translateX(-50%) rotate(-4deg);
}

.services,
.collection,
.quote-band {
  position: relative;
  z-index: 1;
  padding: clamp(78px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--ink);
  color: var(--paper);
}

.service-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(247, 243, 235, 0.16);
}

.service-card img {
  height: 68%;
  object-fit: cover;
  filter: saturate(0.88);
}

.service-card div {
  padding: 24px;
}

.service-card p,
.product span {
  color: var(--petal);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.collection-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.product img {
  aspect-ratio: 4 / 5;
  height: auto;
  margin-bottom: 18px;
  object-fit: cover;
}

.product h3 {
  margin: 10px 0 18px;
}

.product p {
  margin: 0;
  color: rgba(32, 35, 29, 0.62);
  font-weight: 700;
}

.quote-band {
  min-height: 70vh;
  display: grid;
  place-items: center;
  color: var(--paper);
  background:
    linear-gradient(rgba(32, 35, 29, 0.38), rgba(32, 35, 29, 0.48)),
    url("https://images.unsplash.com/photo-1508610048659-a06b669e3321?auto=format&fit=crop&w=1800&q=82") center/cover fixed;
}

.quote-band p {
  max-width: 980px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.98;
  text-align: center;
}

.contact {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.38);
  font: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: rgba(32, 35, 29, 0.62);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    max-width: 210px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero,
  .intro,
  .compose-stage,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding-top: 104px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-media {
    min-height: 58vh;
    border-radius: 2px 2px 90px 2px;
  }

  .compose-stage {
    min-height: 100svh;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .bouquet {
    min-height: 480px;
    height: 58vh;
  }

  .services,
  .collection-track {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 470px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    background: #efe8dd;
  }

  .grain {
    opacity: 0.16;
  }

  .site-header {
    padding: 18px 16px;
  }

  .brand {
    font-size: 14px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 100svh;
    align-items: flex-end;
    padding: 92px 18px 22px;
    isolation: isolate;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    width: 100%;
    color: var(--paper);
    padding: 0 0 16px;
  }

  .hero-copy .eyebrow {
    color: #f0d0d6;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(50px, 15.6vw, 72px);
    line-height: 0.88;
    text-wrap: balance;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.32);
  }

  .hero-text {
    max-width: 92%;
    margin-top: 18px;
    color: rgba(247, 243, 235, 0.88);
    font-size: 16px;
    line-height: 1.55;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.36);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    min-height: 100%;
    border-radius: 0 0 78px 0;
    box-shadow: none;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(19, 24, 18, 0.08) 0%, rgba(19, 24, 18, 0.34) 44%, rgba(19, 24, 18, 0.72) 100%),
      radial-gradient(circle at 22% 72%, rgba(214, 154, 164, 0.34), transparent 34%);
  }

  .hero-media img {
    min-height: 100svh;
    object-position: 58% center;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button.primary {
    border-color: var(--paper);
    color: var(--ink);
    background: var(--paper);
  }

  .button.ghost {
    border-color: rgba(247, 243, 235, 0.64);
    color: var(--paper);
    backdrop-filter: blur(10px);
    background: rgba(247, 243, 235, 0.08);
  }

  .hero-note {
    left: 14px;
    right: auto;
    top: 82px;
    bottom: auto;
    width: 142px;
    padding: 14px;
    background: rgba(247, 243, 235, 0.15);
    border: 1px solid rgba(247, 243, 235, 0.34);
  }

  .hero-note strong {
    font-size: 23px;
  }

  .intro,
  .contact,
  .services,
  .collection,
  .quote-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro {
    padding-top: 72px;
    background: #efe8dd;
  }

  .intro h2,
  .compose-copy h2,
  .section-heading h2,
  .contact h2 {
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 0.98;
  }

  .composition {
    min-height: 250vh;
  }

  .compose-stage {
    align-content: space-between;
    min-height: 100svh;
    padding: 74px 18px 32px;
    background:
      linear-gradient(180deg, #ded9ca 0%, #eee6d9 100%);
  }

  .compose-copy {
    max-width: 100%;
  }

  .compose-copy p:not(.eyebrow) {
    max-width: 94%;
    font-size: 16px;
    line-height: 1.55;
  }

  .bouquet {
    width: min(100%, 390px);
    min-height: 430px;
    height: 50vh;
    margin: 0 auto;
    transform: translateY(8px);
  }

  .flower {
    width: 112px;
    height: 112px;
  }

  .f1 { transform: translateX(-108px) rotate(-15deg); }
  .f3 { transform: translateX(76px) rotate(18deg) scale(0.86); }

  .services {
    gap: 14px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .service-card {
    min-height: 420px;
    border-color: rgba(247, 243, 235, 0.24);
  }

  .service-card img {
    height: 66%;
  }

  .service-card div {
    padding: 20px;
  }

  .collection {
    background: #f7f3eb;
  }

  .product {
    padding-top: 14px;
  }

  .product img {
    aspect-ratio: 5 / 6;
  }

  .quote-band {
    min-height: 82vh;
    background-attachment: scroll;
  }

  .quote-band p {
    font-size: clamp(44px, 13vw, 62px);
    text-align: left;
  }
}

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