
    :root {
      --accent: #0985AE;
      --bg-light: #F3EDF0;
      --bg-dark: #260033;
      --text: #41162F;
      --gradient-1: #63C3F2;
      --gradient-2: #F263AB;
      --gradient-3: #41162F;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "DM Sans", sans-serif;
      color: var(--text);
      background: var(--bg-light);
      line-height: 1.6;
      scroll-behavior: smooth;
	  padding-top: 60px;
	   padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }
	
	body.cookie-visible {
 padding-bottom: 60px; /* match cookie bar height */
 }

	@media (max-width: 900px) {
		body.cookie-visible {
 padding-bottom: 80px; /* match cookie bar height */
 }
	}
	
	
	@media (max-width: 600px) {
		body {
			font-size: 0.9rem;
		}
		body.cookie-visible {
			padding-bottom: 140px; /* match cookie bar height */
		}
	}

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
	justify-content: center;
 	 display: grid;
    }

    /* NAVIGATION */
    header {
      background: var(--bg-dark);
      border-bottom: 1px solid var(--bg-dark);
      position: fixed;
      top: 0;
      z-index: 1000;
	  min-height: 60px;
	  width: 100%;
	  z-index: 20000;
    }

    .nav-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
	   z-index: 30000;
	   position: relative;
    }

.nav-logo {
	float: left;
	padding-right: 20px;
	height: 2.2rem;
	padding-right: 1rem;
}

/* Desktop nav */
.nav-links {
  display: flex;
  gap: 30px;
}

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
 
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--bg-light);
  transition: 0.3s ease;
}

    nav ul {
      list-style: none;
      display: flex;
      gap: 24px;
    }

    nav a {
      color: var(--bg-light);
      padding-bottom: 2px;
      border-bottom: 2px solid transparent;
      transition: 0.2s ease;
    }

    nav a:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

/* MOBILE */
@media (max-width: 900px) {

  /* Show hamburger */
  .nav-toggle {
    display: flex;
	z-index: 30000;
  }

  /* Hide desktop nav */
  .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
	bottom: 0;
	height: 100vh;
	width: 100%;
	
    background: var(--bg-dark);
	display: flex;
    flex-direction: column !important;
    justify-content: flex-start;
    gap: 0;
	padding: 48px 24px;
	z-index: 15000;

 /* Start hidden */
    opacity: 0;
    pointer-events: none;
    transform: translateY(0px);
    transition: opacity 0.3s ease, transform 0.3s ease;

  }

  /* When active */
  .nav-links.active {
 opacity: 1;
    opacity: 1;
    pointer-events: auto;
  }

  /* Hamburger animation */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  nav ul li {
    width: 100%;
  }


  
 .nav-links a {
	  	color: var(--bg-light);
		 display: block;
		 width: 100%;
		 font-size: 1.4rem;
		 padding: 10px 0;
  }
  
  nav a:hover {
      color: var(--accent);
	   border-color: transparent;
    }
  
}


    .logo-text {
      font-size: 1.5rem;
      color: var(--bg-light);
      letter-spacing: 0.04em;
	white-space: nowrap;
    }



    /* HERO */
    .hero {
      padding: 70px 0 70px;
      text-align: center;
	background-image: radial-gradient(
   		 circle at bottom left,
   		 var(--gradient-1),
   		 var(--bg-dark) 30% 70%,
  		 var(--gradient-2)
 	 );
    }

@media (max-width: 900px) {
	.hero {
	background-image: radial-gradient(
   		 circle at bottom left,
   		 var(--gradient-1),
   		 var(--bg-dark) 20% 82.5%,
  		 var(--gradient-2)
 	 );	
	}
}

    .hero-tagline {
      font-size: 4.5rem;
      font-weight: 500;
      margin: auto auto 14px auto;
      color: var(--bg-light);
	line-height: 6.5rem;
	max-width: 500px;
	padding: 0 20px;
    }
	
	@media (max-width: 600px) {
			
		.hero-tagline {
			font-size: 2.5rem;
			line-height: 3.5rem;
		}
	}

    .hero-subheading {
      font-size: 1.1rem;
      letter-spacing: 0.04em;
      margin: auto auto 20px auto;
      color: var(--bg-light);
		max-width: 500px;
		padding: 0 20px;
    }

	@media (max-width: 600px) {
		.hero-subheading {
			font-size: 1rem;
		}
	}

    .hero-subheading a {
	text-decoration: underline;
}


