:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --gold: #b8a47a;
    --gold-light: #d4c49a;
    --silver: #8a8a8a;
    --silver-light: #c0bab0;
    --white: #f5f2ee;
    --text: #e8e4df;
}

body{
    background: var(--black);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;

}
.wrapper {
  display : flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

a{
  text-decoration: none;
}
.navbar {
    height: 100px;
    padding: 0 20px;

}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
    transition: background 0.4s ease;
}

nav.scrolled {
    background: rgba(10,10,10,0.97);
    padding: 20px 60px;
    border-bottom: 1px solid rgba(184,164,122,0.15);
  }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
  }
.nav-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
.nav-logo-text {
    display: flex;
    flex-direction: column;
}
.nav-logo-text span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
    line-height: 1;
}
.nav-logo-text span:last-child {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 3px;
  }

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
    align-items: center;
    background-color: var(--black);
    padding-bottom: 20px;
  }
.nav-links a {
    text-decoration: none;
    color: var(--silver-light);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    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 {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}
.nav-cta::after { 
    display: none !important;
}

 /* HERO */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(184,164,122,0.06) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 20%, rgba(184,164,122,0.04) 0%, transparent 50%),
      linear-gradient(135deg, #050505 0%, #0d0d0d 50%, #080808 100%);
  }

  .hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.08;
  }
  .hero-lines::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 20%;
    width: 1px;
    height: 200%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: lineDrift 8s ease-in-out infinite;
  }
  .hero-lines::after {
    content: '';
    position: absolute;
    top: -50%;
    right: 30%;
    width: 1px;
    height: 200%;
    background: linear-gradient(to bottom, transparent, var(--silver), transparent);
    animation: lineDrift 12s ease-in-out infinite reverse;
  }
  @keyframes lineDrift {
    0%, 100% { transform: translateX(0) skewX(0deg); opacity: 0.4; }
    50% { transform: translateX(30px) skewX(1deg); opacity: 1; }
  }

  /* Water ripple bg */
  .water-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(184,164,122,0.035) 60px,
      rgba(184,164,122,0.035) 61px
    );
    animation: waterMove 6s linear infinite;
    pointer-events: none;
  }
  @keyframes waterMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(61px); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: start;
    padding: 30px 0;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
      flex-wrap: wrap-reverse;
    /* border: solid ; */
  }
  .hero-content-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
/*   
    border: solid; */
  }
  .hero-eyebrow {
    font-size: clamp(0.3rem, 1.8vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    animation: fadeUp 1s ease 0.2s both;
  }
  .hero-eyebrow span {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 16px;
    opacity: 0.6;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.02em;
    /* text-align: start; */
    color: var(--white);
    margin-bottom: 28px;
    animation: fadeUp 1s ease 0.4s both;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: clamp(0.6rem, 1.9vw, 0.8rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--silver);
    line-height: 2;
    width: 80%;
    max-width: 500px;
    margin: 0 0 56px;
    animation: fadeUp 1s ease 0.6s both;
  }

  .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeUp 1s ease 0.8s both;
    /* padding:0 30px; */
  }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 16px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.5rem, 1.9vw, 0.7rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184,164,122,0.25);
  }

  .btn-ghost {
    background: transparent;
    color: var(--silver-light);
    border: 1px solid rgba(138,138,138,0.35);
    padding: 16px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.5rem, 1.9vw, 0.7rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  .hero-scroll {
    /* position: absolute; */
    /* bottom: 40px;
    left: 50%;
    transform: translateX(-50%); */
    margin: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s ease 1.2s both;

  }
  .hero-scroll span {
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    color: var(--silver);
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .splide {
    /* position: absolute; */
      max-width: 900px;
      top : 0px;
      right: 0%;
      z-index: -1;
  }
  .splide img {
    width: 100%;
    object-fit: cover;
    height: 500px;
  }
  /* STATS BAR */
  .stats-bar {
    border-top: 1px solid rgba(184,164,122,0.15);
    border-bottom: 1px solid rgba(184,164,122,0.15);
    background: rgba(255,255,255,0.02);
    padding: 40px 10px;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 0;

    /* max-width: 1000px; */
  }
  .stat-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 20px 40px;
    position: relative;
    width: 50%;
    min-width: 250px;
    /* border: solid; */
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--silver);
    text-transform: uppercase;
  }
