/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:   #F8F6F1;
  --dark:    #1A1915;
  --mid:     #6B6860;
  --accent:  #C4A882;
  --light:   #EDE9E0;
  --border:  rgba(26,25,21,0.09);
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  cursor: pointer;
}

a { text-decoration: none; color: inherit; }



/* ===================== SCROLL ANIMATIONS ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-visible { opacity: 1; transform: translate(0) scale(1); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(248,246,241,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  transition: padding 0.4s var(--ease);
}


.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; animation: fadeDown 0.8s var(--ease) 0.2s forwards;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  opacity: 0; animation: fadeDown 0.8s var(--ease) 0.35s forwards;
}
.nav-links a {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 0.5px; background: var(--dark); transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 0.5px solid var(--dark); padding: 0.55rem 1.5rem;
  transition: all 0.35s var(--ease);
  opacity: 0; animation: fadeDown 0.8s var(--ease) 0.5s forwards;
}
.nav-cta:hover { background: var(--dark); color: var(--cream); }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 0; overflow: hidden;
   align-items: center; 
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem 3rem; position: relative;
}
.hero-label {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 1rem;  margin-top: 0;
  display: flex; align-items: center; gap: 0.75rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}
.hero-label::before { content: ''; width: 2rem; height: 0.5px; background: var(--mid); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.07; margin-bottom: 2.5rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  opacity: 0; transform: translateY(100%);
  animation: slideUp 1s var(--ease) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.75s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.9s; }
.hero-title .line:nth-child(3) span { animation-delay: 1.05s; }
.hero-title em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 0.88rem; line-height: 1.9; color: var(--mid);
  max-width: 28rem; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 1.2s forwards;
}
.hero-actions {
  display: flex; gap: 1.25rem; align-items: center;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 1.35s forwards;
}

.btn-primary {
  background: var(--dark); color: var(--cream);
  padding: 0.9rem 2.2rem; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none;  transition: all 0.4s var(--ease);
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--accent); color: var(--dark); transform: translateY(-2px); }

.btn-ghost {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); background: none; border: none; 
  display: flex; align-items: center; gap: 0.6rem; transition: color 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost span { transition: transform 0.3s var(--ease); }
.btn-ghost:hover { color: var(--dark); }
.btn-ghost:hover span { transform: translateX(5px); }

@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 3rem;
}

@keyframes revealDown { to { clip-path: inset(0% 0 0 0); } }

.hero-img-grid{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  width:100%;
}

.img-placeholder{
  width: 220px;   /* ini ukuran kotaknya */
  height: 50px;  /* ini tinggi kotaknya */
  overflow: hidden;
  
}

.img-p1 {
  width: 100%; /* Gunakan persentase agar lebih fleksibel */
  max-width: 700px; /* Batasi lebar maksimal agar tidak kebesaran */
  height: 320px; /* Kurangi tinggi */
}

/* Ukuran Gambar Bawah */
.img-p2 {
  width: 100%; 
  max-width: 700px;
  height: 380px; /* Kurangi tinggi */
  margin-top: 0; /* Hapus margin top jika sudah ada gap di grid */
}

.hero-png{
  width: 100%;
  height: 100%;
  object-fit: cover; /* foto auto kepotong rapi */
  display: block;
}

.hero-stat {
  position: absolute; bottom: 1rem; left: -2rem;
  background: var(--cream); padding: 1.5rem 2rem;
  min-width: 11rem; z-index: 10;
  animation: slideRight 1s var(--ease) 1.6s both;
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; line-height: 1; color: var(--dark);
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mid); margin-top: 0.4rem;
}

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 2s forwards;
}
.scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid);
}
.scroll-line {
  width: 0.5px; height: 3rem; background: var(--mid); position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%;
  width: 100%; height: 100%; background: var(--dark);
  animation: scrollDrop 1.4s var(--ease) 2.2s infinite;
}
@keyframes scrollDrop { to { top: 200%; } }

