@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
  --lh-bg: #F7FAFC;
  --lh-white: #FFFFFF;
  --lh-blue: #3182CE;
  --lh-blue-light: #EBF4FF;
  --lh-green: #48BB78;
  --lh-green-light: #F0FFF4;
  --lh-orange: #ED8936;
  --lh-orange-light: #FFFAF0;
  --lh-text: #2D3748;
  --lh-text-light: #718096;
  --lh-border: #E2E8F0;
  --lh-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --lh-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --lh-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --lh-radius: 12px;
  --lh-font-title: 'Kiwi Maru', sans-serif;
  --lh-font-body: 'Zen Kaku Gothic New', sans-serif;
  --lh-max-w: 1200px;
  --lh-header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--lh-font-body);
  color: var(--lh-text);
  background: var(--lh-bg);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: var(--lh-blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--lh-green);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lh-font-title);
  line-height: 1.4;
  color: var(--lh-text);
}

.container {
  max-width: var(--lh-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.lh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--lh-header-h);
  background: var(--lh-white);
  box-shadow: var(--lh-shadow-sm);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.lh-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.lh-logo {
  font-family: var(--lh-font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lh-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lh-logo span {
  color: var(--lh-blue);
}

.lh-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lh-nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--lh-text);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.lh-nav-link:hover {
  background: var(--lh-blue-light);
  color: var(--lh-blue);
}

.lh-nav-dropdown {
  position: relative;
}

.lh-nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lh-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--lh-white);
  border-radius: var(--lh-radius);
  box-shadow: var(--lh-shadow-lg);
  min-width: 280px;
  padding: 8px 0;
  z-index: 100;
}

.lh-nav-dropdown.open .lh-nav-dropdown-menu {
  display: block;
}

.lh-nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--lh-text);
  transition: background 0.15s;
}

.lh-nav-dropdown-item:hover {
  background: var(--lh-blue-light);
  color: var(--lh-blue);
}

.lh-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--lh-blue);
  color: var(--lh-white);
  border: none;
  border-radius: 8px;
  font-family: var(--lh-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.lh-cta-btn:hover {
  background: #2B6CB0;
  color: var(--lh-white);
  transform: translateY(-1px);
}

.lh-cta-btn--green {
  background: var(--lh-green);
}

.lh-cta-btn--green:hover {
  background: #38A169;
}

.lh-cta-btn--orange {
  background: var(--lh-orange);
}

.lh-cta-btn--orange:hover {
  background: #DD6B20;
}

.lh-cta-btn--outline {
  background: transparent;
  color: var(--lh-blue);
  border: 2px solid var(--lh-blue);
}

.lh-cta-btn--outline:hover {
  background: var(--lh-blue);
  color: var(--lh-white);
}

.lh-hero {
  margin-top: var(--lh-header-h);
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--lh-text);
  position: relative;
  overflow: hidden;
}

.lh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../visuals/hero-bento.jpg') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.lh-hero-tile {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  transition: background 0.3s;
}

.lh-hero-tile:hover {
  background: rgba(0,0,0,0.65);
}

.lh-hero-tile--main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: rgba(0,0,0,0.5);
  padding: 48px 56px;
}

.lh-hero-tile--main h1 {
  font-size: 2.2rem;
  color: var(--lh-white);
  margin-bottom: 16px;
}

.lh-hero-tile--main p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 540px;
}

.lh-hero-tile h2 {
  font-size: 1rem;
  color: var(--lh-white);
  margin-bottom: 8px;
}

.lh-hero-tile p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.lh-hero-tile .lh-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.lh-tag--blue { background: var(--lh-blue); color: var(--lh-white); }
.lh-tag--green { background: var(--lh-green); color: var(--lh-white); }
.lh-tag--orange { background: var(--lh-orange); color: var(--lh-white); }

.lh-section {
  padding: 80px 0;
}

.lh-section--gray {
  background: #EDF2F7;
}

.lh-section--blue {
  background: var(--lh-blue-light);
}

.lh-section--white {
  background: var(--lh-white);
}

.lh-section-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 12px;
}

