:root {
  --ink: #073235;
  --warm: #e5ad91;
  --sans: "Montserrat", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: #fff;
  font-family: var(--sans);
  background: var(--ink);
}

a {
  color: inherit;
}

.holding-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.background,
.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.background {
  object-fit: cover;
}

.overlay {
  background:
    linear-gradient(90deg, rgba(4, 43, 46, 0.9), rgba(4, 43, 46, 0.62) 54%, rgba(4, 43, 46, 0.22)),
    linear-gradient(0deg, rgba(4, 43, 46, 0.74), transparent 48%);
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 40px;
}

.content {
  position: relative;
  width: min(720px, calc(100% - 64px));
  margin-left: 40px;
  padding: 108px 0 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-small {
  padding: 8px 10px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand span {
  font-size: 1.08rem;
}

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

h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 15vw, 10rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: 0;
}

.teaser {
  margin: 28px 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-style: italic;
  line-height: 1.05;
}

.intro {
  max-width: 620px;
  margin: 0 0 44px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.top-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.contact span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact a {
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 800;
}

@media (max-width: 700px) {
  .topbar {
    padding: 18px 20px;
  }

  .content {
    width: min(100% - 40px, 520px);
    margin: 0 auto;
    padding-top: 104px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    border-radius: 18px;
  }
}