/* ===================== MARQUEE ===================== */
.marquee-bar {
  background: var(--dark); color: var(--cream);
  padding: 1rem 0; overflow: hidden; white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-inner span {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  margin: 0 2.5rem; opacity: 0.55;
}
.marquee-inner span.dot { opacity: 0.2; margin: 0 0.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== SECTIONS ===================== */
.section { padding: 7rem 3rem; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; width: 2rem; height: 0.5px; background: var(--mid); }

/* ===================== ABOUT ===================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }

.about-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.15; margin-bottom: 2rem;
}
.about-title em { font-style: italic; color: var(--accent); }
.about-text { font-size: 0.88rem; line-height: 1.95; color: var(--mid); margin-bottom: 1.4rem; }

.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 2.5rem; padding-top: 2.5rem; border-top: 0.5px solid var(--border);
}
.stat-item .n {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 300; color: var(--dark); line-height: 1;
}
.stat-item .l {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); margin-top: 0.4rem;
}

/*--ubah ini foto--*/
.about-visual {    
  position: relative; 
  width: 100%;
  display: block; 
}

.about-img-wrap {
  width: 100%;
  padding-bottom: 130%;
  position: relative;
  overflow: hidden;
 
  background: var(--dark);
  box-shadow: 0px 14px 35px rgba(0,0,0,0.18);
}

/* slider */
.about-slider {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.about-slide {
  min-width: 100%;
  height: 100%;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* tombol prev next */
.about-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: none;
  color: white;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: 0.2s;
}

.about-btn:hover {
  background: rgba(0,0,0,0.75);
}

.about-btn.prev {
  left: 15px;
}

.about-btn.next {
  right: 15px;
}

.about-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--accent); padding: 1.75rem 2rem; z-index: 2;
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
  font-weight: 300; color: var(--dark); line-height: 1;
}
.about-badge-txt {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dark); opacity: 0.7; margin-top: 0.3rem;
}

/* ===================== SERVICES ===================== */
.services { background: var(--dark); padding: 7rem 3rem; }
.services-head {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem;
}
.services-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.15;
  color: #EDE9E0; max-width: 28rem;
}
.services-title em { font-style: italic; color: var(--accent); }
.services-link {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); transition: opacity 0.3s;
}
.services-link:hover { opacity: 0.7; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.05); }
.service-card {
  background: var(--dark); padding: 2.5rem 2.2rem;
  transition: background 0.4s var(--ease); 
}
.service-card:hover { background: #222018; }
.service-num {
  font-family: 'Cormorant Garamond', serif; font-size: 0.9rem;
  color: var(--accent); margin-bottom: 1.75rem; opacity: 0.55;
}
.service-icon {
  width: 2.5rem; height: 0.5px; background: rgba(255,255,255,0.1); margin-bottom: 1.5rem;
  transition: width 0.4s var(--ease), background 0.4s;
}
.service-card:hover .service-icon { width: 4rem; background: var(--accent); }
.service-name {
  font-size: 1rem; font-weight: 400; color: #EDE9E0; margin-bottom: 1rem; letter-spacing: 0.02em;
}
.service-desc { font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.35); }
.service-arrow {
  margin-top: 2rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); opacity: 0; transform: translateX(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ===================== PROJECTS ===================== */
.projects-head {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem;
}
.projects-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.15;
}
.projects-title em { font-style: italic; color: var(--accent); }
.projects-grid { display: grid; grid-template-columns: 1fr 0.8fr;; gap: 2.5rem; max-width: 1000px; padding : 0,5%; margin: 0 auto; }
.project-card 

/*ubah sini foto*/
.project-img-wrap {
  position: relative; 
  overflow: hidden; 
  background: #2C2A24;
}
.project-img-wrap {
  position: relative;
  overflow: hidden;
  background: #2C2A24; /* Latar belakang gelap jika gambar tidak memenuhi frame */
  border-radius: 8px 
}
.project-img {

  position: relative;
  display: block; /* Agar tidak ada ruang putih di bawah */
  
  /* Atur ukuran fotonya sendiri */
  width: 100%; /* Buat foto memenuhi lebar container */
  height: 100%; /* Buat foto memenuhi tinggi container */
  
  /* SANGAT PENTING: object-fit: cover */
  object-fit: cover; /* Foto akan dipotong sedikit untuk memenuhi frame, tidak gepeng */
 
  
}

.project-overlay {
  position: absolute; 
  inset: 0; 
  background: rgba(26,25,21,0);
  transition: background 0.5s var(--ease);
  display: flex; 
  align-items: center; 
  justify-content: center;
  z-index: 2; /* Supaya di atas gambar */
}
.project-overlay-text {
  font-size: 0.72rem; 
  letter-spacing: 0.2em; 
  text-transform: uppercase;
  color: var(--cream); 
  opacity: 0; 
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.project-card:hover .project-overlay { background: rgba(26,25,21,0.45); }
.project-card:hover .project-overlay-text { opacity: 1; transform: translateY(0); }
.project-card:hover .project-img-wrap svg { transform: scale(1.04); }
.project-img-wrap svg { transition: transform 0.7s var(--ease); }
.project-info { padding: 1.25rem 0 0; }
.project-tag {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem;
}
.project-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 0.25rem;
}
.project-loc { font-size: 0.78rem; color: var(--mid); }
.project-side { display: flex; flex-direction: column; gap: 1.25rem; }

