:root {
      --steel: #1a1f2e;
      --rust: #3ccafd;
      --rust-dark: #21728f;
      --ash: #e8e4de;
      --chalk: #f5f2ee;
      --stone: #6b6560;
      --copper: #c47a3a;
      --white: #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Serif 4', Georgia, serif;
      background: var(--chalk);
      color: var(--steel);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    #mainNav {
      background: var(--steel);
      border-bottom: 3px solid var(--rust);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1050;
    }

    .navbar-brand {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--white) !important;
      letter-spacing: 0.04em;
      padding: 14px 0;
    }

    .navbar-brand span { color: var(--rust); }

    .navbar-nav .nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ash) !important;
      padding: 22px 16px !important;
      border-bottom: 3px solid transparent;
      margin-bottom: -3px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--white) !important;
      border-bottom-color: var(--rust);
    }

    .navbar-toggler {
      border: 1px solid var(--rust);
      padding: 6px 10px;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(184,76,30,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ── HERO SLIDER ── */
    #heroCarousel {
      position: relative;
    }

    .carousel-item {
      height: 92vh;
      min-height: 500px;
      position: relative;
      overflow: hidden;
    }

    .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .slide-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(26,31,46,0.82) 40%, rgba(26,31,46,0.3) 100%);
    }

  

    .slide-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .slide-tag {
      font-family: 'Oswald', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--rust);
      border-left: 3px solid var(--rust);
      padding-left: 12px;
      margin-bottom: 20px;
      display: inline-block;
    }

    .slide-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      color: var(--white);
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 22px;
      max-width: 640px;
    }

    .slide-sub {
      font-family: 'Source Serif 4', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 1.1rem;
      color: rgba(232,228,222,0.85);
      max-width: 480px;
      margin-bottom: 36px;
    }

    .btn-rust {
      background: var(--rust);
      color: var(--white);
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 14px 34px;
      border: 2px solid var(--rust);
      text-decoration: none;
      display: inline-block;
    }

    .btn-rust:hover {
      background: var(--rust-dark);
      border-color: var(--rust-dark);
      color: var(--white);
    }

    .btn-outline-rust {
      background: transparent;
      color: var(--white);
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 14px 34px;
      border: 2px solid rgba(255,255,255,0.5);
      text-decoration: none;
      display: inline-block;
      margin-left: 12px;
    }

    .btn-outline-rust:hover {
      border-color: var(--white);
      color: var(--white);
    }

    .carousel-indicators [data-bs-target] {
      width: 36px;
      height: 3px;
      background: rgba(255,255,255,0.4);
      border: none;
    }

    .carousel-indicators .active { background: var(--rust); }

    .carousel-control-prev,
    .carousel-control-next {
      width: 52px;
      opacity: 1;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 40px;
      height: 40px;
      border: 2px solid rgba(255,255,255,0.4);
    }

    /* ── SECTION COMMONS ── */
    section { padding: 90px 0; }

    .section-label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      color: var(--steel);
      line-height: 1.1;
    }

    .section-rule {
      width: 52px;
      height: 3px;
      background: var(--rust);
      margin: 18px 0 28px;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--white);
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-wrap img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      display: block;
    }

    .about-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--rust);
      color: var(--white);
      width: 120px;
      height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
    }

    .about-badge .num {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1;
    }

    .about-badge .txt {
      font-size: 0.65rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .about-body { padding-left: 16px; }

    .about-body p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--stone);
      margin-bottom: 20px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
    }

    .feature-icon {
      width: 42px;
      height: 42px;
      background: var(--chalk);
      border: 2px solid var(--ash);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--rust);
      font-size: 1.1rem;
    }

    .feature-text strong {
      font-family: 'Oswald', sans-serif;
      font-size: 0.92rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--steel);
      display: block;
      margin-bottom: 2px;
    }

    .feature-text span {
      font-size: 0.9rem;
      color: var(--stone);
    }

    /* ── GALLERY ── */
    #gallery {
      background: var(--chalk);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    @media (max-width: 767px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; }
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4/3;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .gallery-item .overlay {
      position: absolute;
      inset: 0;
      background: rgba(26,31,46,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
    }

    .gallery-item:hover .overlay { opacity: 1; }

    .gallery-item .overlay i {
      color: var(--white);
      font-size: 2rem;
    }

    .gallery-item .overlay span {
      font-family: 'Oswald', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      margin-top: 8px;
      display: block;
    }

    /* Lightbox */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    #lightbox.active { display: flex; }

    #lightbox img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      display: block;
    }

    #lightbox-close {
      position: absolute;
      top: 20px;
      right: 28px;
      color: var(--white);
      font-size: 2.2rem;
      cursor: pointer;
      line-height: 1;
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
    }

    #lightbox-caption {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
    }

    /* ── MAP ── */
    #map-section {
      background: var(--steel);
      padding: 90px 0 0;
    }

    #map-section .section-title { color: var(--white); }
    #map-section .section-label { color: var(--copper); }

    #map-section .section-rule { background: var(--copper); }

    .map-wrapper {
      margin-top: 50px;
      height: 380px;
      overflow: hidden;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* ── CONTACT ── */
    #contact {
      background: var(--steel);
      padding: 80px 0 90px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    #contact .section-title { color: var(--white); }
    #contact .section-label { color: var(--copper); }
    #contact .section-rule { background: var(--copper); }

    .contact-card {
      border: 1px solid rgba(255,255,255,0.1);
      padding: 32px 28px;
      height: 100%;
    }

    .contact-card .cc-icon {
      font-size: 1.6rem;
      color: var(--rust);
      margin-bottom: 14px;
    }

    .contact-card h6 {
      font-family: 'Oswald', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 10px;
    }

    .contact-card p,
    .contact-card a {
      font-size: 1rem;
      color: var(--ash);
      line-height: 1.7;
      text-decoration: none;
    }

    .contact-card a:hover { color: var(--white); }

    /* ── FOOTER ── */
    footer {
      background: #0e1018;
      padding: 28px 0;
      border-top: 3px solid var(--rust);
    }

    .footer-brand {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--white);
      letter-spacing: 0.04em;
    }

    .footer-brand span { color: var(--rust); }

    .footer-copy {
      font-size: 0.8rem;
      color: var(--stone);
      margin-top: 4px;
    }

    .footer-links a {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
      text-decoration: none;
      margin-left: 22px;
    }

    .footer-links a:hover { color: var(--ash); }

    /* ── FLOATING BUTTONS ── */
    .float-call {
      position: fixed;
      left: 18px;
      bottom: 36px;
      z-index: 1200;
      width: 50px;
      height: 50px;
      background: var(--steel);
      border: 2px solid var(--rust);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.3rem;
      text-decoration: none;
    }

    .float-call:hover {
      background: var(--rust);
      color: var(--white);
    }

    .float-wa {
      position: fixed;
      right: 18px;
      bottom: 36px;
      z-index: 1200;
      width: 50px;
      height: 50px;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.4rem;
      text-decoration: none;
    }

    .float-wa:hover { background: #1da851; color: var(--white); }

    /* ── RESPONSIVE TWEAKS ── */
    @media (max-width: 991px) {
      .about-badge { right: 0; bottom: -20px; width: 100px; height: 100px; }
      .about-img-wrap { margin-bottom: 48px; }
      .about-body { padding-left: 0; }
      .footer-links { margin-top: 10px; }
      .footer-links a { margin-left: 0; margin-right: 18px; }
    }

    @media (max-width: 575px) {
      .btn-outline-rust { margin-left: 0; margin-top: 10px; }
    }