/* ===================================================
   GEOATLAS KARAKATSANIS — Under Construction landing
   Brand: Dark Charcoal #333132 / Aqua-Mint #26bcb5
   =================================================== */

:root{
  --charcoal: #333132;
  --charcoal-soft: #4a4749;
  --teal: #26bcb5;
  --teal-soft: #bfe9e6;
  --paper: #ffffff;
  --grey-line: #e4e4e4;
  --font-title: "Montserrat", -apple-system, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Jost", "Futura", "Century Gothic", Arial, sans-serif;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-body);
}

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

/* ---------- PAGE / HERO BACKGROUND ---------- */

.page{
  position: relative;
  min-height: 100vh;
  background: url("assets/hero-bg.jpg") no-repeat center right / cover;
}

/* fades the photo to solid white behind the text, letting the
   excavator / brand mark on the right show through untouched */
.page::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    #fff 0%,
    #fff 34%,
    rgba(255,255,255,0.92) 42%,
    rgba(255,255,255,0) 58%
  );
}

.hero-banner{ display: none; }

/* ---------- CONTENT ---------- */

.content{
  position: relative;
  z-index: 2;
  max-width: 600px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4.5vw 0 0 4.5vw;
}

.brand{
  display: flex;
  align-items: flex-start;
}

.brand__logo{
  height: clamp(52px, 6.5vw, 74px);
  width: auto;
  display: block;
}

.hero{
  max-width: 520px;
}

.hero__title{
  margin: 0;
  font-family: var(--font-title);
  font-weight: 900;
  font-style: italic;
  line-height: 0.98;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  letter-spacing: -0.01em;
}
.hero__title-line{ display: block; color: var(--charcoal); }
.hero__title-line.accent{ color: var(--teal); }

.hero__rule{
  display: block;
  width: 64px;
  height: 4px;
  background: var(--teal);
  margin: 26px 0 22px;
  border-radius: 2px;
}

.hero__copy{
  margin: 0;
  max-width: 420px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.55;
  color: var(--charcoal-soft);
}

.contact{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 44px 0 40px;
  flex-wrap: wrap;
}

.contact__item{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color .15s ease;
}
.contact__item:hover{ color: var(--teal); }

.contact__icon{
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__icon svg{ width: 18px; height: 18px; }

.contact__divider{
  width: 1px;
  height: 26px;
  background: var(--grey-line);
}

/* url bar bleeds to the left screen edge only */
.urlbar{
  display: flex;
  align-items: center;
  height: 56px;
  width: fit-content;
  min-width: 300px;
  margin: 0 0 0 -4.5vw;
  background: var(--charcoal);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.urlbar__icon{
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.urlbar__icon svg{ width: 20px; height: 20px; }

.urlbar__text{
  padding: 0 22px;
  font-size: 1rem;
  white-space: nowrap;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px){
  .page{ background: none; min-height: auto; }
  .page::before{ display: none; }

  .hero-banner{
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .content{
    max-width: none;
    min-height: auto;
    padding: 7vw 6vw 0;
  }

  .urlbar{ margin: 0 -6vw; width: calc(100% + 12vw); min-width: 0; }

  .brand__logo{ height: 48px; }
}

@media (max-width: 520px){
  .hero__title{ font-size: 2.2rem; }
  .contact{ gap: 14px; }
  .urlbar__text{ font-size: 0.9rem; }
}
