:root{
  --sky:#8ECAE6;
  --blue:#219EBC;
  --navy:#023047;
  --yellow:#FFB703;
  --orange:#e17b4e;

  --frame:1280px;
  --text:rgba(255,255,255,0.92);
  --text2:rgba(255,255,255,0.88);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#ffffff;
  color:#0b1625;
}

.frame{
  width: var(--frame);
  margin: 0 auto;
  position: relative;
}

.hero{
  height: 220px;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}


.hero-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  padding: 22px 22px 0 22px;
  position:relative;
  z-index:2;
}

.hero-wordmark{
  font-family:"Bebas Neue", system-ui, sans-serif;
  color:#ffffff;
  letter-spacing: 1px;
  line-height: 0.95;
  font-size: 72px;
}

.wm-line{
  display:flex;
  align-items:center;
  gap: 14px;
}


.hero-nav{
  background: var(--yellow);
  border-radius: 18px;
  padding: 8px 14px;
  display:flex;
  align-items:center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color:#111;
}

.nav-link{
  color:#111;
  text-decoration:none;
  padding: 2px 8px;
}

.page{
  width: 100%;
}

.about{
  background: var(--navy);
  height: 300px;
  position: relative;
  overflow:hidden;
}


.about-inner{
  padding-top: 46px;
  text-align:center;
}

.section-title{
  margin:0;
  font-family:"Bebas Neue", system-ui, sans-serif;
  color: var(--yellow);
  letter-spacing: 6px;
  font-size: 22px;
  font-weight: 400;
}

.about-copy{
  margin-top: 48px;
  width: 860px;
  margin-left:auto;
  margin-right:auto;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
  padding-left: 6px;

  max-width: 780px;
  line-height: 2.05;
}

.limbilo{
  background: var(--blue);
  height: 410px;
  position: relative;
  overflow:hidden;
}

.limbilo:before{
  content:"";
  position:absolute;
  left:-140px;
  bottom:-240px;
  width:860px;
  height:560px;
  background: no-repeat center / contain;
  opacity:0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600' viewBox='0 0 900 600'%3E%3Cpath d='M70 470c60-60 120-60 180 0 60-60 120-60 180 0 60-60 120-60 180 0 60-60 120-60 180 0' fill='none' stroke='%238ECAE6' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  pointer-events:none;
}

.limbilo-inner{
  padding-top: 52px;
  text-align:center;
}

.limbilo-logo img{
  width: 260px;
  height:auto;
  margin: 0 auto;
}

.limbilo-copy{
  margin-top: 46px;
  width: 880px;
  margin-left:auto;
  margin-right:auto;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.85;
  text-align: left;
  padding-left: 6px;

  max-width: 800px;
  line-height: 2.0;
}

.shots{
  background: #58cbb4;
  padding: 24px 0 24px;
}

.shots-inner{
  display:flex;
  gap: 18px;
  justify-content:center;
}

.shot{
  margin:0;
  width: 390px;
  height: 220px;
  border-radius: 0;
  overflow:hidden;
  background:#ffffff;
  border: 0;
}

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

.contact{
  background: var(--yellow);
  padding: 44px 0 44px;
  position: relative;
  overflow:hidden;
}


.contact-inner{
  text-align:center;
}

.contact-title{
  margin:0;
  font-family:"Bebas Neue", system-ui, sans-serif;
  letter-spacing: 2px;
  font-size: 22px;
  color:#111;
}

.contact-lines{
  margin-top: 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  font-weight: 600;
}

.contact-link{
  color:#023047;
  text-decoration:none;
}

.contact-link:hover{
  color:#111;
}

.skip{ display:none; }


.contact-form-wrap{
  width: 520px;
  margin: 22px auto 0;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(2,48,71,0.18);
  border-radius: 18px;
  padding: 16px;
}

.contact-form{
  display: grid;
  gap: 12px;
  text-align: left;
}

.field{
  display: grid;
  gap: 6px;
}

.label{
  font-size: 12px;
  font-weight: 600;
  color: rgba(2,48,71,0.78);
}

.input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(2,48,71,0.20);
  background: rgba(255,255,255,0.78);
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  color: #0b1625;
}

.input:focus{
  border-color: rgba(33,158,188,0.75);
  box-shadow: 0 0 0 4px rgba(33,158,188,0.14);
}

.textarea{
  resize: vertical;
}

.send{
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}

.send:active{
  transform: translateY(1px);
}


