:root {
  --forest: #123f30;
  --leaf: #2f7d5a;
  --sun: #dd8a32;
  --paper: #fffaf1;
  --cream: #f6f1e8;
  --mist: #edf4f1;
  --ink: #1d2724;
  --muted: #68736d;
  --line: #dfd4c2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(18, 63, 48, 0.12);
  background: rgba(255, 250, 241, 0.95);
  backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(18px, 5vw, 72px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-mark span {
  display: grid;
}

.brand-mark strong {
  color: var(--forest);
  font-size: 24px;
  line-height: 1.05;
}

.brand-mark small {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  color: #33423c;
  font-size: 15px;
  font-weight: 800;
}

.desktop-nav a {
  padding: 10px 0;
}

.nav-cta,
.primary-action,
.secondary-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 900;
}

.nav-cta,
.primary-action {
  background: var(--sun);
  color: white;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-size: 30px;
}

.mobile-nav {
  display: none;
  padding: 10px 22px 22px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-weight: 900;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 76px clamp(22px, 6vw, 86px);
  color: #fffaf1;
  overflow: hidden;
}

.hero-section > img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(14, 44, 35, 0.9), rgba(14, 44, 35, 0.58) 52%, rgba(14, 44, 35, 0.18));
}

.hero-inner {
  position: relative;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(320px, 720px) minmax(220px, 1fr);
  gap: 44px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
}

.hero-copy p:last-of-type {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  gap: 12px;
}

.hero-stats div {
  border-left: 3px solid var(--sun);
  background: rgba(255, 250, 241, 0.09);
  padding: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 34px;
}

.hero-stats span {
  color: #eadfce;
}

.lead-panel {
  position: relative;
  z-index: 2;
  margin-top: -52px;
  padding: 0 clamp(22px, 6vw, 86px) 56px;
}

.lead-form,
.contact-form {
  display: grid;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 20px 54px rgba(18, 63, 48, 0.12);
}

.lead-form h2 {
  margin: 0 0 4px;
  color: var(--forest);
  font-size: clamp(24px, 3vw, 34px);
}

.contact-section {
  padding-top: 58px;
}

.contact-layout {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  margin: 0 auto;
}

.contact-layout .contact-form {
  margin: 0;
}

.contact-form-head {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 20px;
}

.contact-form-head h2,
.contact-card h2 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 24px;
}

.contact-form-head p,
.contact-card p,
.privacy-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-trust-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 900;
}

.form-section-title {
  margin-top: 8px;
  color: var(--forest);
  font-size: 18px;
  font-weight: 900;
}

.contact-grid-basic {
  grid-template-columns: repeat(2, 1fr);
}

.privacy-note {
  text-align: center;
  font-size: 14px;
}

.contact-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
  box-shadow: 0 20px 54px rgba(18, 63, 48, 0.08);
}

.contact-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.contact-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.contact-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.contact-card dd {
  margin: 4px 0 0;
  color: var(--forest);
  font-size: 18px;
  font-weight: 900;
}

.wechat-card img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 14px 0;
}

.qr-fallback {
  display: none;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 18px;
  text-align: center;
}

.wechat-card.qr-missing .qr-fallback {
  display: block;
  margin: 14px 0;
}

.lead-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lead-grid {
  grid-template-columns: repeat(5, 1fr);
}

.lead-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-weight: 900;
}

.lead-form input,
.lead-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8cbb8;
  border-radius: 6px;
  background: #fffdf8;
  padding: 13px 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--forest);
  font-weight: 900;
}

.site-section,
.theme-section,
.destination-section,
.services-section,
.concept-section,
.corporate-section,
.faq-section {
  padding: 86px clamp(22px, 6vw, 86px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(260px, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}

.section-title h2,
.corporate-section h2,
.page-hero h1 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
}

.section-title span,
.card p,
.corporate-section p,
.page-hero p,
.content-body,
.detail-summary p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.card-grid,
.theme-grid,
.service-grid,
.concept-grid,
.case-grid,
.content-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.theme-grid,
.concept-grid,
.case-grid,
.content-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

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

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.card small,
.badge {
  align-self: flex-start;
  border-radius: 4px;
  background: var(--sun);
  color: white;
  padding: 6px 10px;
  font-weight: 900;
}

.card h3 {
  margin: 18px 0 10px;
  color: var(--forest);
  font-size: 24px;
  line-height: 1.25;
}

.card p {
  margin: 0;
}

.card-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--forest);
  font-weight: 900;
}

