:root {
  --bg: #080A07;
  --bg2: #0E110C;
  --surface: #141812;
  --card: #191E16;
  --border: #232A1E;
  --border2: #2E3D28;
  --gold: #C9975E;
  --gold2: #E0B87E;
  --gold3: #A87840;
  --cream: #EDE8DD;
  --cream2: #D8CDB8;
  --muted: #5E6858;
  --muted2: #8A9478;
  --nav-glass: rgba(8,10,7,.92);
  --input-bg: var(--card);
  --input-border: var(--border2);
  --ease-out: cubic-bezier(0.22,1,0.36,1);
}

[data-theme="light"] {
  --bg: #FFFCF6;
  --bg2: #F4F7EF;
  --surface: rgba(255, 255, 255, .82);
  --card: rgba(255, 255, 255, .88);
  --border: #E4E8DA;
  --border2: #CBD6BC;
  --gold: #9B7337;
  --gold2: #C89B55;
  --gold3: #7D662C;
  --cream: #1F2A1D;
  --cream2: #384432;
  --muted: #A8A28E;
  --muted2: #586B4C;
  --nav-glass: rgba(255, 252, 246, .80);
  --input-bg: rgba(255,255,255,.92);
  --input-border: #CBD6BC;
  --leaf: #6D8A5D;
  --leaf2: #B8CBA5;
  --text-on-img: #FFFFFF;
  --glass-shadow: 0 18px 48px rgba(93, 111, 75, .10), inset 0 1px 0 rgba(255,255,255,.88);
  --soft-shadow: 8px 12px 28px rgba(79, 91, 63, .09), -8px -8px 22px rgba(255,255,255,.82);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  cursor: none;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  transition: background .35s, color .35s;
  -webkit-font-smoothing: antialiased;
}
[data-theme="light"] body {
  background:
    linear-gradient(135deg, #FFFCF6 0%, #F8FAF4 48%, #FFFFFF 100%),
    repeating-linear-gradient(90deg, rgba(111,135,92,.018) 0 1px, transparent 1px 88px);
}
h1, h2, h3, h4, h5 {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.08;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
p { line-height: 1.85; }
a { color: var(--gold); text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: none; font-family: "Outfit", sans-serif; }
em { color: var(--gold); font-style: italic; }

#cursor-dot,
#cursor-ring {
  border-radius: 50%;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
#cursor-dot {
  background: var(--gold);
  height: 8px;
  transition: width .12s, height .12s, background .12s;
  width: 8px;
}
#cursor-ring {
  border: 1px solid rgba(201,151,94,.4);
  height: 36px;
  transition: width .16s var(--ease-out), height .16s var(--ease-out), border-color .16s;
  width: 36px;
  z-index: 9998;
}
body.cursor-hover #cursor-dot { width: 14px; height: 14px; background: var(--gold2); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(201,151,94,.7); }

.grain {
  animation: grain .5s steps(1) infinite;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  height: 200%;
  inset: -50%;
  opacity: .025;
  pointer-events: none;
  position: fixed;
  width: 200%;
  z-index: 800;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-15%,5%); }
  40% { transform: translate(-5%,25%); }
  60% { transform: translate(15%,0); }
  80% { transform: translate(3%,35%); }
}

