:root{--c-primary:#4a6fa5;}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1B2A4A;
  --navy-70: rgba(27, 42, 74, 0.70);
  --navy-55: rgba(27, 42, 74, 0.55);
  --navy-12: rgba(27, 42, 74, 0.12);
  --gold: #C8A45C;
  --gold-deep: #A8843E;
  --gold-14: rgba(200, 164, 92, 0.14);
  --gold-30: rgba(200, 164, 92, 0.30);
  --gray: #EDEDED;
  --paper: #F6F5F1;
  --paper-2: #FBFAF8;
  --ink: #14181F;
  --muted: #5A6473;
  --line: rgba(20, 24, 31, 0.12);
  --line-soft: rgba(20, 24, 31, 0.07);
  --shadow-soft: 0 20px 50px rgba(20, 24, 31, 0.07);
  --shadow-card: 0 14px 36px rgba(20, 24, 31, 0.06);
  --expo: cubic-bezier(0.19, 1, 0.22, 1);
  --quart: cubic-bezier(0.25, 1, 0.5, 1);
  --header-height: 84px;
  --max-width: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

section[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

body {
  margin: 0;
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.32;
  margin: 0 0 0.6em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 4.25rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.2em; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s var(--quart);
}

a:hover { color: var(--gold-deep); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: 110px 0; }
.section-compact { padding: 80px 0; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 2000;
  background-color: var(--navy);
  color: #fff;
  padding: 12px 20px;
  font-size: 0.9rem;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Section header (editorial, left aligned) */
.section-header { max-width: 820px; margin: 0 0 56px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background-color: var(--gold);
}

.eyebrow.center { justify-content: center; }

.section-title { margin-bottom: 18px; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.95;
  margin: 0;
}

.rule-gold {
  width: 56px;
  height: 2px;
  background-color: var(--gold);
  margin: 26px 0;
}

.bg-gray { background-color: var(--gray); }
.bg-navy { background-color: var(--navy); color: #fff; }
.bg-paper-2 { background-color: var(--paper-2); }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: var(--navy);
  border-bottom: 1px solid var(--navy-12);
  transition: background-color 0.4s var(--quart), box-shadow 0.4s var(--quart);
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(20, 24, 31, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-logo { height: 40px; width: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }

.brand-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  color: #fff;
}
.brand-name .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-left: 6px;
  font-weight: 500;
}

.nav { display: flex; align-items: center; }

.nav-links { display: flex; gap: 36px; }

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.35s var(--quart);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background-color: var(--gold);
  transition: width 0.45s var(--expo);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 30px; height: 22px;
  position: relative;
  background: none; border: none; padding: 0;
}
.menu-toggle span {
  display: block;
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background-color: #fff;
  transition: transform 0.4s var(--quart), opacity 0.3s var(--quart);
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }
.menu-toggle.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 34px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  transition: background-color 0.4s var(--quart), color 0.4s var(--quart), border-color 0.4s var(--quart), transform 0.4s var(--quart);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 500;
}
.btn-primary:hover {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border-color: var(--gold-30);
}
.btn-outline:hover { background-color: var(--gold); color: var(--navy); border-color: var(--gold); }

.btn-dark {
  background-color: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-dark:hover { background-color: transparent; color: var(--navy); }

.text-link {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-30);
  padding-bottom: 4px;
  transition: border-color 0.4s var(--quart), color 0.4s var(--quart);
}
.text-link:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--navy);
  padding: var(--header-height) 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,24,31,0.30) 0%, rgba(20,24,31,0.55) 60%, rgba(20,24,31,0.78) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: #fff;
  max-width: 820px;
}
.hero-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-title {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-title small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.4em;
  letter-spacing: 0.18em;
  margin-top: 16px;
  color: rgba(255,255,255,0.78);
}
.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.86);
  max-width: 540px;
  line-height: 2;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-meta .hm-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-meta .hm-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; }

