:root{
  --text:#121212;
  --line:#e7e7e7;
  --accent:#0f4b3a;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  color:var(--text);
  background:#fff;
}

/* Headings – TT Drugs substitute */
h1, h2, h3,
.hero h1,
.process-title,
.services-title,
.about-title,
.contact-title,
.ptext h2 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

/* Subtitles */
.hero-sub,
.process-sub {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

.container{ width:min(1200px, 92%); margin:0 auto; }

/* NAV */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  /* padding:14px 0; */
  gap:16px;
}

.brand{
  font-weight:800;
  text-decoration:none;
  color:var(--text);
  letter-spacing:.3px;
}

.nav-links{
  display:flex; align-items:center; gap:18px;
}

.nav-links a{
  position:relative;
  text-decoration:none;
  color:#2c2c2c;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

/* Professional hover + underline indicator */
.nav-links a::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:5px;
  height:2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .2s ease;
  border-radius:999px;
  opacity:.9;
}

.nav-links a:hover{
  background: rgba(15,75,58,.08);
  color: var(--accent);
  transform: translateY(-1px);
}
.nav-links a:hover::after{ transform: scaleX(1); }

.nav-links a.active{
  font-weight:800;
  color: var(--accent);
  background: rgba(15,75,58,.08);
}
.nav-links a.active::after{ transform: scaleX(1); }

.nav-links a.disabled{
  opacity:.45;
  pointer-events:none;
  background: transparent;
}
.nav-links a.disabled::after{ display:none; }

/* Mobile toggle */
.nav-toggle{
  display:none;
  width:44px; height:40px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:10px;
  padding:10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block; height:2px; background:#222; margin:5px 0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 20px;
  border-radius:14px;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  font-weight:300;
  border:1px solid transparent;
  box-shadow: var(--shadow);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  font-size: 35px;
}
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
}
.btn:active{ transform: translateY(0); }

.btn-outline{
  background:transparent;
  color:var(--accent);
  border-color:rgba(15,75,58,.35);
  box-shadow:none;
}
.btn-outline:hover{
  background: rgba(15,75,58,.08);
  box-shadow:none;
}

/* HERO */
.hero{
  position:relative;
  min-height: calc(100vh - 70px);
  display:grid;
  place-items:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.12));
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:90px 0;
  max-width:1200px;
}

.hero h1{
  margin:0 0 10px;
  font-size:100px;
  font-weight: 300;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-decoration: underline;

}

.hero-sub{
  margin:0 0 18px;
  font-size: 45px;
  opacity:.95;
  font-weight: 300;
  text-transform:uppercase;
  margin-bottom: 100px;
}
.header-logo {
  width: 100%;
  max-width: 250px;
}
.hero-small{
  margin: 0 0 26px;
  line-height: 1;
  font-size: 30px;
  font-weight: 300;
  opacity: .92;
  max-width: 400px;
  margin-bottom: 100px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* HERO TEXT TRANSITION (reveal) */
.reveal{
  opacity:0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: opacity .8s ease, transform .8s ease, filter .8s ease;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}
.delay-1{ transition-delay: .12s; }
.delay-2{ transition-delay: .24s; }
.delay-3{ transition-delay: .36s; }

/* Responsive */
@media (max-width: 900px){
  .hero h1{ font-size:44px; }
  .hero-sub{ font-size:22px; }
}

@media (max-width: 720px){
  .nav-toggle{ display:block; }
  .nav-links{
    display:none;
    position:absolute;
    top:64px; right:4%;
    width:min(360px, 92vw);
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow: var(--shadow);
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:12px 12px; }
}
/* ABOUT PAGE */
/* ABOUT PAGE (matches Canva layout) */
.about-page .section{
  padding: 45px 0 0;
}

.about-top-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:start;
}

.about-title{
  margin: 15px 0 15px;
  font-size: 40px;
  line-height:1.15;
  font-weight: 600;
  color: #173c34;
}

.about-p{
  margin: 0 0 14px;
  color:#3f3f3f;
  line-height: 1.7;
  font-size: 16px;
  max-width: 70ch;
  font-weight: 300;
  max-width: 70ch;
}

.about-subtitle{
  margin: 18px 0 10px;
  font-size: 30px;
  color:#173c34;
}

.about-bullets{
  margin: 0;
  padding-left: 18px;
  color:#2f2f2f;
  line-height: 1.85;
  font-size: 16px;
  font-weight: 300;
}
.about-bullets li::marker{
  color:#173c34;
}

/* Right image card with CTA on top-right */
.about-image-card{
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0; /* Canva style is very square */
  overflow:hidden;
  background:#fff;
}