.hero-slogan{
  margin-bottom: 10px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.hero-top{
  position:relative;
  z-index:3;
}


.hero-slogan{
  display:block;
  margin-top:12px;
  font-family: Inter, system-ui, sans-serif;
  font-size:13px;
  letter-spacing:3px;
  font-weight:600;
  color:#ffffff;
  position:relative;
  z-index:5;
}


.hero-top{
  position:relative;
  z-index:3;
}


.hero-nav a,
.contact-link,
.send{
  transition: all 180ms ease;
}

.hero-nav a:hover{
  opacity:0.85;
}

.contact-link:hover{
  letter-spacing:0.5px;
}

.send:hover{
  background:#012538;
}


.hero{
  position: relative;
  overflow: hidden;
}



.hero-top{
  position: relative;
  z-index:3;
}


/* stronger but still elegant interactions */

.hero-nav a{
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero-nav a:hover{
  opacity:0.75;
  transform: translateY(-1px);
}

.contact-link{
  transition: letter-spacing 180ms ease, opacity 180ms ease;
}

.contact-link:hover{
  letter-spacing:1.2px;
  opacity:0.85;
}

.send{
  transition: background 160ms ease, transform 160ms ease;
}

.send:hover{
  background:#011c2b;
  transform: translateY(-1px);
}


/* =========================
   RESPONSIVE – TABLET
========================= */
@media (max-width: 1024px){
  .frame{
    width: 92%;
  }

  .about-copy,
  .limbilo-copy{
    max-width: 90%;
  }

  .shots-inner{
    gap: 12px;
  }

  .shot{
    width: 32%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* =========================
   RESPONSIVE – MOBILE
========================= */
@media (max-width: 768px){

  .hero{
    height: auto;
    padding-bottom: 24px;
  }

  
  .hero-wordmark{
    font-size: 54px;
  }

  .hero-slogan{
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-nav{
    align-self: stretch;
    justify-content: space-between;
  }

  .about,
  .limbilo{
    height: auto;
    padding-bottom: 40px;
  }

  .about-copy,
  .limbilo-copy{
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.9;
  }

  .shots-inner{
    flex-direction: column;
    align-items: center;
  }

  .shot{
    width: 90%;
    aspect-ratio: 16 / 9;
  }

  .contact{
    height: auto;
    padding-bottom: 40px;
  }

  .contact-form-wrap{
    width: 92%;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px){

  .hero-wordmark{
    font-size: 44px;
  }

  .section-title,
  .contact-title{
    font-size: 18px;
    letter-spacing: 4px;
  }

  .contact-link{
    font-size: 14px;
  }
}


/* Full PNG logo in hero */
.hero-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.hero-wordmark{
  font-family: "Bebas Neue", system-ui, sans-serif;
  color:#ffffff;
  letter-spacing: 1px;
  line-height: 0.95;
}

.hero-logo{
  width: 320px;
  height: auto;
  display:block;
}

.hero-slogan{
  margin-top: 10px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  text-align:left;
}


/* Spacing fix for hero slogan */
.hero-brand{
  padding-bottom: 24px;
}


/* Slogan breathing room */
.hero{
  height: auto;
  min-height: 260px;
  }

.hero-top{
  padding-bottom: 24px;
}


/* Slogan width equals logo width */
.hero-wordmark,
.hero-slogan{
  width: fit-content;
}

.hero-slogan{
  max-width: 320px; /* same as logo width */
  color: #FFB703;
}


/* Make slogan block exactly the same width as the logo */
:root{
  --hero-logo-w: 320px;
}

.hero-logo{
  width: var(--hero-logo-w);
}

.hero-slogan{
  width: var(--hero-logo-w);
  display: block;
  text-align: center;
  color: #FFB703;
}


/* Keep capsule nav visible when hero stacks on mobile */
@media (max-width: 768px){
  .hero-top{ padding-bottom: 18px; }
  .hero-nav{ flex-wrap: nowrap; }
}


/* Justify body texts */
.about-copy,
.limbilo-copy,
.contact-copy{
  text-align: justify;
}


/* Hero header image (right-aligned) */
.hero{
  background: #e17b4e;
  position: relative;
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  width:78%;
  background: url("assets/header.png") no-repeat right center / cover;
  opacity: 0.9;
  pointer-events:none;
  z-index:1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(225,123,78,0.60) 0%,
    rgba(225,123,78,0.28) 38%,
    rgba(225,123,78,0.00) 62%
  );
  pointer-events:none;
  z-index:2;
}

.hero-top{
  position:relative;
  z-index:3;
}
