/* =============================================
   LEARCATION PAGE
   ============================================= */

:root {
  --lear-green:  #3a6b35;
  --lear-blue:   #4a7fa0;
  --lear-amber:  #c87941;
  --lear-dark:   #2a2a24;
  --lear-bg:     #f7f9f4;
  --lear-border: #e4ecdf;
  --lear-label:  #8aaf84;
}

.lear-main { background: var(--lear-bg); }

.lear-sec__label {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--lear-label);
  font-weight: 700;
  margin-bottom: 8px;
}
.lear-sec__h2 {
  margin: 0 0 36px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--lear-dark);
  line-height: 1.4;
}

/* ------------------------------------------
   HERO
   ------------------------------------------ */
.lear-hero {
  position: relative;
  height: 72vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lear-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.22) 0%, rgba(0,0,0,.50) 100%);
}
.lear-hero__body {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.lear-hero__badge {
  display: inline-block;
  background: var(--lear-amber);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 4px 14px;
  border-radius: 20px;
  margin: 0 0 14px;
}
.lear-hero__label {
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 700;
  opacity: .8;
  margin: 0 0 12px;
}
.lear-hero__h1 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 4vw, 42px);
  margin: 0 0 14px;
  line-height: 1.45;
  letter-spacing: .03em;
}
.lear-hero__sub {
  font-size: clamp(13px, 2vw, 16px);
  opacity: .85;
  margin: 0;
  letter-spacing: .04em;
}

/* ------------------------------------------
   CONCEPT
   ------------------------------------------ */
.lear-concept {
  padding: 80px 40px;
  background: #fff;
}
.lear-concept__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lear-concept__body {
  font-size: 15px;
  line-height: 1.9;
  color: #4a4a42;
  margin: 0 0 16px;
}
.lear-concept__body:last-child { margin-bottom: 0; }
.lear-concept__photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}
.lear-concept__photo--graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f5ee;
  border-radius: 12px;
  padding: 40px;
}
.lear-concept__photo--graphic img {
  height: auto;
  max-height: 280px;
  object-fit: contain;
  border-radius: 0;
}

/* ------------------------------------------
   FEATURES
   ------------------------------------------ */
.lear-features {
  padding: 80px 40px;
  background: var(--lear-bg);
}
.lear-features__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lear-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lear-feature {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px 36px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border-top: 3px solid var(--lear-green);
}
.lear-feature__icon {
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
  background: var(--lear-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lear-feature__h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--lear-dark);
  margin: 0 0 12px;
}
.lear-feature__desc {
  font-size: 13px;
  color: #5a5a52;
  line-height: 1.8;
  margin: 0;
}

/* ------------------------------------------
   PROGRAMS
   ------------------------------------------ */
.lear-programs {
  padding: 80px 40px;
  background: #fff;
}
.lear-programs__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lear-program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.lear-program:last-of-type { margin-bottom: 0; }
.lear-program--reverse .lear-program__photo { order: 2; }
.lear-program--reverse .lear-program__body  { order: 1; }
.lear-program__photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
}
.lear-program__num {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: var(--lear-border);
  line-height: 1;
  margin-bottom: 8px;
}
.lear-program__h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--lear-dark);
  margin: 0 0 16px;
  line-height: 1.35;
}
.lear-program__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #4a4a42;
  margin: 0 0 24px;
}
.lear-program__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lear-btn-plan {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--lear-bg);
  border: 1.5px solid var(--lear-border);
  border-radius: 8px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--lear-dark);
  transition: background .2s, border-color .2s;
}
.lear-btn-plan:hover {
  background: #eef4e8;
  border-color: var(--lear-green);
}
.lear-btn-plan__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--lear-green);
  background: rgba(58,107,53,.1);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.lear-btn-plan__text {
  font-size: 14px;
  font-weight: 700;
  flex: 1;
}
.lear-btn-plan__arrow {
  color: var(--lear-green);
  font-weight: 700;
}

/* More programs */
.lear-more {
  margin-top: 56px;
  padding: 32px 40px;
  background: var(--lear-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lear-more__text {
  font-size: 15px;
  color: #4a4a42;
  margin: 0;
  line-height: 1.6;
}
.lear-btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lear-green);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background .2s;
}
.lear-btn-more:hover { background: #245228; }

/* ------------------------------------------
   STAY
   ------------------------------------------ */
.lear-stay {
  padding: 80px 40px;
  background: var(--lear-bg);
}
.lear-stay__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lear-stay__lead {
  font-size: 15px;
  color: #5a5a52;
  margin: -20px 0 32px;
}
.lear-stay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.lear-stay-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
  transition: transform .25s, box-shadow .25s;
}
.lear-stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.lear-stay-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.lear-stay-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: #fff;
}
.lear-stay-card__name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--lear-dark);
}
.lear-stay-card__desc {
  font-size: 13px;
  color: #7a7a70;
  margin-top: 2px;
}
.lear-stay-card__arrow {
  color: var(--lear-green);
  font-weight: 700;
  font-size: 18px;
}

/* ------------------------------------------
   CTA
   ------------------------------------------ */
.lear-cta {
  position: relative;
  padding: 100px 40px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.lear-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 40, 18, .60);
}
.lear-cta__body {
  position: relative;
  z-index: 1;
  color: #fff;
}
.lear-cta__label {
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 700;
  opacity: .75;
  margin: 0 0 10px;
}
.lear-cta__h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  margin: 0 0 14px;
}
.lear-cta__text {
  font-size: 15px;
  line-height: 1.8;
  opacity: .88;
  margin: 0 0 36px;
}
.lear-cta__btns {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lear-btn-web {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--lear-green);
  color: #fff;
  text-decoration: none;
  padding: 20px 44px;
  border-radius: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(0,0,0,.30);
  transition: background .2s;
}
.lear-btn-web:hover { background: #245228; }
.lear-btn-web__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
}
.lear-btn-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  gap: 2px;
  transition: background .2s;
}
.lear-btn-tel:hover { background: rgba(255,255,255,.18); }
.lear-btn-tel__small { font-size: 11px; letter-spacing: 1px; opacity: .8; }
.lear-btn-tel__num { font-weight: 900; font-size: 24px; letter-spacing: 2px; }
.lear-btn-tel__hours { font-size: 11px; opacity: .65; }

/* ------------------------------------------
   RESPONSIVE
   ------------------------------------------ */
@media (max-width: 900px) {
  .lear-concept__inner { grid-template-columns: 1fr; }
  .lear-concept__photo img { height: 240px; }
  .lear-features__grid { grid-template-columns: 1fr; }
  .lear-program,
  .lear-program--reverse { grid-template-columns: 1fr; }
  .lear-program--reverse .lear-program__photo { order: 0; }
  .lear-program--reverse .lear-program__body  { order: 0; }
  .lear-program__photo img { height: 240px; }
  .lear-more { flex-direction: column; align-items: flex-start; }
  .lear-stay__grid { grid-template-columns: 1fr; }
  .lear-concept,
  .lear-features,
  .lear-programs,
  .lear-stay { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 600px) {
  .lear-hero { height: 60vh; }
  .lear-cta__btns { flex-direction: column; align-items: stretch; }
  .lear-btn-web,
  .lear-btn-tel { justify-content: center; }
}
