  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  :root {
    /* Brand palette — #330000 base */
    --burgundy: #330000;
    --burgundy-deep: #1F0000;
    --burgundy-rich: #4D0F0F;
    --burgundy-light: #6B1F1F;
    --burgundy-soft: #8B3A2A;
    --rust: #B8542A;
    --rust-light: #D4732E;
    --sunset-orange: #E8893E;
    --sunset-warm: #F0A55C;
    --gold: #C9A05C;
    --gold-light: #E5C285;
    --gold-bright: #F0D9A8;
    --gold-dark: #9C7B3E;
    --champagne: #F5E8CC;
    --cream: #FDF8EE;
    --cream-warm: #FAEBD7;
    --beige: #F0E4D0;
    --warm-stone: #D4BFA0;
    --white: #FFFFFF;
    --black: #1A0808;
    --text-dark: #2A1010;
    --text-muted: #7A5A5A;
  }
  
  /* Lenis smooth scroll — нативтай зөрчилдөхөөс сэргийлж scroll-behavior auto */
  html { scroll-behavior: auto; }
  html.lenis, html.lenis body { height: auto; }
  .lenis.lenis-smooth { scroll-behavior: auto !important; }
  .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
  .lenis.lenis-stopped { overflow: hidden; }

  /* Section reveal — IntersectionObserver-аар анимаци хийнэ. Default-аар үл үзэгдэх биш — JS reveal-target нэмэхэд л hide болно. */
  .reveal-target {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
  }
  .reveal-target.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 300;
  }
  
  /* Subtle texture overlay */
  body::before {
    content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1;
    background: 
      radial-gradient(ellipse at top right, rgba(212, 152, 92, 0.05) 0%, transparent 50%),
      radial-gradient(ellipse at bottom left, rgba(92, 26, 26, 0.04) 0%, transparent 50%);
  }
  
  .serif { font-family: 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: 0.02em; }
  
  /* ===== NAVBAR ===== */
  .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.4s ease;
    background: transparent;
  }
  .navbar.scrolled {
    background: rgba(51, 0, 0, 0.92);
    backdrop-filter: blur(24px);
    padding: 14px 5%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  }
  .logo {
    display: flex; flex-direction: column; align-items: center;
    line-height: 1;
  }
  .logo-sunburst {
    width: 38px; height: 19px; margin-bottom: 4px;
  }
  .logo-name {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 500; letter-spacing: 0.18em;
    background: linear-gradient(135deg, #C13F1F 0%, #8B2818 50%, #E8893E 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }
  .logo-sub {
    font-family: 'Cinzel', serif;
    font-size: 10px; letter-spacing: 0.45em; font-weight: 500;
    color: #E8893E;
    margin-top: 4px;
  }
  .navbar.scrolled .logo-name {
    background: linear-gradient(135deg, #E8893E 0%, #F5E8CC 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .navbar.scrolled .logo-sub { color: var(--gold-light); }
  
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    color: var(--cream); text-decoration: none; font-size: 13px;
    letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400;
    transition: color 0.3s; position: relative;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
  }
  .nav-links a:hover::after { width: 100%; }
  
  .nav-cta {
    background: var(--gold); color: var(--burgundy-deep);
    padding: 12px 28px; border: none; cursor: pointer;
    font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
    transition: all 0.3s; font-family: 'Inter', sans-serif;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 160, 92, 0.4); }
  
  .menu-toggle { display: none; background: none; border: none; color: var(--cream); cursor: pointer; }
  
  /* ===== HERO ===== */
  .hero {
    height: 100vh; min-height: 700px; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  
  /* Horizon glow line */
  .hero::after {
    content: ''; position: absolute; left: 0; right: 0; top: 55%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 201, 136, 0.4) 50%, transparent 100%);
    z-index: 2; pointer-events: none;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: 
      linear-gradient(180deg, rgba(51, 0, 0, 0.45) 0%, rgba(51, 0, 0, 0.75) 100%),
      linear-gradient(160deg, #330000 0%, #4D0F0F 20%, #6B1F1F 40%, #B8542A 65%, #E8893E 85%, #F0D9A8 100%);
    z-index: -2;
  }
  .hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse at 75% 40%, rgba(245, 232, 204, 0.45) 0%, transparent 55%),
      radial-gradient(ellipse at 30% 90%, rgba(51, 0, 0, 0.6) 0%, transparent 60%);
  }
  
  /* Sun */
  .hero-sun {
    position: absolute; top: 38%; right: 18%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245, 232, 204, 0.95) 0%, rgba(232, 137, 62, 0.6) 35%, transparent 70%);
    border-radius: 50%;
    animation: sunGlow 5s ease-in-out infinite alternate;
    filter: blur(3px);
  }
  @keyframes sunGlow {
    from { opacity: 0.7; transform: scale(1); }
    to { opacity: 1; transform: scale(1.05); }
  }
  
  /* Mountains silhouette */
  .hero-mountains {
    position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
    background: 
      linear-gradient(180deg, transparent 0%, rgba(51, 0, 0, 0.35) 50%, rgba(51, 0, 0, 0.92) 100%);
  }
  .mountain {
    position: absolute; bottom: 0;
    background: var(--burgundy);
    clip-path: polygon(0% 100%, 15% 60%, 30% 75%, 45% 40%, 60% 65%, 75% 30%, 90% 70%, 100% 50%, 100% 100%);
  }
  .mountain-1 { left: 0; right: 0; height: 35%; opacity: 0.5; }
  .mountain-2 { left: 0; right: 0; height: 25%; opacity: 0.8; clip-path: polygon(0% 100%, 10% 70%, 25% 50%, 40% 75%, 55% 45%, 70% 70%, 85% 55%, 100% 75%, 100% 100%); }
  
  /* House silhouettes */
  .hero-houses {
    position: absolute; bottom: 0; left: 0; right: 0; height: 15%;
    z-index: 1;
  }
  .hero-houses::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100%;
    background: var(--burgundy-deep);
    clip-path: polygon(
      0% 100%, 0% 70%, 5% 70%, 5% 50%, 15% 50%, 15% 60%, 22% 60%, 22% 45%, 30% 45%, 30% 65%,
      40% 65%, 40% 55%, 48% 55%, 48% 70%, 58% 70%, 58% 50%, 68% 50%, 68% 60%, 78% 60%, 78% 45%, 88% 45%, 88% 65%, 100% 65%, 100% 100%
    );
  }
  
  .hero-content {
    position: relative; z-index: 10;
    text-align: center; color: var(--white);
    max-width: 900px; padding: 0 24px;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--gold-light); font-size: 11px; letter-spacing: 0.4em;
    text-transform: uppercase; margin-bottom: 24px;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s both;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; width: 40px; height: 1px; 
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300; line-height: 1; letter-spacing: 0.02em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FDF8EE 0%, #F5E8CC 30%, #E5C285 60%, #C9A05C 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.4s both;
  }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 300; font-style: italic;
    margin-bottom: 32px;
    color: var(--champagne);
    animation: fadeInUp 1s ease 0.6s both;
  }
  .hero-desc {
    font-size: 16px; max-width: 600px; margin: 0 auto 48px;
    opacity: 0.9; line-height: 1.8;
    animation: fadeInUp 1s ease 0.8s both;
  }
  .hero-buttons {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
  }
  .btn {
    padding: 18px 38px; border: none; cursor: pointer;
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    transition: all 0.3s; font-family: 'Inter', sans-serif;
    text-decoration: none; display: inline-flex; align-items: center; gap: 12px;
  }
  .btn-primary {
    background: var(--gold); color: var(--burgundy-deep);
  }
  .btn-primary:hover {
    background: var(--gold-light); transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 160, 92, 0.5);
  }
  .btn-outline {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.1); border-color: var(--gold); color: var(--gold);
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    color: var(--gold); font-size: 10px; letter-spacing: 0.3em;
    text-transform: uppercase; z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    animation: bounce 2s infinite;
  }
  .scroll-indicator::after {
    content: ''; width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }
  @keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 10px); opacity: 0.5; }
  }
  
  /* Stats badge */
  .hero-stats {
    position: absolute; bottom: 60px; right: 5%;
    background: rgba(61, 15, 15, 0.75); backdrop-filter: blur(24px);
    border: 1px solid rgba(229, 194, 133, 0.3);
    padding: 28px 36px; color: var(--white);
    z-index: 5;
    animation: fadeInUp 1s ease 1.2s both;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .hero-stats .label { font-size: 10px; letter-spacing: 0.35em; color: var(--gold-light); text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
  .hero-stats .value { 
    font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 400; 
    background: linear-gradient(135deg, #FDF8EE 0%, #E5C285 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-stats .unit { font-size: 12px; opacity: 0.7; margin-top: 6px; letter-spacing: 0.05em; }
  
  /* ===== SECTION BASE ===== */
  section { padding: 120px 5%; position: relative; }
  .container { max-width: 1400px; margin: 0 auto; }
  
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--rust); font-size: 11px; letter-spacing: 0.4em;
    text-transform: uppercase; margin-bottom: 20px; font-weight: 500;
  }
  .section-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--rust); }
  
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400; line-height: 1.1;
    margin-bottom: 24px; color: var(--burgundy);
  }
  .section-title .gold { color: var(--rust); font-style: italic; }
  
  .section-subtitle {
    font-size: 17px; color: var(--text-muted);
    max-width: 700px; line-height: 1.8; font-weight: 300;
  }
  
  /* ===== ABOUT SECTION ===== */
  .about { background: var(--cream); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
  }
  .about-image {
    position: relative; height: 600px; overflow: hidden;
  }
  .about-image-main {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #3D0F0F 0%, #5C1A1A 25%, #7A2424 45%, #B8542A 70%, #E8893E 90%, #F0D9A8 100%);
    position: relative;
  }
  .about-image-main::before {
    content: ''; position: absolute; inset: 0;
    background: 
      linear-gradient(180deg, transparent 40%, rgba(61, 15, 15, 0.5) 100%),
      radial-gradient(circle at 70% 30%, rgba(245, 232, 204, 0.4) 0%, transparent 50%);
  }
  .about-image-main::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30%;
    background: var(--burgundy-deep);
    clip-path: polygon(0% 100%, 0% 60%, 8% 60%, 8% 40%, 18% 40%, 18% 55%, 28% 55%, 28% 30%, 40% 30%, 40% 50%, 52% 50%, 52% 35%, 64% 35%, 64% 55%, 76% 55%, 76% 40%, 88% 40%, 88% 60%, 100% 60%, 100% 100%);
  }
  .about-image-overlay {
    position: absolute; bottom: -40px; right: -40px;
    background: var(--white); padding: 32px 40px;
    border-left: 3px solid var(--rust);
    box-shadow: 0 20px 60px rgba(92, 26, 26, 0.2);
  }
  .about-image-overlay .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px; line-height: 1; font-weight: 500;
    background: linear-gradient(135deg, var(--rust) 0%, var(--gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .about-image-overlay .label {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 8px;
  }
  
  .about-content h2 { margin-bottom: 32px; }
  .about-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 16px; line-height: 1.9; }
  
  .about-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
  }
  .about-feature {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .about-feature-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--burgundy); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
  }
  .about-feature h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 20px;
    color: var(--burgundy); margin-bottom: 4px; font-weight: 500;
  }
  .about-feature p { font-size: 13px; margin: 0; line-height: 1.5; }
  
  /* ===== ADVANTAGES ===== */
  .advantages { 
    background: linear-gradient(135deg, #4D0F0F 0%, #330000 50%, #6B1F1F 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .advantages::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 70%; height: 100%;
    background: radial-gradient(ellipse at top right, rgba(232, 137, 62, 0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .advantages::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 60%; height: 70%;
    background: radial-gradient(ellipse at bottom left, rgba(229, 194, 133, 0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .advantages > .container { position: relative; z-index: 1; }
  .advantages .section-title { color: var(--white); }
  .advantages .section-title .gold { 
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .advantages .section-eyebrow { color: var(--gold-light); }
  .advantages .section-eyebrow::before { background: var(--gold-light); }
  .advantages .section-subtitle { color: rgba(255,255,255,0.78); }
  
  .advantages-header { text-align: center; margin-bottom: 80px; }
  .advantages-header .section-subtitle { margin: 0 auto; }
  
  .advantages-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(229, 194, 133, 0.18);
    border: 1px solid rgba(229, 194, 133, 0.18);
  }
  .advantage-card {
    background: rgba(51, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 48px 36px;
    transition: all 0.4s ease; cursor: default;
    position: relative; overflow: hidden;
  }
  .advantage-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(232, 137, 62, 0.15) 0%, transparent 100%);
    opacity: 0; transition: opacity 0.4s;
  }
  .advantage-card:hover { 
    background: rgba(107, 31, 31, 0.7);
    transform: translateY(-4px); 
  }
  .advantage-card:hover::before { opacity: 1; }
  
  .advantage-icon {
    width: 56px; height: 56px; margin-bottom: 24px;
    color: var(--gold-light); display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(229, 194, 133, 0.35);
    border-radius: 50%;
    position: relative; z-index: 1;
    transition: all 0.4s;
  }
  .advantage-card:hover .advantage-icon {
    background: rgba(232, 137, 62, 0.12);
    border-color: var(--gold-light);
    color: var(--gold-bright);
  }
  .advantage-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 500;
    margin-bottom: 12px; color: var(--white);
    position: relative; z-index: 1;
  }
  .advantage-card p {
    font-size: 14px; color: rgba(255,255,255,0.7);
    line-height: 1.7; position: relative; z-index: 1;
  }
  
  /* ===== SMART TECH ===== */
  .smart-tech { background: var(--cream); }
  .smart-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  
  .smart-visual {
    position: relative;
    background: linear-gradient(135deg, #4D0F0F 0%, #330000 50%, #6B1F1F 100%);
    padding: 60px; color: var(--white);
    overflow: hidden;
  }
  .smart-visual::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(232, 137, 62, 0.22) 0%, transparent 60%);
  }
  .smart-visual::after {
    content: ''; position: absolute; bottom: -30%; left: -30%;
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(229, 194, 133, 0.12) 0%, transparent 60%);
  }
  
  .savings-badge {
    display: inline-block; 
    background: linear-gradient(135deg, var(--rust) 0%, var(--gold) 100%); 
    color: var(--burgundy-deep);
    padding: 8px 20px; font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase; font-weight: 700; margin-bottom: 24px;
    position: relative; z-index: 1;
  }
  .savings-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px; line-height: 1; font-weight: 400;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #F5E8CC 0%, #E5C285 50%, #C9A05C 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative; z-index: 1;
  }
  .savings-subtitle {
    font-size: 14px; opacity: 0.8; margin-bottom: 40px;
    position: relative; z-index: 1;
  }
  
  .cost-comparison {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 20px;
  }
  .cost-item {
    background: rgba(255,255,255,0.05); padding: 20px 24px;
    border-left: 2px solid var(--gold);
    backdrop-filter: blur(10px);
  }
  .cost-item-header {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 12px;
  }
  .cost-item-size {
    font-family: 'Cormorant Garamond', serif; font-size: 22px;
    color: var(--white);
  }
  .cost-item-price {
    font-size: 20px; color: var(--gold-light); font-weight: 500;
  }
  .cost-bar {
    height: 4px; background: rgba(255,255,255,0.1); position: relative;
    overflow: hidden;
  }
  .cost-bar-fill {
    height: 100%; 
    background: linear-gradient(90deg, var(--rust) 0%, var(--gold) 50%, var(--gold-light) 100%);
    width: 0; transition: width 1.5s ease;
  }
  
  .smart-content h2 { margin-bottom: 24px; }
  .smart-list { list-style: none; margin-top: 32px; }
  .smart-list li {
    padding: 18px 0; border-bottom: 1px solid rgba(92, 26, 26, 0.12);
    display: flex; align-items: center; gap: 16px;
    color: var(--text-dark); font-size: 15px;
  }
  .smart-list li::before {
    content: '→'; color: var(--rust); font-size: 18px; font-weight: 600;
  }
  
  /* ===== LIFESTYLE GALLERY ===== */
  .lifestyle { background: var(--white); }
  .lifestyle-header { text-align: center; margin-bottom: 80px; }
  .lifestyle-header .section-subtitle { margin: 0 auto; }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 240px 240px;
    gap: 16px;
  }
  .gallery-item {
    position: relative; overflow: hidden; cursor: pointer;
    transition: all 0.4s;
  }
  .gallery-item:hover { transform: scale(0.98); }
  .gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(61, 15, 15, 0.75) 100%);
    transition: opacity 0.4s;
  }
  .gallery-item:hover::after { background: linear-gradient(180deg, transparent 30%, rgba(61, 15, 15, 0.9) 100%); }
  .gallery-item .label {
    position: absolute; bottom: 24px; left: 24px;
    color: var(--white); z-index: 2;
    font-family: 'Cormorant Garamond', serif; font-size: 22px;
    font-weight: 500;
  }
  .gallery-item .label small {
    display: block; font-family: 'Inter', sans-serif;
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 6px; font-weight: 500;
  }
  
  .gallery-1 { grid-column: span 2; grid-row: span 2; background: linear-gradient(160deg, #5C1A1A 0%, #B8542A 60%, #E8893E 100%); }
  .gallery-2 { background: linear-gradient(135deg, #3D0F0F 0%, #5C1A1A 100%); }
  .gallery-3 { background: linear-gradient(135deg, #7A2424 0%, #B8542A 100%); }
  .gallery-4 { background: linear-gradient(135deg, #5C1A1A 0%, #7A2424 100%); }
  .gallery-5 { background: linear-gradient(135deg, #C9A05C 0%, #B8542A 100%); }
  
  .gallery-item .visual {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .gallery-1 .visual::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
    background: var(--burgundy-deep);
    clip-path: polygon(0% 100%, 0% 50%, 15% 50%, 15% 30%, 30% 30%, 30% 60%, 45% 60%, 45% 25%, 60% 25%, 60% 55%, 75% 55%, 75% 35%, 90% 35%, 90% 65%, 100% 65%, 100% 100%);
  }
  .gallery-1 .visual::after {
    content: ''; position: absolute; top: 25%; right: 20%;
    width: 80px; height: 80px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 232, 204, 0.95) 0%, rgba(232, 137, 62, 0.7) 50%, transparent 80%);
  }
  
  /* ===== PRICING ===== */
  .pricing {
    background: linear-gradient(135deg, #4D0F0F 0%, #330000 40%, #6B1F1F 75%, #8B3A2A 100%);
    color: var(--white); position: relative; overflow: hidden;
  }
  .pricing::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 137, 62, 0.22) 0%, transparent 60%);
  }
  .pricing::after {
    content: ''; position: absolute; bottom: -150px; left: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 194, 133, 0.15) 0%, transparent 60%);
  }
  .pricing .section-title { color: var(--white); }
  .pricing .section-eyebrow { color: var(--gold-light); }
  .pricing .section-eyebrow::before { background: var(--gold-light); }
  .pricing .section-title .gold {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .pricing-grid {
    display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
  }
  
  .pricing-main {
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(229, 194, 133, 0.35);
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    position: relative;
  }
  .pricing-main::before {
    content: 'НЭЭЛТИЙН ХЯМДРАЛ';
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--rust) 0%, var(--gold) 100%);
    color: var(--burgundy-deep);
    padding: 6px 20px; font-size: 10px; letter-spacing: 0.3em;
    font-weight: 700;
  }
  .price-label {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 16px;
  }
  .price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; font-weight: 400; line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FDF8EE 0%, #F5E8CC 50%, #E5C285 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .price-value .currency { font-size: 28px; vertical-align: top; opacity: 0.7; }
  .price-unit { font-size: 14px; opacity: 0.6; margin-bottom: 32px; }
  .price-deadline {
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 13px; opacity: 0.85;
  }
  .price-deadline strong { color: var(--gold-light); display: block; font-size: 16px; margin-top: 4px; font-weight: 500; }
  
  .pricing-details {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  }
  .pricing-detail {
    border-left: 2px solid var(--gold-light); padding-left: 24px;
  }
  .pricing-detail .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px; font-weight: 400;
    line-height: 1; margin-bottom: 12px;
    background: linear-gradient(135deg, #F5E8CC 0%, #E5C285 60%, #C9A05C 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .pricing-detail h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 500; margin-bottom: 8px;
  }
  .pricing-detail p { font-size: 14px; opacity: 0.7; line-height: 1.6; }
  
  /* ===== BONUSES ===== */
  .bonuses { background: var(--cream); }
  .bonuses-header { text-align: center; margin-bottom: 80px; }
  .bonuses-header .section-subtitle { margin: 0 auto; }
  
  .bonus-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  }
  .bonus-card {
    background: var(--white); padding: 48px;
    position: relative; overflow: hidden;
    border: 1px solid rgba(184, 84, 42, 0.2);
    transition: all 0.4s;
  }
  .bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(92, 26, 26, 0.15);
    border-color: var(--rust);
  }
  .bonus-card::before {
    content: '🎁'; position: absolute; top: -30px; right: -30px;
    font-size: 200px; opacity: 0.04;
  }
  .bonus-tag {
    display: inline-block; 
    background: var(--burgundy); color: var(--gold-light);
    padding: 6px 16px; font-size: 10px; letter-spacing: 0.3em;
    text-transform: uppercase; font-weight: 600; margin-bottom: 20px;
  }
  .bonus-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 500; line-height: 1.2;
    color: var(--burgundy); margin-bottom: 16px;
  }
  .bonus-card p {
    color: var(--text-muted); font-size: 15px; line-height: 1.7;
  }
  .bonus-card .duration {
    margin-top: 24px; padding-top: 24px;
    border-top: 1px solid rgba(184, 84, 42, 0.15);
    display: flex; align-items: center; gap: 12px;
    color: var(--rust); font-size: 13px; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 600;
  }
  
  /* ===== LOCATION ===== */
  .location { background: var(--white); }
  .location-grid {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
    align-items: center;
  }
  .location-content h2 { margin-bottom: 24px; }
  .location-content p { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; line-height: 1.9; }
  
  .location-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    margin-top: 32px;
  }
  .location-stat {
    padding: 24px; background: var(--cream);
    border-bottom: 2px solid var(--rust);
  }
  .location-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 500;
    color: var(--burgundy); line-height: 1;
  }
  .location-stat .label {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 8px;
  }
  
  .location-map {
    height: 500px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #6B1F1F 0%, #330000 50%, #4D0F0F 100%);
  }
  .map-grid {
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(229, 194, 133, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(229, 194, 133, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .map-roads {
    position: absolute; inset: 0;
  }
  .map-road {
    position: absolute; background: rgba(232, 137, 62, 0.3);
  }
  .road-1 { top: 50%; left: 0; right: 0; height: 2px; transform: rotate(-5deg); }
  .road-2 { top: 30%; left: 20%; width: 60%; height: 1px; transform: rotate(15deg); }
  .road-3 { left: 50%; top: 0; bottom: 0; width: 1px; }
  
  .map-pin {
    position: absolute; top: 50%; left: 60%; transform: translate(-50%, -50%);
    z-index: 5;
  }
  .map-pin-dot {
    width: 24px; height: 24px; 
    background: linear-gradient(135deg, #F5E8CC 0%, #E8893E 100%);
    border-radius: 50%; border: 4px solid var(--white);
    box-shadow: 0 4px 24px rgba(232, 137, 62, 0.7);
    position: relative; z-index: 2;
  }
  .map-pin-pulse {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--sunset-orange); opacity: 0.5;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%,-50%) scale(4); opacity: 0; }
  }
  .map-pin-label {
    position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
    background: var(--white); color: var(--burgundy);
    padding: 12px 20px; white-space: nowrap;
    font-family: 'Cormorant Garamond', serif; font-size: 18px;
    margin-bottom: 12px; font-weight: 500;
  }
  .map-pin-label::after {
    content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 6px solid transparent; border-top-color: var(--white);
  }
  
  .map-city {
    position: absolute; top: 30%; left: 25%;
    color: rgba(255,255,255,0.5); font-size: 12px;
    letter-spacing: 0.2em; text-transform: uppercase;
  }
  .map-city::before {
    content: ''; display: inline-block; width: 8px; height: 8px;
    background: rgba(255,255,255,0.4); border-radius: 50%;
    margin-right: 8px; vertical-align: middle;
  }
  
  /* ===== CTA / CONTACT ===== */
  .cta-section {
    background: 
      linear-gradient(135deg, rgba(51, 0, 0, 0.88) 0%, rgba(77, 15, 15, 0.85) 50%, rgba(184, 84, 42, 0.75) 100%),
      linear-gradient(160deg, #6B1F1F 0%, #B8542A 50%, #E8893E 100%);
    color: var(--white);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; top: 50%; right: -100px; transform: translateY(-50%);
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 137, 62, 0.3) 0%, transparent 60%);
  }
  .cta-section::after {
    content: ''; position: absolute; top: -100px; left: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 194, 133, 0.18) 0%, transparent 60%);
  }
  .cta-section .section-eyebrow { color: var(--gold-light); }
  .cta-section .section-eyebrow::before { background: var(--gold-light); }
  .cta-section .section-title .gold {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .cta-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; position: relative; z-index: 1;
  }
  
  .cta-content .section-title { color: var(--white); margin-bottom: 24px; }
  .cta-content > p {
    font-size: 17px; opacity: 0.85; line-height: 1.8; margin-bottom: 40px;
  }
  
  .contact-info { display: flex; flex-direction: column; gap: 20px; }
  .contact-item {
    display: flex; align-items: center; gap: 20px;
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1px solid var(--gold-light); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
  }
  .contact-item .label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; }
  .contact-item .value { font-size: 15px; color: var(--white); }
  .contact-item .value a { color: inherit; text-decoration: none; transition: color 0.3s; }
  .contact-item .value a:hover { color: var(--gold-light); }
  
  .form-wrapper {
    background: var(--white); color: var(--text-dark);
    padding: 56px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  }
  .form-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 500;
    margin-bottom: 12px; color: var(--text-dark);
  }
  .form-wrapper > p {
    color: var(--text-muted); font-size: 14px;
    margin-bottom: 32px;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block; font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 8px; font-weight: 500;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 0;
    border: none; border-bottom: 1px solid rgba(51, 0, 0, 0.2);
    background: transparent; font-size: 15px;
    font-family: 'Inter', sans-serif; color: var(--text-dark);
    transition: border-color 0.3s;
    -webkit-text-fill-color: var(--text-dark); /* Safari autofill хамгаалах */
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-muted); opacity: 0.6;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold);
    color: var(--text-dark);
    -webkit-text-fill-color: var(--text-dark);
  }
  .form-group input:-webkit-autofill,
  .form-group input:-webkit-autofill:focus,
  .form-group input:-webkit-autofill:hover {
    -webkit-text-fill-color: var(--text-dark) !important;
    -webkit-box-shadow: 0 0 0 100px var(--cream) inset !important;
    transition: background-color 5000s ease-in-out 0s;
  }
  .form-submit {
    width: 100%; background: var(--burgundy); color: var(--white);
    padding: 18px; border: none; cursor: pointer;
    font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
    font-weight: 600; font-family: 'Inter', sans-serif;
    transition: all 0.3s; margin-top: 16px;
  }
  .form-submit:hover { background: var(--gold); color: var(--burgundy); }
  .form-note {
    font-size: 12px; color: var(--text-muted); text-align: center;
    margin-top: 16px; line-height: 1.6;
  }
  .form-note span { color: var(--rust); }
  
  /* ===== FOOTER ===== */
  footer {
    background: linear-gradient(180deg, #1F0000 0%, #330000 100%);
    color: rgba(255,255,255,0.75);
    padding: 60px 5% 30px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    margin-bottom: 40px;
  }
  .footer-logo {
    display: flex; flex-direction: column; align-items: flex-start;
    margin-bottom: 16px;
  }
  .footer-logo-sunburst {
    width: 50px; height: 25px; margin-bottom: 8px;
  }
  .footer-logo-name {
    font-family: 'Cinzel', serif;
    font-size: 22px; font-weight: 600; letter-spacing: 0.15em;
    background: linear-gradient(135deg, #E8893E 0%, #F5E8CC 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }
  .footer-logo-sub {
    font-family: 'Cinzel', serif;
    font-size: 12px; letter-spacing: 0.45em; font-weight: 500;
    color: var(--gold-light);
    margin-top: 4px;
  }
  .footer-col p { font-size: 14px; line-height: 1.7; }
  .footer-col h5 {
    color: var(--white); font-size: 12px;
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 20px; font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; font-size: 14px; }
  .footer-col ul a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
  .footer-col ul a:hover { color: var(--gold-light); }
  
  .footer-bottom {
    padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; flex-wrap: wrap; gap: 20px;
  }
  
  /* ===== STICKY CTA ===== */
  .sticky-cta {
    position: fixed; bottom: 24px; right: 24px; z-index: 100;
    background: linear-gradient(135deg, var(--rust) 0%, var(--gold) 100%); 
    color: var(--burgundy-deep);
    padding: 18px 28px; border-radius: 50px;
    font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
    font-weight: 700; cursor: pointer; border: none;
    box-shadow: 0 10px 40px rgba(184, 84, 42, 0.5);
    display: flex; align-items: center; gap: 10px;
    transition: all 0.3s; opacity: 0; pointer-events: none;
    transform: translateY(20px);
  }
  .sticky-cta.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .sticky-cta:hover { transform: translateY(-4px); box-shadow: 0 15px 50px rgba(232, 137, 62, 0.7); }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .about-grid, .smart-grid, .pricing-grid, .location-grid, .cta-grid { grid-template-columns: 1fr; gap: 60px; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 240px); }
    .gallery-1 { grid-column: span 2; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-stats { display: none; }
  }
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    section { padding: 80px 5%; }
    .hero { min-height: 600px; }
    .advantages-grid { grid-template-columns: 1fr; }
    .pricing-details, .about-features, .location-stats, .bonus-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 240px); }
    .gallery-1 { grid-column: span 1; }
    .form-wrapper { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; justify-content: center; }
    .about-image-overlay { right: 20px; bottom: -20px; padding: 24px; }
  }
