/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #060d18;
  --dark: #0b1625;
  --dark2: #10202f;
  --dark3: #172d42;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --gray: #8899aa;
  --gray-light: #c8d4df;
  --text: #dde6ee;
  --border: rgba(100, 170, 230, 0.1);
  --border-gold: rgba(201,168,76,0.22);

  /* Light section palette (EBISUYA-inspired) */
  --light: #f9f7f4;
  --light2: #f2efe8;
  --light3: #e8e4db;
  --text-dark: #1a2535;
  --text-dark2: #3a4a5c;
  --border-light: rgba(26,37,53,0.1);
  --border-light-gold: rgba(201,168,76,0.3);

  --font-sans: 'Inter', 'Noto Sans JP', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--black); color: var(--text); overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; }

/* ===== CURSOR ===== */
.cursor { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.1s; }
.cursor-follower { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.5); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all 0.15s ease; }

/* ===== PRELOADER ===== */
.preloader { position: fixed; inset: 0; background: var(--black); z-index: 10000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transition: opacity 0.6s, visibility 0.6s; }
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__logo { font-family: var(--font-serif); font-size: 72px; font-weight: 300; color: var(--white); letter-spacing: -2px; }
.preloader__logo sup { font-size: 36px; vertical-align: super; color: var(--gold); }
.preloader__bar { width: 200px; height: 1px; background: var(--dark3); overflow: hidden; }
.preloader__bar::after { content: ''; display: block; height: 100%; background: var(--gold); animation: loadBar 1.2s ease forwards; }
@keyframes loadBar { from { width: 0 } to { width: 100% } }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 48px; transition: background 0.4s, padding 0.4s; }
.header.scrolled { background: rgba(10,10,10,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header__logo { display: flex; align-items: baseline; gap: 6px; }
.logo-mark { font-family: var(--font-serif); font-size: 30px; font-weight: 300; color: var(--white); line-height: 1; letter-spacing: -1px; }
.logo-mark sup { font-size: 15px; color: var(--gold); vertical-align: super; }
.logo-name { font-size: 11px; letter-spacing: 0.12em; color: var(--gray); font-weight: 300; }
.header__nav { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 12px; font-weight: 400; letter-spacing: 0.06em; color: var(--gray-light); transition: color 0.3s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link--cta { padding: 9px 20px; border: 1px solid var(--gold); color: var(--gold); border-radius: 2px; }
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--gold); color: var(--black); }
.hamburger { display: none; flex-direction: column; gap: 7px; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 1px; background: var(--white); transition: all 0.3s; }
.hamburger.active span:first-child { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:last-child { transform: translateY(-8px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu { position: fixed; inset: 0; background: var(--black); z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__inner { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.mobile-nav-link { font-family: var(--font-serif); font-size: 38px; font-weight: 300; color: var(--white); transition: color 0.3s; }
.mobile-nav-link:hover { color: var(--gold); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== BTN ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 0.06em; padding: 14px 28px; border-radius: 2px; transition: all 0.3s; font-weight: 400; }
.btn-outline { border: 1px solid rgba(255,255,255,0.35); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.btn-fill { background: var(--gold); color: var(--black); font-weight: 600; }
.btn-fill:hover { background: var(--gold-light); }
.btn-large { font-size: 15px; padding: 18px 40px; }
.btn-submit { width: 100%; justify-content: center; margin-top: 8px; font-size: 15px; padding: 16px; }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__image { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1625401742773-1ab3c0145dea?w=1920&q=85') center/cover no-repeat; transform: scale(1.05); transition: transform 8s ease; }
.hero__image.loaded { transform: scale(1); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(4,12,30,0.82) 0%, rgba(6,15,35,0.52) 60%, rgba(8,20,40,0.25) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; padding: 0 10vw; max-width: 820px; }
.hero__tag { display: inline-block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.4); padding: 5px 14px; border-radius: 2px; margin-bottom: 28px; }
.hero__title { font-family: var(--font-serif); font-size: clamp(52px, 8vw, 108px); font-weight: 300; line-height: 1.0; color: var(--white); margin-bottom: 24px; letter-spacing: -2px; }
.hero__title .line { display: block; }
.hero__title .italic { font-style: italic; color: var(--gold-light); }
.hero__sub { font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 480px; }
.hero__sub strong { color: var(--gold-light); font-weight: 600; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__badges { display: flex; gap: 24px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.07); border: 1px solid var(--border); backdrop-filter: blur(8px); padding: 12px 20px; border-radius: 4px; }
.badge__num { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--gold-light); letter-spacing: -1px; line-height: 1; }
.badge__text { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.4; }
.badge__text small { font-size: 10px; color: var(--gray); }
.hero__scroll { position: absolute; bottom: 40px; left: 10vw; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll span { font-size: 10px; letter-spacing: 0.2em; color: var(--gray); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--gray), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ===== KAITORI ===== */
.kaitori { background: var(--dark); }
.kaitori__lead { background: var(--dark2); padding: 100px 0; }
.kaitori__lead-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: center; }
.comparison { display: flex; align-items: stretch; gap: 0; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.comparison__col { flex: 1; padding: 36px 28px; }
.comparison__col--bad { background: rgba(255,255,255,0.03); }
.comparison__col--good { background: rgba(201,168,76,0.07); border-left: 1px solid rgba(201,168,76,0.2); }
.comparison__head { font-size: 13px; letter-spacing: 0.08em; font-weight: 500; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.comparison__col--bad .comparison__head { color: var(--gray); }
.comparison__col--good .comparison__head { color: var(--gold); }
.comparison__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.comparison__col--bad li { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.6; }
.comparison__col--good li { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.6; }
.comparison__col--good li strong { color: var(--gold-light); font-weight: 600; }
.comparison__vs { display: flex; align-items: center; justify-content: center; padding: 0 16px; font-family: var(--font-serif); font-size: 20px; color: var(--gray); border-left: 1px solid var(--border); border-right: 1px solid var(--border); }

.kaitori__types { padding: 80px 0 100px; }
.kaitori__types-title { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 46px); font-weight: 300; color: var(--white); text-align: center; margin-bottom: 56px; letter-spacing: -0.5px; }
.kaitori__types-title em { font-style: italic; color: var(--gold-light); }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.type-card { background: var(--dark); padding: 40px 28px; position: relative; transition: background 0.3s; }
.type-card:hover { background: var(--dark3); }
.type-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s; }
.type-card:hover::after { width: 100%; }
.type-card__icon { font-size: 32px; margin-bottom: 16px; }
.type-card h4 { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.type-card p { font-size: 13px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.5); }

/* ===== FLOW ===== */
.flow { background: var(--black); padding: 100px 0; }
.section__header { text-align: center; margin-bottom: 72px; }
.section__desc { font-size: 14px; font-weight: 300; color: var(--gray); margin-top: 16px; }
.flow__steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: center; margin-bottom: 64px; }
.flow-step { background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; padding: 40px 28px; height: 100%; }
.flow-step__num { font-family: var(--font-serif); font-size: 48px; font-weight: 300; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 16px; }
.flow-step__body h3 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.flow-step__body p { font-size: 13px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.5); }
.flow-step__body strong { color: var(--gold-light); font-weight: 600; }
.flow-step__arrow { font-size: 24px; color: var(--gold); opacity: 0.4; padding: 0 16px; white-space: nowrap; }
.flow__cta { text-align: center; }

/* ===== TABS ===== */
.service { background: var(--dark2); padding: 100px 0; }
.tabs { display: flex; gap: 0; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 40px; }
.tab-btn { flex: 1; padding: 14px 20px; font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--gray); cursor: none; transition: all 0.3s; border-right: 1px solid var(--border); }
.tab-btn:last-child { border-right: none; }
.tab-btn:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.tab-btn.active { background: var(--gold); color: var(--black); font-weight: 600; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 48px; background: var(--dark3); border: 1px solid var(--border); border-radius: 4px; }
.tab-text h3 { font-family: var(--font-serif); font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 20px; letter-spacing: -0.5px; }
.tab-text p { font-size: 14px; font-weight: 300; line-height: 2; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.75); padding-left: 20px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 600; }
.tab-visual { height: 280px; border-radius: 4px; background-size: cover; background-position: center; }
.tab-visual--buy { background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f28f958d?w=800&q=80'); }
.tab-visual--rent { background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=800&q=80'); }
.tab-visual--invest { background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=800&q=80'); }
.tab-visual--consult { background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800&q=80'); }

/* ===== FAQ ===== */
.faq { background: var(--dark); padding: 100px 0; }
.faq__list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 32px; text-align: left; cursor: none; transition: background 0.3s; }
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q span:first-child { font-size: 15px; font-weight: 400; color: var(--white); line-height: 1.5; }
.faq-icon { font-size: 22px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.4s; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 32px 28px; font-size: 14px; font-weight: 300; line-height: 2; color: rgba(255,255,255,0.6); }
.faq-a strong { color: var(--gold-light); font-weight: 600; }

/* ===== COMPANY ===== */
.company { background: var(--light); padding: 100px 0; }
.company .section__label { color: var(--gold); }
.company .section__title { color: var(--text-dark); }
.company .section__header { border-bottom-color: var(--border-light-gold); }
.company .section__header .section__title { color: var(--text-dark2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.company__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 72px; align-items: start; margin-top: 64px; }
.company-table { width: 100%; border-collapse: collapse; }
.company-table th, .company-table td { padding: 22px 0; border-bottom: 1px solid var(--border-light); font-size: 14px; font-weight: 300; vertical-align: top; line-height: 1.8; }
.company-table th { width: 140px; color: var(--text-dark2); font-size: 12px; letter-spacing: 0.08em; padding-right: 24px; opacity: 0.7; }
.company-table td { color: var(--text-dark); }
.company-table tr:first-child th, .company-table tr:first-child td { padding-top: 0; }
.company__access h3 { font-size: 12px; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; font-weight: 400; }
.access-map { border-radius: 4px; height: 340px; overflow: hidden; margin-bottom: 14px; }
.access-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(20%) contrast(1.02); }
.access-note { font-size: 12px; color: var(--text-dark2); font-weight: 300; line-height: 1.7; opacity: 0.8; }

/* ===== CONTACT ===== */
.contact { background: var(--dark2); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.4fr; min-height: 90vh; }
.contact__lead { display: flex; flex-direction: column; justify-content: center; padding: 80px 6vw; background: var(--dark3); border-right: 1px solid var(--border); }
.contact__title { font-family: var(--font-serif); font-size: clamp(34px, 4vw, 52px); font-weight: 300; color: var(--white); line-height: 1.2; margin: 16px 0 20px; letter-spacing: -0.5px; }
.contact__title em { font-style: italic; color: var(--gold-light); }
.contact__desc { font-size: 14px; font-weight: 300; line-height: 2; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.contact__points { display: flex; flex-direction: column; gap: 20px; }
.contact-point { display: flex; align-items: flex-start; gap: 16px; }
.contact-point__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-point div { display: flex; flex-direction: column; gap: 3px; }
.contact-point strong { font-size: 14px; font-weight: 600; color: var(--white); }
.contact-point span { font-size: 12px; font-weight: 300; color: var(--gray); }
.contact__form { display: flex; flex-direction: column; justify-content: center; padding: 64px 6vw; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 12px; letter-spacing: 0.06em; color: var(--gray); }
.req { color: var(--gold); margin-left: 4px; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 2px; padding: 13px 15px; font-family: var(--font-sans); font-size: 14px; font-weight: 300; color: var(--white); outline: none; transition: border-color 0.3s; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; }
.form-success { margin-top: 16px; padding: 16px 20px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: 2px; font-size: 14px; font-weight: 300; color: var(--gold-light); line-height: 1.8; }

/* ===== FOOTER ===== */
.footer { background: var(--black); border-top: 1px solid var(--border); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; padding-top: 56px; padding-bottom: 40px; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo { font-family: var(--font-serif); font-size: 38px; font-weight: 300; color: var(--white); letter-spacing: -1px; line-height: 1; }
.footer__logo sup { font-size: 19px; color: var(--gold); vertical-align: super; }
.footer__brand p { font-size: 12px; font-weight: 300; line-height: 2; color: var(--gray); }
.footer__nav { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.footer__nav a { font-size: 13px; letter-spacing: 0.06em; color: var(--gray); transition: color 0.3s; }
.footer__nav a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--border); font-size: 11px; color: rgba(255,255,255,0.22); font-weight: 300; }
.footer__domain { letter-spacing: 0.1em; color: var(--gold); opacity: 0.45; }

/* ===== SECTION COMMON ===== */
.section { position: relative; }

/* EBISUYA-style section headers */
.section__header {
  text-align: center;
  margin-bottom: 72px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-gold);
  position: relative;
}
.section__header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.section__label {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
/* section__title inside centered section__header = small Japanese subtitle */
.section__header .section__title {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-light);
  letter-spacing: 0.06em;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-style: normal;
}
/* Light section header overrides */
.section--light .section__header {
  border-bottom-color: var(--border-light-gold);
}
.section--light .section__header .section__title {
  color: var(--text-dark2);
}
/* section__title outside header (About, CEO) = big serif marketing copy */
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-top: 12px;
}
.section__title em { font-style: italic; color: var(--gold-light); }
.section__sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-top: 14px;
  line-height: 1.9;
}

/* ===== ABOUT (corp) ===== */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 75vh; }
.about__visual { position: relative; overflow: hidden; min-height: 340px; }
.about__visual-img { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?w=900&q=80') center/cover no-repeat; transition: transform 0.6s; }
.about:hover .about__visual-img { transform: scale(1.03); }
.about__visual-caption { position: absolute; bottom: 20px; left: 20px; font-size: 11px; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); border-left: 2px solid var(--gold); padding-left: 10px; }
.about__body { display: flex; flex-direction: column; justify-content: center; padding: 72px 8vw; background: var(--light); }
.about__body .section__label { color: var(--gold); }
.about__body .section__title { color: var(--text-dark); }
.about__body .section__title em { color: var(--gold); }
.about__text p { font-size: 14px; font-weight: 300; line-height: 2; color: var(--text-dark2); margin-bottom: 14px; }
.about__body .link-arrow { color: var(--gold); }
.link-arrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; letter-spacing: 0.06em; color: var(--gold); margin-top: 28px; transition: gap 0.3s; }
.link-arrow:hover { gap: 20px; }
.link-arrow span { font-size: 18px; }

/* ===== KAITORI BANNER ===== */
.kaitori-banner { background: var(--gold); padding: 48px 0; }
.kaitori-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.kaitori-banner__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(0,0,0,0.5); margin-bottom: 8px; }
.kaitori-banner__title { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--black); letter-spacing: -0.5px; line-height: 1.2; }
.kaitori-banner__title strong { font-weight: 600; }
.kaitori-banner__sub { font-size: 13px; font-weight: 300; color: rgba(0,0,0,0.6); margin-top: 8px; }
.kaitori-banner .btn-fill { background: var(--black); color: var(--gold); flex-shrink: 0; }
.kaitori-banner .btn-fill:hover { background: var(--dark2); }