/* Filter bar */
.filter-bar {
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  border-top: none;
}
.filter-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0;
  align-items: stretch;
}
.filter-group {
  padding: 24px 28px;
  border-right: 1px solid var(--line-soft);
}
.filter-group label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.filter-group select {
  width: 100%;
  padding: 6px 0;
  font-size: 1rem;
  font-family: 'Noto Sans SC', sans-serif;
  color: var(--ink);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-30);
  border-radius: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8843E' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  cursor: pointer;
}
.filter-group select:focus { border-bottom-color: var(--gold); outline: none; }
.filter-action {
  display: flex;
  align-items: center;
  padding: 0 8px;
}
.filter-action .btn { width: 100%; }

/* Property grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.property-card {
  position: relative;
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--expo), box-shadow 0.5s var(--expo), border-color 0.45s var(--quart);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-30);
}
.property-card-img { overflow: hidden; position: relative; }
.property-card-img img {
  width: 100%; height: 250px; object-fit: cover;
  transition: transform 0.7s var(--expo);
}
.property-card:hover .property-card-img img { transform: scale(1.05); }
.property-tag {
  position: absolute;
  top: 16px; left: 16px;
  background-color: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 6px 12px;
}
.property-body { padding: 28px 28px 30px; }
.property-body h3 { margin-bottom: 8px; font-size: 1.25rem; }
.property-region {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.property-meta {
  display: flex;
  gap: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  margin-bottom: 18px;
}
.property-meta .pm-item .pm-k { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; }
.property-meta .pm-item .pm-v { font-size: 1rem; color: var(--ink); }

/* Split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { width: 100%; object-fit: cover; }
.split-media::after {
  content: '';
  position: absolute;
  right: -18px; bottom: -18px;
  width: 64px; height: 64px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.split-content h2 { margin-bottom: 22px; }
.split-content p { color: var(--muted); margin-bottom: 20px; }
.split-content .text-link { margin-top: 6px; display: inline-block; }

/* Stats band */
.stats-band { background-color: var(--navy); color: #fff; padding: 90px 0; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item { text-align: center; padding: 0 16px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-label { font-size: 0.92rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.72); }
.stat-item + .stat-item { border-left: 1px solid var(--navy-12); }
.stats-row.on-light { color: var(--navy); }
.stats-row.on-light .stat-num { color: var(--gold-deep); }
.stats-row.on-light .stat-label { color: var(--muted); }
.stats-row.on-light .stat-item + .stat-item { border-left-color: var(--line-soft); }

/* Services list */
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  align-items: start;
  padding: 36px 34px;
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  transition: border-color 0.45s var(--quart), transform 0.5s var(--expo);
}
.service-item:hover { border-color: var(--gold-30); transform: translateY(-4px); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold-deep);
  line-height: 1;
}
.service-item h3 { margin-bottom: 10px; }
.service-item p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin: 0 0 14px; }

/* Trust / why items */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
  padding: 40px 34px;
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
.feature-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin: 0; }
.feature-card .fc-index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  margin-bottom: 18px;
  display: block;
}

/* CTA / form */
.cta-section { background-color: var(--paper-2); }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.cta-content h2 { margin-bottom: 20px; }
.cta-content p { color: var(--muted); max-width: 480px; }
.cta-content .rule-gold { background-color: var(--gold); }
.booking-form {
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color 0.35s var(--quart);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--gold-deep); margin-top: 14px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background-color: var(--gold-14);
  border-left: 2px solid var(--gold);
  color: var(--navy);
  font-size: 0.9rem;
}
.form-success.show { display: block; }

.form-card-center { max-width: 640px; margin: 0 auto; }

/* Page header */
.page-header {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 0 60px;
}
.page-header-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center;
  opacity: 0.28;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,24,31,0.55) 0%, rgba(20,24,31,0.72) 100%);
}
.page-header-content { position: relative; z-index: 2; }
.page-header .eyebrow { color: var(--gold); }
.page-header .eyebrow::before { background-color: var(--gold); }
.page-header h1 { color: #fff; margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 600px; margin: 0; }
.breadcrumb {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.62);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.82); }
.breadcrumb a:hover { color: var(--gold); }