/* STANDARD PAGE */

    .page, .page-italic {
      max-width: 750px;
      margin: 0 0 1rem;
      color: var(--text);
    }
	
	.page-italic {
		font-style: italic;
	}

	ul.page {
		margin: 0 0 1rem 2rem;
	}

    h1.page {
      max-width: 750px;
	margin: 18px 0px;
      font-size: 1.8rem;
      color: var(--text);
      display: inline-block;
      padding-bottom: 6px;
    }
	
	a.page {
		text-decoration: underline;
	}
	
	@media (max-width: 600px) {
	h1.page {
	  font-size: 1.35rem;
	}
}

a {
		  scroll-margin-top: 80px;
}

    h2.page {
      max-width: 750px;
		margin: 1.4rem  0px 1rem;
      font-size: 1.4rem;
      color: var(--text);
		font-weight: 600;
      display: inline-block;
      padding-bottom: 6px;
    }
	
		@media (max-width: 600px) {
	h2.page {
	  font-size: 1.1rem;
	}
}
	
	.page-photo {
		margin: 0 auto 1.4rem;
		display: block;
		width:	150px;
	}

	/* INTRO */
    .intro {
      max-width: 750px;
      margin: 0 auto 18px;
      color: var(--text);
    }


.intro-team {
	text-align: center;
	padding-top: 18px;
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	max-width: 320px;
	margin: auto;
}

    /* SECTION HEADINGS */
    .section-heading {
      font-size: 1.8rem;
      color: var(--text);
      display: inline-block;
      padding-bottom: 6px;
      margin-bottom: 28px;

    }

    .section-heading-light {
      font-size: 1.8rem;
      color: var(--bg-light);
      display: inline-block;
      padding-bottom: 6px;
      margin-bottom: 28px;
    }

#section-heading--services {
	color: var(--bg-light);
}

    section {
      padding: 60px 0;
    }

@media (max-width: 600px) {
	.section-heading { 
		max-width: 320px;
	}
}

#page {
	    background: var(--bg-light);
		background-image: url('../images/arc-watermark.png');
		background-repeat: no-repeat;
		background-position: 100% 10px;
		margin: 0 auto;
		padding: 60px 0;
		background-attachment: fixed;
}

    /* SERVICES */
 .page-wrap {
      background: var(--accent);
	background-image: url('../images/arc-watermark.png');
	background-repeat: no-repeat;
	background-position: top right;
      margin: 0 auto;
      padding: 0px;
    }

    /* --- SERVICES SECTION (DARK BAND) --- */
    .services-section {
		padding: 50px 20px 70px;
		max-width: 1060px;
		margin: 0 auto;
    }

    .services-heading {
      font-size: 1.8rem;
      margin-bottom: 24px;
      font-weight: 600;
    }

    /* --- ACCORDION ITEMS --- */
    .service-item {
      border-top: 1px solid var(--bg-light);
    }

    .service-item:last-of-type {
      border-bottom: 1px solid var(--bg-light);
    }

    .service-toggle {
      width: 100%;
      background: none;
      border: none;
      color: inherit;
      padding: 14px 0;
      display: flex;
      align-items: center;
      cursor: pointer;
      font-size: 1rem;
    }

    .service-title {
      text-align: left;
	color: var(--bg-light);
	font-size: 1.4rem;
	font-family: "DM Sans", sans serif;
	padding-left: 0.4rem;
    }

    .toggle-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      font-size: 1rem;
      line-height: 1;
      transform: rotate(0deg);
      transition: transform 0.25s ease;
		color: var(--bg-light);
    }

    /* When open, rotate "+" to look like "×" (or a rotated cross) */
    .service-item.open .toggle-icon {
      transform: rotate(45deg);
    }

    /* --- ANIMATED CONTENT AREA --- */
    .service-content-wrapper {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s ease, opacity 0.25s ease;
      opacity: 0;
    }

    .service-item.open .service-content-wrapper {
      opacity: 1;
    }

    .service-content {
      padding: 0 0 16px 0;
      font-size: 1.1rem;
      color: var(--bg-light);
    }

    .service-content p + p {
      margin-top: 8px;
    }



    .btn-primary {
      display: inline-block;
      margin: 36px auto;
      padding: 10px 20px;
      color: var(--bg-light);
	background: var(--bg-dark);
	border-color: var(--bg-light);
	font-family: "DM Sans", sans serif;
	font-size: 1rem;
      font-weight: 1000;
	letter-spacing: 0.04em;
	text-transform: uppercase;
      transition: 0.2s ease;
	border-radius: 2rem;
	height: 4rem;
	width: 250px;
    }

    .btn-primary:hover {
      background: var(--bg-light);
	border-color: var(--bg-light);
	color: var(--text);
    }

    /* TEAM */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 750px));
      gap: 20px;
    }

    .team-card {
      background: #ffffff;
      border-radius: 10px;
      border: 1px solid #e1e6ea;
      display: grid;
      gap: 18px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.04);
	  grid-template-columns: 190px 1fr;
    }
	
	.team-card-left {
			  padding: 30px;
	}
	
	.team-card-right {
			padding: 30px 30px 0 0;	
	}
	
	.team-card-topright-2 {
		      padding: 0;
		  display: grid;
		   gap: 18px;
		  grid-template-columns: 30px 1fr 30px;
	}
	
	.team-card-bottomright-2 {
		padding: 0 40px 0 0;	
	}

    .team-photo {
      width: 150px;
      object-fit: cover;
	display: inline-block;
      transition: 0.2s ease;
         }

    .team-photo-bw {
      width: 150px;
      object-fit: cover;
	display: inline-block;
	filter: grayscale(1);
      transition: 0.2s ease;
         }

