/* ============================================
   OMNIA Corporate Website - Stylesheet
   Clean, Professional Design
   ============================================ */

/* CSS Variables */
:root {
  --color-primary: #1a1a1a;
  --color-secondary: #333333;
  --color-accent: #C4846C;
  --color-accent-light: rgba(196, 132, 108, 0.1);
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-bg: #ffffff;
  --color-bg-light: #f8f7f5;
  --color-bg-dark: #1a1a1a;
  --color-border: #e5e5e5;
  --color-border-light: #f0f0f0;
  
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --max-width: 1100px;
  --header-height: 70px;
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

.animate-bounce {
  animation: bounce 2s infinite;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border-light);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav {
  display: none;
}

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

.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link--cta {
  padding: 8px 20px;
  background: var(--color-primary);
  color: var(--color-bg);
  border-radius: 2px;
}

.nav-link--cta:hover {
  background: var(--color-secondary);
  color: var(--color-bg);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary);
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(100%);
}

/* ワイドスクリーン対応 - アスペクト比が横長の場合 */
@media (min-aspect-ratio: 16/9) {
  .hero-image {
    object-position: center 25%;
  }
}

@media (min-aspect-ratio: 21/9) {
  .hero-image {
    object-position: center 30%;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-bg);
  padding: 0 20px;
}

.hero-decoration-top {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
  margin: 0 auto 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.hero-accent-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #ffb366);
  margin: 0 auto 20px;
  position: relative;
}

.hero-accent-line::before,
.hero-accent-line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.hero-accent-line::before {
  left: -12px;
}

.hero-accent-line::after {
  right: -12px;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-bottom: 0;
}

.hero-decoration-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.hero-decoration-bottom::before,
.hero-decoration-bottom::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}

.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  color: var(--color-bg);
  text-align: center;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.scroll-indicator span {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  padding-left: 0.2em; /* letter-spacingの補正 */
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-bg);
  margin: 0 auto;
}

/* ============================================
   Section Common
   ============================================ */
section {
  padding: 50px 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

/* ============================================
   Problems Section
   ============================================ */
.problems {
  background: var(--color-bg-light);
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 0;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--color-bg-light);
  border-radius: 6px;
  transition: transform var(--transition-fast);
  min-width: 320px;
  flex: 1;
}

.problem-card:hover {
  transform: translateY(-2px);
}

.problem-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.problem-icon svg {
  width: 100%;
  height: 100%;
}

.problem-icon .accent-stroke {
  stroke: var(--color-accent);
}

.problem-text {
  font-size: 0.875rem;
  line-height: 1.6;
}

.problems-cta {
  text-align: center;
}

.problems-cta-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.problems-cta-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

/* ============================================
   Services Section
   ============================================ */
.services {
  background: var(--color-bg);
  padding: 50px 0;
}

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

.service-card {
  background: var(--color-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition-base);
}

.service-card:hover .service-image img {
  filter: grayscale(50%);
}

.service-content {
  padding: 24px;
}

.service-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.service-desc {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-list {
  padding-left: 0;
}

.service-list li {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ============================================
   Strengths Section
   ============================================ */
.strengths {
  background: var(--color-bg);
  padding: 60px 0;
}

.strengths-header {
  margin-bottom: 40px;
}

.strengths-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.strengths-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.strengths-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: grayscale(100%);
}

.strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.strength-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg-light);
  border-radius: 6px;
}

.strength-number {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-accent);
  font-weight: 400;
  flex-shrink: 0;
}

.strength-content {
  flex: 1;
}

