:root {
  --ink: #161616;
  --paper: #f7f3ed;
  --cream: #fffaf2;
  --gold: #c6924b;
  --rose: #c96563;
  --green: #284f43;
  --shadow: 0 24px 70px rgba(22, 22, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(247, 243, 237, 0.88)),
    url("hero-pattern.svg");
  font-family: Manrope, Arial, sans-serif;
}

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

a:hover {
  color: var(--rose);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(18px, 4vw, 56px);
  place-items: center;
}

.hero {
  display: grid;
  width: min(1120px, 100%);
  min-height: min(760px, calc(100vh - 36px));
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(22, 22, 22, 0.12);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.hero__media {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: clamp(24px, 4vw, 48px);
  align-items: end;
  background:
    linear-gradient(160deg, rgba(40, 79, 67, 0.95), rgba(22, 22, 22, 0.96)),
    radial-gradient(circle at 20% 18%, rgba(201, 101, 99, 0.32), transparent 32%);
}

.hero__media::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(255, 250, 242, 0.28);
}

.fashion-panel {
  position: absolute;
  width: 42%;
  max-width: 230px;
  min-width: 135px;
  border: 1px solid rgba(255, 250, 242, 0.32);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.fashion-panel::before,
.fashion-panel::after {
  position: absolute;
  content: "";
}

.fashion-panel--one {
  top: 12%;
  left: 11%;
  aspect-ratio: 0.74;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 250, 242, 0.5) 43% 45%, transparent 46%),
    linear-gradient(145deg, var(--rose), #f1b0a1 48%, var(--gold));
}

.fashion-panel--one::before {
  top: 18%;
  left: 25%;
  width: 50%;
  height: 26%;
  border-radius: 50% 50% 8px 8px;
  background: rgba(255, 250, 242, 0.82);
}

.fashion-panel--two {
  right: 13%;
  bottom: 14%;
  aspect-ratio: 0.68;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.5) 6px, transparent 7px) 0 0 / 30px 30px,
    linear-gradient(145deg, #f4d38d, var(--gold));
}

.fashion-panel--two::before {
  top: 20%;
  left: 28%;
  width: 44%;
  height: 48%;
  border: 8px solid rgba(255, 250, 242, 0.78);
  border-bottom: 0;
  border-radius: 90px 90px 8px 8px;
}

.fashion-panel--three {
  right: 26%;
  top: 28%;
  width: 33%;
  aspect-ratio: 0.78;
  background:
    linear-gradient(90deg, transparent 46%, rgba(255, 250, 242, 0.45) 47% 49%, transparent 50%),
    linear-gradient(145deg, #f7f3ed, #a9beb0 54%, var(--green));
}

.fashion-panel--three::before {
  top: 17%;
  left: 31%;
  width: 38%;
  height: 16%;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.28);
}

.hero__content {
  display: flex;
  min-width: 0;
  padding: clamp(32px, 6vw, 76px);
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.6rem, 9vw, 7.6rem);
  line-height: 0.88;
}

.lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(22, 22, 22, 0.72);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  line-height: 1.7;
}

.status {
  display: inline-flex;
  width: fit-content;
  margin-top: 34px;
  padding: 12px 18px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(22, 22, 22, 0.14);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.status__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(201, 101, 99, 0.16);
}

.contact {
  display: flex;
  margin-top: 48px;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(22, 22, 22, 0.62);
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  .page-shell {
    padding: 0;
    place-items: stretch;
  }

  .hero {
    min-height: 100vh;
    border: 0;
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 42vh;
  }

  .hero__content {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }
}