.team-photo-bw:hover {
	filter: grayscale(0);
}

    .team-name {
      font-weight: 700;
      margin-bottom: 4px;
	text-align: left;
	color: var(--gradient-2);
	font-size: 1rem;
    }

    .team-role {
      font-size: 0.92rem;
      margin-bottom: 10px;
	text-align: left;
	font-weight: 500;
    }


    .team-bio {
      font-size: 0.9rem;
      color: #333;
	padding-bottom: 0.9rem;
	font-style: italic;
    }

	.team-quote-mark {
	font-size: 4rem;
	color: var(--accent);
	font-family: "Arial", Helvetica sans serif;

}

#team-quote-mark--open {
	text-align: right;
	margin-top: -1.3rem;
}

#team-quote-mark--close {
	text-align: left;
	position: absolute;
	bottom: -3.6rem;
}

    .btn-secondary {
      margin: 36px 0 36px;
      color: var(--accent);
      font-weight: 600;
	font-size: 1.4rem;
      background: transparent;
      transition: 0.2s ease;
	display: block;
	text-align: right;
    }

#btn-secondary--bio {
	margin-top: 0;
}

	.btn-secondary a:hover {
		text-decoration: underline;
}

.btn-secondary-light {
      margin: 36px 0 36px;
      color: var(--bg-light);
      font-weight: 600;
	font-size: 1.4rem;
      background: transparent;
      transition: 0.2s ease;
	display: block;
	text-align: right;
    }

.btn-secondary-light a:hover {
	text-decoration: underline;
	float: right;
}

    /* VALUES STRIP */
    .values-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 2rem;
	  max-width: 1060px;
    }

	.values-card {
		      padding: 2rem;
      background: var(--accent);
      color: var(--bg-light);
	}

    .value-title {
      font-weight: 700;
      margin-bottom: 1rem;
    }


    /* PACKAGES */
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 20px;
	  max-width: 1060px;
    }
	
	@media (max-width: 600px) {
		
	.values-strip {
		grid-template-columns: 1fr;
		gap: 24px;
		max-width: 320px;
		 }
		
  .packages-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		max-width: 320px;
  }
  
  #page {
	  background: none;
	  background-color: var(--bg-light);
  }
  
	}
	
  @media (max-width: 750px) {
	  
	   .values-strip {
			 grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
		 }
		 
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}


    .package-card {
 	color: var(--bg-light);
      padding: 22px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

	#package-card--1 {
      background-image: radial-gradient(
   		 circle at bottom right,
   		 var(--gradient-2),
   		 var(--gradient-3)
 	 );
}

	#package-card--2 {
      background-image: radial-gradient(
   		 circle at bottom left,
   		 var(--gradient-2),
   		 var(--gradient-3)
 	 );
}

	#package-card--3 {
      background-image: radial-gradient(
   		 circle at top right,
   		 var(--gradient-2),
   		 var(--gradient-3)
 	 );
}

	#package-card--4 {
      background-image: radial-gradient(
   		 circle at top left,
   		 var(--gradient-2),
   		 var(--gradient-3)
 	 );
}
    .package-card h3 {
      margin-bottom: 8px;
      font-size: 1.4rem;
    }