/* ===================== TESTIMONIAL ===================== */
.testimonial {
  background: var(--light); padding: 7rem 3rem;
  display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: center;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 300; line-height: 1.55;
  color: var(--dark); position: relative; padding-left: 2rem;
}
.testimonial-quote::before {
  content: '"'; position: absolute; left: 0; top: -0.5rem;
  font-size: 5rem; line-height: 1; color: var(--accent); opacity: 0.35; font-style: normal;
}
.testimonial-author {
  margin-top: 2rem; font-size: 0.82rem; color: var(--mid);
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-author::before { content: ''; width: 2rem; height: 0.5px; background: var(--mid); }

/* ===================== CTA ===================== */
.cta-section {
  padding: 8rem 3rem; display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.cta-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.75rem;
}
.cta-eyebrow::before, .cta-eyebrow::after { content: ''; width: 2rem; height: 0.5px; background: var(--mid); }
.cta-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.1; margin-bottom: 1.75rem;
}
.cta-title em { font-style: italic; color: var(--accent); }
.cta-sub {
  font-size: 0.88rem; line-height: 1.9; color: var(--mid); max-width: 34rem; margin-bottom: 3rem;
}
.cta-actions { display: flex; gap: 1.5rem; align-items: center; }

/* ===================== FOOTER ===================== */
footer { background: var(--dark); color: var(--cream); padding: 5rem 3rem 2.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
  padding-bottom: 3rem; border-bottom: 0.5px solid rgba(255,255,255,0.07);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.3); line-height: 1.8; max-width: 18rem; }
.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 2rem;
}
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); letter-spacing: 0.08em; }
.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); transition: color 0.3s;
}
.footer-socials a:hover { color: var(--accent); }

/* ===================== LOADER ===================== */
.loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--dark); display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 1.5rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream); position: relative;
}
.loader-bar {
  position: absolute; bottom: -4px; left: 0; width: 0; height: 0.5px;
  background: var(--accent); transition: width 1.2s var(--ease);
}
.loader.loading .loader-bar { width: 100%; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: flex;  gap: 1.2rem;
    flex-wrap: nowrap;  }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: block; }
  .hero-left { padding: 5rem 1.5rem 3rem; }
  .about, .testimonial { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .section, .services { padding: 5rem 1.5rem; }
  .testimonial { padding: 5rem 1.5rem; }
}

@media (max-width: 600px) {
    .hero {
    display: flex;
    flex-direction: column; /* Teks di atas, gambar di bawah */
    min-height: auto;
    padding: 80px 0 40px 0; /* Beri ruang untuk Navbar fixed */
    gap: 2rem;
  }

  /* 2. Sesuaikan area teks */
  .hero-left {
    padding: 0 1.5rem;
    order: 1; /* Pastikan teks muncul pertama */
  }

  .hero-title {
    font-size: 2.5rem; /* Perkecil font agar tidak berantakan */
    margin-bottom: 1.5rem;
  }

  .hero-sub {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }

  /* 3. Perbaiki Grid Gambar agar lebar penuh */
  .hero-right {
    order: 2;
    padding: 0 1rem;
    width: 100%;
    align-items: center;
  }

  .hero-img-grid {
    width: 100%;
    align-items: center; /* Gambar rata tengah di mobile */
    gap: 15px;
  }

  /* Ukuran Gambar di Mobile agar Proporsional */
  .img-p1, .img-p2 {
    width: 100% ; /* Paksa lebar penuh layar */
    max-width: none;
    height: 250px; /* Sesuaikan tinggi agar tidak terlalu panjang */
    
  }

  /* 4. Posisi Stat (120+) agar tidak tenggelam */
  .hero-stat {
    position: absolute; /* Ubah ke relative agar mengikuti alur konten */
    bottom: 0;
    left: 0;
    margin-top: -6px; /* N-2ikkan sedikit agar tumpang tindih dengan gambar */
    margin-left: -0.5rem;
    align-self: flex-start;
    padding: 1rem 1.5rem;
    min-width:  11rem; z-index: 10;
    
  }
  .hero-label{
    margin-top : 40px;
    display: flex;
    align-items: center;
    gap : 0.75rem;
  }

  .hero-sub{
    margin-bottom: 50px;
  }

  .stat-num {
    font-size: 2rem;
  }
  nav {
     padding: 1rem 1.25rem;
    justify-content: space-between;
    
  }

  .logo {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .nav-links {

    display: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none; /* chrome/safari */
  }

  .nav-links li {
    flex: 0 0 auto;
  }

  .nav-cta {
     font-size: 0.65rem;
    padding: 0.5rem 1rem;
  
  }
}