.strength-title-en {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.strength-title-ja {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.strength-desc {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   Flow Section
   ============================================ */
.flow {
  background: var(--color-bg-light);
  padding: 60px 0;
}

.flow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.flow-step {
  background: var(--color-bg);
  padding: 24px;
  border-radius: 6px;
  text-align: center;
  position: relative;
}

.flow-step-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.flow-step-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.flow-step-desc {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   Cases Section
   ============================================ */
.cases {
  background: var(--color-bg);
  padding: 60px 0;
}

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

.case-card {
  background: var(--color-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.case-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition-base);
}

.case-card:hover .case-image img {
  filter: grayscale(50%);
}

.case-content {
  padding: 20px;
}

.case-tag {
  display: inline-block;
  font-size: 0.6875rem;
  padding: 4px 12px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 2px;
  margin-bottom: 12px;
}

.case-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.case-desc {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  background: var(--color-bg-light);
  padding: 60px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg);
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-accent);
  transition: transform var(--transition-base);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ============================================
   Recruit Section
   ============================================ */
.recruit {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.recruit-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.recruit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.recruit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.recruit-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-bg);
}

.recruit-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.recruit-subtitle {
  font-size: 0.8125rem;
  opacity: 0.8;
  margin-bottom: 24px;
}

.recruit-catch {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.recruit-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.btn--white {
  background: var(--color-bg);
  color: var(--color-primary);
}

.btn--white:hover {
  background: var(--color-bg-light);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-bg);
}

.btn--primary:hover {
  background: var(--color-secondary);
}

/* ============================================
   Company Section
   ============================================ */
.company {
  background: var(--color-bg);
  padding: 60px 0;
}

.company-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 16px 0;
  font-size: 0.875rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.company-table th {
  width: 120px;
  font-weight: 500;
  color: var(--color-text);
}

.company-table td {
  color: var(--color-text-light);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: var(--color-bg-light);
  padding: 60px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 30px;
}

.contact-intro p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact-method {
  text-align: center;
  padding: 24px;
  background: var(--color-bg);
  border-radius: 6px;
}

.contact-method-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.contact-method-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.contact-tel:hover,
.contact-email:hover {
  color: var(--color-accent);
}

.contact-method-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

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

.contact-form {
  background: var(--color-bg);
  padding: 30px;
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 6px;
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.9375rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

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

.form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.form-label--checkbox {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.btn--submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-bg);
  padding: 40px 0 20px;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin: 0 auto 8px;
  filter: brightness(0) invert(1);
}

.footer-company {
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.footer-nav-list a {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-nav-list a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 0.6875rem;
  opacity: 0.5;
}

/* ============================================
   Responsive - Mobile (problems section fix)
   ============================================ */
@media (max-width: 767px) {
  .problems-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .problem-card {
    width: 100%;
    min-width: auto;
  }
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media (min-width: 768px) {
  .nav {
    display: block;
  }
  
  .hamburger {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 380px));
    gap: 24px;
    justify-content: center;
  }
  
  .problem-card {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .service-image {
    height: 160px;
  }
  
  .strengths-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .strengths-image img {
    height: 100%;
    min-height: 400px;
  }
  
  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .flow-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  
  .flow-step {
    padding: 20px 12px;
  }
  
  .flow-step-number {
    font-size: 1.25rem;
  }
  
  .flow-step-title {
    font-size: 0.875rem;
  }
  
  .flow-step-desc {
    font-size: 0.75rem;
  }
  
  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .case-image {
    height: 150px;
  }
  
  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .footer-logo {
    margin: 0 0 8px;
  }
}

/* ============================================
   Responsive - Desktop
   ============================================ */
@media (min-width: 1024px) {
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 400px));
    gap: 24px;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-accent-line {
    width: 60px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    margin-bottom: 50px;
  }
  
  .service-image {
    height: 180px;
  }
  
  .service-content {
    padding: 28px;
  }
  
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .recruit {
    padding: 100px 0;
  }
  
  .recruit-title {
    font-size: 1.75rem;
  }
  
  .recruit-catch {
    font-size: 1.5rem;
  }
  
  .contact-form {
    padding: 40px;
  }
}

/* ============================================
   Mobile Navigation
   ============================================ */
@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
  }
  
  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .nav-link {
    font-size: 1rem;
  }
  
  .nav-link--cta {
    padding: 12px 32px;
  }
  
  /* Hero section mobile fixes */
  .hero-title {
    font-size: 1.1rem;
    white-space: nowrap;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
  
  .hero-accent-line {
    width: 35px;
    margin-bottom: 14px;
  }
  
  .hero-accent-line::before,
  .hero-accent-line::after {
    width: 5px;
    height: 5px;
  }
  
  .hero-accent-line::before {
    left: -10px;
  }
  
  .hero-accent-line::after {
    right: -10px;
  }
  
  .scroll-indicator {
    position: fixed !important;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 0.8 !important;
    z-index: 1000 !important;
  }
  
  .scroll-indicator span {
    font-size: 0.5rem;
    display: block !important;
  }
  
  .scroll-line {
    height: 25px;
    display: block !important;
  }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-animate {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
