:root {
    --sunset-deep: #c94a2c;
    --sunset-mid: #e8763a;
    --sunset-warm: #f0a050;
    --sky-blue: #5b7fa6;
    --glass-bg: rgba(255,255,255,0.10);
    --glass-border: rgba(255,255,255,0.22);
    --text-light: #fdf6ee;
    --text-muted: rgba(253,246,238,0.75);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Jost', sans-serif; background: #1a1210; color: var(--text-light); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 48px; display: flex; align-items: center; justify-content: space-between;
    background: rgba(26,18,16,0.35); backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08); transition: background 0.4s;
  }
  .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.05em; color: var(--text-light); text-decoration: none; }
  .nav-logo span { color: var(--sunset-warm); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.3s; }
  .nav-links a:hover { color: var(--sunset-warm); }
  .nav-cta { padding: 10px 26px; background: linear-gradient(135deg, var(--sunset-deep), var(--sunset-mid)); color: #fff; border-radius: 3px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: opacity 0.3s, transform 0.2s; }
  .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

  /* HERO */
  #hero {
    position: relative; min-height: 100vh; padding: 180px 0 100px;
    display: flex; align-items: center; justify-content: center; text-align: center;
    overflow: hidden; background: #1a1210;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: url('../images/hero-bg.jpg') center 40%/cover no-repeat;
    transform: scale(1.04);
    animation: heroSlowZoom 20s ease-in-out infinite alternate;
  }
  @keyframes heroSlowZoom { from { transform: scale(1.04); } to { transform: scale(1.10); } }
  #hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(26,18,16,0.45) 0%, rgba(26,18,16,0.65) 50%, rgba(26,18,16,0.92) 100%);
  }
  .hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }
  .hero-tag { display: inline-block; padding: 6px 18px; border: 1px solid rgba(240,160,80,0.5); border-radius: 50px; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sunset-warm); margin-bottom: 22px; background: rgba(240,160,80,0.08); }
  .hero-inner h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 20px; }
  .hero-inner h1 em { font-style: italic; color: var(--sunset-warm); }
  .hero-inner p { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; margin: 0 auto 36px; }
  .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary { padding: 14px 32px; background: linear-gradient(135deg, var(--sunset-deep), var(--sunset-mid)); color: #fff; border-radius: 3px; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: transform 0.2s, box-shadow 0.3s; box-shadow: 0 6px 24px rgba(201,74,44,0.4); display: inline-block; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,74,44,0.55); }
  .btn-ghost { padding: 14px 32px; border: 1px solid rgba(255,255,255,0.4); color: #fff; border-radius: 3px; font-weight: 500; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; background: rgba(255,255,255,0.06); transition: background 0.3s, border-color 0.3s; display: inline-block; }
  .btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.7); }

  /* SECTIONS */
  section { padding: 100px 0; }
  .container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
  .section-label { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sunset-warm); font-weight: 600; margin-bottom: 12px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.15; color: var(--text-light); margin-bottom: 18px; }
  .section-title em { font-style: italic; color: var(--sunset-warm); }
  .section-desc { font-size: 1rem; font-weight: 300; color: var(--text-muted); line-height: 1.75; max-width: 540px; }

  /* SERVICES */
  #services { background: #12100f; }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 60px; }
  .service-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 6px; padding: 36px 28px; backdrop-filter: blur(12px); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sunset-deep), var(--sunset-warm)); opacity: 0; transition: opacity 0.3s; }
  .service-card:hover { transform: translateY(-6px); border-color: rgba(240,160,80,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
  .service-card:hover::before { opacity: 1; }
  .service-icon { width: 50px; height: 50px; background: linear-gradient(135deg, rgba(201,74,44,0.25), rgba(240,160,80,0.15)); border: 1px solid rgba(240,160,80,0.3); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 22px; }
  .service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--text-light); margin-bottom: 10px; }
  .service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

  /* WHY */
  #why { background: linear-gradient(180deg, #1a1210 0%, #0f0d0c 100%); }
  .why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 48px; max-width: 720px; }
  .why-item { display: flex; gap: 16px; align-items: flex-start; }
  .why-bullet { width: 36px; height: 36px; flex-shrink: 0; background: rgba(240,160,80,0.15); border: 1px solid rgba(240,160,80,0.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-top: 2px; }
  .why-item h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--text-light); margin-bottom: 4px; }
  .why-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

  /* CONTACT */
  #contact { background: #12100f; }
  .contact-wrap { max-width: 700px; margin-top: 48px; display: flex; flex-direction: column; gap: 28px; }
  .contact-detail { display: flex; gap: 14px; align-items: flex-start; }
  .detail-icon { width: 42px; height: 42px; background: rgba(240,160,80,0.12); border: 1px solid rgba(240,160,80,0.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .contact-detail h4 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sunset-warm); font-weight: 600; margin-bottom: 4px; }
  .contact-detail p, .contact-detail a { font-size: 0.98rem; color: var(--text-light); line-height: 1.5; text-decoration: none; }
  .contact-detail a:hover { color: var(--sunset-warm); }

  /* FOOTER */
  footer { background: #0a0908; border-top: 1px solid rgba(255,255,255,0.07); padding: 32px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-light); font-weight: 700; }
  .footer-logo span { color: var(--sunset-warm); }
  footer p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
  .footer-links { display: flex; gap: 22px; }
  .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--sunset-warm); }

  /* HAMBURGER + MOBILE MENU */
  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 200; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-light); border-radius: 2px; transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; position: fixed; top: 65px; left: 0; right: 0; background: rgba(20,13,11,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 28px 24px 32px; flex-direction: column; z-index: 99; transform: translateY(-12px); opacity: 0; transition: transform 0.35s ease, opacity 0.35s ease; pointer-events: none; }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu a { display: block; padding: 14px 0; font-size: 1rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; }
  .mobile-menu a:hover { color: var(--sunset-warm); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu .mobile-cta { margin-top: 20px; text-align: center; padding: 14px; border-radius: 3px; background: linear-gradient(135deg, var(--sunset-deep), var(--sunset-mid)); color: #fff; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.1em; }

  @media (max-width: 900px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .container { padding: 0 20px; }
    footer { flex-direction: column; text-align: center; }
  }
