/* ===== Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #263238;
  --secondary: #c9a15a;
  --text: #1c2226;
  --muted: #5c6a72;
  --bg-alt: #f5f6f7;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.eyebrow {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: .8rem;
  margin-bottom: 8px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600;
  border: 2px solid transparent; cursor: pointer; transition: all .25s ease;
  font-size: .95rem;
}
.btn-primary { background: var(--secondary); color: #1c1c1c; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.brand-name { font-weight: 800; font-size: 1.1rem; color: #fff; transition: color .3s ease; }
.site-header.scrolled .brand-name { color: var(--primary); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: #fff; font-weight: 600; font-size: .95rem; transition: color .3s ease, opacity .2s; }
.main-nav a:hover { opacity: .75; }
.site-header.scrolled .main-nav a { color: var(--primary); }
.nav-cta {
  background: var(--secondary); color: #1c1c1c !important;
  padding: 10px 18px; border-radius: 999px;
}
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: #fff; cursor: pointer; }
.site-header.scrolled .nav-toggle { color: var(--primary); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--primary);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,25,28,.55) 0%, rgba(20,25,28,.75) 100%);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35;
  animation: float 14s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: var(--secondary); top: -120px; right: -100px; }
.blob-2 { width: 320px; height: 320px; background: #4a90a4; bottom: -100px; left: -80px; animation-delay: -6s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 720px; padding-top: 78px; }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: #fff; opacity: .8; animation: bounce 2s infinite; z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,10px);} }

/* ===== Stats ===== */
.stats { background: var(--primary); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-value { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--secondary); }
.stat-label { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: 4px; }

/* ===== Sections ===== */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-desc { color: var(--muted); margin-top: 12px; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease; border: 1px solid rgba(0,0,0,.04);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--primary); color: var(--secondary);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--muted); font-size: .95rem; }
.wave-divider { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.wave-divider svg { width: 100%; height: 60px; }
.wave-divider path { fill: var(--bg-alt); }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.08); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; color: #fff; font-weight: 600;
  background: linear-gradient(0deg, rgba(0,0,0,.65), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem; background: rgba(0,0,0,.25);
}
.lightbox {
  position: fixed; inset: 0; background: rgba(10,12,14,.92); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-content img, .lightbox-content video { max-height: 85vh; border-radius: 10px; margin: 0 auto; }
.lightbox-close { position: absolute; top: 24px; right: 32px; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* ===== Testimonials ===== */
.testimonial-carousel { position: relative; max-width: 720px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial-card { min-width: 100%; text-align: center; padding: 20px 40px; }
.stars { color: var(--secondary); margin-bottom: 16px; font-size: 1.1rem; }
.testimonial-quote { font-size: 1.2rem; font-style: italic; margin-bottom: 20px; }
.testimonial-name { font-weight: 700; }
.testimonial-type { color: var(--muted); font-size: .9rem; }
.testimonial-nav { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.testimonial-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--primary); color: #fff;
  cursor: pointer; transition: background .2s ease;
}
.testimonial-nav button:hover { background: var(--secondary); color: #1c1c1c; }

/* ===== Links ===== */
.links-section { text-align: center; }
.links-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.link-pill {
  border: 2px solid var(--primary); padding: 10px 22px; border-radius: 999px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; transition: all .2s ease;
}
.link-pill:hover { background: var(--primary); color: #fff; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-list { list-style: none; margin: 24px 0; }
.contact-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--muted); }
.contact-list i { color: var(--secondary); width: 20px; }
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.social-links a:hover { background: var(--secondary); color: #1c1c1c; }
.contact-form-wrap { background: #fff; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-desc { color: var(--muted); margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  padding: 14px 16px; border-radius: 10px; border: 1px solid #d9dde0; font: inherit; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--secondary); }
.form-status { font-size: .9rem; min-height: 20px; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #c62828; }

/* ===== Footer ===== */
.site-footer { background: var(--primary); color: rgba(255,255,255,.75); padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .85rem; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed; top: 78px; left: 0; right: 0; background: #fff; flex-direction: column;
    padding: 24px; gap: 18px; box-shadow: var(--shadow); transform: translateY(-150%);
    transition: transform .3s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { color: var(--primary) !important; }
  .nav-toggle { display: block; }
}
