:root {
  --primary-color: #2e2e2e;
  --accent-color: #f0f4f8;
  --highlight-color: #000;

  --font-serif: 'EB Garamond', serif;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  max-width: 100vw;
  overflow-x: hidden;
}
/* Preloader */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  font-size: 1.5rem;
  color: #fff;

  animation: pulse 1.5s ease-in-out infinite;
  letter-spacing: 2px;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.aim-btn, .slider-btn {
  display: inline-block;
  padding: 0.95rem 0rem;
  font-family: 'Unica One', serif;
  font-size: 1.07rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fff;
  background: #181818;
  border: none;
  border-radius: 0; /* Sharp corners! */
  box-shadow: 0 2px 16px rgba(0,0,0,0.11);
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: 
    background 0.17s cubic-bezier(.4,0,.2,1), 
    color 0.17s cubic-bezier(.4,0,.2,1), 
    box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}

.aim-btn:hover, .slider-btn:hover {
  background: #fff;
  color: #111;
  box-shadow: 0 4px 24px rgba(24,24,24,0.18);
  border: 2px solid #111;
  text-decoration: none;
}

.aim-btn:active, .slider-btn:active {
  background: #222;
  color: #fff;
  border: 2px solid #222;
}
/* ============================= */
/*         NAVIGATION BAR       */
/* ============================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;

  padding: 0 2rem;
  height: 100px;
  position: relative;
  z-index: 1000;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ccc;
  padding-right: 2rem;
  height: 100%;
  width:230px;
}

.logo-img {
  height: 110px;
  width: auto;
  padding-left:2rem;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-grow: 1;
  justify-content: flex-end;
}

.navbar-content {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  right: 0;
  background-color: var(--highlight-color);
  transition: width 0.3s ease-in-out;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: #000;
}



.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a,
.logo-text {
  font-size: 1rem; /* Slight increase from 1rem */
  line-height: 1.6;
  letter-spacing: 0.3px;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
}
.navbar {
  height: 130px; /* add 30px for breathing space */
}

.logo-img {
  height: 90px;
}

.nav-links a {
  line-height: 1.6;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
/* ============================= */
/*       DROPDOWN STYLING       */
/* ============================= */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1100;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  padding: 0.5rem 1rem;
}

.dropdown-content a {
  color: #000;
}



.hero {
  position: relative;
  width: 100vw;
  min-height: 65vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 65vh;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.60) 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 7vh;
  padding-bottom: 7vh;
  text-align: center;
}

.hero-title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.hero-title-underline {
  width: 700px;           /* Adjust width */
  height: 2px;           /* Adjust thickness */
  margin: 1.1rem auto 0 auto;
  background: #fff;      /* Or use a gradient: linear-gradient(90deg, #fff, #999) */
  border-radius: 2px;
}

.hero-logo {
  width: 110px;
  height: auto;

}

.hero-title {
  font-family: 'Unica One', serif;
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 4px;
  margin: 0 0 0.0rem 0;
}

.hero-subtitle {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  color: #e6e6e6;
  margin: 0 0 0.7rem 0;
  letter-spacing: 2px;
}

.hero-tagline {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
}



.section.action-cards {
  background: #fafbfc;
  padding: 3.5rem 0 4.5rem 0;
  position: relative;
}

.action-intro {
  max-width: 670px;
  margin: 0 auto 2.2rem auto;
  text-align: center;
}

.action-intro h2 {
  font-size: 2.3rem;
  font-family: 'Unica One', serif;
  color: #181818;
  margin-bottom: 1.1rem;
  letter-spacing: 2px;
}

.action-intro p {
  color: #2c2c2c;
  font-size: 1.18rem;
  font-family: 'EB Garamond', serif;
  margin: 0 auto;
}

.action-grid {
  display: flex;
  gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: nowrap;
}