@media (max-width: 600px) {
	#package-card--1, #package-card--2, #package-card--3, #package-card--4 {
		background-image: radial-gradient(
   		 circle at top right,
   		 var(--gradient-2),
   		 var(--gradient-3)
 	 );
	}
}

    /* TESTIMONIALS */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 22px;
	  max-width: 1100px;
    }

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
	max-width: 320px;
  }
	}
	
  @media (max-width: 750px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

    .testimonial-card {
      background: #ffffff;
      border-radius: 10px;
      padding: 18px 20px;
      border: 1px solid #e1e6ea;
      box-shadow: 0 3px 8px rgba(0,0,0,0.04);
    }


.quote-mark-open, .quote-mark-close {
	font-weight: 1000;
	font-size: 1rem;
	font-family: "Arial", sans serif;
	color: var(--accent);
}

.quote-mark-open {
	padding-right: 0.2rem;
}

.quote-mark-close {
	padding-left: 0.2rem;
}

    .testimonial-author {
      font-weight: 800;
      color: var(--gradient-2);
    }

    .testimonial-role {
      font-size: 0.92rem;
	font-weight: 500;
    }

	.testimonial-quote {
			margin:	0 0 18px 0;
      		font-style: italic;
      	}

    /* CONTACT */

 .contact {
      padding: 70px 0 70px;
      text-align: center;
	background-image: radial-gradient(
   		 circle at bottom left,
   		 var(--gradient-1),
   		 var(--bg-dark) 25% 75%,
  		 var(--gradient-2)
 	 );
    }

.contact-grid {
	
}

 .contact-heading {
      font-size: 1.8rem;
	font-weight: 1000;
      letter-spacing: 0.04em;
      margin: 48px auto 36px auto;
      color: var(--bg-light);
	max-width: 500px;
	text-transform: uppercase;
	padding: 0 20px;
    }


@media (max-width: 600px) {
	.contact-heading {
	  font-size: 1.35rem;
	}
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.consultation-form h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 600;
}

form {
  display: grid;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 6px;
	align-content: start;
	padding: 0 30px;
	margin: auto;
}

.form-row.full-width {
  grid-template-columns: 1fr;
}

label {
  font-weight: 500;
  font-size: 1rem;
  color: var(--bg-light);
  text-align: right;
	padding-right: 12px;
}

input,
textarea {
  width: 300px;
  padding: 6px;
  border: 2px solid #1684AD;
  background-color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

/* Responsive fallback */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  label {
    text-align: left;
  }
}

    /* FOOTER */
    .footer-container {
		max-width: 1100px;
		margin: auto;
		background: var(--bg-light);
		color: var(--text);
		font-size: 0.85rem;
		text-align: center;
		padding: 1rem;
    }

    .footer-text, .footer-link {
		color: var(--text);
		display: inline-block;
		margin: 0.5rem;
    }

	.footer-link {
		text-decoration: underline;
	}

    .footer-links a:hover {
      color: var(--text);
    }
	
	.footer-separator {
		color: var(--text);
		display: inline-block;
		margin: 0.5rem;
	}

    /* RESPONSIVE */
    @media (max-width: 750px) {
      .services-grid,
      .contact-grid, .team-card {
        grid-template-columns: 1fr;
      }
	  
	  .team-card-left {
		padding: 20px 20px 0 20px;
		text-align: center;
	  }
	  
	  .team-card-right {
		padding: 0 20px;
	  }

      .team-photo {
        margin: 0 auto;
		text-align: center;
      }
	  
	  .footer-separator {
		display: none;
	  }
	  
	  .team-name, .team-role {
		text-align: left;
	  }
    }


/* COOKIE BAR */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #0b1f33;
  color: #fff;
  padding: 16px 20px;
  font-size: 14px;
  display: none; /* shown via JS */
}

.cookie-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-bar__text {
  margin: 0;
  flex: 1 1 60px;
}

.cookie-bar__buttons {
  display: flex;
  gap: 8px;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.cookie-btn--primary {
  background: var(--accent);
  color: #fff;
}

.cookie-btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 600px) {
  .cookie-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