/* ===== SERVICE CORP ===== */
.service-corp { background: var(--light2); padding: 100px 0; }
.service-corp .section__label { color: var(--gold); }
.service-corp .section__title { color: var(--text-dark); }
.service-corp .section__header { border-bottom-color: var(--border-light-gold); }
.service-corp .section__header .section__title { color: var(--text-dark2); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-light); margin-top: 56px; }
.service-card { background: var(--light2); padding: 40px 28px; position: relative; display: flex; flex-direction: column; gap: 0; transition: background 0.3s; text-decoration: none; color: inherit; }
.service-card:hover { background: var(--light3); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s; }
.service-card:hover::after { width: 100%; }
.service-card__num { font-family: var(--font-serif); font-size: 48px; font-weight: 300; color: rgba(201,168,76,0.3); line-height: 1; margin-bottom: 20px; }
.service-card h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.service-card p { font-size: 13px; font-weight: 300; line-height: 1.9; color: var(--text-dark2); flex: 1; }
.service-card__link { display: inline-block; margin-top: 20px; font-size: 12px; letter-spacing: 0.08em; color: var(--gold); }

/* 05 Tech card — full-width with image */
.service-card--tech {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  min-height: 280px;
  overflow: hidden;
}
.service-card--tech:hover { background: var(--light3); }
.service-card--tech .service-card__body {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  max-width: 440px;
  flex-shrink: 0;
}
.service-card--tech .service-card__num { margin-bottom: 16px; }
.service-card--tech h3 { font-size: 18px; margin-bottom: 12px; }
.service-card--tech p { font-size: 14px; flex: unset; }
.service-card--tech .service-card__link { margin-top: 24px; }
.service-card--tech .service-card__img {
  flex: 1;
  background: linear-gradient(135deg, var(--light3) 0%, rgba(232,101,26,0.08) 100%);
  position: relative;
  min-height: 280px;
}
.nav-link--gold { color: var(--gold) !important; }
.nav-link--gold::after { background: var(--gold); }

