:root {
    --gold: #C9A84C;
    --gold-light: #E8CC7A;
    --gold-dark: #9B7A2E;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #222222;
    --white: #F5F0E8;
    --white2: #EDE8DC;
    --gray: #888880;
  }

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

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Sarabun', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 40px; height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.6;
  }

  /* Noise texture overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.3;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%),
      linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }

  .hero-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
    animation: lineFloat 6s ease-in-out infinite;
  }
  .hero-line:nth-child(1) { height: 200px; left: 15%; top: 10%; animation-delay: 0s; }
  .hero-line:nth-child(2) { height: 150px; right: 20%; top: 20%; animation-delay: 2s; }
  .hero-line:nth-child(3) { height: 100px; left: 60%; bottom: 15%; animation-delay: 4s; }

  @keyframes lineFloat {
    0%, 100% { opacity: 0.2; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(1.3); }
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: padding 0.3s ease, background 0.3s ease;
  }

  nav.scrolled {
    padding: 1rem 4rem;
    background: rgba(10,10,10,0.98);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-decoration: none;
  }

  .nav-logo span {
    font-weight: 400;
    color: var(--white);
    font-size: 0.75rem;
    display: block;
    letter-spacing: 0.4em;
    margin-top: 2px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--gray);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    border: 1px solid rgba(201,168,76,0.5);
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .nav-cta:hover {
    background: var(--gold);
    color: var(--black)!important;
  }

  .nav-badge {
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .hero-content {
    margin-top: 30px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    max-width: 900px;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
  }

  .hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .hero-actions .btn-primary {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
  }

  .hero-actions .btn-primary:hover {
    background: var(--gold-light);
  }

  .hero-actions .btn-secondary {
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold);
  }

  .hero-actions .btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
  }

  .hero-ceo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }

  .ceo-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    border: 2px solid rgba(201,168,76,0.4);
  }

  .ceo-info label {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
  }

  .ceo-info strong {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
  }

  .hero-bottom {
    position: relative;
    z-index: 10;
    padding: 2rem 4rem;
    border-top: 1px solid rgba(201,168,76,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
  }

  .hero-stat .lbl {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 0.2rem;
    display: block;
  }

  .hero-divider {
    width: 1px;
    height: 40px;
    background: rgba(201,168,76,0.3);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* MAIN CONTENT */
  main {
    padding: 0;
  }

  /* SECTION: INFO CARDS */
  .section-info {
    padding: 8rem 4rem;
    position: relative;
  }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-label::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 4rem;
    line-height: 1.2;
  }

  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.15);
  }

  .info-card {
    background: var(--dark);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
  }

  .info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .info-card:hover { background: var(--dark2); }
  .info-card:hover::before { opacity: 1; }

  .info-card .icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--gold);
    transition: all 0.3s ease;
  }

  .info-card:hover .icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }

  .info-card .card-label {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
  }

  .info-card .card-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
  }

  .info-card .card-sub {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.4rem;
    line-height: 1.6;
    font-weight: 300;
  }

  /* SECTION: BUSINESS */
  .section-business {
    padding: 8rem 4rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .section-business::before {
    content: '';
    position: absolute;
    right: -200px;
    top: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  }

  .business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
  }

  .business-left { position: relative; }

  .business-desc {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--white2);
    font-weight: 300;
    border-left: 2px solid var(--gold);
    padding-left: 2rem;
    margin-bottom: 3rem;
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .tag {
    border: 1px solid rgba(201,168,76,0.35);
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
  }

  .tag:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }

  .business-right {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.15);
  }

  .detail-row {
    background: var(--black);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
  }

  .detail-row:hover { background: var(--dark2); }

  .detail-row .key {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gray);
    text-transform: uppercase;
  }

  .detail-row .val {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    text-align: right;
    max-width: 60%;
  }

  .detail-row .val.gold { color: var(--gold); }

  /* SECTION: ADDRESS */
  .section-address {
    padding: 8rem 4rem;
    position: relative;
  }

  .address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
  }

  .address-block {
    position: relative;
  }

  .address-block h3 {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .address-text {
    font-size: 1rem;
    line-height: 2;
    color: var(--white2);
    font-weight: 300;
  }

  .address-map-placeholder {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.2);
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    position: relative;
    overflow: hidden;
  }

  .map-icon {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.6;
  }

  .map-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(201,168,76,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
  }

  .map-pin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .map-pin-dot {
    width: 16px; height: 16px;
    background: var(--gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: pinPulse 2s ease-in-out infinite;
  }

  .map-pin-shadow {
    width: 8px; height: 4px;
    background: rgba(201,168,76,0.4);
    border-radius: 50%;
    margin-top: -2px;
  }

  @keyframes pinPulse {
    0%, 100% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.2); }
  }

  .map-rings {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }

  .map-rings span {
    position: absolute;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringExpand 3s ease-out infinite;
  }

  .map-rings span:nth-child(1) { width: 60px; height: 60px; animation-delay: 0s; }
  .map-rings span:nth-child(2) { width: 100px; height: 100px; animation-delay: 1s; }
  .map-rings span:nth-child(3) { width: 140px; height: 140px; animation-delay: 2s; }

  @keyframes ringExpand {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
  }

  /* FOOTER */
  footer {
    background: var(--dark);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0;
  }

  .footer-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 4rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .footer-main .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
  }

  .footer-main .footer-company-name {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
  }

  .footer-main .footer-description {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 300;
    max-width: 280px;
  }

  .footer-links .footer-heading,
  .footer-contact .footer-heading {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0;
  }

  .footer-links ul a {
    font-size: 0.83rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.05em;
  }

  .footer-links ul a:hover {
    color: var(--gold-light);
  }

  .footer-contact .contact-details {
    font-size: 0.83rem;
    color: var(--gray);
    line-height: 1.9;
    font-weight: 300;
  }

  .footer-contact .contact-details a {
    color: var(--gold-light);
    text-decoration: none;
  }

  .footer-bottom {
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom .copyright {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 0.15em;
  }

  .footer-bottom .footer-reg-info {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 0.15em;
    opacity: 0.6;
  }

  /* ORNAMENT */
  .ornament {
    text-align: center;
    padding: 3rem 0;
    color: rgba(201,168,76,0.3);
    font-size: 1.5rem;
    letter-spacing: 0.5em;
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .reveal-delay-6 { transition-delay: 0.6s; }

  /* Divider */
  .gold-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 4rem;
  }

  .gold-divider::before,
  .gold-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  }

  .gold-divider span {
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.5;
  }

  /* SECTION: SERVICES */
  .section-services {
    padding: 8rem 4rem;
    background: var(--black);
    position: relative;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .service-card {
    border: 1px solid rgba(201,168,76,0.15);
    padding: 2.5rem 2rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover { background: var(--dark2); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(201,168,76,0.08);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
  }

  .service-card:hover .service-number { color: rgba(201,168,76,0.15); }

  .service-icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }

  .service-icon svg, .info-card .icon svg {
    width: 26px;
    height: 26px;
  }

  .service-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
  }

  .service-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 300;
  }

  /* SECTION: WHY US */
  .section-why {
    padding: 8rem 4rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .section-why::after {
    content: '';
    position: absolute;
    left: -300px;
    bottom: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
  }

  .why-left { position: relative; }

  .why-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--white);
  }

  .why-headline em { color: var(--gold); font-style: italic; }

  .why-text {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 3rem;
  }

  .why-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.9rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .why-cta:hover {
    background: var(--gold);
    color: var(--black);
  }

  .why-cta::after {
    content: '→';
    transition: transform 0.3s ease;
  }

  .why-cta:hover::after { transform: translateX(4px); }

  .why-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid rgba(201,168,76,0.1);
    background: rgba(201,168,76,0.02);
    transition: all 0.3s ease;
  }

  .value-item:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.05);
  }

  .value-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
  }

  .value-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
  }

  .value-content p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
  }

  /* SECTION: CONTACT */
  .section-contact {
    padding: 8rem 4rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  .section-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
  }

  .contact-info { position: relative; }

  .contact-block {
    margin-bottom: 2.5rem;
  }

  .contact-block-label {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .contact-block-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
  }

  .contact-block-value {
    font-size: 1rem;
    color: var(--white2);
    font-weight: 400;
    line-height: 1.7;
  }

  .contact-block-value a {
    color: var(--white2);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-block-value a:hover { color: var(--gold); }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--white);
    padding: 0.9rem 1.2rem;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: rgba(201,168,76,0.6);
    background: var(--dark3);
  }

  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-submit {
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    padding: 1rem 2.5rem;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
  }

  .form-submit:hover {
    background: var(--gold);
    color: var(--black);
  }

  /* CTA BANNER */
  .cta-banner {
    padding: 6rem 4rem;
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  }

  .cta-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
  }

  .cta-banner-sub {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
    position: relative;
  }

  .cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .cta-banner-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
  }

  /* Hamburger mobile */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .nav-hamburger span {
    width: 24px; height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
  }

  /* =====================
     MOBILE DRAWER MENU
  ===================== */
  .nav-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    border-left: 1px solid rgba(201,168,76,0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 9000;
    display: flex;
    flex-direction: column;
    padding: 6rem 2.5rem 3rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-drawer.open { transform: translateX(0); }

  .nav-drawer a {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--gray);
    text-decoration: none;
    text-transform: uppercase;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    transition: color 0.3s ease;
    display: block;
  }

  .nav-drawer a:hover { color: var(--gold); }

  .nav-drawer .drawer-cta {
    margin-top: 2rem;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(201,168,76,0.4);
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 8999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  /* =====================
     TABLET  ≤ 1024px
  ===================== */
  @media (max-width: 1024px) {
    nav,
    nav.scrolled {
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
    .nav-links { gap: 1.6rem; }

    .hero-content { padding: 0 2.5rem; }
    .hero-bottom  { padding: 2rem 2.5rem; }

    .section-info,
    .section-services,
    .section-business,
    .section-address,
    .section-why,
    .section-contact,
    .cta-banner { padding-left: 2.5rem; padding-right: 2.5rem; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid     { grid-template-columns: repeat(2, 1fr); }

    .why-grid    { gap: 3.5rem; }
    .business-grid { gap: 2.5rem; }

    .footer-grid-container {
      grid-template-columns: 2fr 1fr 1fr;
      gap: 2rem;
      padding: 3rem 2.5rem;
    }
    .footer-bottom {
      padding: 1.5rem 2.5rem;
    }
  }

  /* =====================
     MOBILE  ≤ 768px
  ===================== */
  @media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }

    /* Nav */
    nav,
    nav.scrolled {
      padding: 1.1rem 1.5rem;
    }
    .nav-links    { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .hero { padding-top: 70px; }
    .hero-content { padding: 0 1.5rem; }
    .hero-bottom  { padding: 1.5rem; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
    .hero-divider { display: none; }
    .hero-stat    { min-width: 120px; }
    .hero-stat .num { font-size: 1.2rem; }

    /* Sections */
    .section-info,
    .section-services,
    .section-business,
    .section-address,
    .section-why,
    .section-contact,
    .cta-banner { padding: 5rem 1.5rem; }

    /* Grids → single column */
    .info-grid      { grid-template-columns: 1fr; }
    .services-grid  { grid-template-columns: 1fr; }
    .business-grid  { grid-template-columns: 1fr; gap: 2rem; }
    .address-grid   { grid-template-columns: 1fr; gap: 2rem; }
    .why-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row       { grid-template-columns: 1fr; }

    /* Section titles */
    .section-title  { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 2.5rem; }

    /* Business tags */
    .business-desc  { font-size: 0.95rem; padding-left: 1.2rem; }

    /* Why us */
    .why-headline { font-size: clamp(1.5rem, 5vw, 2rem); }

    /* Address map */
    .address-map-placeholder { min-height: 220px; }

    /* Footer */
    .footer-grid-container {
      grid-template-columns: 1fr 1fr;
      padding: 3rem 1.5rem;
    }
    .footer-main {
      grid-column: 1 / -1; /* Span full width */
    }
    .footer-bottom {
      padding: 1.5rem;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.8rem;
    }
  }

  /* =====================
     SMALL MOBILE  ≤ 480px
  ===================== */
  @media (max-width: 480px) {
    nav,
    nav.scrolled { padding: 1rem 1.2rem; }

    .hero-content  { padding: 0 1.2rem; }
    .hero-bottom   { padding: 1.2rem; }

    .section-info,
    .section-services,
    .section-business,
    .section-address,
    .section-why,
    .section-contact,
    .cta-banner,
    .gold-divider  { padding-left: 1.2rem; padding-right: 1.2rem; }

    .hero-actions  { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .service-card  { padding: 2rem 1.5rem; }
    .info-card     { padding: 2rem 1.5rem; }
    .value-item    { padding: 1.2rem; }

    .cta-banner-btn { width: 100%; justify-content: center; }

    .why-cta { width: 100%; justify-content: center; text-align: center; }

    .form-submit { width: 100%; text-align: center; justify-content: center; }

    /* Footer */
    .footer-grid-container {
      grid-template-columns: 1fr;
      padding: 3rem 1.2rem;
    }
    .footer-bottom {
      padding: 1.5rem 1.2rem;
    }
  }