#nav {
  border-bottom: 1px solid transparent;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background .4s, border-color .4s;
  z-index: 500;
}
#nav.scrolled {
  backdrop-filter: blur(24px);
  background: var(--nav-glass);
  border-color: var(--border);
}
[data-theme="light"] #nav.scrolled {
  box-shadow: 0 12px 34px rgba(73, 84, 56, .10);
}
.nav-inner {
  align-items: center;
  display: flex;
  height: 76px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 48px;
}
.logo {
  align-items: center;
  background: none;
  border: 0;
  color: var(--cream);
  display: flex;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  gap: 3px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.logo span, .footer-logo span { color: var(--gold); }
.nav-links { align-items: center; display: flex; gap: 36px; }
.nav-link, .nav-cta {
  background: transparent;
  border: 0;
  color: var(--muted2);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  padding: 6px 0;
  position: relative;
  text-transform: uppercase;
}
.nav-link::after {
  background: var(--gold);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width .3s var(--ease-out);
  width: 0;
}
.nav-link:hover, .nav-link.active { color: var(--cream); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold3);
  color: var(--gold);
  padding: 10px 26px;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.theme-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted2);
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.account-pill {
  align-items: center;
  border: 1px solid var(--border2);
  color: var(--cream);
  display: inline-flex;
  font-size: .68rem;
  font-weight: 500;
  gap: 10px;
  letter-spacing: .12em;
  padding: 7px 14px 7px 8px;
  text-transform: uppercase;
}
.account-pill span {
  align-items: center;
  background: var(--gold);
  color: var(--bg);
  display: inline-flex;
  font-size: .72rem;
  height: 26px;
  justify-content: center;
  width: 26px;
}
[data-theme="light"] .account-pill {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 24px rgba(93, 111, 75, .08);
}
[data-theme="light"] .theme-toggle,
[data-theme="light"] .filter-btn,
[data-theme="light"] .btn-outline {
  background: rgba(255,255,250,.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.container { margin: 0 auto; max-width: 1280px; padding: 0 48px; }
.container.narrow { max-width: 860px; }
.section { padding: 120px 0; }
.compact-top { padding-top: 0; }
.section--alt { background: var(--bg2); }
[data-theme="light"] .section--alt {
  background:
    linear-gradient(180deg, rgba(238,241,230,.86), rgba(247,244,236,.94));
}
.section-head {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 52px;
}
.section-title { margin-bottom: 16px; }
.section-intro, .section-copy {
  color: var(--muted2);
  margin: 0 auto;
  max-width: 560px;
}
.text-center { text-align: center; }
.sec-eyebrow {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: .62rem;
  font-weight: 500;
  gap: 14px;
  letter-spacing: .3em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.sec-eyebrow::before { background: var(--gold3); content: ""; display: block; height: 1px; width: 40px; }
.sec-eyebrow.center { justify-content: center; }
.sec-eyebrow.center::before { display: none; }

.btn {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: .68rem;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  letter-spacing: .2em;
  overflow: hidden;
  padding: 14px 34px;
  position: relative;
  text-transform: uppercase;
  transition: all .25s;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold2); border-color: var(--gold2); }
.btn-outline { background: transparent; border-color: var(--border2); color: var(--cream); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: transparent; border-color: var(--gold3); color: var(--gold); }
.btn-ghost:hover { background: rgba(201,151,94,.1); }
[data-theme="light"] .btn-gold {
  color: #fffaf0;
  box-shadow: 0 12px 28px rgba(154,113,53,.20);
}
[data-theme="light"] .btn-outline:hover,
[data-theme="light"] .btn-ghost:hover {
  background: rgba(111,135,92,.08);
}

.hero {
  align-items: flex-end;
  display: flex;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}
.hero-bg, .hero-slide, .hero-overlay, .hero-overlay-bottom { position: absolute; }
.hero-bg, .hero-slide, .hero-overlay { inset: 0; }
.hero-slide {
  background: linear-gradient(135deg,#2a1f0e,#1a140a);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 8s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay { background: linear-gradient(135deg,rgba(8,10,7,.75),rgba(8,10,7,.35),rgba(8,10,7,.6)); }
.hero-overlay-bottom {
  background: linear-gradient(to top,rgba(8,10,7,.95),transparent);
  bottom: 0;
  height: 45%;
  left: 0;
  right: 0;
}
[data-theme="light"] .hero-overlay {
  background:
    linear-gradient(110deg, rgba(15, 22, 12, .74) 0%, rgba(31, 42, 29, .38) 48%, rgba(15, 22, 12, .58) 100%);
}
[data-theme="light"] .hero-overlay-bottom {
  background: linear-gradient(to top, rgba(15,22,12,.82), rgba(15,22,12,0));
}
.hero-content {
  max-width: 900px;
  padding: 0 80px 90px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-size: .6rem;
  font-weight: 500;
  gap: 12px;
  letter-spacing: .3em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-tag::before { background: var(--gold); content: ""; height: 1px; width: 36px; }
.hero-h1 {
  color: var(--text-on-img, #fff);
  font-size: clamp(3.5rem,8vw,7.5rem);
  line-height: 1;
  margin-bottom: 28px;
  text-shadow: 0 3px 24px rgba(0,0,0,.45);
}
.hero-desc {
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 480px;
}
.hero-tag,
.hero-stat-val,
.hero-stat-lbl,
.hero-scroll,
.page-hero-content,
.contact-left-content,
.masonry-caption,
.gallery-item-info {
  text-shadow: 0 2px 18px rgba(0,0,0,.38);
}
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-right {
  align-items: flex-end;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 72px;
  z-index: 2;
}
.hero-stats { display: flex; flex-direction: column; gap: 20px; text-align: right; }
.hero-stat-val { color: #fff; font-family: "Cormorant Garamond", serif; font-size: 2.4rem; line-height: 1; }
.hero-stat-lbl { color: rgba(237,232,221,.5); font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.hero-dots {
  bottom: 40px;
  display: flex;
  gap: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-dot { background: rgba(237,232,221,.3); border: 0; height: 2px; transition: .3s; width: 24px; }
.hero-dot.active { background: var(--gold); width: 40px; }
.hero-scroll {
  color: rgba(237,232,221,.4);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .3em;
  position: absolute;
  right: 32px;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  z-index: 2;
}

.strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
[data-theme="light"] .strip,
[data-theme="light"] .cta-banner,
[data-theme="light"] .panel,
[data-theme="light"] .auth-card,
[data-theme="light"] .dash-card,
[data-theme="light"] .portal-card,
[data-theme="light"] .svc-card,
[data-theme="light"] .process-step,
[data-theme="light"] .pkg,
[data-theme="light"] .testi-card,
[data-theme="light"] .addon-item {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--glass-shadow);
}
.strip-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 48px;
}
.strip-item { flex: 1; padding: 0 40px; text-align: center; }
.strip-val { color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 3rem; line-height: 1; }
.strip-lbl { color: var(--muted2); font-size: .62rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
.strip-sep { background: var(--border2); height: 60px; width: 1px; }

.masonry, .gallery-grid { columns: 3; column-gap: 16px; }
.masonry-item, .gallery-item {
  background: var(--surface);
  break-inside: avoid;
  margin-bottom: 16px;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}
.masonry-item img, .gallery-item img { height: auto; transition: transform .6s var(--ease-out); }
.masonry-item:hover img, .gallery-item:hover img { transform: scale(1.04); }
.masonry-overlay, .gallery-item-overlay {
  background: linear-gradient(to top,rgba(8,10,7,.88),rgba(8,10,7,.10) 58%,transparent);
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .4s;
}
.masonry-item:hover .masonry-overlay, .gallery-item:hover .gallery-item-overlay { opacity: 1; }
.masonry-caption, .gallery-item-info {
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 20px;
  position: absolute;
  right: 0;
  transform: translateY(10px);
  transition: .4s var(--ease-out);
}
.masonry-item:hover .masonry-caption, .gallery-item:hover .gallery-item-info { opacity: 1; transform: translateY(0); }
.masonry-cap-title, .gal-title { color: #fff; font-family: "Cormorant Garamond", serif; font-size: 1.1rem; }
.masonry-cap-cat, .gal-cat { color: var(--gold); font-size: .58rem; letter-spacing: .2em; margin-top: 4px; text-transform: uppercase; }
.is-missing-image::before {
  align-items: center;
  color: var(--muted);
  content: "Image pending";
  display: flex;
  font-size: .72rem;
  inset: 0;
  justify-content: center;
  letter-spacing: .14em;
  min-height: 220px;
  text-transform: uppercase;
}

.about-grid { align-items: center; display: grid; gap: 80px; grid-template-columns: 1fr 1fr; }
.about-img-wrap { position: relative; }
.about-img-main { aspect-ratio: 4 / 5; background: var(--surface); overflow: hidden; }
.about-img-secondary {
  aspect-ratio: 1;
  background: var(--border);
  border: 6px solid var(--bg);
  bottom: -40px;
  overflow: hidden;
  position: absolute;
  right: -40px;
  width: 55%;
}
.about-badge {
  background: var(--gold);
  color: var(--bg);
  left: -24px;
  padding: 16px 20px;
  position: absolute;
  text-align: center;
  top: 32px;
  z-index: 2;
}
[data-theme="light"] .about-img-main,
[data-theme="light"] .about-img-secondary {
  box-shadow: var(--soft-shadow);
}
[data-theme="light"] .about-badge {
  color: #fffaf0;
  box-shadow: 0 14px 34px rgba(154,113,53,.22);
}
.about-badge-num { display: block; font-family: "Cormorant Garamond", serif; font-size: 2.2rem; font-weight: 600; line-height: 1; }
.about-badge-txt { display: block; font-size: .55rem; font-weight: 500; letter-spacing: .18em; margin-top: 4px; text-transform: uppercase; }
.about-text p { color: var(--muted2); margin-bottom: 20px; }
.about-signature { color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.6rem; font-style: italic; margin: 32px 0 8px; }
.about-name { color: var(--muted2); font-size: .65rem; letter-spacing: .22em; margin-bottom: 36px; text-transform: uppercase; }

.services-grid, .process-steps { display: grid; gap: 2px; grid-template-columns: repeat(4, 1fr); margin-top: 60px; }
.svc-card, .process-step {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 44px 32px;
  position: relative;
  transition: transform .22s var(--ease-out), border-color .22s var(--ease-out), box-shadow .22s var(--ease-out);
}
[data-theme="light"] .svc-card:hover,
[data-theme="light"] .process-step:hover,
[data-theme="light"] .pkg:hover,
[data-theme="light"] .addon-item:hover,
[data-theme="light"] .portal-card:hover,
[data-theme="light"] .dash-card:hover {
  border-color: var(--leaf2);
  transform: translateY(-2px);
}
.svc-num, .step-num {
  color: var(--border2);
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
}
.step-num { font-size: 5rem; }
.svc-title, .step-title { color: var(--cream); font-family: "Cormorant Garamond", serif; font-size: 1.4rem; margin-bottom: 12px; }
.svc-desc, .step-desc { color: var(--muted2); font-size: .84rem; line-height: 1.7; margin-bottom: 28px; }

.testi-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); margin-top: 52px; }
.testi-card { background: var(--card); border: 1px solid var(--border); padding: 40px 32px; }
.testi-stars { color: var(--gold); font-size: .8rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { color: var(--gold3); font-family: "Cormorant Garamond", serif; font-size: 4rem; line-height: .6; margin-bottom: 20px; }
.testi-text { color: var(--cream2); font-family: "Cormorant Garamond", serif; font-size: 1.15rem; font-style: italic; line-height: 1.65; margin-bottom: 28px; }
.testi-author { align-items: center; display: flex; gap: 14px; }
.testi-avatar { background: var(--border2); border-radius: 50%; height: 44px; overflow: hidden; width: 44px; }
.testi-name { color: var(--cream); font-size: .78rem; font-weight: 500; }
.testi-sub { color: var(--muted2); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }

.cta-banner {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding: 100px 80px;
  position: relative;
  text-align: center;
}
[data-theme="light"] .cta-banner {
  background:
    linear-gradient(135deg, rgba(255,255,250,.72), rgba(237,243,226,.76));
}
.cta-banner-bg { inset: 0; opacity: .07; position: absolute; }
.cta-inner { margin: 0 auto; max-width: 700px; position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 20px; }
.cta-inner p { color: var(--muted2); margin-bottom: 40px; }
.cta-actions { justify-content: center; }

.page-hero {
  align-items: flex-end;
  background: var(--surface);
  display: flex;
  height: 55vh;
  margin-top: 76px;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}
[data-theme="light"] .page-hero {
  box-shadow: inset 0 -80px 110px rgba(247,244,236,.16);
}
.page-hero-bg, .page-hero-overlay { inset: 0; position: absolute; }
.page-hero-overlay { background: linear-gradient(to top,rgba(8,10,7,1),rgba(8,10,7,.4)); }
[data-theme="light"] .page-hero-overlay {
  background: linear-gradient(to top,rgba(16,24,14,.86),rgba(16,24,14,.30));
}
.page-hero-content { padding: 0 80px 60px; position: relative; z-index: 1; }
.page-hero-content h1 { color: var(--text-on-img, #fff); text-shadow: 0 3px 24px rgba(0,0,0,.45); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 4px; padding-bottom: 40px; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted2);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  padding: 9px 20px;
  text-transform: uppercase;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); }

.invest-intro { margin: 0 auto; max-width: 750px; padding: 80px 48px 60px; text-align: center; }
.invest-intro p { color: var(--muted2); margin-top: 20px; }
.packages-grid { display: grid; gap: 2px; grid-template-columns: repeat(3, 1fr); margin-top: 52px; }
.pkg {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 52px 40px;
  position: relative;
  transition: transform .22s var(--ease-out), border-color .22s var(--ease-out), box-shadow .22s var(--ease-out);
}
.pkg.featured { background: var(--surface); border-color: var(--gold3); }
.pkg.featured::before {
  background: var(--gold);
  color: var(--bg);
  content: "Most Popular";
  font-size: .6rem;
  font-weight: 600;
  left: 50%;
  letter-spacing: .2em;
  padding: 6px 18px;
  position: absolute;
  text-transform: uppercase;
  top: -1px;
  transform: translateX(-50%);
}
.pkg-label { color: var(--gold); font-size: .6rem; font-weight: 500; letter-spacing: .25em; margin-bottom: 12px; text-transform: uppercase; }
.pkg-name { color: var(--cream); font-family: "Cormorant Garamond", serif; font-size: 2rem; margin-bottom: 8px; }
.pkg-tagline { border-bottom: 1px solid var(--border); color: var(--muted2); font-size: .8rem; margin-bottom: 36px; padding-bottom: 36px; }
.pkg-features { list-style: none; margin-bottom: 40px; }
.pkg-features li {
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  color: var(--cream2);
  display: flex;
  font-size: .84rem;
  gap: 12px;
  padding: 9px 0;
}
.pkg-check { color: var(--gold); flex-shrink: 0; font-size: .7rem; margin-top: 2px; }
.package-button, .form-submit { width: 100%; }
.package-note { color: var(--muted2); font-size: .84rem; margin-top: 28px; text-align: center; }
.package-note button { background: none; border: 0; color: var(--gold); font-size: .84rem; text-decoration: underline; }
.addons-grid { display: grid; gap: 2px; grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
.addon-item {
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 32px 36px;
  transition: transform .22s var(--ease-out), border-color .22s var(--ease-out), box-shadow .22s var(--ease-out);
}
.addon-info h4 { color: var(--cream); font-family: "Cormorant Garamond", serif; font-size: 1.2rem; margin-bottom: 6px; }
.addon-info p { color: var(--muted2); font-size: .8rem; }
.addon-icon { flex-shrink: 0; font-size: 1.4rem; opacity: .6; }
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  align-items: center;
  background: none;
  border: 0;
  color: var(--cream);
  display: flex;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  width: 100%;
}
.faq-icon {
  align-items: center;
  border: 1px solid var(--border2);
  color: var(--gold);
  display: flex;
  height: 28px;
  justify-content: center;
  transition: .3s;
  width: 28px;
}
.faq-item.open .faq-icon { background: rgba(201,151,94,.1); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { color: var(--muted2); font-size: .88rem; padding-bottom: 24px; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; margin-top: 76px; min-height: calc(100vh - 76px); }
.contact-left { background: var(--surface); overflow: hidden; position: relative; }
.contact-left-overlay { background: linear-gradient(to right,rgba(8,10,7,.7),rgba(8,10,7,.2)); inset: 0; position: absolute; }
[data-theme="light"] .contact-left-overlay {
  background: linear-gradient(to right,rgba(16,24,14,.72),rgba(16,24,14,.25));
}
.contact-left-content {
  bottom: 0;
  left: 0;
  padding: 60px;
  position: absolute;
  right: 0;
  z-index: 1;
}
.contact-left-content h2 { color: var(--text-on-img, #fff); font-size: 2.8rem; margin-bottom: 40px; text-shadow: 0 3px 24px rgba(0,0,0,.45); }
.contact-detail { align-items: flex-start; display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  align-items: center;
  border: 1px solid var(--gold3);
  color: var(--gold);
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.contact-label { color: rgba(237,232,221,.5); font-size: .6rem; font-weight: 500; letter-spacing: .2em; margin-bottom: 4px; text-transform: uppercase; }
.contact-value { color: #fff; font-size: .95rem; }
.contact-right { background: var(--bg2); display: flex; flex-direction: column; justify-content: center; padding: 80px 72px; }
.contact-sub { color: var(--muted2); font-size: .82rem; margin-bottom: 48px; }
.fg { margin-bottom: 20px; }
.fg label { color: var(--muted2); display: block; font-size: .6rem; font-weight: 500; letter-spacing: .2em; margin-bottom: 8px; text-transform: uppercase; }
.fg input, .fg select, .fg textarea {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--cream);
  font-family: "Outfit", sans-serif;
  font-size: .88rem;
  font-weight: 300;
  outline: none;
  padding: 14px 18px;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
[data-theme="light"] .fg input,
[data-theme="light"] .fg select,
[data-theme="light"] .fg textarea,
[data-theme="light"] .stack-form input,
[data-theme="light"] .stack-form select,
[data-theme="light"] .stack-form textarea,
[data-theme="light"] .inline-form select {
  box-shadow: inset 2px 2px 8px rgba(106,121,91,.08), inset -2px -2px 8px rgba(255,255,255,.7);
}
.fg textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }

footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 0 32px; }
[data-theme="light"] footer {
  background: linear-gradient(180deg, rgba(247,244,236,.94), rgba(235,240,226,.96));
}
.footer-inner { margin: 0 auto; max-width: 1280px; padding: 0 48px; }
.footer-top { display: grid; gap: 48px; grid-template-columns: 2fr 1fr 1fr 1fr; margin-bottom: 60px; }
.footer-logo { color: var(--cream); font-family: "Cormorant Garamond", serif; font-size: 1.5rem; letter-spacing: .12em; margin-bottom: 16px; text-transform: uppercase; }
.footer-desc { color: var(--muted); font-size: .82rem; max-width: 280px; }
.footer-col-title { color: var(--muted2); font-size: .6rem; font-weight: 500; letter-spacing: .22em; margin-bottom: 20px; text-transform: uppercase; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-link {
  background: none;
  border: 0;
  color: var(--muted);
  display: block;
  font-size: .82rem;
  padding: 0;
  text-align: left;
}
.footer-link.static { cursor: default; }
.footer-link:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  align-items: center;
  border: 1px solid var(--border2);
  color: var(--muted2);
  display: flex;
  font-size: .8rem;
  height: 38px;
  justify-content: center;
  transition: .25s;
  width: 38px;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { align-items: center; border-top: 1px solid var(--border); display: flex; justify-content: space-between; padding-top: 32px; }
.footer-copy { color: var(--muted); font-size: .72rem; }

#lightbox {
  align-items: center;
  background: rgba(8,10,7,.96);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 40px;
  pointer-events: none;
  position: fixed;
  transition: opacity .3s;
  z-index: 900;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img { height: auto; max-height: 85vh; max-width: 90vw; object-fit: contain; width: auto; }
.lb-close {
  background: none;
  border: 0;
  color: rgba(237,232,221,.5);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
  top: 24px;
}
.toast {
  background: var(--card);
  border: 1px solid var(--gold3);
  bottom: 32px;
  color: var(--cream);
  font-size: .82rem;
  opacity: 0;
  padding: 16px 24px;
  pointer-events: none;
  position: fixed;
  right: 32px;
  transform: translateY(20px);
  transition: .3s var(--ease-out);
  z-index: 1000;
}
.toast.show { opacity: 1; transform: translateY(0); }

.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.revealed { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1024px) {
  .container, .nav-inner { padding: 0 32px; }
  .hero-content { padding: 0 48px 72px; }
  .hero-right { display: none; }
  .about-grid { gap: 48px; }
  .services-grid, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .packages-grid, .testi-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { height: 50vh; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
  .section { padding: 80px 0; }
  .nav-inner { height: auto; min-height: 76px; padding: 16px 24px; }
  .nav-links { flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
  .nav-cta { display: none; }
  .hero-content { padding: 0 32px 80px; }
  .hero-scroll { display: none; }
  .masonry, .gallery-grid { columns: 2; }
  .about-grid, .services-grid, .process-steps, .addons-grid, .form-row, .footer-top { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .strip-inner { flex-wrap: wrap; }
  .strip-sep { display: none; }
  .strip-item { flex: 0 0 50%; padding: 18px; }
  .page-hero-content, .contact-right, .contact-left-content { padding: 48px 32px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
}

@media (max-width: 520px) {
  .masonry, .gallery-grid { columns: 1; }
  .cta-banner { padding: 80px 24px; }
}

.form-error,
.notice {
  border: 1px solid var(--gold3);
  color: var(--cream);
  margin-bottom: 20px;
  padding: 14px 16px;
}

.form-error { border-color: #8f3f32; }

.auth-section {
  min-height: 100vh;
  padding-top: 150px;
}

.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  margin: 0 auto;
  max-width: 520px;
  padding: 44px;
}

.auth-card h1 { margin-bottom: 28px; }
.auth-note { color: var(--muted2); margin-top: 18px; }

.portal-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin: 48px auto 0;
  max-width: 900px;
}

.upload-choice-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}

.upload-choice-card {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--cream);
  display: grid;
  gap: 16px;
  min-height: 220px;
  padding: 30px;
  transition: transform .22s var(--ease-out), border-color .22s var(--ease-out), box-shadow .22s var(--ease-out);
}

.upload-choice-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.upload-choice-card span {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.upload-choice-card strong {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.25;
}

.upload-choice-card em {
  align-self: end;
  color: var(--muted2);
  font-family: "Outfit", sans-serif;
  font-size: .72rem;
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
}

[data-theme="light"] .upload-choice-card {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--glass-shadow);
}

.portal-card {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--cream);
  display: grid;
  gap: 16px;
  min-height: 180px;
  padding: 34px;
}

.portal-card:hover {
  border-color: var(--gold);
}

.portal-card span {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.portal-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
}

.dashboard-body {
  cursor: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.dashboard-body #cursor-dot,
.dashboard-body #cursor-ring,
.dashboard-body .grain {
  display: none;
}

.dashboard-sidebar {
  background: var(--bg2);
  border-right: 1px solid var(--border);
  min-height: 100vh;
  padding: 32px;
  position: sticky;
  top: 0;
}
[data-theme="light"] .dashboard-sidebar {
  background: rgba(244, 246, 236, .76);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 18px 0 45px rgba(73, 84, 56, .09);
}

.dashboard-nav {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.dashboard-nav a {
  border: 1px solid var(--border);
  color: var(--muted2);
  padding: 12px 14px;
}
[data-theme="light"] .dashboard-nav a {
  background: rgba(255,255,250,.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.dashboard-nav a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.dashboard-main {
  padding: 40px;
}

.dashboard-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.dash-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 24px;
}

.dash-card,
.panel {
  background: var(--card);
  border: 1px solid var(--border);
}

.dash-card {
  color: var(--cream);
  display: grid;
  gap: 10px;
  padding: 24px;
}

.dash-card span {
  color: var(--muted2);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dash-card strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
}

.dash-columns {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.panel {
  margin-bottom: 24px;
  padding: 28px;
}

.panel h1,
.panel h2 {
  margin-bottom: 20px;
}

.dashboard-actions .cta-actions {
  justify-content: flex-start;
}

.list-row {
  border-top: 1px solid var(--border);
  color: var(--cream);
  display: grid;
  gap: 4px;
  padding: 14px 0;
}

.list-row span,
table small {
  color: var(--muted2);
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--border);
  color: var(--cream2);
  padding: 13px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted2);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.inline-form {
  align-items: center;
  display: flex;
  gap: 8px;
}

.mini-btn {
  background: var(--gold);
  border: 0;
  color: var(--bg);
  font-size: .72rem;
  padding: 8px 12px;
  text-transform: uppercase;
}

.danger-btn {
  background: #8f3f32;
  color: #fff;
}

.stack-form {
  display: grid;
  gap: 8px;
  min-width: 260px;
}

.stack-form input,
.stack-form select,
.stack-form textarea,
.inline-form select {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--cream);
  padding: 8px 10px;
}

.status-row {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  text-transform: capitalize;
}

.status-row strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.admin-form {
  margin-bottom: 12px;
}

.admin-thumb {
  aspect-ratio: 1;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.client-file-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.client-file-card {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--cream);
  display: grid;
  gap: 10px;
  padding: 12px;
}

.client-file-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.client-file-card span {
  color: var(--muted2);
  font-size: .8rem;
}

.check-row {
  align-items: end;
  display: flex;
}

@media (max-width: 900px) {
  .dashboard-body {
    display: block;
  }

  .dashboard-sidebar {
    min-height: auto;
    position: static;
  }

  .dashboard-main {
    padding: 24px;
  }

  .dash-grid,
  .dash-columns,
  .portal-grid,
  .upload-choice-grid,
  .client-file-grid {
    grid-template-columns: 1fr;
  }
}
