/* Eduardo Ciacci — Minimal luxury homepage */

:root {
  --bg: #fcfaf7;
  --text: #111111;
  --soft: #f7e7eb;
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.home {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 42px;
  color: white;
  text-shadow: 0 1px 12px var(--shadow);
}

.brand {
  text-transform: uppercase;
  letter-spacing: 0.30em;
  font-size: 14px;
  font-weight: 400;
}

.links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.links a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url("images01/CI_14_the_pinnacle.png");
    background-size: cover;
    background-position: center top;
    transform: scale(1.01);
    animation: slowReveal 1400ms ease-out both;
}

/* To use The Invocation instead, change the URL above to:
   url("images01/CI_01_invocation.png")
*/

.veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.36) 0%, rgba(0,0,0,0.06) 42%, rgba(0,0,0,0.55) 100%);
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 920px;
  padding: 120px 28px 90px;
  color: white;
  text-shadow: 0 2px 18px var(--shadow);
  animation: textRise 900ms ease-out 260ms both;
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--soft);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tagline {
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-block;
  min-width: 160px;
  padding: 13px 20px;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  text-shadow: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.10);
  color: white;
}

.context {
  margin: 22px auto 0;
  max-width: 640px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.84);
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 42px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 10px var(--shadow);
}

@keyframes slowReveal {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1.01); }
}

@keyframes textRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .nav {
    padding: 22px 22px;
    align-items: flex-start;
  }

  .links {
    gap: 12px;
    justify-content: flex-end;
    font-size: 12px;
  }

  .brand {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .footer {
    padding: 18px 22px;
    flex-direction: column;
    gap: 4px;
  }

  .hero-copy {
    padding-left: 22px;
    padding-right: 22px;
  }

  .button {
    width: 100%;
    max-width: 260px;
  }
}
