/* ============================================
   HOUSE VILLAGE - Website
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-card: rgba(217, 217, 217, 0.86);
  --color-text: #000;
  --color-text-sub: #000;
  --color-req: #f05d5d;
  --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-mono);
  color: var(--color-text);
  line-height: 1.4;
  overflow-x: hidden;
}

/* ---- Fixed Video Background ---- */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

/* ---- Scrollable Content ---- */
.content {
  position: relative;
  z-index: 1;
  max-width: 1246px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 120px;
}

.hero-inner {
  width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-tagline {
  margin-top: clamp(40px, 8vh, 110px);
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.1vw, 45px);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.sp-only {
  display: none;
}

.hero-sub {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

/* ---- Service Sections ---- */
.service-section {
  margin-bottom: 15px;
}

.section-inner {
  position: relative;
  background: var(--color-card);
  border-radius: 5px;
  min-height: 209px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-number {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-number span {
  font-family: var(--font-heading);
  font-size: clamp(80px, 13vw, 192px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  line-height: 1;
}

.section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 48px;
  min-height: 209px;
}

.brand-logo {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  display: block;
  width: auto;
}

.logo-rucksack img { height: 34px; }
.logo-tent img     { height: 42px; }
.logo-pegfour img  { height: 38px; }
.logo-lantern img  { height: 26px; }

.brand-category {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 10px;
}

.brand-desc {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

/* ---- Entertainment Architect Section ---- */
.architect-section {
  margin: 60px 0;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.architect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.architect-text p {
  margin-bottom: 1.4em;
}

.architect-text p:last-child {
  margin-bottom: 0;
}

.architect-lead {
  margin-bottom: 1.4em;
}

.architect-jp {
  font-family: var(--font-mono);
  font-weight: 400;
  line-height: 1.7;
}

/* ---- Contact Section ---- */
.contact-section {
  margin-top: 15px;
}

.contact-inner {
  position: relative;
  background: var(--color-card);
  border-radius: 5px;
  min-height: 600px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-body {
  padding: 60px 48px;
}

.contact-body h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.contact-lead {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.contact-form {
  max-width: 523px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--color-text);
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.form-group .req {
  color: var(--color-req);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-mono);
  border: none;
  border-radius: 5px;
  background: #d9d9d9;
  outline: none;
  color: var(--color-text);
}

.form-group input {
  height: 42px;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #ccc;
}

.form-group textarea {
  resize: vertical;
  min-height: 180px;
}

.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  margin-top: 32px;
}

.contact-submit {
  width: 100%;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 5px;
  padding: 14px 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.contact-submit:hover {
  opacity: 0.85;
}

.contact-submit:active {
  transform: translateY(1px);
}

.contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  min-height: 1.4em;
  letter-spacing: -0.02em;
}

.form-status[data-type="success"] { color: #1f7a3a; }
.form-status[data-type="error"]   { color: var(--color-req); }
.form-status[data-type="pending"] { color: #555; }

/* ---- Footer ---- */
.footer {
  padding: 80px 0 100px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mark {
  height: 30px;
  width: auto;
}

.footer-text {
  height: 14px;
  width: auto;
}

/* ============================================
   Responsive (Mobile ~375px)
   ============================================ */
@media (max-width: 768px) {
  .content {
    padding: 0 13px;
  }

  /* Hero */
  .hero {
    padding-bottom: 70px;
  }

  .hero-title {
    font-size: 54px;
    line-height: 1;
  }

  .hero-tagline {
    margin-top: 50px;
    font-size: 30px;
    line-height: 1.1;
  }

  .sp-only {
    display: inline;
  }

  .hero-sub {
    margin-top: 12px;
    font-size: 12px;
  }

  /* Service Cards */
  .service-section {
    margin-bottom: 10px;
  }

  .section-inner {
    min-height: 160px;
    border-radius: 4px;
  }

  .section-number {
    position: absolute;
    width: auto;
    top: 6px;
    left: 20px;
    bottom: auto;
    display: block;
  }

  .section-number span {
    font-size: 75px;
    line-height: 1;
  }

  .section-content {
    padding: 0 20px;
    min-height: 160px;
    justify-content: flex-start;
  }

  /* Align logo center with number vertical center (number top:6px, height:75px → center ~43px) */
  .brand-logo {
    margin-top: 32px;
    margin-bottom: 28px;
    height: 24px;
  }

  .logo-rucksack img { height: 22px; }
  .logo-tent img     { height: 28px; }
  .logo-pegfour img  { height: 24px; }
  .logo-lantern img  { height: 17px; }

  .brand-category {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .brand-desc {
    font-size: 11px;
    line-height: 1.5;
  }

  /* Entertainment Architect */
  .architect-section {
    margin: 40px 0;
    font-size: 12px;
  }

  .architect-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .architect-text p {
    margin-bottom: 1.2em;
  }

  /* Contact */
  .contact-section {
    margin-top: 11px;
  }

  .contact-inner {
    border-radius: 4px;
    min-height: 540px;
  }

  .contact-body {
    padding: 90px 26px 40px;
  }

  .contact-body h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .contact-lead {
    font-size: 11px;
    margin-bottom: 24px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .form-group input {
    height: 40px;
    font-size: 12px;
  }

  .form-group textarea {
    min-height: 140px;
    font-size: 12px;
  }

  .form-actions {
    margin-top: 24px;
  }

  .contact-submit {
    font-size: 13px;
    padding: 12px 0;
  }

  .form-status {
    font-size: 11px;
  }

  /* Footer */
  .footer {
    padding: 60px 0 80px;
  }

  .footer-mark {
    height: 22px;
  }

  .footer-text {
    height: 10px;
  }
}