@media screen and (min-width: 900px) {
    .navbar {
        height : 100px
    }
    section { padding: 30px 60px; }

  

   .about-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 520px;
    margin-right: 50px;
  }
}

@media screen and (min-width: 1400px) {
    .splide {
      position: absolute;
      width: 900px;
      max-width: 1000px;
      top : 0px;
      right: 0%;
      z-index: -1;
    }
    
    .splide img {
      width: 100%;
      object-fit: cover;
      height: 600px;
    }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: start;
    padding: 30px 0;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: flex-start;
      flex-wrap: wrap;
    /* border: solid ; */
  }

  .hero-content-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
  /* SECTION COMMON */
    
  section { 
    overflow-x: hidden;
  }

  .section-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 0 0 0;
  }
  .section-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--gold-light); }

  .section-text {
    font-size: 0.82rem;
    line-height: 2;
    color: var(--silver);
    max-width: 480px;
  }

  /* ABOUT */
  .about {
    background: var(--dark);
    display: flex;
    /* grid-template-columns: 1fr 1fr;
    gap: 80px; */
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 30px;
  }

  .about-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 520px;
    /* margin-right: 50px; */
  }

  .about-img-frame {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(184,164,122,0.06) 0%, transparent 50%),
      linear-gradient(225deg, rgba(184,164,122,0.04) 0%, transparent 50%),
      #141414;
    border: 1px solid rgba(184,164,122,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .pool-illustration {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .pool-illustration svg {
    width: 100%;
    height: 100%;
  }

  .about-corner {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    opacity: 0.5;
  }
  .about-corner-tl {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
    opacity: 0.5;
  }

  .about-features {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
    border: 1px solid rgba(184,164,122,0.1);
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
  }
  .feature-item:hover {
    border-color: rgba(184,164,122,0.3);
    background: rgba(184,164,122,0.04);
    transform: translateX(6px);
  }
  .feature-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.8;
  }
  .feature-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
  .feature-text h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 5px;
    text-transform: uppercase;
  }
  .feature-text p {
    font-size: 0.75rem;
    color: var(--silver);
    line-height: 1.7;
  }

  /* REALISATIONS */
  /* .realisations {
    background: var(--black);
    padding: 30px 0;
  }
  .realisations-header {
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 2px;
  }

  .project-card {
    position: relative;
    overflow: hidden;
    cursor: none;
  }
  .project-card:first-child {
    grid-row: span 2;
  }

  .project-inner {
    position: relative;
    width: 100%;
    padding-bottom: 80%;
    background: var(--dark2);
    overflow: hidden;
  }
  .project-card:first-child .project-inner {
    padding-bottom: 130%;
  }

  .project-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
  }

  .project-card:hover .project-bg { transform: scale(1.06); }

  .project-bg-1 {
    background:
      radial-gradient(ellipse at 40% 60%, rgba(0,80,140,0.3) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(184,164,122,0.1) 0%, transparent 50%),
      linear-gradient(180deg, #0a1520 0%, #051020 100%);
  }
  .project-bg-2 {
    background:
      radial-gradient(ellipse at 50% 70%, rgba(0,60,100,0.4) 0%, transparent 60%),
      linear-gradient(180deg, #080f18 0%, #030810 100%);
  }
  .project-bg-3 {
    background:
      radial-gradient(ellipse at 30% 60%, rgba(20,80,120,0.3) 0%, transparent 60%),
      linear-gradient(180deg, #0a1018 0%, #050c14 100%);
  }
  .project-bg-4 {
    background:
      radial-gradient(ellipse at 60% 60%, rgba(10,70,120,0.35) 0%, transparent 60%),
      linear-gradient(180deg, #080e18 0%, #040810 100%);
  }
  .project-bg-5 {
    background:
      radial-gradient(ellipse at 50% 50%, rgba(30,90,140,0.3) 0%, transparent 70%),
      linear-gradient(180deg, #091218 0%, #030a12 100%);
  }

  .pool-svg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
  }

  .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
  }
  .project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .project-tag {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .project-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
  }

  .project-label {
    position: absolute;
    bottom: 20px;
    left: 24px;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .project-card:hover .project-label { opacity: 0; }
  .project-label-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
  } */

  /* SERVICES */
  .services {
    background: var(--black);
    /* padding: 0 20px; */
  }
  .services-grid {
    display: flex;
    /* grid-template-columns: repeat(3, 1fr);
    gap: 2px; */
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
    /* align-items: ; */
  }
  .service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(184,164,122,0.08);
    padding: 20px 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
  }
  .service-card:hover {
    background: rgba(184,164,122,0.04);
    border-color: rgba(184,164,122,0.2);
    transform: translateY(-4px);
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(184,164,122,0.12);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.3s ease;
  }
  .service-card:hover .service-number { color: rgba(184,164,122,0.22); }

  .service-title {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
  }
  .service-desc {
    font-size: 0.78rem;
    color: var(--silver);
    line-height: 1.9;
  }

  .service-arrow {
    margin-top: 32px;
    width: 36px;
    height: 1px;
    background: var(--gold);
    position: relative;
    transition: width 0.3s ease;
  }
  .service-card:hover .service-arrow { width: 56px; }
  .service-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--gold);
    border-top: 1px solid var(--gold);
    transform: rotate(45deg);
  }

  /* PROCESS */
  .process {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(184,164,122,0.15), transparent);
  }

  .process-header { text-align: center; margin-bottom: 80px; }
  .process-header .section-eyebrow { justify-content: center; }
  .process-header .section-eyebrow::before { display: none; }

  .process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* grid-template-columns: repeat(4, 1fr);
    gap: 0; */
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(184,164,122,0.3), transparent);
  }

  .process-step {
    text-align: center;
    padding: 0 32px;
    position: relative;
    width: 100%;
    max-width: 300px;
  }

  .step-dot {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(184,164,122,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    background: var(--black);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }
  .process-step:hover .step-dot {
    border-color: var(--gold);
    background: rgba(184,164,122,0.08);
    box-shadow: 0 0 30px rgba(184,164,122,0.15);
  }
  .step-dot-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 400;
  }

  .step-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
  }
  .step-desc {
    font-size: 0.73rem;
    color: var(--silver);
    line-height: 1.8;
  }

  /* TESTIMONIAL */
  .testimonial {
    background: var(--dark);
    text-align: center;
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
  }
  .testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(184,164,122,0.04) 0%, transparent 70%);
  }
  .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: rgba(184,164,122,0.1);
    line-height: 0.5;
    margin-bottom: 40px;
    display: block;
  }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }
  .testimonial-author {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }

  /* CONTACT */
  .contact {
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }
  .contact-left {
    width: 100%;
    max-width: 700px;
    padding: 100px 80px;
    background: var(--dark);
    border-right: 1px solid rgba(184,164,122,0.1);
  }
  .contact-right {
    width: 100%;
    max-width: 700px;
    padding: 100px 80px;
  }

  .contact-info {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .contact-detail-icon {
    width: 36px;
    flex-shrink: 0;
    padding-top: 2px;
  }
  .contact-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
  }
  .contact-detail-text span:first-child {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .contact-detail-text span:last-child {
    font-size: 0.82rem;
    color: var(--silver-light);
    line-height: 1.6;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .form-group label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184,164,122,0.15);
    color: var(--text);
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(184,164,122,0.03);
  }
  .form-group select option { background: var(--dark); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

  .submit-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 18px 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
  }
  .submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184,164,122,0.25);
  }

  /* FOOTER */
  footer {
    background: #050505;
    padding: 60px 60px 36px;
    border-top: 1px solid rgba(184,164,122,0.1);
    overflow-x: hidden;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;

    /* grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px; */
    margin-bottom: 60px;
  }
  .footer-brand p {
    font-size: 0.75rem;
    color: var(--silver);
    line-height: 1.9;
    margin-top: 20px;
    max-width: 260px;
  }
  .footer-col {
    width: 100%;
    max-width: 300px;
  }
  .footer-col h4 {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul a {
    font-size: 0.75rem;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
  }
  .footer-col ul a:hover { color: var(--gold); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p {
    font-size: 0.65rem;
    color: rgba(138,138,138,0.5);
    letter-spacing: 0.1em;
  }

  .footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white);
  }


