:root {
  --color-bg: #444444;
  --color-accent: #DB90A4;
  --color-text: #ffffff;
  --color-text-soft: rgba(255, 255, 255, 0.9);
  --color-text-subtle: rgba(255, 255, 255, 0.92);
  --color-text-muted: rgba(255, 255, 255, 0.58);
  --color-placeholder: rgba(255, 255, 255, 0.42);

  --color-border: rgba(255, 255, 255, 0.18);
  --color-border-soft: rgba(255, 255, 255, 0.14);
  --color-border-subtle: rgba(255, 255, 255, 0.12);

  --color-surface: rgba(255, 255, 255, 0.06);
  --color-surface-hover: rgba(255, 255, 255, 0.09);
  --color-overlay: rgba(0, 0, 0, 0.18);

  --container-width: 1200px;
  --content-width: 960px;
  --content-width-narrow: 720px;
}

@font-face {
  font-family: "Zen8xCustom";
  src: url("./fonts/YourFont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Zen8xCustom", sans-serif;
}

body {
  overflow-x: hidden;
  position: relative;
}

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

ul {
  list-style: none;
}

/* =========================
   Global Background Video
========================= */

.global-video-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--color-bg);
  pointer-events: none;
}

.global-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.global-video-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

/* =========================
   Header
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header-inner {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.site-logo-image {
  display: block;
  width: auto;
  height: 72px;
  max-width: 240px;
  object-fit: contain;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav-list a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text-soft);
  transition: color 0.25s ease;
}

.site-nav-list a:hover {
  color: var(--color-accent);
}

.site-nav-list a.is-active {
  color: var(--color-accent);
}

.site-nav-list a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  border-radius: 999px;
}

/* =========================
   Home
========================= */

.hero-page {
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  display: block;
  width: 20%;
  min-width: 160px;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

/* =========================
   Pages
========================= */

.page-main {
  min-height: 100vh;
  padding: 140px 24px 80px;
  position: relative;
  z-index: 2;
}

.page-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.page-container-narrow {
  max-width: var(--content-width-narrow);
}

.page-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--color-text);
}

.page-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-soft);
}

/* =========================
   About
========================= */

.about-section {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.about-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.company-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--color-border);
}

.company-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.company-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.company-value {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-subtle);
  min-height: 1.8em;
}

.map-embed {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* =========================
   Contact
========================= */

.contact-intro {
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--color-text-subtle);
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: "Zen8xCustom", sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-placeholder);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-surface-hover);
}

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

.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 160px;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-text);
  font-family: "Zen8xCustom", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.contact-complete-box {
  margin-top: 32px;
  padding: 24px;
  border-radius: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
}

.contact-complete-box p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-subtle);
}

.contact-complete-box p + p {
  margin-top: 12px;
}

/* =========================
   Utility
========================= */

.text-accent {
  color: var(--color-accent);
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {
  .site-header-inner {
    padding: 18px 20px;
  }

  .site-logo-image {
    height: 44px;
    max-width: 180px;
  }

  .site-nav-list {
    gap: 16px;
  }

  .site-nav-list a {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .page-main {
    padding: 120px 20px 64px;
  }

  .page-text {
    font-size: 16px;
  }

  .hero-logo {
    width: 42%;
    min-width: 140px;
    max-width: 240px;
  }

  .about-section {
    gap: 40px;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .company-label {
    font-size: 12px;
  }

  .company-value {
    font-size: 15px;
  }

  .map-embed {
    height: 320px;
    border-radius: 16px;
  }

  .form-input,
  .form-textarea {
    font-size: 16px;
  }

  .form-button {
    width: 100%;
    min-width: 0;
  }
}