.theme-section {
  background: #fffdf8;
}

.theme-grid article,
.concept-grid article,
.service-grid article,
.case-grid article {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 26px;
}

.theme-grid h3,
.concept-grid h3,
.service-grid h3,
.case-grid h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 24px;
}

.concept-section {
  background: var(--paper);
}

.concept-section .section-title {
  max-width: 820px;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.concept-section .eyebrow {
  margin-bottom: 0;
}

.featured-section .section-title {
  max-width: 880px;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.featured-section .eyebrow {
  margin-bottom: 0;
}

.scenes-section .section-title {
  max-width: 880px;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.scenes-section .eyebrow {
  margin-bottom: 0;
}

.destinations-section .section-title {
  max-width: 880px;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.destinations-section .eyebrow {
  margin-bottom: 0;
}

.cases-section .section-title {
  max-width: 900px;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.cases-section .eyebrow {
  margin-bottom: 0;
}

.insights-section .section-title {
  max-width: 900px;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.insights-section .eyebrow {
  margin-bottom: 0;
}

.concept-grid article {
  min-height: 250px;
  background: #fffdf8;
}

.concept-grid span {
  color: var(--sun);
  font-weight: 900;
}

.concept-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.destination-section {
  background: var(--mist);
}

.services-section {
  background: var(--forest);
  color: #fffaf1;
}

.why-section .section-title {
  max-width: 920px;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-right: auto;
  margin-bottom: 26px;
  margin-left: auto;
  text-align: center;
}

.why-section .eyebrow {
  margin-bottom: 0;
}

.services-section .section-title h2,
.services-section .section-title span {
  color: #fffaf1;
}

.service-grid article {
  min-height: 176px;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.22);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.service-grid article:hover {
  background: rgba(255, 255, 255, 0.105);
  border-color: rgba(221, 138, 50, 0.72);
  transform: translateY(-2px);
}

.service-grid span {
  color: var(--sun);
  font-weight: 900;
}

.service-grid p {
  color: #dce7df;
  line-height: 1.85;
}

.services-section .service-grid h3 {
  color: #fffaf1;
}

.corporate-section {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(360px, 1fr);
  gap: 40px;
  align-items: center;
}

.corporate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.corporate-tags span {
  border: 1px solid rgba(18, 63, 48, 0.18);
  border-radius: 4px;
  background: #fffdf8;
  color: var(--forest);
  padding: 8px 12px;
  font-weight: 900;
}

.corporate-note {
  margin-top: 18px;
  color: var(--forest);
  font-weight: 900;
}

.image-stack {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: 190px 190px;
  gap: 14px;
}

.image-stack img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(18, 63, 48, 0.1);
}

.image-stack img:first-child {
  grid-row: span 2;
}

.page-hero {
  padding: 66px clamp(22px, 6vw, 86px) 44px;
  background: var(--forest);
  color: #fffaf1;
}

.page-hero h1 {
  max-width: 920px;
  color: #fffaf1;
}

.page-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #eadfce;
}

.page-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-hero-tags span {
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  color: #fffaf1;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 900;
}

.list-toolbar {
  padding: 24px clamp(22px, 6vw, 86px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-weight: 900;
}

.catalog-tools {
  padding: 28px clamp(22px, 6vw, 86px) 0;
  background: var(--cream);
}

.catalog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 980px;
}

.catalog-search input {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  padding: 0 18px;
  font: inherit;
  outline: none;
}

.catalog-search input:focus {
  border-color: rgba(47, 125, 90, 0.8);
  box-shadow: 0 0 0 3px rgba(47, 125, 90, 0.12);
}

.catalog-search button,
.card-consult {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--sun);
  color: white;
  padding: 0 20px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quick-tags a,
.card-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--forest);
  padding: 7px 11px;
  font-size: 14px;
  font-weight: 900;
}

.content-list {
  padding: 32px clamp(22px, 6vw, 86px) 86px;
}

.list-card h3 {
  display: -webkit-box;
  min-height: 60px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.list-card p {
  display: -webkit-box;
  min-height: 60px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.card-meta span {
  padding: 5px 9px;
  font-size: 12px;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.card-actions .card-link {
  margin-top: 0;
  padding-top: 0;
}

.card-consult {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

.empty-state {
  max-width: 760px;
  margin: 28px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 34px;
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 12px;
  color: var(--forest);
}

.empty-state p {
  margin: 0 auto 22px;
  color: var(--muted);
  line-height: 1.8;
}

.case-list-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 64px;
  border-radius: 8px;
  background: var(--forest);
  color: #fffaf1;
  padding: clamp(24px, 4vw, 36px);
}

.case-list-cta h2 {
  margin: 0 0 10px;
  color: #fffaf1;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.case-list-cta p {
  margin: 0;
  color: #dce7df;
  line-height: 1.8;
}

.case-list-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--sun);
  color: white;
  padding: 0 18px;
  font-weight: 900;
  white-space: nowrap;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.pagination a,
.pagination span {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--forest);
  padding: 9px 12px;
  font-weight: 900;
}

.detail-page {
  padding: 28px clamp(18px, 5vw, 86px) 86px;
}

.detail-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--forest);
  font-weight: 900;
}

.detail-hero {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(360px, 0.95fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  margin: 0 auto;
}

.detail-media {
  min-height: 430px;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 46px);
}

.detail-summary h1 {
  margin: 18px 0 16px;
  color: var(--forest);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
}

.detail-quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 0;
}

