:root {
  color-scheme: only light;
  --ink: #231c16;
  --ink-soft: #5f564f;
  --cream: rgba(255, 248, 242, 0.92);
  --accent: #b8844a;
  --shadow: 0 28px 70px rgba(18, 14, 11, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Palatino", "Baskerville", "Times New Roman", serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(14, 12, 10, 0.65), rgba(14, 12, 10, 0.25)),
    url("images/flash/image1.jpg") center / cover no-repeat fixed;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.2), transparent 60%);
  pointer-events: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 6vw;
}

.card {
  width: min(640px, 100%);
  background: var(--cream);
  padding: 48px 48px 40px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.logo {
  width: min(260px, 70%);
  height: auto;
  align-self: center;
}

.eyebrow {
  margin: 6px 0 0;
  font-size: 1rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 2.5vw + 1.8rem, 4rem);
  letter-spacing: 0.08em;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.contact__label {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 1rem;
  text-decoration: none;
  background: var(--accent);
  color: #1c140b;
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(184, 132, 74, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(184, 132, 74, 0.45);
}

.address {
  font-style: normal;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(35, 28, 22, 0.6);
}

@media (max-width: 600px) {
  body {
    background-attachment: scroll;
  }

  .card {
    padding: 36px 24px 32px;
  }

  .eyebrow {
    letter-spacing: 0.18em;
  }

  h1 {
    letter-spacing: 0.04em;
  }
}