.lh-section-subtitle {
  text-align: center;
  color: var(--lh-text-light);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lh-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lh-card {
  background: var(--lh-white);
  border-radius: var(--lh-radius);
  overflow: hidden;
  box-shadow: var(--lh-shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lh-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lh-shadow-md);
}

.lh-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.lh-card-body {
  padding: 20px;
}

.lh-card-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.lh-card-text {
  font-size: 0.88rem;
  color: var(--lh-text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.lh-card-link {
  font-size: 0.88rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lh-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lh-mission-img {
  border-radius: var(--lh-radius);
  box-shadow: var(--lh-shadow-md);
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.lh-mission-content h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.lh-mission-content p {
  color: var(--lh-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.lh-faq-item {
  background: var(--lh-white);
  border-radius: var(--lh-radius);
  margin-bottom: 12px;
  box-shadow: var(--lh-shadow-sm);
  overflow: hidden;
}

.lh-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--lh-font-title);
  font-size: 1rem;
  font-weight: 500;
  background: var(--lh-white);
  border: none;
  width: 100%;
  text-align: left;
  color: var(--lh-text);
  transition: background 0.2s;
}

.lh-faq-question:hover {
  background: var(--lh-blue-light);
}

.lh-faq-question svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.lh-faq-item.open .lh-faq-question svg {
  transform: rotate(180deg);
}

.lh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.lh-faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--lh-text-light);
  line-height: 1.7;
  font-size: 0.92rem;
}

.lh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lh-about-img {
  border-radius: var(--lh-radius);
  box-shadow: var(--lh-shadow-md);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.lh-about-content h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.lh-about-content p {
  color: var(--lh-text-light);
  margin-bottom: 12px;
  line-height: 1.8;
}

.lh-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lh-pillar-card {
  background: var(--lh-white);
  border-radius: var(--lh-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--lh-shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lh-pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lh-shadow-md);
}

.lh-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lh-pillar-icon--blue { background: var(--lh-blue-light); color: var(--lh-blue); }
.lh-pillar-icon--green { background: var(--lh-green-light); color: var(--lh-green); }
.lh-pillar-icon--orange { background: var(--lh-orange-light); color: var(--lh-orange); }

.lh-pillar-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.lh-pillar-card p {
  font-size: 0.82rem;
  color: var(--lh-text-light);
  line-height: 1.6;
}

.lh-closing {
  background: linear-gradient(135deg, var(--lh-blue) 0%, #2B6CB0 100%);
  color: var(--lh-white);
  text-align: center;
  padding: 80px 24px;
}

.lh-closing h2 {
  color: var(--lh-white);
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.lh-closing p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.lh-closing .lh-cta-btn--white {
  background: var(--lh-white);
  color: var(--lh-blue);
}

.lh-closing .lh-cta-btn--white:hover {
  background: #F0FFF4;
  color: #2B6CB0;
}

.lh-footer {
  background: #1A202C;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
}

.lh-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lh-footer h4 {
  color: var(--lh-white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.lh-footer p, .lh-footer a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.lh-footer a:hover {
  color: var(--lh-blue);
}

.lh-footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.lh-footer-links ul {
  list-style: none;
}

.lh-footer-links li {
  margin-bottom: 6px;
}

.lh-footer-nav-picks ul {
  list-style: none;
}

.lh-footer-nav-picks li {
  margin-bottom: 6px;
}

.lh-copyright {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.lh-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2D3748;
  color: var(--lh-white);
  padding: 16px 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.lh-cookie-bar.visible {
  display: flex;
}

.lh-cookie-bar p {
  font-size: 0.88rem;
  flex: 1;
  min-width: 280px;
}

.lh-cookie-bar p a {
  color: var(--lh-blue);
  text-decoration: underline;
}

.lh-cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.lh-cookie-btn {
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  font-size: 0.85rem;
  font-family: var(--lh-font-body);
  cursor: pointer;
  transition: background 0.2s;
}

.lh-cookie-accept {
  background: var(--lh-blue);
  color: var(--lh-white);
}

.lh-cookie-accept:hover {
  background: #2B6CB0;
}

.lh-cookie-reject {
  background: transparent;
  color: var(--lh-white);
  border: 1px solid rgba(255,255,255,0.3);
}

.lh-cookie-reject:hover {
  background: rgba(255,255,255,0.1);
}

.lh-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lh-modal-overlay.visible {
  display: flex;
}

.lh-modal {
  background: var(--lh-white);
  border-radius: var(--lh-radius);
  padding: 40px;
  max-width: 440px;
  text-align: center;
  box-shadow: var(--lh-shadow-lg);
}

.lh-modal h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.lh-modal p {
  color: var(--lh-text-light);
  margin-bottom: 20px;
}

.lh-page-header {
  margin-top: var(--lh-header-h);
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--lh-blue-light) 0%, #F0FFF4 100%);
}

.lh-page-header h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.lh-page-header p {
  color: var(--lh-text-light);
  max-width: 560px;
  margin: 0 auto;
}

.lh-prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px;
}

.lh-prose h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--lh-blue-light);
}

.lh-prose h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
}

.lh-prose p {
  margin-bottom: 16px;
  line-height: 1.85;
  color: var(--lh-text);
}

.lh-prose ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.lh-prose li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.lh-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--lh-text-light);
  font-size: 0.85rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--lh-border);
}

.lh-article-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--lh-radius);
  margin-bottom: 32px;
}

