/* Landing Page – project-home */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

.page {
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  position: relative;
  background: #F4F6EC;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Subtle diagonal background overlays */
.overlay {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.overlay-top {
  top: -30%;
  right: -15%;
  width: 60%;
  height: 80%;
  background: linear-gradient(135deg, rgba(140, 167, 98, 0.08) 0%, transparent 60%);
  transform: rotate(-8deg);
  border-radius: 2px;
}

.overlay-bottom {
  bottom: -20%;
  right: -10%;
  width: 45%;
  height: 55%;
  background: linear-gradient(145deg, rgba(140, 167, 98, 0.06) 0%, transparent 55%);
  transform: rotate(5deg);
  border-radius: 2px;
}

/* Main logo – top-left to center */
.graphic {
  position: absolute;
  left: 6%;
  top: 12%;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.5vw, 24px);
  z-index: 2;
}

.graphic .logo-icon {
  width: clamp(64px, 8vw, 120px);
  height: clamp(56px, 7vw, 104px);
  position: relative;
  flex-shrink: 0;
}

.graphic .logo-icon .left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: #4C6120;
  clip-path: polygon(0 100%, 100% 100%, 100% 28%, 50% 0, 0 28%);
}

.graphic .logo-icon .right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: #8CA762;
  clip-path: polygon(0 100%, 100% 100%, 50% 0, 0 28%);
}

.graphic .logo-text {
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 700;
  color: #2A2A2A;
  letter-spacing: -0.03em;
}

/* Headline block – bottom left (logo + headline) */
.headline-block {
  position: absolute;
  left: 6%;
  bottom: 35%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.headline-block .hero-logo {
  height: clamp(360px, 37.5vw, 600px);
  width: auto;
  display: block;
}

.headline {
  max-width: 780px;
}

.headline .line1 {
  display: block;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 700;
  color: #2A2A2A;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.headline .line2 {
  display: block;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 700;
  color: #2A2A2A;
  letter-spacing: -0.03em;
  line-height: 1.35;
  margin-top: 0.05em;
}

/* Small logo – right side */
.brand-right {
  position: absolute;
  right: 5%;
  bottom: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.brand-right .brand-logo {
  height: clamp(32px, 3vw, 48px);
  width: auto;
  display: block;
}

.brand-right .brand-text {
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 600;
  color: #2A2A2A;
  letter-spacing: -0.02em;
}

/* Logo – bottom right (legacy) */
.brand {
  position: absolute;
  right: 5%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.brand-icon {
  width: clamp(32px, 2.4vw, 44px);
  height: clamp(28px, 2.2vw, 38px);
  position: relative;
  flex-shrink: 0;
}

.brand-icon .left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: #4C6120;
  clip-path: polygon(0 100%, 100% 100%, 100% 28%, 50% 0, 0 28%);
}

.brand-icon .right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: #8CA762;
  clip-path: polygon(0 100%, 100% 100%, 50% 0, 0 28%);
}

.brand-text {
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 600;
  color: #2A2A2A;
  letter-spacing: -0.02em;
}