/* ===== CONTACT POINT (no emoji) ===== */
.contact-point { display: flex; align-items: flex-start; gap: 14px; }
.contact-point__bar { width: 3px; height: 36px; background: var(--gold); border-radius: 2px; flex-shrink: 0; margin-top: 3px; }
.contact-point div { display: flex; flex-direction: column; gap: 3px; }
.contact-point strong { font-size: 14px; font-weight: 600; color: var(--white); }
.contact-point span { font-size: 12px; font-weight: 300; color: var(--gray); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .flow__steps { grid-template-columns: 1fr; gap: 0; }
  .flow-step__arrow { display: none; }
  .flow-step { border-radius: 0; border-top: none; }
  .flow-step:first-child { border-radius: 4px 4px 0 0; border-top: 1px solid var(--border); }
  .flow-step:last-child { border-radius: 0 0 4px 4px; }
  .kaitori__lead-inner { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .company__inner { grid-template-columns: 1fr; }
  .tab-inner { grid-template-columns: 1fr; }
  .tab-visual { display: none; }
}
@media (max-width: 900px) {
  .header { padding: 0 24px; }
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__lead { border-right: none; border-bottom: 1px solid var(--border); padding: 56px 8vw; }
  .footer__inner { flex-direction: column; gap: 36px; }
  .footer__nav { align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .comparison { flex-direction: column; }
  .comparison__vs { padding: 12px; border: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .hero__content { padding: 0 6vw; }
  .hero__badges { gap: 12px; }
}
@media (max-width: 600px) {
  .types-grid { grid-template-columns: 1fr; }
  .tabs { flex-wrap: wrap; }
  .tab-btn { flex: 1 1 45%; font-size: 12px; padding: 12px 10px; }
  .tab-inner { padding: 28px 20px; }
  .container { padding: 0 20px; }
  .faq-q { padding: 20px; }
  .faq-a p { padding: 0 20px 20px; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .hero__title { font-size: 46px; letter-spacing: -1px; }
  .hero__sub { font-size: 13px; }
}

/* ===== STATS STRIP ===== */
.stats-strip { display: none; }
/* .stats-strip { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); } */
.stats-strip__inner { display: flex; align-items: center; justify-content: center; padding: 40px 0; gap: 0; flex-wrap: wrap; }
.stats-strip__item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 48px; }
.stats-strip__num { font-family: var(--font-serif); font-size: 40px; font-weight: 300; color: var(--white); letter-spacing: -1px; line-height: 1; }
.stats-strip__num small { font-size: 20px; }
.stats-strip__label { font-size: 11px; letter-spacing: 0.12em; color: var(--gray); }
.stats-strip__divider { width: 1px; height: 48px; background: var(--border); }

/* ===== CEO MESSAGE ===== */
.ceo { background: var(--light2); padding: 100px 0; }
.ceo__inner { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
.ceo__photo { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ceo__photo-img { width: 220px; height: 280px; background: var(--light3); border: 1px solid var(--border-light); border-radius: 2px; background-image: none; display: flex; align-items: center; justify-content: center; }
.ceo__photo-img::after { content: '写真準備中'; font-size: 12px; color: var(--text-dark2); opacity: 0.4; letter-spacing: 0.1em; }
.ceo__photo-caption { text-align: center; }
.ceo__photo-caption strong { display: block; font-size: 16px; font-weight: 500; color: var(--text-dark); margin-bottom: 4px; }
.ceo__photo-caption span { font-size: 12px; color: var(--text-dark2); letter-spacing: 0.08em; opacity: 0.7; }
.ceo__body .section__label { color: var(--gold); }
.ceo__body .section__title { color: var(--text-dark); }
.ceo__body .section__title em { color: var(--gold); }
.ceo__text p { font-size: 14px; font-weight: 300; line-height: 2.1; color: var(--text-dark2); margin-bottom: 16px; }
.ceo__sig { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--text-dark); margin-top: 32px; letter-spacing: 0.05em; font-style: italic; }

/* ===== REASONS ===== */
.reasons { background: var(--light); padding: 100px 0; }
.reasons .section__label { color: var(--gold); }
.reasons .section__title { color: var(--text-dark); }
.reasons__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-light); margin-top: 56px; }
.reason-card { background: var(--light); padding: 48px 40px; position: relative; transition: background 0.3s; }
.reason-card:hover { background: var(--light2); }
.reason-card::before { content: ''; position: absolute; left: 0; top: 0; width: 2px; height: 0; background: var(--gold); transition: height 0.4s; }
.reason-card:hover::before { height: 100%; }
.reason-card__num { font-family: var(--font-serif); font-size: 56px; font-weight: 300; color: rgba(201,168,76,0.25); line-height: 1; margin-bottom: 20px; }
.reason-card h3 { font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.reason-card p { font-size: 13px; font-weight: 300; line-height: 1.95; color: var(--text-dark2); }

/* ===== K-REASONS ===== */
.k-reasons { background: var(--black); padding: 100px 0; }
.k-reasons__list { display: flex; flex-direction: column; gap: 0; margin-top: 56px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.k-reason { display: grid; grid-template-columns: 100px 1fr; align-items: start; gap: 0; border-bottom: 1px solid var(--border); transition: background 0.3s; }
.k-reason:last-child { border-bottom: none; }
.k-reason:hover { background: rgba(255,255,255,0.02); }
.k-reason__num { font-family: var(--font-serif); font-size: 52px; font-weight: 300; color: rgba(201,168,76,0.15); padding: 36px 28px; line-height: 1; border-right: 1px solid var(--border); }
.k-reason__body { padding: 36px 40px; }
.k-reason__body h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.k-reason__body p { font-size: 13px; font-weight: 300; line-height: 1.95; color: rgba(255,255,255,0.55); }

/* ===== CASES ===== */
.cases { background: var(--dark2); padding: 100px 0; }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 56px; }
.case-card { background: var(--dark2); padding: 40px 32px; display: flex; flex-direction: column; gap: 0; transition: background 0.3s; position: relative; overflow: hidden; }
.case-card:hover { background: var(--dark3); }
.case-card__tag { display: inline-block; font-size: 10px; letter-spacing: 0.15em; color: var(--gold); border: 1px solid rgba(201,168,76,0.35); padding: 4px 12px; border-radius: 2px; margin-bottom: 12px; }
.case-card__area { font-size: 12px; color: var(--gray); margin-bottom: 16px; letter-spacing: 0.05em; }
.case-card__title { font-family: var(--font-serif); font-size: 22px; font-weight: 300; color: var(--white); line-height: 1.4; margin-bottom: 16px; letter-spacing: -0.3px; }
.case-card__desc { font-size: 13px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.5); flex: 1; margin-bottom: 28px; }
.case-card__stats { display: flex; gap: 0; border-top: 1px solid var(--border); padding-top: 20px; }
.case-stat { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.case-stat:not(:last-child) { border-right: 1px solid var(--border); padding-right: 12px; margin-right: 12px; }
.case-stat__label { font-size: 10px; letter-spacing: 0.08em; color: var(--gray); }
.case-stat__val { font-size: 14px; font-weight: 600; color: var(--gold-light); }

/* ===== VOICES ===== */
.voices { background: var(--dark); padding: 100px 0; }
.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.voice-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; padding: 36px 28px; display: flex; flex-direction: column; gap: 20px; }
.voice-card__stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.voice-card__text { font-size: 14px; font-weight: 300; line-height: 2; color: rgba(255,255,255,0.7); flex: 1; font-style: italic; }
.voice-card__info { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; border-top: 1px solid var(--border); }
.voice-card__info span { font-size: 12px; color: var(--gray); font-weight: 300; }
.voice-card__info span:first-child { color: var(--gray-light); font-weight: 400; }

/* ===== AREAS ===== */
.areas { background: var(--dark2); padding: 100px 0; }
.areas__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-top: 56px; }
.area-group h4 { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.area-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.area-group li { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); padding-left: 12px; position: relative; }
.area-group li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.5; font-size: 10px; top: 2px; }
.area-note { background: var(--dark3); border: 1px solid var(--border); border-radius: 4px; padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.area-note p { font-size: 14px; font-weight: 300; line-height: 2; color: rgba(255,255,255,0.65); }
.area-note strong { color: var(--gold-light); font-weight: 600; }

/* ===== TECH PRODUCTS / 楽シリーズ ===== */
.tech-products { background: var(--light); padding: 100px 0; }
.tech-products .section__label { color: var(--gold); }
.tech-products .section__title { color: var(--text-dark); }
.tech-products .section__header { border-bottom-color: var(--border-light-gold); }
.tech-products .section__header .section__title { color: var(--text-dark2); }
.tech-lead {
  max-width: 640px;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-dark2);
  margin: -24px auto 60px;
  text-align: center;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}
