:root {
  --maroon: #6b1822;
  --dark: #351014;
  --gold: #c49a56;
  --cream: #fffaf3;
  --muted: #786264;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: "DM Sans", Arial, sans-serif;
}

.page {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 34px clamp(28px, 6vw, 92px) 26px;
  background:
    radial-gradient(circle at 90% 15%, rgba(196,154,86,.11), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,250,243,.96));
}

.page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--maroon);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(107,24,34,.5);
  border-radius: 50%;
  color: var(--maroon);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
  font-weight: 700;
}

.brand-name {
  color: var(--maroon);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .28em;
  line-height: 1;
}

.brand-country {
  margin-top: 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .35em;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(1320px, 100%);
  margin: auto 0;
  padding: 50px 0 42px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--maroon);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .30em;
}

h1 {
  margin: 0;
  max-width: 1320px;
  color: var(--dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 6.1vw, 88px);
  line-height: 1.03;
  letter-spacing: -.04em;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.tagline {
  max-width: 820px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.85vw, 25px);
  line-height: 1.55;
}

.separator {
  width: 250px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 38px 0 18px;
}

.separator span {
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.separator i {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.signature {
  margin: 0;
  color: var(--maroon);
  font-family: "Great Vibes", cursive;
  font-size: clamp(48px, 4.5vw, 68px);
  line-height: 1.1;
}

.watermark {
  position: absolute;
  z-index: 0;
  right: -2vw;
  bottom: -10vh;
  color: rgba(107,24,34,.035);
  font-family: "Playfair Display", serif;
  font-size: clamp(180px, 26vw, 390px);
  font-weight: 700;
  white-space: nowrap;
  user-select: none;
}

footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(53,16,20,.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  h1 {
    font-size: clamp(48px, 5.7vw, 66px);
  }

  .hero {
    padding-top: 42px;
  }
}

@media (max-width: 900px) {
  .page {
    padding-left: 42px;
    padding-right: 42px;
  }

  h1 {
    font-size: clamp(43px, 6.2vw, 57px);
    line-height: 1.04;
  }

  h1 span {
    white-space: normal;
  }

  .tagline {
    max-width: 700px;
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 26px 22px 22px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }

  .brand-name {
    font-size: 15px;
  }

  .hero {
    padding: 52px 0 36px;
  }

  h1 {
    font-size: clamp(39px, 11vw, 51px);
    line-height: 1.02;
  }

  h1 span {
    display: inline;
  }

  .tagline {
    margin-top: 24px;
    font-size: 17px;
  }

  .separator {
    width: 210px;
    margin-top: 32px;
  }

  .signature {
    font-size: 47px;
  }

  footer {
    flex-direction: column;
    gap: 7px;
  }
}
