/* Reset di base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--olive-deep);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --ivory: #f4efe6;
  --olive-deep: #161c0d;
  --burgundy: #5e0e24;
  --gold: #c8a24d;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.landscape, .shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.landscape {
  background: url('zentu-hero-background.png') center/cover no-repeat;
  transform: scale(1.015);
  animation: reveal 1.5s ease-out both;
}

.shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(13,17,8,.9) 0%, rgba(24,26,12,.66) 35%, rgba(37,31,19,.13) 68%, rgba(15,18,9,.25) 100%),
              linear-gradient(0deg, rgba(11,14,7,.68), transparent 31%, rgba(13,14,7,.18));
}

.topbar {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 10px 28px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: rgba(31,37,13,.72);
  backdrop-filter: blur(8px);
}

.topbar p {
  margin: 0;
  color: #e2c87b;
  font-size: 10px;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.hero {
  display: flex;
  align-items: center;
  width: min(1200px, 100%);
  margin: auto;
  padding: clamp(38px, 6vw, 78px) clamp(24px, 7vw, 90px);
}

.brand-card {
  width: min(510px, 100%);
  animation: rise .9s .15s ease-out both;
}

.logo {
  display: block;
  width: clamp(220px, 27vw, 340px);
  max-height: 235px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 7px 22px rgba(0,0,0,.25));
}

.logo-spacer {
  height: 54px;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 94px;
  margin: 25px 0 22px;
}

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

.ornament i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: #e2c87b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
  text-shadow: 0 3px 20px rgba(0,0,0,.25);
}

.intro {
  max-width: 460px;
  margin: 24px 0 30px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.65;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 27px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(226,200,123,.72);
  background: var(--burgundy);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 11px;
  transition: transform .2s ease, background .2s ease;
}

.contact-link:hover, .contact-link:focus-visible {
  background: #73132e;
  transform: translateY(-2px);
}

.contact-link:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 4px;
}

.contact-link span {
  font-size: 18px;
  transition: transform .2s ease;
}

.contact-link:hover span {
  transform: translateX(4px);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  padding: 14px clamp(24px, 5vw, 68px);
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(19,22,10,.82);
  backdrop-filter: blur(10px);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.footer strong {
  color: #e2c87b;
  font-weight: 600;
}

.footer span {
  margin-left: 14px;
  color: rgba(255,255,255,.64);
}

.contact-placeholder {
  color: rgba(255,255,255,.72);
  white-space: nowrap;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

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

@media (max-width: 680px) {
  .landscape {
    background-position: 58% center;
  }
  .shade {
    background: linear-gradient(90deg, rgba(13,17,8,.78), rgba(18,19,9,.38)),
                linear-gradient(0deg, rgba(10,13,6,.86), rgba(10,13,6,.12) 65%);
  }
  .topbar p {
    font-size: 9px;
    letter-spacing: .3em;
  }
  .hero {
    align-items: flex-end;
    padding-top: 32px;
    padding-bottom: 36px;
  }
  .logo {
    width: 230px;
    max-height: 165px;
  }
  .ornament {
    margin: 18px 0;
  }
  h1 {
    font-size: clamp(40px, 12vw, 55px);
  }
  .intro {
    font-size: 14px;
    margin: 20px 0 24px;
  }
  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 14px 16px;
  }
  .footer span {
    display: block;
    margin: 5px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