.tech-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.tech-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.tech-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tech-card__tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
}
.tech-card__badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px 10px;
  text-transform: uppercase;
}
.tech-card__name {
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.3;
}
.tech-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  flex: 1;
}
.tech-card__feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tech-card__feats li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.tech-card__feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.tech-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.tech-card__price {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}
.tech-card__price small {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-left: 4px;
}
.tech-card__link {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.tech-card__link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.tech-series-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.tech-series-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

/* ===== 楽シリーズ BANNER ===== */
.raku-banner {
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 280px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s;
}
.raku-banner:hover { transform: translateY(-3px); }

.raku-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&q=80');
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s;
}
.raku-banner:hover .raku-banner__bg { transform: scale(1.04); }

.raku-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(6,13,24,0.94) 0%, rgba(6,13,24,0.80) 55%, rgba(6,13,24,0.55) 100%);
}

.raku-banner__body {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.raku-banner__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.raku-banner__icon {
  width: 44px;
  height: 44px;
  background: #e8651a;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  font-family: var(--font-sans);
}
.raku-banner__series {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.raku-banner__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

.raku-banner__title {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.raku-banner__title em {
  font-style: normal;
  color: #e8651a;
}

.raku-banner__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  max-width: 520px;
}

.raku-banner__products {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.raku-banner__product {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.raku-banner__product small {
  font-size: 11px;
  color: #e8651a;
  font-weight: 400;
  margin-left: 4px;
}
.raku-banner__sep {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.raku-banner__cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 48px;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,0.1);
  min-width: 180px;
}
.raku-banner__cta > span:first-child {
  font-size: 14px;
  font-weight: 500;
  color: #e8651a;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.raku-banner__url {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .raku-banner { flex-direction: column; }
  .raku-banner__body { padding: 36px 28px; }
  .raku-banner__cta { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 28px; flex-direction: row; justify-content: space-between; }
}

/* ===== FOOTER EXPANDED ===== */
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-top: 64px; padding-bottom: 48px; align-items: start; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo { font-family: var(--font-serif); font-size: 38px; font-weight: 300; color: var(--white); letter-spacing: -1px; line-height: 1; }
.footer__logo sup { font-size: 19px; color: var(--gold); vertical-align: super; }
.footer__brand p { font-size: 12px; font-weight: 300; line-height: 2; color: var(--gray); }
.footer__col h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 18px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__col ul a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer__col ul a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 11px; color: rgba(255,255,255,0.22); font-weight: 300; }
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal a { font-size: 11px; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer__legal a:hover { color: var(--gray); }
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer__legal { gap: 16px; }
}

/* ===== INNER PAGE COMMON ===== */
.inner-hero {
  background: var(--dark);
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.inner-hero::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
}
.inner-hero__label {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.inner-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.inner-hero__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ===== NEWS PAGE ===== */
.news-section { background: var(--light); padding: 80px 0 100px; }
.news-filter { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.news-filter-btn { font-size: 12px; letter-spacing: 0.06em; padding: 7px 18px; border: 1px solid var(--border-light); background: none; color: var(--text-dark2); cursor: pointer; transition: all 0.3s; }
.news-filter-btn.active, .news-filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.news-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-light); }
.news-item { display: grid; grid-template-columns: 140px 100px 1fr; gap: 0; align-items: start; border-bottom: 1px solid var(--border-light); transition: background 0.25s; text-decoration: none; color: inherit; }
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--light2); }
.news-item__date { padding: 24px 20px; font-size: 13px; font-weight: 300; color: var(--text-dark2); opacity: 0.7; white-space: nowrap; }
.news-item__cat { padding: 24px 0; }
.news-item__cat span { display: inline-block; font-size: 10px; letter-spacing: 0.1em; padding: 3px 10px; border: 1px solid rgba(201,168,76,0.4); color: var(--gold); }
.news-item__body { padding: 24px 24px; }
.news-item__title { font-size: 14px; font-weight: 400; color: var(--text-dark); line-height: 1.6; margin-bottom: 4px; }
.news-item:hover .news-item__title { color: var(--gold); }
.news-item__desc { font-size: 12px; font-weight: 300; color: var(--text-dark2); opacity: 0.7; }
@media (max-width: 600px) {
  .news-item { grid-template-columns: 1fr; }
  .news-item__date, .news-item__cat { padding: 16px 20px 0; }
  .news-item__body { padding: 8px 20px 20px; }
}

