 :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #F5E6B8;
    --black: #050505;
    --dark: #0A0A0A;
    --dark2: #111111;
    --dark3: #181818;
    --text: #D4C5A0;
   /* --text-muted: #7A7060;*/
   --text-muted: #FAFAF599;
    --white: #FAFAF5;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 60px;
    background: linear-gradient(to bottom, rgba(5,5,5,0.95), transparent);
    transition: background 0.4s;
  }
  nav.scrolled {
    background: rgba(5,5,5,0.97);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 18px 60px;
    height: 120px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
  }
  .nav-logo img { 
    width: 150px;
    transition: transform 0.3s ease;
    transform: scale(1);
  }
  .scrolled .nav-logo img {
    transform: scale(0.9);
}
  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { transform: scaleX(1); }

/*MOBILE MENU*/

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 340px);
  height: 100vh;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 100px 32px 40px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1001;
  border-left: 1px solid rgba(201,168,76,0.14);
}

.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu img{
  margin-bottom: 30px;
  width: 150px;
}
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

  /* ── HERO ── */
  #hero {
    height: 90vh; min-height: 700px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 70%, rgba(201,168,76,0.06) 0%, transparent 70%),
      linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(5,5,5,0.5) 60%, var(--black) 100%),
      url('images/hero-yacht.webp') center/cover no-repeat;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: rgba(5,5,5,0.55);
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 20px;
    animation: fadeUp 1.4s ease both;
  }
  .hero-eyebrow {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 500;
    animation: fadeUp 1.4s 0.1s ease both;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 10px;
    animation: fadeUp 1.4s 0.2s ease both;
  }
  .hero-title span { color: var(--gold); font-style: italic; }
  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 50px;
    letter-spacing: 0.06em;
    animation: fadeUp 1.4s 0.3s ease both;
  }
  .hero-cta {
    display: inline-block;
    padding: 16px 44px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.35s, color 0.35s;
    animation: fadeUp 1.4s 0.4s ease both;
  }
  .hero-cta:hover {
    background: var(--gold);
    color: var(--black);
  }
  .hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--text-muted); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    animation: fadeIn 2s 1.2s ease both;
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
  }

  /* ── SECTION COMMONS ── */
  section { padding: 120px 60px; }
  .section-label {
    font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 16px;
  }
  .section-label::before {
    content: ''; display: block;
    width: 30px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 560px;
    font-weight: 300;
  }

  /* ── ABOUT ── */
  #about {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    max-width: 1200px; margin: 0 auto;
    padding: 140px 60px;
  }
  .about-image-wrap {
    position: relative;
  }
  .about-image-wrap img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    filter: brightness(0.85) saturate(0.8);
  }
  .about-image-wrap::after {
    content: '';
    position: absolute; bottom: -20px; right: -20px;
    width: 60%; height: 60%;
    border: 1px solid rgba(201,168,76,0.25);
    pointer-events: none;
  }
  .about-stat-row {
    display: flex; gap: 50px; margin-top: 48px;
  }
  .about-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300;
    color: var(--gold); line-height: 1;
  }
  .about-stat-label {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 6px;
  }

  /* ── SERVICES ── */
  #services {
    background: var(--dark2);
    padding: 120px 60px;
  }
  .services-inner {
    max-width: 1200px; margin: 0 auto;
  }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 80px;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  .service-card {
    position: relative; overflow: hidden;
    cursor: pointer;
  }
  .service-card img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    filter: brightness(0.5) saturate(0.6);
    transition: transform 0.7s ease, filter 0.5s ease;
  }
  .service-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.6) saturate(0.8);
  }
  .service-card-body {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 40px 36px;
    background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 60%);
  }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; color: var(--gold);
    letter-spacing: 0.2em; margin-bottom: 12px;
    opacity: 0.7;
  }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 400; color: var(--white);
    line-height: 1.1; margin-bottom: 12px;
  }
  .service-desc {
    font-size: 14px; color:#ffffff99;
    line-height: 1.7; font-weight: 300;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s;
    opacity: 0;
  }
  .service-card:hover .service-desc {
    max-height: 140px; opacity: 1;
  }
  .service-arrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-top: 16px;
    transition: gap 0.3s;
  }
  .service-card:hover .service-arrow { gap: 18px; }

  /* ── NETWORK ── */
  #network {
    max-width: 1200px; margin: 0 auto;
    padding: 120px 60px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  }
  .locations-list {
    list-style: none; margin-top: 40px;
  }
  .locations-list li {
    display: flex; align-items: center; gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
  }
  .locations-list li:hover { color: var(--gold-light); }
  .loc-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); opacity: 0.5; flex-shrink: 0;
  }
  .network-visual, .contact-visual {
    position: relative;
  }
  .network-visual img, .contact-visual img {
    width: 100%; aspect-ratio: 1/1; object-fit: cover;
    border-radius: 0;
    filter: brightness(0.6) saturate(0.5) sepia(0.2);
  }
  .network-visual::before, .contact-visual::before {
    content: '';
    position: absolute; inset: -1px;
    border: 1px solid rgba(201,168,76,0.2);
    z-index: 1; pointer-events: none;
  }

  /* ── DIVIDER ── */
  .gold-divider {
    width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.25;
    margin: 0 auto;
    max-width: 600px;
  }

  /* ── QUOTE ── */
  #quote {
    padding: 100px 60px;
    text-align: center;
    background: var(--dark2);
    position: relative; overflow: hidden;
  }
  #quote::before {
    content: '"';
    position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 300px; color: rgba(201,168,76,0.04);
    line-height: 1; pointer-events: none;
  }
  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 300; font-style: italic;
    color: var(--white);
    max-width: 800px; margin: 0 auto 28px;
    line-height: 1.5;
  }
  .quote-attr {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); opacity: 0.7;
  }

  /* ── CONTACT ── */
  #contact {
    padding: 120px 60px;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  }
  .contact-info p {
    font-size: 14px; line-height: 2; color: var(--text-muted); margin-bottom: 40px;
  }
  .contact-detail {
    display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
  }
  .contact-detail-icon {
    color: var(--gold); font-size: 14px; margin-top: 1px; flex-shrink: 0;
  }
  .contact-detail-text {
    font-size: 13px; color: var(--text-muted); line-height: 1.6;
  }
  .contact-detail-text a{
    font-size: 13px; color: var(--text-muted); line-height: 1.6;
  }
  .contact-detail-text strong {
    display: block; color: var(--text); font-weight: 500;
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark2);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 50px 60px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo { display: flex; align-items: center; gap: 12px; }
  .footer-logo img { width: 120px; }
  .footer-links { display: flex; gap: 32px; }
  .footer-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 11px; color: var(--text-muted); opacity: 0.5;
    letter-spacing: 0.05em;
  }
  .footer-social { display: flex; gap: 20px; }
  .footer-social a {
    color: var(--text-muted); text-decoration: none;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    transition: color 0.3s;
  }
  .footer-social a:hover { color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }

  /* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; height: 90px;}

  .nav-links { display: none; }
  .nav-logo img{ width: 120px;}
  .menu-toggle { display: inline-flex; }

  section { padding: 80px 24px; }
  #about { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }
  .about-content { display: flex; flex-direction: column; max-width: 320px; }
  .about-stat-row{ gap:20px; }
  #services{ padding:120px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .services-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .services-header p{ text-align: left!important; }
  .service-desc{max-height: 180px;opacity: 1;color: #ffffff99;}
  #network { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }
  #contact { grid-template-columns: 1fr; gap: 50px; padding: 80px 24px; }
  .contact-visual{order: 2;}
  footer { flex-direction: column; gap: 24px; text-align: center; padding: 40px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center;gap: 10px; }
}