/* ============================================================
   SMG Family Office — V3 Editorial Theme
   ============================================================ */

:root {
  --bg: #f5eadf;
  --bg-soft: #eee0d1;
  --paper: #fffaf2;
  --ink: #1c1a17;
  --muted: #635c55;
  --muted-soft: #9a8f82;
  --gold: #b09858;
  --gold-deep: #8f7441;
  --line: rgba(23, 21, 18, 0.12);
  --line-strong: rgba(23, 21, 18, 0.22);
  --dark: #111111;
  --shadow: 0 18px 48px rgba(28, 26, 23, 0.05);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, #f6ebe1 0%, #f5eadf 100%);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
}

.container-narrow {
  width: min(900px, calc(100% - 72px));
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.8rem, 6.8vw, 5.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1.45;
}

.eyebrow {
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.text-body {
  max-width: 620px;
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--muted);
}

.text-lead {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(19, 17, 15, 0.78);
}

.gold-line {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(176, 152, 88, 0.1) 100%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 36px;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  background: rgba(255, 250, 242, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(28, 26, 23, 0.03);
}

.site-header.at-top {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo .logo-img {
  height: 28px;
  width: auto;
}

.menu-trigger {
  width: 34px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-line {
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform-origin: center;
  transition: transform 0.45s var(--ease), opacity 0.3s ease, background 0.3s ease;
}

.menu-trigger.is-open .menu-line {
  background: #f7f3ec;
}

.menu-trigger.is-open .menu-line.top {
  transform: translateY(9px) rotate(37deg);
}

.menu-trigger.is-open .menu-line.bottom {
  transform: translateY(-9px) rotate(-37deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 120px 40px 56px;
  background:
    linear-gradient(160deg, rgba(17, 17, 17, 0.98) 0%, rgba(34, 28, 23, 0.98) 100%),
    radial-gradient(circle at top left, rgba(176, 152, 88, 0.18), transparent 32%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-menu {
  text-align: center;
}

.nav-menu a {
  display: block;
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  font-size: clamp(1.6rem, 3.8vw, 3.1rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(247, 243, 236, 0.42);
  padding: 8px 0;
  transform: translateY(16px);
  opacity: 0;
  transition: color 0.3s ease, opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.nav-overlay.is-open .nav-menu a {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #f7f3ec;
}

.nav-menu a:nth-child(1) { transition-delay: 0.04s; }
.nav-menu a:nth-child(2) { transition-delay: 0.08s; }
.nav-menu a:nth-child(3) { transition-delay: 0.12s; }
.nav-menu a:nth-child(4) { transition-delay: 0.16s; }
.nav-menu a:nth-child(5) { transition-delay: 0.2s; }
.nav-menu a:nth-child(6) { transition-delay: 0.24s; }

.nav-contact {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  color: rgba(247, 243, 236, 0.44);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.section {
  padding: 136px 0;
}

.section-warm {
  background: linear-gradient(180deg, rgba(238, 224, 209, 0.38) 0%, rgba(245, 234, 223, 0.08) 100%);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.96) 0%, rgba(23, 20, 18, 0.98) 100%),
    radial-gradient(circle at top left, rgba(176, 152, 88, 0.18), transparent 30%);
  color: #f7f3ec;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #f7f3ec;
}

.section-dark .text-body {
  color: rgba(247, 243, 236, 0.62);
}

.section-dark .detail-list li {
  color: rgba(247, 243, 236, 0.68);
  border-bottom-color: rgba(247, 243, 236, 0.12);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 156px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 72px), rgba(28, 26, 23, 0.08) calc(100% - 72px), rgba(28, 26, 23, 0.08) calc(100% - 71px), transparent calc(100% - 71px)),
    linear-gradient(180deg, transparent 0, transparent calc(100% - 72px), rgba(28, 26, 23, 0.08) calc(100% - 72px), rgba(28, 26, 23, 0.08) calc(100% - 71px), transparent calc(100% - 71px));
  pointer-events: none;
}

.hero-inner {
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(250px, 0.46fr);
  gap: 72px;
  align-items: start;
}

.hero-copy {
  position: relative;
  padding-right: 20px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 8px;
  width: 1px;
  height: 108px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(176, 152, 88, 0) 100%);
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
}

.hero .text-lead {
  max-width: 600px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .text-body {
  margin-bottom: 34px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 62px;
}

.hero-divider {
  width: min(760px, 100%);
  height: 1px;
  background: var(--line-strong);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-self: end;
  padding-top: 88px;
}

.hero-side-title {
  margin-bottom: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.hero-stats > div {
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.hero-stat-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-stat-label {
  font-size: 0.85rem;
  line-height: 1.72;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: #f7f3ec;
}

.btn-primary:hover {
  background: var(--gold-deep);
}

.btn-outline {
  border-color: var(--line-strong);
  background: rgba(252, 250, 245, 0.46);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.btn-white {
  background: #f7f3ec;
  color: var(--ink);
}

.btn-white:hover {
  background: var(--gold);
  color: #fff;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn-link::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
}

.btn-link:hover {
  color: var(--gold-deep);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.88fr);
  gap: 64px;
  align-items: center;
}

.split-image {
  position: relative;
}

.split-image::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 16px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(176, 152, 88, 0.18);
  pointer-events: none;
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-text h2 {
  margin-bottom: 24px;
}

.split-text .text-body {
  margin-bottom: 20px;
}

.split-text {
  position: relative;
}

.split-text::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 4px;
  width: 1px;
  height: 72px;
  background: linear-gradient(180deg, rgba(176, 152, 88, 0.8) 0%, rgba(176, 152, 88, 0) 100%);
}

.feature-split {
  align-items: end;
}

.feature-split .split-text {
  padding-bottom: 16px;
}

.feature-split .split-text .eyebrow {
  margin-bottom: 14px;
}

.feature-split .split-text h2 {
  max-width: 420px;
}

.feature-split .split-text .text-body {
  max-width: 430px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.col-item {
  position: relative;
  min-height: 100%;
  padding: 34px 22px 24px;
  background: transparent;
  border-top: 1px solid var(--line-strong);
  box-shadow: none;
}

.col-item::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 42px;
  height: 2px;
  background: var(--gold);
}

.col-num,
.service-num {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.col-item h3,
.service-item h3 {
  margin-bottom: 12px;
}

.col-item .text-body,
.service-item .text-body {
  max-width: none;
  font-size: 0.9rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 24px;
}

.service-item {
  position: relative;
  padding: 34px 22px 24px;
  background: transparent;
  border-top: 1px solid rgba(23, 21, 18, 0.14);
  border-left: none;
  box-shadow: none;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-item:hover {
  transform: none;
  border-top-color: rgba(176, 152, 88, 0.66);
  background: rgba(255, 250, 242, 0.24);
}

.service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 1px;
  border: none;
  background: var(--gold);
  pointer-events: none;
}

.cta {
  position: relative;
  padding: 142px 0;
  text-align: center;
}

.cta::before,
.page-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1240px, calc(100% - 72px));
  height: 100%;
  transform: translateX(-50%);
  border-left: 1px solid rgba(23, 21, 18, 0.06);
  border-right: 1px solid rgba(23, 21, 18, 0.06);
  pointer-events: none;
}

.cta h2 {
  max-width: 760px;
  margin: 0 auto 24px;
}

.cta .text-body {
  margin: 0 auto 36px;
  max-width: 520px;
}

.page-hero {
  position: relative;
  padding: 174px 0 88px;
  text-align: center;
}

.page-hero .text-lead {
  max-width: 650px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 auto 24px;
}

.page-hero .gold-line {
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 34px 24px;
  background: rgba(255, 250, 242, 0.18);
  border-top: 1px solid rgba(23, 21, 18, 0.14);
  border-left: none;
  box-shadow: none;
}

.contact-info h2 {
  margin-bottom: 28px;
}

.info-block {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.info-block p,
.info-block a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

.info-block a:hover {
  color: var(--gold-deep);
}

.contact-form form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 0 14px;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted-soft);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 18px;
  width: fit-content;
}

.form-feedback {
  margin-top: 18px;
  color: var(--gold-deep);
  font-size: 0.88rem;
}

.map-section {
  height: 420px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) sepia(6%) contrast(0.92);
}

.site-footer {
  position: relative;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 40px;
  padding: 84px 0 44px;
}

.footer-top h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.25;
}

.footer-col-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-col a:hover {
  color: var(--gold-deep);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 5px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.footer-contact-item span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer-disclaimer {
  max-width: 560px;
  font-size: 0.72rem;
  line-height: 1.8;
  color: var(--muted-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer-brand-logo img {
  height: 18px;
  width: auto;
  opacity: 0.46;
}

.footer-copyright {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--muted-soft);
}

.detail-list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.container-narrow > .eyebrow + h2 {
  max-width: 620px;
}

.container-narrow[style] {
  position: relative;
  padding-left: 26px;
}

.container-narrow[style]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 1px;
  height: 78px;
  background: linear-gradient(180deg, rgba(176, 152, 88, 0.78) 0%, rgba(176, 152, 88, 0) 100%);
}

.detail-list li:last-child {
  border-bottom: none;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #ece6dc;
}

::-webkit-scrollbar-thumb {
  background: rgba(23, 21, 18, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 21, 18, 0.2) #ece6dc;
}

::selection {
  background: var(--gold);
  color: #fff;
}

@media (max-width: 1024px) {
  .container,
  .container-narrow,
  .hero-inner {
    width: calc(100% - 48px);
  }

  .hero-inner,
  .split,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .three-col,
  .services-list {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    padding-top: 12px;
  }

  .section,
  .cta {
    padding: 110px 0;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 14px 20px;
  }

  .container,
  .container-narrow,
  .hero-inner {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: auto;
    padding: 124px 0 68px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-copy::before {
    display: none;
  }

  .split-text::before,
  .container-narrow[style]::before {
    display: none;
  }

  .container-narrow[style] {
    padding-left: 0;
  }

  .hero-actions {
    margin-bottom: 44px;
  }

  .section,
  .cta {
    padding: 88px 0;
  }

  .page-hero {
    padding: 138px 0 72px;
  }

  .nav-contact {
    position: static;
    display: block;
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
  }

  .contact-info,
  .contact-form,
  .service-item,
  .col-item {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.025em;
  }

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

  .btn {
    width: 100%;
  }

  .brand-logo .logo-img {
    height: 21px;
  }

  .nav-menu a {
    font-size: clamp(1.5rem, 8vw, 2.4rem);
  }
}

/* Theme 02: Black Gallery */
:root {
  --bg: #121212;
  --bg-soft: #181818;
  --paper: #171717;
  --ink: #f4efe6;
  --muted: #b0a79a;
  --muted-soft: #7d756b;
  --gold: #b09858;
  --gold-deep: #d0b57b;
  --line: rgba(255,255,255,0.12);
  --line-strong: rgba(255,255,255,0.22);
}

body { background: linear-gradient(180deg, #0f0f0f 0%, #161616 100%); color: var(--ink); }
h1, h2, h3, .btn-link, .hero-stat-label, .hero-side-title, .footer-top h2 { color: var(--ink); }
.text-body, .detail-list li, .info-block p, .info-block a, .footer-contact-item span, .footer-col a { color: var(--muted); }
.site-header { background: rgba(18,18,18,0.92); border-bottom-color: rgba(255,255,255,0.08); }
.site-header.at-top { background: transparent; }
.section-warm, .site-footer { background: #111111; }
.hero::before, .cta::before, .page-hero::before { border-color: rgba(255,255,255,0.06); }
.col-item, .service-item, .contact-info, .contact-form { background: rgba(255,255,255,0.02); }
.menu-line { background: var(--ink); }
.btn-primary { background: var(--gold); color: #111; }
.btn-outline { color: var(--ink); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.02); }

body.theme-club-dark .hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: stretch;
  background: #111;
}

body.theme-club-dark .hero::before {
  display: none;
}

body.theme-club-dark .hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 80px));
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.42fr);
  gap: 54px;
  align-items: end;
  padding: 180px 0 90px;
}

body.theme-club-dark .hero-copy,
body.theme-club-dark .hero-stats {
  color: #f6f1e8;
}

body.theme-club-dark .hero-copy::before {
  display: none;
}

body.theme-club-dark .hero h1,
body.theme-club-dark .hero .text-lead,
body.theme-club-dark .hero-stat-label,
body.theme-club-dark .hero-side-title {
  color: #f6f1e8;
}

body.theme-club-dark .hero .text-lead {
  max-width: 560px;
}

body.theme-club-dark .hero-divider,
body.theme-club-dark .hero-stats > div {
  background: rgba(255,255,255,0.18);
  border-top-color: rgba(255,255,255,0.18);
}

body.theme-club-dark .hero-cover-image {
  position: absolute;
  inset: 0;
}

body.theme-club-dark .hero-cover-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,11,11,0.82) 0%, rgba(11,11,11,0.58) 42%, rgba(11,11,11,0.4) 100%);
}