/* ===== RECRUIT PAGE ===== */
.recruit-vision { background: var(--dark); padding: 80px 0; }
.recruit-vision__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.recruit-vision__img { height: 360px; border-radius: 2px; background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&q=80') center/cover no-repeat; }
.recruit-vision__text .section__label { color: var(--gold); }
.recruit-vision__text .section__title { color: var(--white); }
.recruit-vision__text p { font-size: 14px; font-weight: 300; line-height: 2.1; color: rgba(255,255,255,0.65); margin-top: 20px; }

.recruit-env { background: var(--light); padding: 80px 0; }
.recruit-env .section__label { color: var(--gold); }
.recruit-env .section__title { color: var(--text-dark); }
.recruit-env-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); margin-top: 56px; }
.recruit-env-card { background: var(--light); padding: 40px 32px; }
.recruit-env-card__icon { font-size: 28px; margin-bottom: 16px; }
.recruit-env-card h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.recruit-env-card p { font-size: 13px; font-weight: 300; line-height: 1.9; color: var(--text-dark2); }

.recruit-jobs { background: var(--light2); padding: 80px 0 100px; }
.recruit-jobs .section__label { color: var(--gold); }
.recruit-jobs .section__title { color: var(--text-dark); }
.job-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-light); }
.job-item { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 32px 40px; border-bottom: 1px solid var(--border-light); transition: background 0.25s; }
.job-item:last-child { border-bottom: none; }
.job-item:hover { background: var(--light3); }
.job-item__tag { display: inline-block; font-size: 10px; letter-spacing: 0.1em; color: var(--gold); border: 1px solid rgba(201,168,76,0.4); padding: 3px 10px; margin-bottom: 10px; }
.job-item__title { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.job-item__detail { font-size: 13px; font-weight: 300; color: var(--text-dark2); line-height: 1.7; }
.job-item__cta { font-size: 13px; color: var(--gold); white-space: nowrap; }
@media (max-width: 768px) {
  .recruit-vision__inner { grid-template-columns: 1fr; }
  .recruit-vision__img { height: 240px; }
  .recruit-env-grid { grid-template-columns: 1fr; }
  .job-item { grid-template-columns: 1fr; gap: 16px; padding: 24px 20px; }
}

/* ===== SERVICES DETAIL PAGE ===== */
.service-detail-section { background: var(--light); padding: 80px 0 100px; }
.service-detail-grid { display: flex; flex-direction: column; gap: 0; margin-top: 56px; border: 1px solid var(--border-light); }
.service-detail-item { display: grid; grid-template-columns: 80px 1fr 340px; gap: 0; align-items: stretch; border-bottom: 1px solid var(--border-light); }
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item__num { padding: 48px 28px; border-right: 1px solid var(--border-light); display: flex; align-items: flex-start; }
.service-detail-item__num span { font-family: var(--font-serif); font-size: 40px; font-weight: 300; color: rgba(201,168,76,0.3); line-height: 1; }
.service-detail-item__body { padding: 48px 40px; }
.service-detail-item__body h3 { font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; }
.service-detail-item__body p { font-size: 14px; font-weight: 300; line-height: 2; color: var(--text-dark2); margin-bottom: 16px; }
.service-detail-item__body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-detail-item__body li { font-size: 13px; font-weight: 300; color: var(--text-dark2); padding-left: 16px; position: relative; }
.service-detail-item__body li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 3px; }
.service-detail-item__img { border-left: 1px solid var(--border-light); background-size: cover; background-position: center; min-height: 280px; }
@media (max-width: 900px) {
  .service-detail-item { grid-template-columns: 1fr; }
  .service-detail-item__num { padding: 28px 28px 0; border-right: none; border-bottom: none; }
  .service-detail-item__img { height: 220px; border-left: none; border-top: 1px solid var(--border-light); }
}