/* Cases */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.case-card {
  position: relative;
  background-color: var(--paper-2);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--expo), box-shadow 0.5s var(--expo), border-color 0.45s var(--quart);
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--gold-30); }
.case-card-img { overflow: hidden; }
.case-card-img img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.7s var(--expo); }
.case-card:hover .case-card-img img { transform: scale(1.05); }
.case-body { padding: 28px 30px 32px; }
.case-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 10px;
  display: block;
}
.case-body h3 { margin-bottom: 10px; }
.case-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin: 0 0 16px; }

/* News */
.news-list { max-width: 920px; margin: 0 auto; }
.news-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.4s var(--quart);
}
.news-item:hover { border-bottom-color: var(--gold); }
.news-date {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-deep);
  text-align: center;
}
.news-date .day { font-size: 2.4rem; line-height: 1; display: block; }
.news-date .month { font-size: 0.85rem; letter-spacing: 0.1em; }
.news-title { font-size: 1.25rem; margin-bottom: 8px; transition: color 0.35s var(--quart); }
.news-item:hover .news-title { color: var(--gold-deep); }
.news-excerpt { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin: 0; }
.news-arrow { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold-deep); }

/* Article */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { margin-bottom: 1.8em; color: var(--ink); }
.article-body h2, .article-body h3 { margin-top: 1.8em; margin-bottom: 0.8em; }
.article-body img { width: 100%; margin: 36px 0; }
.article-meta { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 44px; }
.article-body ul { margin-bottom: 1.8em; padding-left: 1.4em; list-style: disc; color: var(--muted); }
.article-body blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px; margin: 36px 0;
  color: var(--muted); font-style: italic;
}

/* Process / timeline */
.process-list { display: grid; gap: 0; }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; color: var(--gold-deep); line-height: 1;
}
.process-content h4 { margin-bottom: 8px; }
.process-content p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin: 0; }

/* Team / values */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; padding: 38px 28px; background-color: var(--paper-2); border: 1px solid var(--line); }
.team-card .tc-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  margin: 0 auto 20px;
  background-color: var(--gray);
  border: 2px solid var(--gold-30);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--navy);
}
.team-card h4 { margin-bottom: 6px; }
.team-card .tc-role { font-size: 0.85rem; color: var(--gold-deep); letter-spacing: 0.08em; margin-bottom: 14px; }
.team-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info .intro { color: var(--muted); margin-bottom: 32px; }
.contact-info-item { margin-bottom: 22px; }
.contact-info-item .label { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold-deep); margin-bottom: 4px; }
.contact-info-item .value { font-size: 1.05rem; color: var(--ink); }
.contact-form-card { background-color: var(--paper-2); border: 1px solid var(--line); border-top: 3px solid var(--navy); padding: 40px; }

