/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  background-color: #0E0E0E;
  color: #F1F1F1;
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  background: radial-gradient(circle at center, #111 0%, #000 70%);
  overflow: hidden;
  padding-bottom: 30px;
}

.hero__space {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.hero__nav {
  position: absolute;
  top: clamp(16px, 3vh, 36px);
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(60px, 8vw, 160px);
}

.hero__nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 500;
  color: #F1F1F1;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  margin-top: 16px;
}

.hero__nav-link:hover {
  opacity: 1;
}

.hero__icon-link {
  position: absolute;
  top: clamp(16px, 3vh, 36px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: block;
}

.hero__icon {
  width: clamp(32px, 5.5vh, 70px);
  display: block;
}

/* Pre-composed HAZO + earth — pinned to bottom, scaled to fit */
.hero__cover {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 72vh;
  max-width: 100%;
  z-index: 2;
  animation: heroEntrance 1.2s ease 0.1s both;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 100%);
  filter: drop-shadow(0 0 80px rgba(255, 100, 0, 0.1));
}


@keyframes heroEntrance {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes heroIconEntrance {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===========================
   INTRO
=========================== */
.intro {
  background: #0d0d0d;
  padding: 80px 12% 80px 18%;
}

.intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.intro__image-wrap {
  flex: 0 0 38%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
  border: 1.5px solid #333333;
}

.intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
  display: block;
}

.intro__text {
  flex: 1;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.3;
  color: #EE6900;
}

/* ===========================
   WHAT IS HAZO
=========================== */
.what {
  background: #0d0d0d;
  padding: 60px 8% 100px;
}

.what__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.what__title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 5.3vw, 64px);
  font-weight: 600;
  color: #F1F1F1;
  text-align: center;
  margin-bottom: 80px;
}

.what__layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Left: feature list */
.what__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.what__item {
  padding: 32px 0;
}

.what__item p {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1rem, 1.4vw, 22px);
  font-weight: 500;
  color: #F1F1F1;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.what__rule {
  position: relative;
  height: 1px;
  background: #EE6900;
  width: 100%;
}

.what__dot {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #EE6900;
  border-radius: 50%;
}

/* Right: logo */
.what__logo-wrap {
  flex: 0 0 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what__logo {
  width: 100%;
  max-width: 680px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 0 60px rgba(232, 98, 26, 0.15));
}

/* ===========================
   QUOTE / TIME IS KEY
=========================== */
.quote {
  background: #0d0d0d;
  padding: 100px 0 100px;
}

.quote__inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  background: #f0ede8;
  border-radius: 0;
  overflow: hidden;
  min-height: 480px;
}

.quote__image-wrap {
  flex: 0 0 44%;
  overflow: hidden;
  position: relative;
}

.quote__image-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, transparent, #f0ede8);
  pointer-events: none;
}

.quote__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  display: block;
}

.quote__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px 60px 20px;
  color: #1a1a1a;
  max-width: 400px;
}

.quote__text h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.1;
}

.quote__text p {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  background: #0d0d0d;
  padding: 100px 24px 80px;
  text-align: center;
}

.contact__inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact__headline {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #EE6900;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.1;
}

.contact__sub {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: #cccccc;
  line-height: 1.75;
  margin-bottom: 52px;
}

.contact__label {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #F1F1F1;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.contact__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact__email {
  display: block;
  margin-top: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #cccccc;
  text-decoration: none;
  text-align: center;
}

.btn {
  display: inline-block;
  width: 520px;
  padding: 18px 0;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  letter-spacing: 0.03em;
}

.btn--filled {
  background: #EE6900;
  color: #F1F1F1;
  border: 2px solid #EE6900;
}

.btn--filled:hover {
  background: transparent;
  color: #EE6900;
}

.btn--outline {
  background: transparent;
  color: #F1F1F1;
  border: 2px solid #F1F1F1;
}

.btn--outline:hover {
  background: #F1F1F1;
  color: #0d0d0d;
}