body.theme-club-dark .hero-cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.theme-club-dark .section,
body.theme-club-dark .cta {
  padding: 150px 0;
}

body.theme-club-dark {
  background: #0f0f10;
}

body.theme-club-dark .site-header {
  padding: 22px 34px;
  background: rgba(12, 12, 13, 0.88);
}

body.theme-club-dark .site-header.at-top {
  background: transparent;
}

body.theme-club-dark .brand-logo .logo-img {
  height: 58px;
  filter: brightness(0) invert(1);
}

body.theme-club-dark .page-hero {
  padding: 210px 0 70px;
  text-align: left;
  background: #111;
}

body.theme-club-dark .page-hero::before,
body.theme-club-dark .cta::before {
  display: none;
}

body.theme-club-dark .page-hero h1 {
  margin: 0 0 22px;
  max-width: 860px;
  color: #f7f0e4;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
}

body.theme-club-dark .page-hero .text-lead,
body.theme-club-dark .page-hero .gold-line {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.theme-club-dark .page-hero .text-lead,
body.theme-club-dark .page-hero .eyebrow {
  color: rgba(247, 240, 228, 0.76);
}

body.theme-club-dark .split {
  gap: 88px;
}

body.theme-club-dark .split-image img {
  aspect-ratio: 4 / 5;
  box-shadow: 0 22px 64px rgba(0,0,0,0.28);
}

body.theme-club-dark .col-item,
body.theme-club-dark .service-item,
body.theme-club-dark .contact-info,
body.theme-club-dark .contact-form {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}

body.theme-club-dark .footer-brand-logo img {
  height: 32px;
  opacity: 0.88;
}

body.page-club-about .section:first-of-type {
  padding-top: 120px;
}

body.page-club-about .three-col {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

body.page-club-about .col-item {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.06) 100%);
}

body.page-club-services .services-list {
  grid-template-columns: 1fr;
  gap: 14px;
}

body.page-club-services .service-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  padding: 26px 24px;
}

body.page-club-services .service-item .detail-list {
  margin: 0;
}

body.page-club-details .three-col {
  grid-template-columns: 1fr;
  gap: 18px;
}

body.page-club-details .col-item {
  padding: 26px 26px 26px 34px;
  border-left: 1px solid rgba(176,152,88,0.36);
  border-top: none;
}

body.page-club-details .col-item::after {
  display: none;
}

body.page-club-assetlink .three-col {
  gap: 20px;
}

body.page-club-assetlink .col-item {
  padding: 28px 24px;
  min-height: 260px;
}

body.page-club-contact .contact-grid {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
}

body.page-club-contact .contact-info,
body.page-club-contact .contact-form {
  padding: 34px 30px;
}

@media (max-width: 1024px) {
  body.page-club-services .service-item,
  body.page-club-contact .contact-grid,
  body.theme-club-dark .split,
  body.page-club-about .three-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.theme-club-dark .brand-logo .logo-img {
    height: 44px;
  }
}