.about-cta{
  position:absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 15px 20px;
  font-size: 25px;
  max-width: 240px;
  border: 1px solid #cfcfcf;
  background: rgba(255,255,255,.92);
  color: #173c34;
  font-weight: 800;
  text-decoration:none;
  border-radius: 0;
  letter-spacing: .02em;
  transition: background-color .18s ease, transform .18s ease;
}
.about-cta:hover{
  background:#fff;
  transform: translateY(-1px);
}

.about-right-img{
  width:100%;
  height:auto;
  display:block;
}

/* Bottom section grid */
.about-bottom-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items:start;
}

.about-left-stack, .about-right-stack{
  display:flex;
  flex-direction:column;
  gap: 15px;
}

.about-right-stack {
  margin-left: 30px;
}

.about-photo{
  border: 1px solid var(--line);
  overflow:hidden;
  background:#fff;
}
.about-photo img{
  width:100%;
  height:auto;
  display:block;
}

/* Testimonials */
.about-subtitle-2{
  margin: 6px 0 0;
  font-size: 26px;
  font-weight: 800;
}
.testimonials blockquote{
  margin: 0 0 14px;
  padding: 0;
  border-left: none;
  color:#2f2f2f;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
}
.testimonials span{
  color:#444;
  font-weight: 700;
}
section.about-bottom.section {
    margin-bottom: 50px;
}

