:root {
  --deep-ocean: #0e2131;

  --soft-pearl: #f4f5f7;

  --velvet-gold: #ac9653;

  --silver-mist: #afb5c4;

  --white: #ffffff;

  --text-muted: rgba(244, 245, 247, 0.76);

  --border-soft: rgba(244, 245, 247, 0.16);

  --gold-soft: rgba(172, 150, 83, 0.25);
}

* {
  box-sizing: border-box;

  margin: 0;

  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  font-family: "Urbanist", system-ui, sans-serif;

  color: var(--deep-ocean);

  background:
    radial-gradient(
      circle at top left,

      rgba(172, 150, 83, 0.12),
      transparent 28rem
    ),
    radial-gradient(
      circle at bottom right,

      rgba(175, 181, 196, 0.28),
      transparent 26rem
    ),
    linear-gradient(135deg, #f9f9f8 0%, var(--soft-pearl) 52%, #eceff3 100%);

  overflow-x: hidden;
}

.page-shell {
  position: relative;

  min-height: 100vh;

  display: grid;

  place-items: center;

  padding: 28px;
}

.page-shell::before,
.page-shell::after {
  content: "";

  position: fixed;

  pointer-events: none;

  z-index: 0;
}

.page-shell::before {
  inset: 22px;

  border: 1px solid rgba(244, 245, 247, 0.12);
}

.page-shell::after {
  width: 520px;

  height: 520px;

  right: -210px;

  top: -180px;

  border-radius: 999px;

  border: 1px solid rgba(172, 150, 83, 0.24);

  box-shadow: 0 0 100px rgba(172, 150, 83, 0.08);
}

.hero {
  position: relative;

  z-index: 1;

  width: min(1120px, 100%);

  display: grid;

  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);

  gap: clamp(32px, 6vw, 88px);

  align-items: center;

  padding: clamp(28px, 5vw, 64px);

  border: 1px solid var(--border-soft);

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(22px);

  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.brand-mark {
  margin-bottom: clamp(48px, 8vw, 92px);
}

.eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 22px;

  color: var(--velvet-gold);

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.22em;

  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  width: 48px;

  height: 1px;

  background: var(--velvet-gold);
}

h1 {
  max-width: 720px;

  font-family: "Playfair Display", Georgia, serif;

  font-size: clamp(54px, 8vw, 112px);

  line-height: 0.9;

  font-weight: 500;

  letter-spacing: -0.055em;
}

h1 em {
  display: block;

  color: var(--velvet-gold);

  font-style: italic;

  font-weight: 400;
}

.intro {
  max-width: 570px;

  margin-top: 28px;

  color: rgba(14, 33, 49, 0.72);

  font-size: clamp(17px, 1.55vw, 20px);

  line-height: 1.75;
}

.intro strong {
  color: var(--deep-ocean);

  font-weight: 600;
}

.intro_wrapper {
  display: flex;
  flex-direction: column;
}

.actions {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 38px;
}

p#intro_1 {
  order: 1;
}
div#buttons_1 {
  order: 2;
}
p#intro_2 {
  order: 3;
}

@media (min-width: 767px) {
  p#intro_1 {
    order: 1;
  }
  div#buttons_1 {
    order: 3;
  }
  p#intro_2 {
    order: 2;
  }
}

.button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 52px;

  padding: 0 24px;

  border: 1px solid var(--velvet-gold);

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.button.primary {
  background: var(--velvet-gold);

  color: var(--deep-ocean);
}

.button.secondary {
  color: var(--deep-ocean);

  background: transparent;
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary:hover {
  background: var(--velvet-gold);

  color: var(--deep-ocean);
}

.visual-card {
  position: relative;

  min-height: 610px;

  display: flex;

  align-items: flex-end;

  padding: 28px;

  overflow: hidden;

  border: 1px solid rgba(14, 33, 49, 0.08);

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(14, 33, 49, 0.34)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1100&q=85")
      center/cover;

  box-shadow: inset 0 0 0 1px rgba(244, 245, 247, 0.08);
}

.visual-card::before {
  content: "";

  position: absolute;

  inset: 20px;

  border: 1px solid rgba(244, 245, 247, 0.42);
}

.visual-card::after {
  content: "";

  position: absolute;

  right: 0;

  top: 0;

  width: 38%;

  height: 100%;

  background: linear-gradient(
    180deg,
    rgba(172, 150, 83, 0.26),
    transparent 46%,

    rgba(14, 33, 49, 0.7)
  );

  mix-blend-mode: soft-light;
}

.info-panel {
  position: relative;

  z-index: 1;

  width: 100%;

  padding: 26px;

  background: rgba(255, 255, 255, 0.82);

  border: 1px solid rgba(244, 245, 247, 0.18);

  backdrop-filter: blur(16px);
}

.info-panel p:first-child {
  margin-bottom: 10px;

  color: var(--velvet-gold);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.22em;

  text-transform: uppercase;
}

.info-panel h2 {
  color: var(--deep-ocean);

  margin-bottom: 16px;

  font-family: "Playfair Display", Georgia, serif;

  font-size: clamp(28px, 3vw, 42px);

  font-weight: 500;

  letter-spacing: -0.03em;
}

.info-panel .details {
  display: grid;

  gap: 10px;

  color: rgba(14, 33, 49, 0.72);

  font-size: 15px;

  line-height: 1.55;
}

.details a {
  color: var(--deep-ocean);

  text-decoration: none;

  border-bottom: 1px solid rgba(172, 150, 83, 0.7);
}

.footer-note {
  position: fixed;

  right: 30px;

  bottom: 34px;

  z-index: 2;

  writing-mode: vertical-rl;

  color: rgba(14, 33, 49, 0.38);

  font-size: 11px;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.waterline {
  position: fixed;

  left: -10vw;

  bottom: 10vh;

  z-index: 0;

  width: 120vw;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(172, 150, 83, 0.36),
    transparent
  );

  transform: rotate(-4deg);
}

@media (max-width: 900px) {
  .page-shell {
    padding: 18px;
  }

  .page-shell::before {
    inset: 12px;
  }

  .hero {
    grid-template-columns: 1fr;

    padding: 28px;
  }

  .brand-mark {
    margin-bottom: 54px;
  }

  .visual-card {
    min-height: 460px;
  }

  .footer-note {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 24px 18px;
  }

  h1 {
    font-size: clamp(46px, 17vw, 72px);
  }

  .intro {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .visual-card {
    min-height: 390px;

    padding: 18px;
  }

  .visual-card::before {
    inset: 12px;
  }

  .info-panel {
    padding: 20px;
  }
}