/* ===========================
   FOOTER / RIGHTS
=========================== */
.rights {
  background: #0d0d0d;
  padding: 60px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.rights__logo {
  width: 52px;
  opacity: 0.9;
}

.rights__text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: #666666;
  letter-spacing: 0.04em;
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   TABLET — max 1024px
=========================== */
@media (max-width: 1024px) {

  /* Hero */
  .hero {
    height: 65vh;
  }

  .hero__cover {
    bottom: 0;
    top: auto;
    height: 35vh;
    width: 88%;
    max-width: 88%;
  }

  .hero__nav {
    padding: 0 clamp(32px, 5vw, 80px);
  }

  /* Intro */
  .intro {
    padding: 60px 5%;
  }

  .intro__inner {
    gap: 32px;
  }

  .intro__image-wrap {
    flex: 0 0 36%;
  }

  .intro__text {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  /* What is Hazo */
  .what {
    padding: 60px 5% 80px;
  }

  .what__layout {
    gap: 32px;
  }

  .what__logo-wrap {
    flex: 0 0 280px;
  }

  /* Quote */
  .quote {
    padding: 60px 0;
  }

  .quote__inner {
    min-height: 360px;
  }

  .quote__text {
    padding: 48px 36px 48px 20px;
  }

  /* Contact */
  .btn {
    width: 420px;
  }
}

/* ===========================
   MOBILE — max 768px
=========================== */
@media (max-width: 768px) {

  /* ── HERO ── */
  .hero {
    height: 52vh;
    min-height: 0;
    overflow: hidden;
  }

  .hero__nav {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 10;
  }

  .hero__nav-link {
    font-size: 0.6rem;
    margin-top: 4px;
    letter-spacing: 0.06em;
  }

  .hero__icon-link {
    top: 10px;
  }

  .hero__icon {
    width: 26px;
  }

  .hero__cover {
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    height: 25vh;
    width: 86%;
    max-width: 86%;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  }

  /* ── INTRO ── */
  .intro {
    padding: 20px 20px;
    margin-bottom: 0;
  }

  .intro__inner {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    max-width: 100%;
  }

  .intro__image-wrap {
    flex: 0 0 160px;
    width: 160px;
    height: 160px;
    aspect-ratio: unset;
    border-radius: 16px;
  }

  .intro__text {
    font-size: 36px;
    line-height: 1.1;
    text-align: left;
    flex: 1;
  }

  /* ── WHAT IS HAZO ── */
  .what {
    padding: 20px 16px 36px;
    overflow: hidden;
  }

  .what__inner {
    width: 100%;
    position: static;
    left: auto;
    transform: none;
    margin-bottom: 0;
  }

  .what__title {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 14px;
  }

  .what__layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .what__logo-wrap {
    flex: 0 0 130px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
  }

  .what__logo {
    width: 250px;
    max-width: 200px;
    transform: rotate(-8deg);
  }

  .what__list {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .what__item {
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .what__item p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 5px;
    text-align: left;
  }

  .what__rule {
    width: 100%;
    height: 1px;
  }

  .what__dot {
    width: 6px;
    height: 6px;
    right: -3px;
    left: auto;
  }

  /* ── TIME IS KEY ── */
  .quote {
    padding: 20px 0 20px;
  }

  .quote__inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 220px;
    padding: 0;
    background: #f0ede8;
  }

  .quote__image-wrap {
    flex: 0 0 45%;
    width: 45%;
    overflow: hidden;
  }

  .quote__image-wrap::after {
    display: none;
  }

  .quote__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% top;
  }

  .quote__text {
    flex: 0 0 55%;
    width: 55%;
    padding: 24px 16px;
    max-width: none;
    justify-content: center;
  }

  .quote__text h2 {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .quote__text p {
    font-size: 12px;
    line-height: 1.5;
  }

  /* ── CONTACT ── */
  .contact {
    padding: 36px 20px 28px;
    text-align: center;
  }

  .contact__inner {
    max-width: 100%;
  }

  .contact__headline {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.1;
  }

  .contact__sub {
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .contact__label {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .contact__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
  }

  .contact__email {
    margin-top: 16px;
    font-size: 1.10rem;
  }

  /* ── FOOTER ── */
  .rights {
    padding: 20px 20px 16px;
    gap: 8px;
  }

  .rights__logo {
    width: 32px;
  }

  .rights__text {
    font-size: 0.7rem;
  }
}

/* ===========================
   MOBILE LANDSCAPE — max 768px height
=========================== */
@media (max-height: 768px) and (orientation: landscape) {

  .hero {
    height: 100vh;
    min-height: auto;
  }

  .hero__cover {
    height: 60vh;
    width: auto;
    max-width: 100%;
  }

}




