
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #0f1f3d; --gold: #c9a84c; --gold-light: #e8c96a;
      --cream: #f5f0e8; --white: #ffffff; --text: #1a1a2e;
      --muted: #6b7280; --accent: #1a3a6b;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(15,31,61,0.97); backdrop-filter: blur(10px);
      padding: 0 2rem; display: flex; align-items: center; justify-content: space-between;
      height: 70px; border-bottom: 1px solid rgba(201,168,76,0.3);
    }
    .nav-logo-img { display: flex; align-items: center; text-decoration: none; }
    .nav-logo-img img { height: 50px; width: auto; filter:none; transition: opacity 0.2s; }
    .nav-logo-img img:hover { opacity: 0.85; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0.5rem 1.2rem !important; border-radius: 4px; font-weight: 600 !important; }
    .nav-cta:hover { background: var(--gold-light) !important; }
    .hero {
      min-height: 100vh; position: relative;
      display: flex; align-items: center; justify-content: center; overflow: hidden;
      background: var(--navy);
    }
    .hero-mountains {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(15,31,61,0.25) 0%, rgba(15,31,61,0.55) 60%, rgba(15,31,61,0.95) 100%),
        url('images/mountains.jpg') center center / cover no-repeat;
    }
    .hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; max-width: 900px; animation: fadeUp 1s ease forwards; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    .hero-eyebrow { display: inline-block; color: var(--gold); font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 600; }
    .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 7vw, 5.5rem); color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; font-weight: 900; }
    .hero h1 span { color: var(--gold); }
    .hero-sub { font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,0.82); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.75; font-weight: 300; }
    .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary { background: var(--gold); color: var(--navy); padding: 0.9rem 2.2rem; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.05em; transition: all 0.2s; display: inline-block; }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-secondary { border: 2px solid rgba(255,255,255,0.5); color: var(--white); padding: 0.9rem 2.2rem; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.05em; transition: all 0.2s; display: inline-block; }
    .btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
    .welcome { background: var(--white); padding: 6rem 2rem; text-align: center; }
    .section-label { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; display: block; }
    .welcome h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 1.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
    .welcome p { font-size: 1.05rem; color: var(--muted); max-width: 650px; margin: 0 auto 1rem; line-height: 1.8; }
    .gold-line { width: 60px; height: 3px; background: var(--gold); margin: 2rem auto; border-radius: 2px; }
    .cards-section { background: var(--cream); padding: 5rem 2rem; }
    .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1100px; margin: 3rem auto 0; }
    .card { background: var(--white); border-radius: 8px; padding: 2.5rem 2rem; text-align: center; border: 1px solid rgba(201,168,76,0.2); transition: all 0.3s; position: relative; overflow: hidden; }
    .card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform 0.3s; }
    .card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(15,31,61,0.12); }
    .card:hover::before { transform: scaleX(1); }
    .card-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.4rem; color: var(--gold); font-weight: 700; font-family: 'Playfair Display', serif; }
    .card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 0.8rem; }
    .card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
    .card-link { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
    .card-link:hover { gap: 0.7rem; }
    .newsletter-strip { background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
    .newsletter-strip::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
    .newsletter-strip h2 { font-family: 'Playfair Display', serif; color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 1rem; position: relative; }
    .newsletter-strip p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; line-height: 1.75; position: relative; }
    .newsletter-form { display: flex; max-width: 480px; margin: 0 auto; position: relative; }
    .newsletter-form input { flex: 1; padding: 1rem 1.2rem; border: none; border-radius: 4px 0 0 4px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; outline: none; }
    .newsletter-form button { background: var(--gold); color: var(--navy); border: none; padding: 1rem 1.5rem; border-radius: 0 4px 4px 0; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
    .newsletter-form button:hover { background: var(--gold-light); }
    .newsletter-note { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin-top: 1rem; position: relative; }
    footer { background: #080f1f; color: rgba(255,255,255,0.6); padding: 3rem 2rem 2rem; }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-top: 0.8rem; }
    footer .nav-logo-img img { height: 45px; filter:none; opacity: 0.9; }
    .footer-col h4 { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 600; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--gold); }
    .footer-bottom { max-width: 1100px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
    .footer-bottom p { font-size: 0.8rem; line-height: 1.6; }
    .footer-disclosure { font-size: 0.75rem; color: rgba(255,255,255,0.35); max-width: 600px; line-height: 1.6; }
    @media (max-width: 768px) { .nav-links { display: none; } .footer-inner { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; } .newsletter-form { flex-direction: column; } .newsletter-form input { border-radius: 4px; margin-bottom: 0.5rem; } .newsletter-form button { border-radius: 4px; } }
  
.page-hero{padding:120px 20px 60px;background:linear-gradient(135deg,var(--navy),var(--accent));text-align:center;color:#fff}.page-hero h1{font-family:"Playfair Display",serif;font-size:clamp(2rem,5vw,3.5rem)}.content-page{padding:60px 20px;background:var(--cream)}.content-inner{max-width:900px;margin:0 auto;background:#fff;padding:40px;border-radius:16px}.content-list{padding-left:20px;line-height:2}.text-link{color:var(--gold)}