.action-block {
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  padding: 2.1rem 2rem 1.6rem 2rem;
  flex: 1 1 310px;
  min-width: 290px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s;
  border-bottom: 3px solid #18181822;
}

.action-block:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 36px rgba(0,0,0,0.10), 0 1.5px 14px rgba(44,44,44,0.08);
  border-bottom: 3px solid #222;
}

.action-block h4 {
  font-family: 'Unica One', serif;
  font-size: 1.23rem;
  color: #161616;
  margin-bottom: 0.88rem;
  letter-spacing: 1px;
}

.action-block p {
  font-size: 1.05rem;
  font-family: 'EB Garamond', serif;
  color: #383838;
  line-height: 1.62;
  margin: 0;
}



.section.who-we-are {
  background: #fff;
  padding: 5rem 0 4.5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.alt-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}

.alt-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.alt-content h2 {
  font-size: 2.3rem;
  font-family: 'Unica One', serif;
  color: #161616;
  margin-bottom: 1.4rem;
  letter-spacing: 2px;
}

.alt-content p {
  font-size: 1.16rem;
  font-family: 'EB Garamond', serif;
  color: #232323;
  line-height: 1.7;
}

.alt-content .slider-btn {
  display: inline-block;
  margin-top: 2rem;
}

.alt-image img {
  max-width: 420px;
  width: 100%;
  border-radius: 0;
  box-shadow: 0 8px 44px rgba(0,0,0,0.12);
  object-fit: cover;
  transition: 
    transform 0.38s cubic-bezier(.4,0,.2,1), 
    box-shadow 0.38s cubic-bezier(.4,0,.2,1);
  will-change: transform, box-shadow;
}

.alt-image img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 54px rgba(0,0,0,0.17), 0 2px 16px rgba(44,44,44,0.13);
  z-index: 5;
}


.section.who-we-are {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 5rem 0 4.5rem 0;
}

.who-triangle-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.triangle {
  position: absolute;
  opacity: 0.55;
  z-index: 1;
  transition: opacity 0.3s;
}

.triangle-1  { top:  7%;  left:  -38px;  transform: rotate(-12deg) scale(1.1);}
.triangle-2  { bottom: 10%; left: 6%;    transform: rotate(32deg)  scale(1.02);}
.triangle-3  { top: 28%;  right: -38px;  transform: rotate(-13deg) scale(1.25);}
.triangle-4  { bottom: 17%; right: 13%;  transform: rotate(-42deg) scale(1.0);}
.triangle-5  { top: 8%;   right: 36%;    transform: rotate(29deg)  scale(1.14);}
.triangle-6  { bottom: 7%; left: 47%;    transform: rotate(25deg)  scale(1.08);}
.triangle-7  { top: 50%;  left: 13%;     transform: rotate(-21deg) scale(0.96);}
.triangle-8  { top: 60%;  right: 20%;    transform: rotate(36deg)  scale(0.88);}
.triangle-9  { top: 35%;  left: 67%;     transform: rotate(-17deg) scale(0.92);}
.triangle-10 { bottom: 2%; right: 5%;    transform: rotate(-9deg)  scale(1.18);}
.container, .alt-section, .alt-content, .alt-image {
  position: relative;
  z-index: 2;
}








.slider-section {
  position: relative;
  width: 100vw;

  padding: 5.5rem 0 4rem 0;
    background: 
    linear-gradient(120deg, rgba(0,0,0,0.14) 0%, rgba(32,32,32,0.88) 100%),
     url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=800&q=80') center center/cover no-repeat;

  overflow: hidden;
  z-index: 1;
}

.slider-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(0,0,0,0.16) 0%, rgba(32,32,32,0.93) 100%);
  z-index: 1;
  pointer-events: none;
}

.slider-wrapper {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  z-index: 2;
  min-height: 315px;
}

.slide {
  display: none;
  flex-direction: column;
  align-items: center;
  background: transparent;
  color: #fff;
  text-align: center;
  transition: opacity 0.3s;
  opacity: 0;
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
}