.detail-quick-facts div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 12px;
}

.detail-quick-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.detail-quick-facts dd {
  margin: 5px 0 0;
  color: var(--forest);
  font-size: 15px;
  font-weight: 900;
}

.detail-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-assurance span {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffdf8;
  color: var(--forest);
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 900;
}

.detail-content-layout {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
  margin: 28px auto 0;
}

.content-body {
  max-width: 900px;
  margin: 28px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(24px, 5vw, 44px);
}

.content-body h2,
.content-body h3 {
  color: var(--forest);
}

.content-body p {
  margin: 0 0 18px;
}

.content-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.content-body li {
  color: var(--muted);
  line-height: 1.8;
}

.detail-content-layout .content-body {
  max-width: none;
  margin: 0;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}

.sidebar-card h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 24px;
  line-height: 1.25;
}

.sidebar-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.sidebar-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.sidebar-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.sidebar-card dd {
  margin: 5px 0 0;
  color: var(--forest);
  font-weight: 900;
  line-height: 1.55;
}

.sidebar-card .primary-action,
.sidebar-phone {
  width: 100%;
}

.sidebar-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--forest);
  padding: 0 12px;
  font-weight: 900;
}

.page-content-corporate {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 0;
}

.corporate-quick-grid,
.corporate-fit-grid,
.corporate-service-grid,
.corporate-flow-grid {
  display: grid;
  gap: 16px;
}

.corporate-quick-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 22px;
}

.corporate-service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.corporate-flow-grid,
.corporate-fit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.corporate-panel,
.corporate-quick-card,
.corporate-fit-card,
.corporate-service-card,
.corporate-flow-card,
.corporate-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.corporate-panel {
  margin-bottom: 22px;
  padding: clamp(24px, 4vw, 38px);
}

.corporate-panel h2,
.corporate-cta h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}

.corporate-panel > p {
  max-width: 820px;
}

.corporate-quick-card,
.corporate-fit-card,
.corporate-service-card,
.corporate-flow-card {
  padding: 22px;
}

.corporate-quick-card h3,
.corporate-fit-card strong,
.corporate-service-card h3,
.corporate-flow-card h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 20px;
}

.corporate-quick-card p,
.corporate-fit-card p,
.corporate-service-card p,
.corporate-flow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.corporate-quick-card a,
.corporate-cta a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 6px;
  background: var(--sun);
  color: white;
  padding: 0 14px;
  font-weight: 900;
}

.corporate-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.corporate-capabilities span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--forest);
  padding: 8px 12px;
  font-weight: 900;
}

.corporate-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.corporate-visual img {
  width: 100%;
  min-height: 340px;
  border-radius: 8px;
  object-fit: cover;
}

.corporate-flow-card h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--forest);
  color: #fffaf1;
  font-size: 18px;
}

.corporate-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 64px;
  background: var(--forest);
  color: #fffaf1;
  padding: clamp(24px, 4vw, 38px);
}

.corporate-cta h2 {
  color: #fffaf1;
}

.corporate-cta p {
  margin: 0;
  color: #dce7df;
  line-height: 1.8;
}

.corporate-cta a {
  margin-top: 0;
  min-height: 48px;
  white-space: nowrap;
}

.page-content-about {
  max-width: 1120px;
  border: 0;
  background: transparent;
  padding: 0;
}

.about-panel,
.about-card,
.about-stat,
.about-step,
.about-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.about-panel {
  margin-bottom: 22px;
  padding: clamp(24px, 4vw, 38px);
}

