* {
  box-sizing: border-box;
}

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

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #f7f9f8;
  background:
    linear-gradient(125deg, rgba(213, 43, 30, 0.24), rgba(213, 43, 30, 0) 34%),
    linear-gradient(290deg, rgba(0, 122, 77, 0.3), rgba(0, 122, 77, 0) 38%),
    radial-gradient(circle at 72% 20%, rgba(255, 184, 28, 0.26), transparent 34%),
    radial-gradient(circle at 20% 82%, rgba(0, 35, 149, 0.3), transparent 36%),
    linear-gradient(180deg, #11171d, #0f141a 55%, #0c1015);
  display: flex;
  flex-direction: column;
}

.landing {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2rem 1rem 1.5rem;
}

.panel {
  text-align: center;
  width: min(940px, 94vw);
  padding: clamp(1.5rem, 3.2vw, 2.5rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 16, 20, 0.5);
  backdrop-filter: blur(8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #cad6d1;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 0.9rem 0 0;
  color: #d6e1dc;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
}

.heritage-canvas {
  position: relative;
  margin-top: 1.7rem;
  height: clamp(230px, 34vw, 360px);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(6, 12, 15, 0.32), rgba(12, 18, 24, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.frame {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.frame-main {
  position: absolute;
  left: 5%;
  top: 7%;
  width: 62%;
  height: 80%;
  transform: rotate(-5deg);
  z-index: 2;
}

.frame-float {
  position: absolute;
  right: 6%;
  top: 18%;
  width: 44%;
  height: 72%;
  transform: rotate(7deg);
  z-index: 3;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frame-main img {
  object-position: 50% 28%;
  transform: scale(1.15);
}

.frame-float img {
  object-position: 50% 24%;
  transform: scale(1.2);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.35));
}

.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.halo-one {
  width: 170px;
  height: 170px;
  left: -20px;
  top: -24px;
  background: radial-gradient(circle at 35% 35%, rgba(213, 43, 30, 0.58), rgba(213, 43, 30, 0.02) 70%);
  z-index: 1;
}

.halo-two {
  width: 220px;
  height: 220px;
  right: -38px;
  bottom: -34px;
  background: radial-gradient(circle at 35% 35%, rgba(0, 122, 77, 0.54), rgba(0, 122, 77, 0.02) 70%);
  z-index: 1;
}

.sweep {
  position: absolute;
  border-radius: 999px;
  z-index: 4;
  opacity: 0.8;
}

.sweep-one {
  left: 8%;
  right: 20%;
  bottom: 12%;
  height: 8px;
  transform: rotate(-8deg);
  background: linear-gradient(90deg, rgba(213, 43, 30, 0.86), rgba(255, 255, 255, 0.78), rgba(0, 122, 77, 0.85));
}

.sweep-two {
  left: 22%;
  right: 8%;
  bottom: 8%;
  height: 5px;
  transform: rotate(7deg);
  background: linear-gradient(90deg, rgba(255, 184, 28, 0.8), rgba(0, 35, 149, 0.75));
}

.site-info {
  text-align: center;
  padding: 1rem;
  color: #d3ddd8;
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .heritage-canvas {
    height: clamp(220px, 48vw, 310px);
  }

  .frame-main {
    left: 2%;
    width: 64%;
    transform: rotate(-4deg);
  }

  .frame-float {
    right: 2%;
    top: 24%;
    width: 50%;
    height: 64%;
    transform: rotate(6deg);
  }
}