.slide.active {
  display: flex;
  opacity: 1;
  position: relative;
  z-index: 2;
  animation: fadein-slide 0.7s;
}

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

.slide-progress {
  font-size: 1.22rem;
  color: #b9b9b9;
  font-family: 'Unica One', serif;
  margin-bottom: 1.1rem;
  letter-spacing: 3px;
  font-weight: 400;
}

.slider-subtitle {
  font-size: 1.09rem;
  color: #d6d6d6;
  margin: 0 0 0.55rem 0;
  font-family: 'EB Garamond', serif;
}

.slider-title {
  font-size: 2rem;
  font-family: 'Unica One', serif;
  color: #fff;
  margin: 0 0 1.15rem 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.slider-text {
  font-size: 1.17rem;
  font-family: 'EB Garamond', serif;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0 0 2.2rem 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.slider-controls .prev,
.slider-controls .next {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  color: #181818;
  font-size: 1.5rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.18s;
  border-radius: 0; /* sharp */
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  font-weight: 700;
  outline: none;
}

.slider-controls .prev:hover,
.slider-controls .next:hover {
  background: #181818;
  color: #fff;
  border: 2px solid #fff;
}

.slider-controls .slider-btn,
.slider-controls .aim-btn {
  margin: 0 0.2rem;
}
.slider-btn {
  display: inline-block;
  padding: 0.68rem 1.5rem;
  font-family: 'Unica One', serif;
  font-size: 1.03rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fff;
  background: #222;
  border: 2px solid #fff;
  border-radius: 0;               /* NO border radius */
  box-shadow: 0 2px 16px rgba(0,0,0,0.14);
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.17s cubic-bezier(.4,0,.2,1),
    color 0.17s cubic-bezier(.4,0,.2,1),
    box-shadow 0.18s cubic-bezier(.4,0,.2,1),
    border 0.18s cubic-bezier(.4,0,.2,1);
}

.slider-section .slider-btn:hover,
.slider-section .slider-btn:focus {
  background: #fff;
  color: #111;
  border: 2px solid #181818;
  box-shadow: 0 6px 24px rgba(24,24,24,0.19);
  outline: none;
  text-decoration: none;
}









.team-faq-section {
  background: #fafbfc;
  padding: 5rem 0 4.5rem 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.team-faq-container {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 2px 32px rgba(0,0,0,0.05);
  border-radius: 0;        /* Sharp edges! */
  padding: 0.8rem 1.1rem;
  position: relative;
}

.team-title {
  font-size: 2.2rem;
  color: #181818;
  font-family: 'Unica One', serif;
  margin-bottom: 0.8rem;
  text-align: center;
  letter-spacing: 1px;
}

.underline-animated {
  display: block;
  margin: 0 auto 2.2rem auto;
  width: 60px;
  height: 2.5px;
  background: #111;
  position: relative;
}

.faq-item {
  border-bottom: 1px solid #ededed;
  padding: 0.6rem 0;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  font-family: 'Unica One', serif;
  font-size: 1.1rem;
  color: #161616;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  padding: 1.1rem 0;
  transition: color 0.2s;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}
.faq-question:hover, .faq-question.open {
  color: #0073e6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-family: 'EB Garamond', serif;
  font-size: 1.08rem;
  color: #313131;
  line-height: 1.5;
  padding-left: 0;
  opacity: 0;
  transition: max-height 0.34s cubic-bezier(.6,0,.2,1), opacity 0.29s;
}

.faq-answer.open {
  opacity: 1;
  padding: 0.7rem 0 1.2rem 0;
  max-height: 250px;
  transition: max-height 0.38s cubic-bezier(.4,0,.2,1), opacity 0.21s;
}
.team-faq-section {
  position: relative;
  overflow: hidden;
  background: #fafbfc;
  padding: 5rem 0 4.5rem 0;
}

.faq-triangle-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.triangle {
  position: absolute;
  opacity: 0.55;
  z-index: 1;
  transition: opacity 0.3s;
}

/* Example positions — tweak to fit FAQ section layout */
.triangle-1  { top:  4%;  left:  -30px;  transform: rotate(-9deg)  scale(1.1);}
.triangle-2  { bottom: 6%; left: 8%;     transform: rotate(22deg)  scale(1.05);}
.triangle-3  { top: 24%;  right: -38px;  transform: rotate(-14deg) scale(1.16);}
.triangle-4  { bottom: 19%; right: 12%;  transform: rotate(-34deg) scale(1.0);}
.triangle-5  { top: 7%;   right: 32%;    transform: rotate(31deg)  scale(1.13);}
.triangle-6  { bottom: 5%; left: 52%;    transform: rotate(29deg)  scale(1.09);}
.triangle-7  { top: 52%;  left: 17%;     transform: rotate(-19deg) scale(0.98);}
.triangle-8  { top: 65%;  right: 23%;    transform: rotate(34deg)  scale(0.88);}
.triangle-9  { top: 37%;  left: 63%;     transform: rotate(-11deg) scale(0.95);}
.triangle-10 { bottom: 2%; right: 4%;    transform: rotate(-7deg)  scale(1.13);}

.team-faq-container {
  position: relative;
  z-index: 2; /* ensures content is above triangles */
}


    .center-wrapper, .svg-overlay, .contact-card {
      position: relative;
      z-index: 1;
    }

    .center-wrapper {
      background: white !important;
      padding: 0 !important;
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      position: relative !important;
    }

    .contact-card {
      max-width: 1100px;
      width: 100%;
      display: flex !important;
      flex-direction: !important;
      overflow: hidden;
      margin: 0 auto;
      border-radius: 0;
      box-shadow: none;
    }

    .contact-box {
      width: 50% !important;
      padding: 4rem 3rem;
      box-sizing: border-box;
    }

    .contact-box.left {
      background-color: #2e423c !important;
      color: #fff !important;
    }

    .contact-box.right {
      background-color: #f6f7db !important;
      color: #1f2c29 !important;
    }

    .contact-box h1 {
      font-size: 2rem !important;
      font-weight: 900 !important;
      margin-bottom: 2rem !important;
      line-height: 1.3 !important;
    }

    .contact-box h4 {
      text-transform: uppercase;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 1.5rem;
      color: inherit;
      position: relative;
    }

    .contact-box h4::after {
      content: "" !important;
      display: inline-block !important;
      width: 50px !important;
      height: 1px !important;
      background-color: currentColor !important;
      margin-left: 1rem !important;
      vertical-align: middle !important;
    }

    .contact-box input,
    .contact-box textarea {
      background: transparent;
      border: none;
      border-bottom: 1px solid #ccc;
      color: inherit;
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    .contact-box input::placeholder,
    .contact-box textarea::placeholder {
      color: #aaa;
    }

    button[type="submit"],
    .submit-link {
      background: transparent;
      color: inherit;
      border: 2px solid currentColor;
      padding: 0.6rem 1.5rem;
      font-weight: bold;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    button[type="submit"]:hover,
    .submit-link:hover {
      background-color: currentColor;
      color: #fff;
    }

    @media (max-width: 1024px) {
      .contact-card {
        flex-direction: column;
      }

      .contact-box {
        width: 100%;
        padding: 2rem;
      }
    }


.contact-section {
  display: flex;
  height: 100vh;
  position: relative;
}



.contact-card {
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
}

.contact-card > h1 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
  line-height: 1.2;
  color: #000;
  white-space: pre-line;
  width: 100%;
}

.contact-box {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-box h4 {
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}

.contact-box h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: currentColor;
  margin-top: 0.5rem;
}

.contact-box h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.contact-box p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 2rem;
}

.general {
  background-color: #000;
  color: #fff;
}

.investment {
  background-color: #fff;
  color: #000;
}

form input,
form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0.8rem 0;
  margin-bottom: 1.5rem;
  color: #fff;
  width: 100%;
  font-size: 1rem;
}

form input::placeholder,
form textarea::placeholder {
  color: #ccc;
}

form label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
  margin-bottom: 0.3rem;
  display: block;
}

form button {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

form button:hover {
  background-color: #fff;
  color: #000;
}

.submit-link {
  padding: 0.5rem 1.5rem;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  width: fit-content;
  transition: 0.3s ease;
}

.submit-link:hover {
  background-color: #000;
  color: #fff;
}

/* Specific override to ensure dark text in .general form fields */
.general form input,
.general form textarea {
  color: #fff;
}




















footer {
  text-align: center;
  padding: 1rem;
  background-color: var(--accent-color);
  color: #000;
  font-size: 0.9rem;
  border-top: 1px solid #ccc;
}
.footer-extra {
  margin-top: 0.5rem;
  font-size: 0.85rem;
    position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
   .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 1rem;
    position: relative;
    z-index: 9999;
  }

  .logo-img {
    height: 42px;
    padding-left: 0;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 10001;
  }

  .burger div {
    width: 100%;
    height: 2px;
    background: #000;
  }

.nav-links {
  display: none;
  flex-direction: column;
  width: 100vw;
  max-width: 100%;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}


  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #000;
    display: block;
    text-align: left;
  }

  .dropdown-content {
    display: none;
    flex-direction: column;
    background: #f9f9f9;
  }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .dropdown-content a {
    padding-left: 2rem;
    font-size: 0.95rem;
  }

  .dropdown-toggle::after {
    content: "▼";
    float: right;
    font-size: 0.7rem;
    margin-left: 0.5rem;
  }

  .dropdown.open .dropdown-toggle::after {
    content: "▲";
  }
  .hero {
    min-height: 350px;
  }
  .hero-logo {
    width: 68px;
    margin-bottom: 0.5rem;
  }
  .hero-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  .hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  .hero-overlay {
    padding-top: 4vh;
    padding-bottom: 4vh;
  }
    .action-grid {
    flex-direction: column;
    gap: 1.3rem;
    align-items: center;
  }
  .action-block {
    max-width: 96vw;
    min-width: 0;
    width: 100%;
  }
    .alt-section {
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
  }
  .alt-image img {
    max-width: 95vw;
    min-width: 0;
  }
    .slider-wrapper {
    max-width: 98vw;
    min-height: 340px;
    padding: 0 0.5rem;
  }
  .slider-title {
    font-size: 1.2rem;
  }
  .slide-progress {
    font-size: 1rem;
  }
  .slider-text {
    font-size: 1rem;
  }
    .team-faq-container {
    padding: 1.2rem 0.6rem;
  }
  .team-title {
    font-size: 1.2rem;
  }
  .contact-section {
    padding: 1rem;
    flex-direction: column;
    height: auto;
  }

  .contact-card {
    flex-direction: column;
    padding: 2rem 1rem;
	align-items: center;
  }

  .contact-card > h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    text-align: center;
  }

  .contact-box {
    width: 100% !important;
	max-width: 500p !Importantx;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
	  margin: 0 auto;
  }

  .contact-box h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .half-inputs {
    flex-direction: column;
    gap: 1rem;
  }

  form input,
  form textarea {
    font-size: 1rem;
    width: 100%;
  }

  .submit-link, form button {
    width: 50%;
    text-align: center;
    font-size: 1rem;
  }
  .contact-card {
  align-items: center;
}

.contact-box {
  max-width: 500px;
  margin: 0 auto;
}
}





/* Body text stays as Garamond */
body, p, li, span {
  font-family: 'EB Garamond', serif;
}

/* Headings use Playfair Display */
h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
}
