* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f7f3ec;
  --text: #26342c;
  --muted: #687267;
  --primary: #2f4a38;
  --primary-dark: #263b2d;
  --secondary: #d9c7a2;
  --sage: #7a8a6a;
  --soft-green: #eef0e8;
  --white: #ffffff;
  --card: #fffdf8;
  --line: #e7dfd2;
  /* 首页 hero 背景图位置：调大 Y 值会让图片内容整体向上移动，例如 62%。 */
  --hero-image-position-x: center;
  --hero-image-position-y: 70%;
  --hero-mobile-image-position-y: 50%;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  background: rgba(246, 242, 235, 0.95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

nav a:hover {
  color: var(--primary);
}

.hero {
  padding: 110px 0 90px;
  background: linear-gradient(to bottom, rgba(37,55,70,0.06), rgba(37,55,70,0));
}

.hero-content {
  max-width: 800px;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.25;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  transition: 0.25s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.section {
  padding: 80px 0;
}

.alt-bg {
  background: #efe8dc;
}

.dark-section {
  background: var(--primary);
  color: var(--white);
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.section-desc {
  color: var(--muted);
  margin-bottom: 24px;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  text-align: center;
  color: var(--muted);
}

ul {
  padding-left: 18px;
}

@media (max-width: 900px) {
  .grid-2,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 14px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 80px 0 60px;
  }
}

.page-hero {
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(37,55,70,0.08), rgba(37,55,70,0.02));
}

.page-hero-content {
  max-width: 820px;
}

.narrow {
  max-width: 820px;
}

.narrow p + p {
  margin-top: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.timeline-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.timeline-content h3 {
  margin-bottom: 8px;
}

.light-text {
  color: rgba(255,255,255,0.85);
}

.btn-secondary-light {
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
}

.btn-secondary-light:hover {
  background: rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-number {
    font-size: 1.4rem;
  }
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.service-card.large {
  grid-column: span 2;
}

.service-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--primary);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(37,55,70,0.04);
}

.service-card p {
  color: var(--muted);
}

.service-meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.95rem;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.issue-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  color: var(--text);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-card.large {
    grid-column: span 1;
  }

  .issue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .issue-grid {
    grid-template-columns: 1fr;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
}

.contact-main-card,
.contact-side-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.contact-item + .contact-item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-item h3,
.contact-side-card h3 {
  margin-bottom: 10px;
}

.contact-item p,
.contact-side-card li {
  color: var(--muted);
}

.contact-item a {
  color: var(--primary);
  font-weight: 600;
}

.contact-side-card ul {
  padding-left: 18px;
}

.contact-side-card li + li {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.hero-with-image {
  position: relative;
  padding: 140px 0 120px;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 30, 38, 0.78),
    rgba(20, 30, 38, 0.42)
  );
}

.hero-with-image .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-with-image .eyebrow,
.hero-with-image h1,
.hero-with-image .hero-text {
  color: #ffffff;
}

.hero-with-image .hero-text {
  color: rgba(255, 255, 255, 0.88);
}

.hero-outline {
  border: 1px solid rgba(255,255,255,0.75);
  color: #ffffff;
}

.hero-outline:hover {
  background: rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .hero-with-image {
    padding: 100px 0 80px;
    background-position: center;
  }
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 40px;
}

.team-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.team-profile:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.team-profile-photo {
  position: sticky;
  top: 110px;
}

.team-profile-photo {
  position: sticky;
  top: 110px;
}

.team-photo-stage {
  background: linear-gradient(180deg, #efe8dc 0%, #f7f3ec 100%);
  padding: 28px;
}

.team-photo-stage img.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  display: block;
  background: #f8f5ef;
}

.team-profile-content {
  max-width: 760px;
}

.team-role {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.team-name {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1.2;
}

.team-intro {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 720px;
}

.team-section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.team-section h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text);
}

.team-section p {
  color: var(--muted);
  line-height: 1.95;
}

.team-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.team-meta h5 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text);
}

.team-meta p {
  color: var(--muted);
  line-height: 1.9;
}

@media (max-width: 980px) {
  .team-profile {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 52px;
  }

  .team-profile-photo {
    position: static;
    max-width: 420px;
  }

  .team-name {
    font-size: 1.8rem;
  }

  .team-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  /* 平板、小笔记本 */
}

