  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: #8B6B2F;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #181818;
    --dark-4: #222222;
    --off-white: #F5F0E8;
    --warm-white: #FAF7F2;
    --text-muted: #888;
    --accent-red: #C0392B;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--off-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ANNOUNCEMENT BAR */
  .announcement-bar {
    background: var(--gold);
    color: var(--dark);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    animation: pulse-bar 3s infinite;
  }
  @keyframes pulse-bar {
    0%, 100% { background: var(--gold); }
    50% { background: var(--gold-light); }
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .nav-logo-top {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
  }
  .nav-logo-sub {
    font-size: 0.58rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
  }
  .nav-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--dark);
    padding: 5px 14px;
    border-radius: 2px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .nav-cta {
    display: flex;
    gap: 10px;
  }
  .btn-call {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 18px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 2px;
  }
  .btn-call:hover { background: var(--gold); color: var(--dark); }
  .btn-wa {
    background: #25D366;
    border: 1px solid #25D366;
    color: #fff;
    padding: 8px 18px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 2px;
  }
  .btn-wa:hover { background: #128C7E; border-color: #128C7E; }

  .btn-damro {
    background: #128C7E;
    border: 1px solid #074e46;
    color: #fff;
    padding: 8px 18px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 2px;
  }
  .btn-damro:hover { background: #128C7E; border-color: #3eb4a7; }

  /* HERO */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-2);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%),
      linear-gradient(135deg, #0A0A0A 0%, #111 50%, #0D0D0D 100%);
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero-badge-group {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .badge {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    padding: 5px 14px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 2px;
  }
  .badge.hot {
    background: rgba(192,57,43,0.15);
    border-color: rgba(192,57,43,0.4);
    color: #E74C3C;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--warm-white);
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-desc {
    font-size: 0.82rem;
    line-height: 1.85;
    color: #aaa;
    margin-bottom: 36px;
    max-width: 480px;
  }
  .hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--dark);
    padding: 14px 32px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
  .btn-outline {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold);
    padding: 14px 32px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-outline:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
  .hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }
  .hero-stat {
    border-left: 2px solid var(--gold-dim);
    padding-left: 14px;
  }
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
  }
  .hero-right {
    position: relative;
  }
  .hero-offer-card {
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 4px;
    padding: 36px;
    position: relative;
    overflow: hidden;
  }
  .hero-offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .offer-percent {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    opacity: 0.9;
  }
  .offer-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 6px;
  }
  .offer-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .perks-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: #ccc;
  }
  .perk-icon {
    width: 28px;
    height: 28px;
    background: rgba(201,168,76,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
  }
  .phone-display {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(201,168,76,0.15);
    display: flex;
    gap: 12px;
  }
  .phone-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .phone-btn.call { background: rgba(201,168,76,0.15); border: 1px solid var(--gold-dim); color: var(--gold); }
  .phone-btn.call:hover { background: var(--gold); color: var(--dark); }
  .phone-btn.wa { background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3); color: #25D366; }
  .phone-btn.wa:hover { background: #25D366; color: #fff; }

  /* DIVIDER */
  .gold-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 60px 40px 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  .gold-divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent); }
  .gold-divider-icon { color: var(--gold); font-size: 1rem; }

  /* SECTION HEADER */
  .section-header {
    text-align: center;
    padding: 70px 40px 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-label {
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
  }

  /* PRODUCTS */
  .products-section { background: var(--dark-2); padding-bottom: 80px; }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    background: rgba(201,168,76,0.08);
  }
  .product-card {
    background: var(--dark-2);
    padding: 36px 28px;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .product-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
  }
  .product-card:hover { background: rgba(201,168,76,0.05); }
  .product-card:hover::after { transform: scaleX(1); }
  .product-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
  }
  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--warm-white);
    margin-bottom: 8px;
  }
  .product-desc {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
  }
  .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .tag {
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    color: #aaa;
    padding: 2px 8px;
    font-size: 0.58rem;
    letter-spacing: 1px;
    border-radius: 1px;
  }

  /* SPECIALITY */
  .speciality-section {
    background: var(--dark-3);
    padding: 80px 40px;
  }
  .speciality-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .speciality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
  }
  .speciality-block {
    position: relative;
    padding: 40px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px;
  }
  .speciality-block::before {
    content: attr(data-num);
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201,168,76,0.15);
    line-height: 1;
  }
  .spec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 500;
  }
  .spec-text {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.9;
  }
  .spec-features {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .spec-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.73rem;
    color: #bbb;
  }
  .spec-feat::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.45rem;
    flex-shrink: 0;
  }

  /* WHY US */
  .why-section { background: var(--dark-2); padding: 80px 40px; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 40px auto 0;
    background: rgba(201,168,76,0.08);
  }
  .why-card {
    background: var(--dark-2);
    padding: 30px 20px;
    text-align: center;
    transition: background 0.3s;
  }
  .why-card:hover { background: rgba(201,168,76,0.06); }
  .why-icon { font-size: 1.8rem; margin-bottom: 10px; }
  .why-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }
  .why-text { font-size: 0.65rem; color: var(--text-muted); line-height: 1.6; }

  /* FORM SECTION */
  .form-section {
    background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark) 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
  }
  .form-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse 50% 50% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  .form-card {
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 4px;
    padding: 50px;
    position: relative;
    overflow: hidden;
  }
  .form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-group.full { grid-column: 1 / -1; }
  .form-label {
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dim);
    font-weight: 600;
  }
  .form-input, .form-select, .form-textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--off-white);
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 2px;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
  }
  .form-select option { background: #1a1a1a; color: var(--off-white); }
  .form-textarea { resize: vertical; min-height: 100px; }
  .form-input::placeholder, .form-textarea::placeholder { color: #555; }
  .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
  }
  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.7rem;
    color: #bbb;
    cursor: pointer;
  }
  .checkbox-label input[type="checkbox"] {
    accent-color: var(--gold);
    width: 14px;
    height: 14px;
  }
  .btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--dark);
    border: none;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 24px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,168,76,0.4); }
  #form-success {
    display: none;
    text-align: center;
    padding: 30px;
  }
  #form-success .success-icon { font-size: 2.5rem; margin-bottom: 14px; }
  #form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
  }
  #form-success p { font-size: 0.78rem; color: #999; line-height: 1.7; }

  /* CONTACT + MAP */
  .contact-section {
    background: var(--dark-2);
    padding: 80px 40px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    max-width: 1200px;
    margin: 50px auto 0;
    background: rgba(201,168,76,0.08);
  }
  .contact-panel {
    background: var(--dark-2);
    padding: 40px;
  }
  .contact-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
  }
  .contact-item-icon {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--gold);
  }
  .contact-item-text {
    font-size: 0.75rem;
    color: #aaa;
    line-height: 1.7;
  }
  .contact-item-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 3px;
  }
  .action-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.72rem;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.5px;
  }
  .action-btn.phone-action { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); color: var(--gold); }
  .action-btn.phone-action:hover { background: var(--gold); color: var(--dark); }
  .action-btn.wa-action { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.2); color: #25D366; }
  .action-btn.wa-action:hover { background: #25D366; color: #fff; }

  /* QR */
  .qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
  }
  .qr-wrapper {
    background: white;
    padding: 12px;
    border-radius: 4px;
    display: inline-flex;
    box-shadow: 0 0 0 1px rgba(201,168,76,0.3);
  }
  .qr-wrapper img { display: block; width: 140px; height: 140px; }
  .qr-label {
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
  }
  .qr-sub {
    font-size: 0.6rem;
    color: #555;
    text-align: center;
    line-height: 1.5;
    max-width: 160px;
  }

  /* MAP */
  .map-section {
    background: var(--dark);
    padding: 0 40px 80px;
  }
  .map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .map-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 1;
  }
  .map-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
    filter: invert(90%) hue-rotate(180deg) saturate(0.6) brightness(0.85);
  }

  /* ABOUT / DAMRO */
  .about-section {
    background: var(--dark-3);
    padding: 80px 40px;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 50px auto 0;
    align-items: start;
  }
  .about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--warm-white);
    margin-bottom: 18px;
    font-weight: 400;
    line-height: 1.3;
  }
  .about-text p {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.9;
    margin-bottom: 16px;
  }
  .milestones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
  }
  .milestone {
    padding: 20px;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 3px;
  }
  .milestone-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
  }
  .milestone-label {
    font-size: 0.63rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .trust-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .trust-badge {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 3px;
    transition: background 0.3s;
  }
  .trust-badge:hover { background: rgba(201,168,76,0.05); }
  .trust-icon { font-size: 1.5rem; flex-shrink: 0; }
  .trust-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
  }
  .trust-desc { font-size: 0.67rem; color: var(--text-muted); line-height: 1.6; }

  /* FOOTER */
  footer {
    background: #050505;
    padding: 50px 40px 30px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
  }
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 6px;
  }
  .footer-brand-sub {
    font-size: 0.58rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
  }
  .footer-desc { font-size: 0.72rem; color: #666; line-height: 1.8; max-width: 320px; }
  .footer-col-title {
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-links a { color: #666; text-decoration: none; font-size: 0.72rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
    gap: 12px;
  }
  .footer-copy { font-size: 0.62rem; color: #444; }
  .footer-copy a { color: var(--gold-dim); text-decoration: none; }
  .footer-legal { font-size: 0.6rem; color: #333; text-align: right; }

  /* FLOATING CTA */
  .floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    border: none;
    cursor: pointer;
  }
  .float-btn:hover { transform: scale(1.1); }
  .float-btn.wa { background: #25D366; }
  .float-btn.call { background: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-in-up {
    animation: fadeInUp 0.7s ease forwards;
    opacity: 0;
  }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.25s; }
  .delay-3 { animation-delay: 0.4s; }
  .delay-4 { animation-delay: 0.55s; }

  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  .shimmer-text {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 12px 20px; }
    .nav-badge { display: none; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 50px 20px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
    .speciality-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .contact-section, .form-section, .why-section, .products-section { padding: 50px 20px; }
    .map-section { padding: 0 20px 50px; }
    .about-section { padding: 50px 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { text-align: center; }
  }
  @media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .milestones { grid-template-columns: 1fr 1fr; }
    .form-card { padding: 28px 20px; }
    .hero h1 { font-size: 2.2rem; }
  }

  .gallery-section {
  background: var(--dark);
  padding-bottom: 80px;
}
.gallery-wrapper {
  max-width: 1000px;
  margin: 0 auto 24px;
  padding: 0 40px;
  position: relative;
  user-select: none;
}
.gallery-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.2);
  background: var(--dark-3);
  cursor: zoom-in;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(1.02);
}
.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 30px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.slide-cat {
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 400;
}
/* Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.gallery-arrow:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.gallery-arrow.prev { left: 50px; }
.gallery-arrow.next { right: 50px; }
/* Counter */
.gallery-counter {
  position: absolute;
  top: 14px;
  right: 56px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  padding: 4px 12px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}
/* Progress bar */
.gallery-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
}
.gallery-progress-bar {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
  width: 12.5%;
}
/* Thumbnails */
.gallery-thumbs {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 3px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
.gallery-thumb {
  flex-shrink: 0;
  width: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.gallery-thumb img {
  width: 100%;
  height: 62px;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
  transition: filter 0.3s;
}
.gallery-thumb span {
  display: block;
  font-size: 0.58rem;
  text-align: center;
  padding: 4px 2px;
  color: #777;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--dark-3);
  transition: color 0.3s;
}
.gallery-thumb:hover img, .gallery-thumb.active img { filter: brightness(1); }
.gallery-thumb:hover { border-color: rgba(201,168,76,0.4); }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb.active span { color: var(--gold); }

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img-wrap {
  max-width: 88vw;
  max-height: 88vh;
  position: relative;
  cursor: default;
}
.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 3px;
}
.lightbox-caption {
  text-align: center;
  padding: 10px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 40px;
  height: 40px;
  font-size: 1rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s;
}
.lightbox-close:hover { background: var(--gold); color: var(--dark); }
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-arrow:hover { background: var(--gold); color: var(--dark); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Responsive */
@media (max-width: 700px) {
  .gallery-arrow.prev { left: 10px; }
  .gallery-arrow.next { right: 10px; }
  .gallery-track { aspect-ratio: 4/3; }
  .gallery-wrapper { padding: 0 16px; }
  .gallery-thumbs { padding: 0 16px; }
  .gallery-thumb { width: 76px; }
  .slide-title { font-size: 1rem; }
}

/* ============================================
   LIGHT THEME OVERRIDE
   Paste at the very bottom of your <style> tag
   ============================================ */

:root {
  --dark:    #FFFFFF;
  --dark-2:  #F7F4EF;
  --dark-3:  #F0EBE3;
  --dark-4:  #E8E2D9;
  --off-white: #1A1A1A;
  --warm-white: #111111;
  --text-muted: #777777;
  --gold: #9A6E2A;
  --gold-light: #C49A45;
  --gold-dim: #7A5420;
}

/* Body & base text */
body { color: #1A1A1A; }

/* Nav */
nav {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(154,110,42,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Hero */
.hero { background: var(--dark-2); }
.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(154,110,42,0.07) 0%, transparent 60%),
    linear-gradient(135deg, #F7F4EF 0%, #FFFFFF 100%);
}
.hero-grid {
  background-image:
    linear-gradient(rgba(154,110,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154,110,42,0.06) 1px, transparent 1px);
}
.hero-desc { color: #555; }
.hero-stat-label { color: #888; }

/* Hero offer card */
.hero-offer-card {
  background: linear-gradient(135deg, rgba(154,110,42,0.08), rgba(154,110,42,0.03));
  border: 1px solid rgba(154,110,42,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.perk-item { color: #444; }
.perk-icon { background: rgba(154,110,42,0.1); }

/* Products */
.products-grid { background: rgba(154,110,42,0.08); }
.product-card { background: #FFFFFF; }
.product-card:hover { background: rgba(154,110,42,0.04); }
.product-name { color: #111; }
.product-desc { color: #666; }
.tag { background: rgba(154,110,42,0.07); border-color: rgba(154,110,42,0.15); color: #666; }

/* Speciality */
.speciality-block {
  background: #FFFFFF;
  border: 1px solid rgba(154,110,42,0.12);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.speciality-block::before { color: rgba(154,110,42,0.12); }
.spec-text { color: #666; }
.spec-feat { color: #555; }

/* Why cards */
.why-grid { background: rgba(154,110,42,0.08); }
.why-card { background: #F7F4EF; }
.why-card:hover { background: rgba(154,110,42,0.05); }
.why-text { color: #666; }

/* Form */
.form-section { background: linear-gradient(180deg, #F0EBE3 0%, #FFFFFF 100%); }
.form-card {
  background: #FFFFFF;
  border: 1px solid rgba(154,110,42,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.form-input, .form-select, .form-textarea {
  background: #F7F4EF;
  border: 1px solid rgba(154,110,42,0.2);
  color: #1A1A1A;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #FFFFFF;
  border-color: var(--gold);
}
.form-input::placeholder, .form-textarea::placeholder { color: #AAA; }
.form-select option { background: #FFFFFF; color: #1A1A1A; }
.checkbox-label { color: #444; }

/* Contact */
.contact-panel { background: #F7F4EF; }
.contact-item-text { color: #555; }
.trust-badge {
  background: #FFFFFF;
  border: 1px solid rgba(154,110,42,0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.trust-badge:hover { background: rgba(154,110,42,0.04); }
.trust-name { color: #111; }
.trust-desc { color: #666; }

/* About */
.about-text h3 { color: #111; }
.about-text p { color: #666; }
.milestone {
  background: #FFFFFF;
  border: 1px solid rgba(154,110,42,0.12);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.milestone-label { color: #888; }

/* Map */
.map-wrapper { border: 1px solid rgba(154,110,42,0.2); }
.map-wrapper iframe { filter: none; } /* Remove dark invert filter */

/* Gallery */
.gallery-track {
  background: #E8E2D9;
  border: 1px solid rgba(154,110,42,0.15);
}
.gallery-thumb span { background: #F0EBE3; color: #888; }
.gallery-arrow {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(154,110,42,0.3);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.gallery-counter {
  background: rgba(255,255,255,0.85);
  color: var(--gold);
}

/* Announcement bar */
.announcement-bar { background: var(--gold); color: #FFFFFF; }
@keyframes pulse-bar {
  0%, 100% { background: var(--gold); }
  50% { background: var(--gold-light); }
}

/* Footer */
footer {
  background: #F0EBE3;
  border-top: 1px solid rgba(154,110,42,0.15);
}
.footer-desc { color: #666; }
.footer-links a { color: #777; }
.footer-copy { color: #888; }
.footer-legal { color: #AAA; }

/* Section descriptions */
.section-desc { color: #666; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-brand-divider {
  width: 1px;
  height: 36px;
  background: rgba(201,168,76,0.3);
}
.damro-logo-img {
  height: 36px !important;
  width: auto !important;
  max-width: 120px !important;
  object-fit: contain;
  border-radius: 3px;
  opacity: 0.92;
  transition: opacity 0.3s;
}
.damro-logo-img:hover { opacity: 1; }

/* Light theme adjustment */
body.light-theme .nav-brand-divider {
  background: rgba(154,110,42,0.25);
}