.about-panel h2,
.about-cta h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}

.about-panel p,
.about-card p,
.about-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.about-intro img {
  width: 100%;
  min-height: 340px;
  border-radius: 8px;
  object-fit: cover;
}

.about-stats,
.about-audience-grid,
.about-difference-grid,
.about-flow-grid {
  display: grid;
  gap: 16px;
}

.about-stats,
.about-flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-audience-grid,
.about-difference-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-stat {
  padding: 22px;
}

.about-stat strong {
  display: block;
  color: var(--forest);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.about-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
}

.about-card,
.about-step {
  padding: 22px;
}

.about-card h3,
.about-step h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 20px;
}

.about-step h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--forest);
  color: #fffaf1;
  font-size: 18px;
}

.about-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 64px;
  background: var(--forest);
  color: #fffaf1;
  padding: clamp(24px, 4vw, 38px);
}

.about-cta h2 {
  color: #fffaf1;
}

.about-cta p {
  margin: 0;
  color: #dce7df;
  line-height: 1.8;
}

.about-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--sun);
  color: white;
  padding: 0 18px;
  font-weight: 900;
  white-space: nowrap;
}

.detail-cta {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin: 28px auto 0;
  border-radius: 8px;
  background: var(--forest);
  color: #fffaf1;
  padding: clamp(24px, 4vw, 36px);
}

.detail-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.detail-cta p:last-child {
  margin: 14px 0 0;
  color: #dce7df;
  line-height: 1.8;
}

.seo-link-panel {
  max-width: 900px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
  gap: 22px;
  align-items: center;
  margin: 28px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(22px, 4vw, 32px);
}

.seo-link-panel h2 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.seo-link-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.seo-link-grid {
  display: grid;
  gap: 10px;
}

.seo-link-grid a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--forest);
  padding: 0 14px;
  font-weight: 900;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 58px clamp(22px, 6vw, 86px) 64px;
  background: #102f26;
  color: #fffaf1;
}

.site-footer p,
.site-footer small {
  color: #d8e0dc;
  line-height: 1.75;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fffaf1;
}

.footer-brand strong {
  display: block;
  font-size: 30px;
}

.bottom-consult {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background: rgba(18, 63, 48, 0.94);
  color: #fffaf1;
  padding: 12px 14px;
  box-shadow: 0 16px 40px rgba(18, 63, 48, 0.22);
}

.bottom-consult a {
  border-radius: 6px;
  background: var(--sun);
  color: white;
  padding: 9px 12px;
  font-weight: 900;
}

.bottom-consult .bottom-phone {
  background: transparent;
  padding: 9px 0;
}

.mobile-action {
  display: none;
}

@media (max-width: 1100px) {
  .card-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .theme-grid,
  .concept-grid,
  .case-grid,
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: block;
  }

  .hero-inner,
  .section-title,
  .contact-layout,
  .corporate-section,
  .detail-hero,
  .detail-content-layout,
  .detail-cta,
  .seo-link-panel,
  .corporate-visual,
  .corporate-cta,
  .about-intro,
  .about-cta,
  .case-list-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .lead-grid,
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid-basic {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-media {
    min-height: 300px;
  }

  .detail-sidebar {
    position: static;
  }

  .corporate-quick-grid,
  .corporate-fit-grid,
  .corporate-service-grid,
  .corporate-flow-grid,
  .about-stats,
  .about-audience-grid,
  .about-difference-grid,
  .about-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-search {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    min-width: 0;
  }

  .brand-mark small {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .lead-grid,
  .form-grid,
  .contact-grid-basic,
  .detail-quick-facts,
  .card-grid,
  .theme-grid,
  .concept-grid,
  .service-grid,
  .case-grid,
  .content-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .corporate-quick-grid,
  .corporate-fit-grid,
  .corporate-service-grid,
  .corporate-flow-grid,
  .about-stats,
  .about-audience-grid,
  .about-difference-grid,
  .about-flow-grid {
    grid-template-columns: 1fr;
  }

  .site-section,
  .theme-section,
  .destination-section,
  .services-section,
  .concept-section,
  .corporate-section,
  .faq-section {
    padding: 64px 20px;
  }

  .image-stack {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .image-stack img:first-child {
    grid-row: auto;
  }

  .bottom-consult {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .bottom-consult .desktop-action {
    display: none;
  }

  .bottom-consult .mobile-action {
    display: inline;
  }

  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .card-consult {
    width: 100%;
  }
}