@media (max-width: 768px) {
  /* 手机主适配 */
}

@media (max-width: 480px) {
  /* 小屏手机细调 */
}

@media (max-width: 1024px) {
  .container {
    width: min(92%, 1000px);
  }

  .hero,
  .page-hero,
  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-2,
  .card-grid,
  .service-layout,
  .contact-layout,
  .team-meta {
    grid-template-columns: 1fr;
  }

  .issue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  .site-header {
    position: static;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  nav a {
    font-size: 0.92rem;
  }

  .hero,
  .hero-with-image {
    padding: 84px 0 68px;
  }

  .page-hero {
    padding: 72px 0 56px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.6rem;
    line-height: 1.35;
  }

  h3 {
    font-size: 1.15rem;
  }

  .hero-text,
  .section-desc,
  .team-intro,
  .team-section p,
  .team-meta p,
  .contact-item p,
  .card p,
  .service-card p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .section {
    padding: 56px 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
  }

  .card,
  .service-card,
  .contact-main-card,
  .contact-side-card {
    padding: 22px;
    border-radius: 16px;
  }

  .issue-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .timeline-number {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 88%;
  }

  .hero,
  .hero-with-image {
    padding: 72px 0 56px;
  }

  .page-hero {
    padding: 60px 0 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.42rem;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 1.5px;
  }

  .btn {
    font-size: 0.94rem;
  }

  nav {
    gap: 10px 14px;
  }

  nav a {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .team-grid {
    gap: 52px;
    margin-top: 28px;
  }

  .team-profile {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 48px;
  }

  .team-profile-photo {
    position: static;
    top: auto;
    max-width: 320px;
  }

  .team-photo-stage {
    padding: 18px;
  }

  .team-profile-content {
    max-width: 100%;
  }

  .team-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .team-intro {
    margin-bottom: 20px;
  }

  .team-section {
    padding: 18px 0;
  }

  .team-meta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

/* 首页品牌 Hero：温暖森林绿版本 */
.hero-brand {
  position: relative;
  min-height: 72vh;
  padding: 120px 0;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: var(--hero-image-position-x) var(--hero-image-position-y);
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-warm-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(246, 242, 235, 0.92) 0%,
      rgba(246, 242, 235, 0.74) 36%,
      rgba(246, 242, 235, 0.22) 66%,
      rgba(246, 242, 235, 0.04) 100%
    );
}

.hero-brand-inner {
  position: relative;
  z-index: 2;
  min-height: 48vh;
  display: flex;
  align-items: center;
}

.hero-brand-panel {
  max-width: 560px;
  padding: 44px 0;
}

.hero-brand .eyebrow {
  color: #5f6f52;
  letter-spacing: 2.2px;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-brand h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.05;
  color: #263b2d;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: #6f5f43;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero-brand .hero-text {
  color: #4f5a50;
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-brand .btn-primary {
  background: #2f4a38;
  color: #fff;
}

.hero-brand .btn-primary:hover {
  background: #263b2d;
}

.hero-soft-btn {
  border: 1px solid #2f4a38;
  color: #2f4a38;
  background: rgba(255, 255, 255, 0.28);
}

.hero-soft-btn:hover {
  background: rgba(47, 74, 56, 0.08);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .logo-link {
    gap: 10px;
  }

  .logo-image {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero-brand {
    min-height: auto;
    padding: 76px 0 64px;
    background-position: var(--hero-image-position-x) var(--hero-mobile-image-position-y);
  }

  .hero-warm-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(247, 243, 236, 0.92) 0%,
        rgba(247, 243, 236, 0.78) 58%,
        rgba(247, 243, 236, 0.38) 100%
      );
  }

  .hero-brand-inner {
    min-height: auto;
  }

  .hero-brand-panel {
    max-width: 100%;
    padding: 22px 0;
  }

  .hero-brand h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-brand .hero-text {
    font-size: 0.98rem;
  }
}

/* ==============================
   Subtle Motion System
   轻量高级动效
============================== */

html {
  scroll-behavior: smooth;
}

body {
  animation: pageFadeIn 0.7s ease both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 页面滚动浮现 */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 更柔和的延迟层次 */
.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* 导航轻微动效 */
nav a {
  position: relative;
  transition: color 0.25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.28s ease;
}

nav a:hover::after {
  width: 100%;
}

/* 按钮更细腻 */
.btn {
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(38, 59, 45, 0.12);
}

/* 图片轻微呼吸感 */
.team-photo,
.hero-brand,
.hero-with-image {
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.team-photo-stage:hover .team-photo,
.team-profile-photo:hover .team-photo {
  transform: scale(1.018);
}

/* 服务、联系、普通内容块轻微 hover */
.card,
.service-card,
.contact-main-card,
.contact-side-card,
.timeline-item,
.issue-item {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.card:hover,
.service-card:hover,
.contact-main-card:hover,
.contact-side-card:hover,
.timeline-item:hover,
.issue-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(38, 59, 45, 0.08);
  border-color: rgba(47, 74, 56, 0.18);
}

/* 首页 hero 文字入场 */
.hero-brand-panel,
.hero-content,
.page-hero-content {
  animation: heroTextIn 0.85s ease both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 减少动态偏好：尊重用户系统设置 */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==============================
   Floating Contact
   右下角轻量联系入口
============================== */

.floating-contact {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
  width: 250px;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(47, 74, 56, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(38, 59, 45, 0.14);
  color: var(--primary-dark);
  overflow: hidden;
  animation: floatingContactIn 0.7s ease both;
}

.floating-contact-toggle {
  display: none;
}

.floating-contact-body {
  display: block;
  padding: 18px 18px 16px;
  text-decoration: none;
  color: inherit;
}

.floating-contact-title {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.floating-contact-note {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 10px;
}

.floating-contact-phone {
  display: block;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.floating-contact-body:hover .floating-contact-phone {
  color: var(--primary);
  transform: translateX(2px);
}

.floating-contact:hover {
  transform: translateY(-2px);
}

@keyframes floatingContactIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .floating-contact {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 13px 16px;
    border-radius: 16px;
  }

  .floating-contact-title {
    font-size: 0.86rem;
    margin-bottom: 4px;
  }

  .floating-contact-note {
    font-size: 0.78rem;
    margin-bottom: 4px;
  }

  .floating-contact-phone {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  body {
    padding-bottom: 96px;
  }
}

@media (max-width: 768px) {
  .floating-contact {
    left: auto;
    right: 16px;
    bottom: 16px;
    width: auto;
    min-width: 128px;
    max-width: calc(100vw - 32px);
    border-radius: 999px;
    transition:
      width 0.3s ease,
      border-radius 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.25s ease;
  }

  .floating-contact-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    border: none;
    background: transparent;
    color: var(--primary-dark);
    padding: 12px 16px;
    font: inherit;
    cursor: pointer;
  }

  .floating-contact-toggle-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .floating-contact-toggle-icon {
    font-size: 1rem;
    line-height: 1;
    color: var(--primary);
    transition: transform 0.25s ease;
  }

  .floating-contact-body {
    display: none;
    padding: 0 16px 14px;
  }

  .floating-contact.is-open {
    width: calc(100vw - 32px);
    border-radius: 18px;
  }

  .floating-contact.is-open .floating-contact-body {
    display: block;
  }

  .floating-contact.is-open .floating-contact-toggle-icon {
    transform: rotate(45deg);
  }

  .floating-contact-title {
    display: none;
  }

  .floating-contact-note {
    font-size: 0.84rem;
    line-height: 1.65;
    margin-bottom: 8px;
  }

  .floating-contact-phone {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  body {
    padding-bottom: 76px;
  }

  body.has-floating-contact-open {
    padding-bottom: 154px;
  }
}

/* ==============================
   FAQ Page
============================== */

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  margin-bottom: 16px;
}

.faq-intro p {
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "＋";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft-green);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: rgba(47, 74, 56, 0.12);
}

.faq-answer {
  padding-top: 14px;
  max-width: 760px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.9;
}

.faq-answer p + p {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro {
    position: static;
  }

  .faq-item {
    padding: 18px 0;
  }

  .faq-item summary {
    font-size: 1rem;
    align-items: flex-start;
  }
}