.lh-prevnext {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--lh-border);
}

.lh-prevnext a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  padding: 10px 16px;
  background: var(--lh-white);
  border-radius: 8px;
  box-shadow: var(--lh-shadow-sm);
  transition: box-shadow 0.2s;
}

.lh-prevnext a:hover {
  box-shadow: var(--lh-shadow-md);
}

.lh-contact-wrapper {
  margin-top: var(--lh-header-h);
}

.lh-contact-info-section {
  background: linear-gradient(135deg, var(--lh-blue-light) 0%, #F0FFF4 100%);
  padding: 60px 0;
}

.lh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

.lh-contact-info-list {
  list-style: none;
}

.lh-contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.lh-contact-info-list li svg {
  color: var(--lh-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.lh-contact-form-card {
  background: var(--lh-white);
  border-radius: var(--lh-radius);
  padding: 36px;
  box-shadow: var(--lh-shadow-md);
}

.lh-contact-form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

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

.lh-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--lh-text);
}

.lh-form-group input,
.lh-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--lh-border);
  border-radius: 8px;
  font-family: var(--lh-font-body);
  font-size: 0.92rem;
  color: var(--lh-text);
  background: var(--lh-bg);
  transition: border-color 0.2s;
}

.lh-form-group input:focus,
.lh-form-group textarea:focus {
  outline: none;
  border-color: var(--lh-blue);
}

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

.lh-map-section {
  background: var(--lh-bg);
  padding: 0;
}

.lh-map-container {
  width: 100%;
  height: 420px;
  position: relative;
}

.lh-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lh-legal-section {
  margin-top: var(--lh-header-h);
}

.lh-legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 60px;
}

.lh-legal-content h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  text-align: center;
}

.lh-legal-content > p:first-of-type {
  text-align: center;
  color: var(--lh-text-light);
  margin-bottom: 32px;
}

.lh-legal-content h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  color: var(--lh-text);
}

.lh-legal-content p {
  margin-bottom: 14px;
  line-height: 1.85;
  color: var(--lh-text);
}

.lh-legal-content ul {
  margin-bottom: 14px;
  padding-left: 24px;
}

.lh-legal-content li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.lh-list-header {
  margin-top: var(--lh-header-h);
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--lh-blue-light) 0%, #F0FFF4 100%);
}

.lh-list-header h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.lh-list-header p {
  color: var(--lh-text-light);
  max-width: 560px;
  margin: 0 auto;
}

.lh-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--lh-text);
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 768px) {
  .lh-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .lh-hero-tile--main {
    grid-column: 1;
    grid-row: auto;
    padding: 32px 24px;
  }

  .lh-hero-tile--main h1 {
    font-size: 1.6rem;
  }

  .lh-grid-3 {
    grid-template-columns: 1fr;
  }

  .lh-grid-2,
  .lh-mission,
  .lh-about-grid,
  .lh-contact-grid {
    grid-template-columns: 1fr;
  }

  .lh-pillar-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .lh-nav {
    display: none;
    position: absolute;
    top: var(--lh-header-h);
    left: 0;
    right: 0;
    background: var(--lh-white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--lh-shadow-md);
  }

  .lh-nav.active {
    display: flex;
  }

  .lh-mobile-toggle {
    display: block;
  }

  .lh-nav-dropdown-menu {
    position: static;
    box-shadow: none;
    min-width: auto;
  }

  .lh-pillar-grid {
    grid-template-columns: 1fr;
  }

  .lh-prevnext {
    flex-direction: column;
  }

  .lh-map-container {
    height: 300px;
  }
}