/* FAQ */
.faq-title{
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  text-align: left;
}
.faq{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.faq-item h3{
  margin:0 0 6px;
  font-size: 16px;
  font-weight: 600;
}
.faq-item p{
  margin:0;
  color:#3f3f3f;
  line-height:1.7;
  font-size: 16px;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 980px){
  .about-top-grid{ grid-template-columns: 1fr; }
  .about-bottom-grid{ grid-template-columns: 1fr; }
  .about-title{ font-size: 32px; }
}

/* SERVICES PAGE */
.services-head{
  padding: 35px 0 20px;
}
.services-head-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.services-title{
  margin: 0;
  font-size: 56px;
  font-weight: 500;
  color:#173c34;
}
.services-title-sm{
  font-size: 46px;
  margin-bottom: 18px;
}

/* Top right CTA like Canva */
.services-cta{
  padding: 15px 20px;
  font-size: 25px;
  max-width: 240px;
  border: 1px solid #cfcfcf;
  background: rgba(255,255,255,.92);
  color: #173c34;
  font-weight: 800;
  text-decoration:none;
  letter-spacing: .02em;
  transition: background-color .18s ease, transform .18s ease;
}
.services-cta:hover{
  background:#fff;
  transform: translateY(-1px);
}

/* Shared card styles for services (square like Canva) */
.svc-card, .svc-tile{
  background:#fff;
  /* border: 1px solid var(--line);*/
  overflow:hidden;
}
.svc-card img, .svc-tile img{
  width:100%;
  height:auto;
  display:block;
}
.svc-body{
  padding: 25px 0px 30px;
}
.svc-body h2, .svc-body h3{
  margin: 0 0 15px;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 900;
  color:#1c1c1c;
}
.svc-body p{
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  color:#444;
  line-height: 1.6;
}

/* Section 1: two columns */
.services-two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Section 2: three columns */
.services-three{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Section 3: mixed */
.services-mixed{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:start;
}
.svc-tile-big .svc-body{
  padding-top: 10px;
}

/* Mosaic right side */
.svc-mosaic{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.svc-mosaic .svc-tile img{
  height: 150px;
  object-fit: cover;
}

/* Make images more like Canva proportions */
.svc-card img{
  height: 290px;
  object-fit: cover;
}
.services-three .svc-card img{
  height: 260px;
  object-fit: cover;
}
.svc-tile-big img{
  height: 320px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 980px){
  .services-title{ font-size: 44px; }
  .services-title-sm{ font-size: 38px; }
  .services-two{ grid-template-columns: 1fr; }
  .services-three{ grid-template-columns: 1fr; }
  .services-mixed{ grid-template-columns: 1fr; }
  .svc-mosaic{ grid-template-columns: 1fr; }
  .svc-card img, .services-three .svc-card img, .svc-tile-big img{ height: 220px; }
}


/* PROCESS PAGE — CANVA-LIKE LAYOUT (fixed stage that scales) */
.process-canvas{
  padding: 65px 0 70px;
}

/* “design stage” that scales but keeps proportions */
.process-stage-fixed{
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200 / 520;
  margin: 0 auto;
  isolation: isolate; /* keeps z-index sane */
}

/* line behind everything */
.process-path{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* steps above line */
.pstep{
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: start;
  max-width: 520px;
}

/* text styles */
.ptext h2{
  margin: 0 0 10px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.05;
  color: #121212;
}
.ptext p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #2f2f2f;
  max-width: 48ch;
}

/* glowing numbers */
.pnum{
  width: 110px;
  text-align: center;
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  user-select: none;
  transform: translateY(-12px);
  opacity: .92;
}

.n1{ color:#5a5cff; text-shadow: 0 0 26px rgba(90,92,255,.45); }
.n2{ color:#ff9b4a; text-shadow: 0 0 26px rgba(255,155,74,.40); }
.n3{ color:#6df2ff; text-shadow: 0 0 28px rgba(109,242,255,.45); }
.n4{ color:#c09a7b; text-shadow: 0 0 24px rgba(192,154,123,.35); }

/* Placement (percent-based so it scales cleanly) */
.s1{ left: 0%;  top: -5%; max-width: 540px; }
.s2{ left: 20%; top: 50%; max-width: 365px; }
.s3{ left: 56%; top: 60%; max-width: 365px; }
.s4{ left: 80%; top: 0%; max-width: 360px; }
.s4 .ptext p{ max-width: 30ch; }

/* MOBILE FALLBACK: stack (no absolute, no path) */
@media (max-width: 1100px){
  .process-stage-fixed{
    aspect-ratio: auto;
    max-width: none;
    padding: 10px 0;
  }

  .process-path{ display:none; }

  .pstep{
    position: relative;
    left: auto; top: auto;
    max-width: 100%;
    grid-template-columns: 90px 1fr;
    margin: 18px 0;
  }

  .pnum{
    width: 90px;
    font-size: 96px;
    transform: translateY(-6px);
  }

  .ptext h2{ font-size: 30px; }
}

/* CONTACT PAGE */
.contact-hero{
  padding: 38px 0 24px;
}

.contact-banner{
  position:relative;
  border: 1px solid var(--line);
  background:#fff;
  overflow:hidden;
}

.contact-banner img{
  width:100%;
  height:auto;
  display:block;
}

.contact-banner-cta{
  position:absolute;
  top: 22px;
  right: 22px;
  padding: 15px 20px;
  font-size: 25px;
  max-width: 240px;
  border: 1px solid #cfcfcf;
  background: rgba(255,255,255,.92);
  color: #173c34;
  font-weight: 900;
  text-decoration:none;
  letter-spacing: .02em;
  text-align:center;
  line-height:1.05;
  transition: background-color .18s ease, transform .18s ease;
}
.contact-banner-cta:hover{
  background:#fff;
  transform: translateY(-1px);
}

/* Bottom content */
.contact-body{
  padding: 8px 0 70px;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 56px;
  align-items:start;
}

.contact-title{
  margin: 0 0 10px;
  font-size: 35px;
  font-weight: 900;
  color: #121212;
}

.contact-lead{
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color:#2f2f2f;
}

.contact-service{
  margin: 0 0 18px;
  display:flex;
  gap: 10px;
  align-items:baseline;
  flex-wrap:wrap;
}
.contact-service a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: 300;
}
.brand-link{
  color:#1d2bd6; /* close to the blue link look in design */
  font-weight: 900;
}

.hours-grid{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  margin-top: 16px;
}

.hours-label{
  font-size: 20px;
  color:#2f2f2f;
  font-weight: 800;
}

.hours-rows{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.hours-row{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  font-size: 16px;
  font-weight: 300;
  color:#2f2f2f;
}
.hours-row .day{ color:#2f2f2f; }
.hours-row .time{ color:#2f2f2f; }

/* Right side blocks */
.contact-right{
  display:flex;
  flex-direction:column;
  gap: 34px;
}

.contact-block h2{
  margin: 0 0 10px;
  font-size: 35px;
  font-weight: 900;
  color:#4a4a4a;
}

.contact-block p{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color:#5a5a5a;
}

.contact-links a{
  color:#5a5a5a;
  text-decoration:none;
}
.contact-links a:hover{
  text-decoration:underline;
}

.map-link{
  display:inline-block;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 800;
  text-decoration:none;
}
.map-link:hover{ text-decoration:underline; }

/* Responsive */
@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; gap: 30px; }
  .hours-row{ grid-template-columns: 1fr; gap: 2px; }
  .hours-grid{ grid-template-columns: 1fr; }
  .contact-block p{ font-size: 18px; }
  .contact-title{ font-size: 30px; }
}

/* Start arrow higher, then slide down into place */
.process-path{
  transform: translateY(-120px);   /* start from top (adjust value) */
  opacity: 0;
  transition: transform 900ms ease, opacity 900ms ease;
  will-change: transform, opacity;
}

/* final position */
.process-path.in{
  transform: translateY(0);
  opacity: 1;
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .process-path{
    transition: none;
    transform: none;
    opacity: 1;
  }
}