/* ===== LEGAL PAGES ===== */
.legal-section { background: var(--light); padding: 80px 0 100px; }
.legal-body { max-width: 760px; }
.legal-body h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--text-dark); margin: 48px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light-gold); letter-spacing: 0.02em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin: 24px 0 10px; }
.legal-body p { font-size: 14px; font-weight: 300; line-height: 2.1; color: var(--text-dark2); margin-bottom: 14px; }
.legal-body ul, .legal-body ol { padding-left: 24px; margin-bottom: 14px; }
.legal-body li { font-size: 14px; font-weight: 300; line-height: 2; color: var(--text-dark2); }
.legal-body .legal-note { background: var(--light2); border: 1px solid var(--border-light); padding: 24px 28px; border-radius: 2px; margin: 24px 0; font-size: 13px; font-weight: 300; line-height: 1.9; color: var(--text-dark2); }
.legal-body .legal-date { font-size: 12px; color: var(--text-dark2); opacity: 0.6; margin-top: 48px; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px;
  margin-left: 8px;
}
.lang-btn {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  padding: 4px 7px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
  background: none;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.lang-btn.active { background: var(--gold); color: var(--black); font-weight: 600; cursor: default; }
@media (max-width: 900px) {
  .lang-switcher { display: none; }
  .mobile-lang { display: flex; gap: 6px; justify-content: center; margin-top: 24px; }
  .mobile-lang .lang-btn { font-size: 13px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 3px; }
}
@media (min-width: 901px) {
  .mobile-lang { display: none; }
}

/* ===== RESPONSIVE additions ===== */
@media (max-width: 1100px) {
  .cases__grid { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr 1fr; }
  .reasons__grid { grid-template-columns: 1fr; }
  .ceo__inner { grid-template-columns: 1fr; }
  .ceo__photo { flex-direction: row; align-items: center; gap: 24px; }
  .ceo__photo-img { width: 120px; height: 150px; }
}
@media (max-width: 768px) {
  .stats-strip__item { padding: 0 20px; }
  .k-reason { grid-template-columns: 60px 1fr; }
  .k-reason__num { font-size: 36px; padding: 28px 16px; }
  .areas__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-card { padding: 28px 24px; }
  .tech-card__name { font-size: 22px; }
}
