:root {
  --primary: #1e3a5f;
  --primary-dark: #0f2744;
  --gold: #c9a84c;
  --gold-light: #f5ecd7;
  --text: #4a5568;
  --muted: #718096;
  --dark: #0f172a;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 20px 50px rgba(30, 58, 95, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); line-height: 1.8; }
h1, h2, h3, h5 { font-family: 'Cormorant Garamond', serif; color: var(--dark); line-height: 1.2; font-weight: 600; }

.navbar { padding: 1.25rem 0; transition: all 0.4s; background: transparent; }
.navbar.scrolled { background: rgba(248,250,252,0.97); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0,0,0,0.05); }
.navbar-brand { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.65rem; color: var(--dark) !important; letter-spacing: 0.5px; }
.navbar-brand span { color: var(--gold); font-style: italic; }
.nav-link { font-weight: 500; color: var(--text) !important; margin: 0 0.5rem; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-link:hover { color: var(--primary) !important; }

.btn-accent { background: var(--primary); border: none; color: var(--gold-light); padding: 0.75rem 2rem; border-radius: 4px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.78rem; text-decoration: none; transition: all 0.3s; }
.btn-accent:hover { background: var(--gold); color: var(--dark); }
.btn-outline-accent { border: 1px solid var(--primary); color: var(--primary); padding: 0.75rem 2rem; border-radius: 4px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.78rem; background: transparent; text-decoration: none; }
.btn-outline-accent:hover { background: var(--primary); color: white; }

.hero { min-height: 100vh; display: flex; align-items: center; padding: 110px 0 60px; background: var(--bg); }
.hero-badge { display: inline-block; border: 1px solid var(--gold); color: var(--gold); padding: 0.4rem 1.2rem; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); margin-bottom: 1.5rem; font-weight: 500; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-text { color: var(--muted); font-size: 1.05rem; max-width: 460px; margin-bottom: 2.5rem; }
.hero-img { border-radius: var(--radius); width: 100%; height: 500px; object-fit: cover; }

section { padding: 100px 0; }
.section-tag { color: var(--gold); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 0.75rem; display: block; }
.section-title { font-size: clamp(2rem, 4vw, 2.65rem); margin-bottom: 0.5rem; font-weight: 500; }

.service-card { background: white; border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); padding: 2.25rem 1.75rem; height: 100%; text-align: center; transition: all 0.4s; }
.service-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.service-icon { width: 48px; height: 48px; border: 1px solid var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--gold); font-size: 1.2rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.65rem; }

.about { background: white; }
.about-img { border-radius: var(--radius); width: 100%; height: 440px; object-fit: cover; }
.about-list { list-style: none; margin-top: 1.5rem; }
.about-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(201,168,76,0.15); }
.about-list i { color: var(--gold); }

.contact-form { background: var(--bg); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); padding: 2.5rem; }
.form-control, .form-select { border: 1px solid rgba(30,58,95,0.2); border-radius: 4px; padding: 0.85rem 1rem; background: white; }
.form-control:focus { border-color: var(--gold); box-shadow: none; }

footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; }
footer h5 { font-family: 'Cormorant Garamond', serif; color: var(--gold-light); font-size: 1.2rem; }
footer a { color: rgba(255,255,255,0.65); text-decoration: none; }
footer a:hover { color: var(--gold); }
footer hr { border-color: rgba(255,255,255,0.08); margin: 2.5rem 0 1.5rem; }

.fade-in { opacity: 0; transform: translateY(24px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) { .hero-img { height: 360px; } }