/* Footer */
.footer { background-color: var(--ink); color: rgba(255,255,255,0.72); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-name { color: #fff; margin-bottom: 4px; }
.footer-brand .brand-en { color: var(--gold); letter-spacing: 0.2em; font-family: 'Cormorant Garamond', serif; font-size: 0.78rem; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.85; max-width: 320px; color: rgba(255,255,255,0.62); }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.12em; color: #fff; margin-bottom: 22px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.8rem; color: rgba(255,255,255,0.45);
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--expo), transform 0.8s var(--expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  a, button, .btn, .property-card, .case-card, .news-item, .service-item, .feature-card { transition: none; }
}

/* Responsive 1280px */
@media (max-width: 1280px) {
  .section { padding: 96px 0; }
  .split-section, .cta-inner, .contact-grid { gap: 52px; }
  .nav-links { gap: 26px; }
  .filter-inner { grid-template-columns: repeat(3, 1fr); }
  .filter-action { grid-column: 1 / -1; padding: 0 28px 24px; }
  .filter-group:last-of-type { border-right: none; }
}

/* Responsive 768px */
@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .section { padding: 78px 0; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center; justify-content: flex-start;
    gap: 0; padding-top: 36px;
    background-color: var(--navy);
    border-top: 1px solid var(--navy-12);
    transform: translateX(100%);
    transition: transform 0.5s var(--expo);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { display: block; padding: 18px 0; font-size: 1.05rem; color: #fff; }
  .split-section, .cta-inner, .contact-grid { grid-template-columns: 1fr; }
  .split-media::after { display: none; }
  .property-grid, .case-grid, .feature-grid, .team-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .stat-item + .stat-item { border-left: none; }
  .form-row { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; gap: 12px; }
  .news-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .filter-inner { grid-template-columns: 1fr; }
  .filter-group { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .filter-action { padding: 20px 28px 24px; }
  .hero-meta { gap: 28px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 340px; }
  .btn { width: 100%; }
}

/* Responsive 375px */
@media (max-width: 375px) {
  html { font-size: 15px; }
  .section { padding: 60px 0; }
  .property-body, .case-body, .service-item, .feature-card, .team-card, .booking-form, .contact-form-card { padding-left: 22px; padding-right: 22px; }
  .stats-row, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .process-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .hero-meta { flex-direction: column; gap: 18px; }
}


/* ===== CMS helpers ===== */
.form-alert{padding:12px 16px;border-radius:8px;margin:0 0 16px;font-size:.92rem;line-height:1.6}
.form-alert-ok{background:rgba(46,160,67,.08);border:1px solid rgba(46,160,67,.35);color:#2ea043}
.form-alert-err{background:rgba(220,53,69,.08);border:1px solid rgba(220,53,69,.35);color:#dc3545}
.form-alert ul{margin:0;padding-left:18px}
.cms-pager{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:44px 0 0}
.cms-pager a,.cms-pager span{min-width:38px;padding:8px 13px;border:1px solid rgba(128,128,128,.35);border-radius:6px;text-align:center;text-decoration:none;color:inherit}
.cms-pager .active{background:var(--c-primary);border-color:var(--c-primary);color:#fff}
.detail-page{max-width:1100px;margin:0 auto;padding:72px 24px}
.detail-media{width:100%;max-height:520px;object-fit:cover;border-radius:14px;margin-bottom:26px;display:block}
.detail-title{font-size:clamp(26px,3vw,38px);line-height:1.3;margin-bottom:12px}
.detail-meta{color:#777;font-size:.95rem;margin-bottom:20px}
.detail-body{line-height:1.9;color:#444}
.detail-body p{margin-bottom:1em}
.detail-body img{max-width:100%;height:auto;border-radius:10px}
.detail-back{display:inline-block;margin-top:28px;padding:11px 26px;border:1px solid rgba(128,128,128,.4);border-radius:999px;text-decoration:none;color:inherit}
/* ===== 深色 banner 标题白字（避免 h1 与背景同色不可读） ===== */
.banner--ink h1,.banner--purple h1,.banner--coral h1{color:#fff}
/* ===== 阅读全文按钮（硬边 neo-brutalist 风格） ===== */
.news-item .more{display:inline-block;margin-top:14px;padding:10px 20px;background:var(--c-ink);color:#fff;border:var(--border-2);box-shadow:var(--shadow-sm);font-family:var(--font-en);font-weight:800;font-size:.85rem;letter-spacing:.02em;text-decoration:none;transition:transform .12s ease,box-shadow .12s ease,background .12s ease}
.news-item .more:hover{background:var(--c-coral);transform:translate(-2px,-2px);box-shadow:var(--shadow)}
/* ===== 留言板一行一个 input（01 翰墨轩） ===== */
.form-grid{grid-template-columns:1fr}
