:root {
  --ink: #1f2432;
  --body: #646b74;
  --muted: #949ba1;
  --mint: #59beb7;
  --mint-dark: #369e98;
  --mint-soft: #e9f7f4;
  --blue-soft: #edf7ff;
  --peach-soft: #fff1e8;
  --paper: #ffffff;
  --canvas: #fbfdfd;
  --line: #e9eeee;
  --shadow: 0 18px 55px rgba(43, 83, 88, .10);
  --serif: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  --sans: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--canvas); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.modal-open, body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.container { width: min(1420px, calc(100% - 80px)); margin-inline: auto; }
.site-header { position: relative; z-index: 30; height: 96px; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(232,237,237,.72); }
.header-inner { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.wordmark { justify-self: start; font-family: var(--serif); font-size: 29px; font-weight: 800; letter-spacing: .12em; }
.wordmark small { display: block; margin-top: -1px; color: var(--mint-dark); font: 600 8px/1 var(--sans); letter-spacing: .34em; }
.desktop-nav { display: flex; align-items: center; gap: 54px; height: 100%; }
.nav-item { position: relative; display: grid; place-items: center; height: 100%; font-size: 16px; white-space: nowrap; }
.nav-item::after { content: ""; position: absolute; left: 50%; bottom: 12px; width: 0; height: 2px; background: var(--mint); transform: translateX(-50%); transition: width .2s ease; }
.nav-item:hover::after, .nav-item.active::after { width: 32px; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 25px; }
.icon-button, .mobile-toggle { width: 42px; height: 42px; display: grid; place-items: center; border: 0; background: transparent; border-radius: 50%; cursor: pointer; font-size: 23px; }
.icon-button:hover, .mobile-toggle:hover { background: var(--mint-soft); }
.login-button { height: 42px; padding: 0 25px; border: 1px solid var(--mint); border-radius: 10px; color: var(--mint-dark); background: white; cursor: pointer; transition: .2s ease; }
.login-button:hover { color: white; background: var(--mint); }
.mobile-toggle { display: none; }

.mobile-nav { display: none; position: fixed; inset: 96px 0 0; z-index: 25; padding: 30px 24px; background: rgba(255,255,255,.98); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 18px 8px; border-bottom: 1px solid var(--line); font: 700 25px/1.3 var(--serif); }

.hero { position: relative; min-height: 600px; overflow: hidden; background: linear-gradient(110deg, #fff 0%, #fbfefe 48%, #f1fbff 100%); }
.hero-inner { min-height: 600px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 54px; }
.hero-copy { position: relative; z-index: 2; padding-left: 34px; }
.eyebrow { margin: 0 0 18px; color: var(--mint-dark); font-size: 13px; font-weight: 700; letter-spacing: .22em; }
.hero h1 { margin: 0; font: 800 clamp(50px, 5.5vw, 80px)/1.18 var(--serif); letter-spacing: .02em; }
.hero-subtitle { margin: 24px 0 0; color: var(--body); font-size: 19px; line-height: 1.9; }
.hero-actions { display: flex; gap: 20px; margin-top: 36px; }
.button { min-width: 150px; height: 52px; padding-inline: 26px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 11px; border: 1px solid #d9dfe1; background: white; font-weight: 650; transition: .2s ease; cursor: pointer; }
.button.primary { border-color: var(--mint); color: white; background: var(--mint); box-shadow: 0 12px 30px rgba(89,190,183,.22); }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stats { display: flex; margin-top: 44px; }
.stat { min-width: 150px; display: flex; align-items: center; gap: 13px; padding-right: 28px; margin-right: 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; margin-right: 0; }
.stat-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--mint-dark); background: var(--mint-soft); font-size: 22px; }
.stat:nth-child(2) .stat-icon { color: #5e93eb; background: var(--blue-soft); }
.stat:nth-child(3) .stat-icon { color: #f58e4d; background: var(--peach-soft); }
.stat strong { display: block; font: 700 20px/1 var(--serif); }
.stat small { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }

.hero-collage { position: relative; height: 540px; }
.hero-photo { position: absolute; overflow: hidden; border: 8px solid rgba(255,255,255,.92); border-radius: 32px; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo.main { width: 53%; height: 77%; right: 18%; top: 4%; }
.hero-photo.side { width: 35%; height: 58%; right: 0; bottom: 2%; }
.hero-photo.small { width: 33%; height: 39%; left: 13%; bottom: 3%; }
.quote-card { position: absolute; z-index: 3; right: 1%; top: 23%; width: 190px; padding: 27px; border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.quote-card i { color: #f28e4e; font-size: 25px; }
.quote-card strong { display: block; margin: 16px 0 10px; font: 700 21px/1.45 var(--serif); }
.quote-card small { color: var(--muted); }

.section { padding: 90px 0; }
.section.white { background: white; }
.home-stories { padding: 48px 0 64px; background: white; }
.home-stories-layout { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 28px; }
.home-stories-intro .section-title { font-size: 32px; }
.home-stories-intro .text-link { display: inline-block; margin-top: 24px; font-size: 13px; }
.home-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.home-article-card { min-height: 190px; display: grid; grid-template-columns: 44% 56%; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 10px 30px rgba(34,68,70,.07); transition: transform .25s ease, box-shadow .25s ease; }
.home-article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.home-article-card > img { width: 100%; height: 100%; object-fit: cover; }
.home-article-copy { display: flex; flex-direction: column; justify-content: center; padding: 18px; }
.home-article-copy h3 { margin: 0 0 10px; font: 700 18px/1.35 var(--serif); }
.home-article-copy > p { margin: 0; color: var(--body); font-size: 12px; line-height: 1.7; }
.home-article-copy .author-row { margin-top: 15px; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 34px; }
.section-kicker { margin: 0 0 9px; color: var(--mint-dark); font-size: 12px; font-weight: 800; letter-spacing: .2em; }
.section-title { margin: 0; font: 750 clamp(31px, 3vw, 44px)/1.25 var(--serif); }
.text-link { color: var(--mint-dark); font-weight: 650; }
.text-link i { margin-left: 6px; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 10px 35px rgba(34,68,70,.06); transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.article-card img { width: 100%; height: 240px; object-fit: cover; }
.article-body { padding: 24px; }
.article-meta { color: var(--mint-dark); font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.article-card h3 { margin: 10px 0; font: 700 23px/1.4 var(--serif); }
.article-card p { margin: 0; color: var(--body); font-size: 14px; line-height: 1.8; }
.author-row { display: flex; align-items: center; gap: 9px; margin-top: 20px; color: var(--muted); font-size: 12px; }
.author-row i { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: var(--mint-dark); background: var(--mint-soft); font-size: 16px; }

.page-hero { padding: 82px 0 70px; text-align: center; background: linear-gradient(180deg, #f4fbfb, #fff); }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin: 0; font: 800 clamp(44px, 5vw, 68px)/1.2 var(--serif); }
.page-hero p:last-child { max-width: 620px; margin: 20px auto 0; color: var(--body); font-size: 17px; line-height: 1.9; }
.filter-bar { display: flex; justify-content: center; gap: 12px; margin: 36px 0 42px; flex-wrap: wrap; }
.filter-chip { padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px; background: white; cursor: pointer; }
.filter-chip.active, .filter-chip:hover { color: white; border-color: var(--mint); background: var(--mint); }
.discover-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 24px; }
.discover-card { position: relative; min-height: 480px; overflow: hidden; border-radius: 24px; background: #dceeee; }
.discover-card.small { min-height: 360px; }
.discover-card img { width: 100%; height: 100%; object-fit: cover; }
.discover-overlay { position: absolute; inset: auto 0 0; padding: 70px 28px 28px; color: white; background: linear-gradient(transparent, rgba(21,35,38,.72)); }
.discover-overlay h2, .discover-overlay h3 { margin: 7px 0 0; font-family: var(--serif); }
.discover-overlay h2 { font-size: 34px; }
.discover-overlay h3 { font-size: 24px; }

.inspiration-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.big-quote { font: 750 clamp(36px, 4vw, 56px)/1.45 var(--serif); }
.big-quote span { color: var(--mint-dark); }
.intro-photo { height: 460px; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.masonry { columns: 3; column-gap: 24px; }
.masonry-card { break-inside: avoid; margin-bottom: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; }
.masonry-card img { width: 100%; max-height: 430px; object-fit: cover; }
.masonry-copy { padding: 22px; }
.masonry-copy h3 { margin: 0 0 9px; font: 700 22px/1.4 var(--serif); }
.masonry-copy p { margin: 0; color: var(--body); line-height: 1.8; }

.about-intro { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.about-photo { height: 560px; overflow: hidden; border-radius: 32px; box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { margin: 0 0 24px; font: 800 clamp(40px, 4.5vw, 62px)/1.25 var(--serif); }
.about-copy p { color: var(--body); font-size: 17px; line-height: 2; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.value-card { padding: 30px; border-radius: 20px; background: var(--mint-soft); }
.value-card i { color: var(--mint-dark); font-size: 28px; }
.value-card h3 { margin: 18px 0 9px; font: 700 22px/1.3 var(--serif); }
.value-card p { margin: 0; color: var(--body); line-height: 1.8; }

.site-footer { padding: 60px 0 34px; color: #748080; background: #eff8f7; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid #dceaea; }
.footer-tagline { max-width: 380px; margin: 16px 0 0; line-height: 1.8; }
.footer-links { display: flex; gap: 48px; }
.footer-links div { display: grid; gap: 12px; }
.footer-links strong { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 28px; font-size: 12px; }

.modal { display: none; position: fixed; inset: 0; z-index: 80; place-items: center; padding: 24px; background: rgba(23,35,39,.36); backdrop-filter: blur(8px); }
.modal.open { display: grid; }
.modal-panel { position: relative; width: min(440px, 100%); padding: 38px; border-radius: 26px; background: white; box-shadow: 0 35px 100px rgba(32,70,72,.25); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #f1f6f5; cursor: pointer; font-size: 20px; }
.modal-panel h2 { margin: 4px 0 8px; font: 800 34px/1.2 var(--serif); }
.modal-panel > p { margin: 0 0 26px; color: var(--body); }
.field { display: grid; gap: 8px; margin-bottom: 17px; }
.field label { font-size: 13px; font-weight: 650; }
.field input { width: 100%; height: 48px; padding: 0 15px; border: 1px solid #dfe8e7; border-radius: 10px; outline: 0; }
.field input:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(89,190,183,.13); }
.modal-panel .button { width: 100%; }
.form-note { min-height: 20px; margin-top: 14px; color: var(--mint-dark); text-align: center; font-size: 13px; }
.search-panel input { height: 58px; font-size: 18px; }
.search-hints { margin-top: 18px; color: var(--muted); font-size: 13px; }

@media (max-width: 1100px) {
  .container { width: min(100% - 42px, 900px); }
  .desktop-nav { gap: 30px; }
  .hero-inner { grid-template-columns: 1fr; padding: 70px 0; }
  .hero-copy { padding-left: 0; }
  .hero-collage { height: 510px; }
  .stats { flex-wrap: wrap; gap: 16px; }
  .stat { margin-right: 0; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-card:last-child { grid-column: span 2; }
  .home-stories-layout { grid-template-columns: 1fr; }
  .home-story-grid { grid-template-columns: 1fr 1fr; }
  .home-article-card:last-child { grid-column: span 2; }
  .discover-grid { grid-template-columns: 1fr 1fr; }
  .discover-card:first-child { grid-column: span 2; }
  .masonry { columns: 2; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 620px); }
  .site-header { height: 78px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .icon-button, .header-actions .login-button { display: none; }
  .mobile-toggle { display: grid; }
  .mobile-nav { inset-top: 78px; }
  .wordmark { font-size: 25px; }
  .hero h1 { font-size: 48px; }
  .hero-subtitle br { display: none; }
  .hero-actions { flex-wrap: wrap; }
  .button { min-width: 136px; }
  .stats { display: grid; grid-template-columns: 1fr 1fr; }
  .stat { border: 0; padding: 0; }
  .hero-collage { height: 430px; }
  .hero-photo.main { width: 70%; right: 10%; }
  .hero-photo.side { width: 42%; }
  .hero-photo.small { width: 40%; left: 2%; }
  .quote-card { width: 160px; padding: 20px; }
  .quote-card strong { font-size: 17px; }
  .section { padding: 64px 0; }
  .section-head { align-items: start; gap: 16px; }
  .article-grid, .discover-grid, .value-grid { grid-template-columns: 1fr; }
  .article-card:last-child, .discover-card:first-child { grid-column: auto; }
  .home-story-grid { grid-template-columns: 1fr; }
  .home-article-card:last-child { grid-column: auto; }
  .discover-card, .discover-card.small { min-height: 380px; }
  .inspiration-intro, .about-intro { grid-template-columns: 1fr; gap: 36px; }
  .intro-photo, .about-photo { height: 410px; }
  .masonry { columns: 1; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-links { gap: 28px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero { min-height: auto; }
  .hero-inner { padding-top: 52px; }
  .hero h1 { font-size: 41px; }
  .hero-subtitle { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
  .hero-collage { height: 350px; }
  .quote-card { display: none; }
  .section-head { display: block; }
  .section-head .text-link { display: inline-block; margin-top: 18px; }
  .article-card img { height: 210px; }
  .page-hero { padding: 60px 0 54px; }
  .page-hero h1 { font-size: 41px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
