/* =======================
   FONT: SWITZER EXTRALIGHT ITALIC
   ======================= */

   @font-face {
    font-family: "Switzer";
    src: url("../assets/fonts/Switzer_Complete/Fonts/WEB/fonts/Switzer-MediumItalic.woff2") format("woff2"),
         url("../assets/fonts/Switzer_Complete/Fonts/WEB/fonts/Switzer-MediumItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
  }  
  
  /* =======================
     RESET & ROOT
     ======================= */
  
  :root {
    --bg: #050304;
    --bg-alt: #0b0504;
    --accent: #B15B4E;
    --accent-soft: #d18a7d;
    --text-main: #f6f1ee;
    --text-muted: #c0b4af;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --card-bg: #100707;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.7);
    --max-width: 1120px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
  }
  
  /* Make bounce / rubber-band area dark, not white */
  html {
    background-color: #000000;
    scroll-behavior: smooth;
  }
  
  body {
    min-height: 100vh;
    font-family: "Switzer", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 200;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
  
    /* use the enquiry gradient for the entire page */
    background: radial-gradient(circle at top left, rgba(177, 91, 78, 0.4), var(--bg-alt));
  }  
  
  /* =======================
     GLOBAL ELEMENTS
     ======================= */
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  p {
    margin: 0 0 1rem;
    color: var(--text-muted);
  }
  
  h1,
  h2,
  h3 {
    margin: 0 0 0.75rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  main {
    padding-top: 96px; /* space for fixed header */
  }
  
  /* =======================
     HEADER & NAV
     ======================= */
  
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    backdrop-filter: blur(12px);
    border-bottom: none;
  }
  
  .nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 14px 24px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  
  .nav-logo-img {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    object-fit: contain;
    flex-shrink: 0;
    transform: scale(1.8);        /* make it visually bigger */
    transform-origin: left center; 
  }
  
  .nav-logo-text {
    font-family: "Switzer", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;                 /* this picks Switzer-MediumItalic */
    font-style: italic;
    font-size: 1.45rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: radial-gradient(circle at top left, rgba(177, 91, 78, 0.35), rgba(8, 3, 3, 0.85));
    margin-left: 40px;
    white-space: nowrap;
  }
  
  .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
  }
  
  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
  
    /* pill look */
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    white-space: nowrap;
  
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      opacity 0.18s ease;
  }
  
  /* hover state – similar feel to the main pill */
  .nav-links a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    background: radial-gradient(
      circle at top left,
      rgba(177, 91, 78, 0.35),
      rgba(8, 3, 3, 0.9)
    );
  }
  
  .nav-links a::after {
    display: none;
  }  
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* Mobile nav toggle */
  
  .nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 4px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
  
  .nav-toggle-line {
    display: block;
    width: 16px;
    height: 1px;
    background: #ffffff;
  }
  
  /* =======================
     HERO
     ======================= */
  
  .hero {
      padding: 80px 24px 72px;
      background: transparent; /* was the gradient */
  }      
  
  .hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  
  .hero-content {
    max-width: 640px;
  }
  
  .hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 0.75rem;
  }
  
  .hero-title {
    font-size: clamp(2.3rem, 4vw, 3.3rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.98rem;
    max-width: 34rem;
  }
  
  .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 1.5rem;
  }
  
  .hero-meta {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  
  .hero-meta span::before {
    content: "• ";
    color: var(--accent-soft);
  }
  
  /* we’re not using the visual any more */
  .hero-visual {
    display: none;
  }
  
  /* =======================
     BUTTONS
     ======================= */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    background: transparent;
    color: var(--text-main);
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
      transform 0.1s ease;
  }
  
  .btn-primary {
    background: var(--accent);
    color: #000000;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
  }
  
  .btn-primary:hover {
    background: #c66f60;
    transform: translateY(-1px);
  }
  
  .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--text-main);
  }
  
  .btn-outline:hover {
    border-color: var(--accent-soft);
    background: rgba(255, 255, 255, 0.04);
  }
  
  .btn-full {
    width: 100%;
  }
  
  /* =======================
     SECTIONS (ABOUT / MATERIALS / WHY US / CONTACT)
     ======================= */
  
  .section {
    padding: 96px 24px;
    background: transparent;
    border-top: none;
  }
  
  .section:first-of-type {
    border-top: none;
  }
  
  .section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .section-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
  }
  
  .section-text {
    max-width: 640px;
  }

    /* =======================
     SECTORS – PILL LIST
     ======================= */
  
    .sectors-grid {
      margin-top: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 14px 18px;
    }
  
    .sector-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 26px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(0, 0, 0, 0.35);
      color: var(--text-main);
      font-size: 0.86rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
    }
  
    .sector-pill:hover {
      border-color: rgba(255, 255, 255, 0.35);
      background: rgba(0, 0, 0, 0.6);
    }
  
  
  /* =======================
     CARDS (Materials / Why Us)
     ======================= */
  
  .cards-grid {
    margin-top: 2rem;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .card {
    background: radial-gradient(
        circle at 0 0,
        rgba(255, 255, 255, 0.04),
        transparent 60%
    ), #050505;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 20px 20px 22px;
    box-shadow: var(--shadow-soft);
  }

  .card-image {
    width: 100%;
    height: 180px;              /* adjust height to taste */
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 10px 10px;
    margin-bottom: 14px;
    display: block;
  }  
  
  .card-title {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
  }
  
  .card-text {
    font-size: 0.9rem;
  }

  #why-us {
    padding-bottom: 210px; /* increase space below the cards */
  }
  
  /* =======================
   FOUNDERS BLOCK (About section)
   ======================= */

  .founders-block {
    margin-top: 28px;
  }
  
  .founders-title {
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
  }
  
  .founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  
  .founder-card {
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    background: radial-gradient(
        circle at 0 0,
        rgba(255, 255, 255, 0.04),
        transparent 55%
      ),
      #050505;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
  }
  
  .founder-card h4 {
    margin: 0 0 6px;
    font-size: 0.95rem;
    color: #ffffff;
  }
  
  .founder-card p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-muted);
  }  

  /* =======================
     CONTACT SECTION
     ======================= */
  
    .section-contact {
      background: transparent;          /* keep using the page gradient */
      padding: 0px 24px 90px;          /* TOP, horizontal, BOTTOM */
    }
  
  .section-contact-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
    gap: 40px;
    align-items: start;
    padding: 0 24px;
  }
  
  .contact-info .section-text {
    margin-bottom: 1.4rem;
  }
  
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
  }
  
  .contact-list li {
    margin-bottom: 0.5rem;
  }
  
  .contact-list a {
    color: var(--accent-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  .contact-list a:hover {
    color: #ffe0d7;
  }
  
  /* FORM */
  
  .contact-form {
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-lg);
    padding: 20px 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
  }
  
  .form-group {
    margin-bottom: 14px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 200;
    font-style: italic;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--accent-soft);
    box-shadow: 0 0 0 1px rgba(177, 91, 78, 0.4);
  }
  
  /* =======================
     FOOTER
     ======================= */
  
  .site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
  }
  
  .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
  }
  
  /* =======================
     RESPONSIVE
     ======================= */
  
  @media (max-width: 960px) {
    .cards-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .section-contact-inner {
      grid-template-columns: 1fr;
      padding-inline: 24px;
    }
  }
  
  @media (max-width: 720px) {
    .nav {
      padding-inline: 16px;
    }
  
    .nav-links {
      position: absolute;
      top: 64px;
      right: 16px;
      padding: 12px 16px 18px;
      background: #000000;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      flex-direction: column;
      gap: 14px;
      min-width: 170px;
      display: none; /* toggled by JS */
    }
  
    .nav-links.is-open {
      display: flex;
    }
  
    .nav-toggle {
      display: inline-flex;
    }
  
    .hero {
      padding-top: 90px;
    }
  
    .cards-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }

    .sectors-grid {
      justify-content: flex-start;
    }

  }  