/* ════════════════════════════════════════════════════════════════
   1. HERO — Split-fade (color panel left, photo right, soft transition)
   ════════════════════════════════════════════════════════════════ */
.hero{
  position:relative;
  height:600px;
  margin-top:68px;
  overflow:hidden;
  /* The full-width hero photo is the background */
  background:
    /* Placeholder — radial gradient suggesting a real session photo */
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.12), transparent 55%),
    linear-gradient(135deg,#2d3a52 0%,#4a5570 40%,#3a4860 100%);
  background-size:cover;
  background-position:center;
}
/* The split-fade overlay — solid color on the left, fading to transparent on the right */
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,
    var(--navy-deep) 0%,
    var(--navy-deep) 30%,
    rgba(0,31,64,0.92) 45%,
    rgba(0,31,64,0.55) 65%,
    rgba(0,31,64,0.15) 85%,
    rgba(0,31,64,0) 100%
  );
  z-index:1;
}
/* Subtle texture on top */
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle at 1px 1px,rgba(255,255,255,0.04) 1px,transparent 0);
  background-size:32px 32px;
  z-index:2;
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:3;
  max-width:1280px;
  margin:0 auto;
  width:100%;
  min-height:580px;
  padding:0 48px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  text-align:left;
}
.hero-text{
  max-width:560px;
  text-align:left;
}
.hero-text *{text-align:left;}
.hero-photo-label{
  position:absolute;
  top:24px;
  right:32px;
  z-index:4;
  color:rgba(255,255,255,0.45);
  font-size:11px;
  letter-spacing:0.05em;
  text-align:right;
  font-weight:400;
  line-height:1.5;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--teal-light);
  margin-bottom:26px;
}
.hero-eyebrow::before{content:'';width:24px;height:1.5px;background:var(--teal-light);}
.hero-text h1{
  font-weight:500;
  font-size:clamp(34px,4.3vw,52px);
  color:#fff;
  line-height:1.1;
  letter-spacing:-0.02em;
  margin-bottom:22px;
}
.hero-text h1 .italic-teal-light{font-weight:400;}
.hero-sub{
  font-size:17px;
  font-weight:300;
  color:rgba(255,255,255,0.82);
  line-height:1.65;
  margin-bottom:34px;
  max-width:500px;
}
.hero-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:8px;
  background:var(--teal);
  color:#fff;
  font-size:14.5px;
  font-weight:500;
  text-decoration:none;
  transition:all 0.22s;
  box-shadow:0 4px 18px rgba(0,104,131,0.4);
}
.hero-cta:hover{background:var(--teal-mid);transform:translateY(-1px);box-shadow:0 12px 28px rgba(0,104,131,0.5);}

/* Three brand dots quietly in the hero */
.hero-dots{
  position:absolute;
  bottom:32px;
  right:48px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:10px;
  opacity:0.7;
}
.hero-dots .d{
  width:10px;
  height:10px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.4);
}
.hero-dots .d1{background:var(--navy);}
.hero-dots .d2{background:var(--teal);}
.hero-dots .d3{background:var(--purple);}

/* ════════════════════════════════════════════════════════════════
   2. SERVICES — Now appears right below hero
   ════════════════════════════════════════════════════════════════ */
.services{
  padding:90px 0;
  background:#fff;
  position:relative;
}
.services-inner{max-width:1280px;margin:0 auto;padding:0 48px;}
.services-head{
  text-align:center;
  margin-bottom:56px;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
.services-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:11px;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:14px;
}
.services-eyebrow::before,
.services-eyebrow::after{content:'';width:22px;height:1.5px;background:var(--teal);}
.services-head h2{
  font-weight:500;
  font-size:clamp(28px,3.4vw,40px);
  color:var(--text-dark);
  line-height:1.15;
  letter-spacing:-0.018em;
  margin-bottom:12px;
}
.services-head h2 .italic-teal{font-weight:400;}
.services-head p{
  font-size:16px;
  font-weight:300;
  color:var(--muted);
  line-height:1.6;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

/* Card — minimal, with inline icon and subtle top border */
.svc-card{
  background:#fff;
  border-radius:16px;
  padding:34px 32px 30px;
  border:1px solid var(--line);
  position:relative;
  transition:all 0.3s cubic-bezier(0.16,1,0.3,1);
  text-decoration:none;
  display:block;
  overflow:hidden;
}
.svc-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  opacity:0.85;
  transition:height 0.3s,opacity 0.3s;
}
.svc-card.c1::before{background:var(--teal);}
.svc-card.c2::before{background:var(--navy);}
.svc-card.c3::before{background:var(--purple);}
.svc-card.c4::before{background:linear-gradient(90deg,var(--navy) 0%,var(--teal) 50%,var(--purple) 100%);}
.svc-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,51,102,0.08);
  border-color:rgba(0,104,131,0.18);
}
.svc-card:hover::before{height:4px;opacity:1;}

/* Inline icon + title row */
.svc-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}
.svc-icon{
  flex-shrink:0;
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.svc-icon.c1{background:rgba(0,104,131,0.09);}
.svc-icon.c2{background:rgba(0,51,102,0.09);}
.svc-icon.c3{background:rgba(149,82,150,0.09);}
.svc-icon.c4{background:linear-gradient(135deg,rgba(0,51,102,0.09) 0%,rgba(0,104,131,0.09) 50%,rgba(149,82,150,0.09) 100%);}
.svc-name{
  font-size:21px;
  font-weight:500;
  color:var(--text-dark);
  line-height:1.2;
  letter-spacing:-0.012em;
}
.svc-headline{
  font-size:15.5px;
  color:var(--text);
  font-weight:300;
  line-height:1.65;
  margin-bottom:22px;
}
.svc-cta-text{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:500;
  color:var(--teal);
  transition:gap 0.2s;
}
.svc-card:hover .svc-cta-text{gap:10px;}

/* ════════════════════════════════════════════════════════════════
   3. PHILOSOPHY — Text-dominant, small rectangle photo on right
   ════════════════════════════════════════════════════════════════ */
.philosophy{
  padding:90px 48px;
  background:var(--offwhite);
}
.philosophy-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.45fr 1fr;
  gap:64px;
  align-items:center;
}
.phil-text{padding-right:20px;}
.phil-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:11px;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:18px;
}
.phil-eyebrow::before{content:'';width:24px;height:1.5px;background:var(--teal);}
.phil-text h2{
  font-weight:500;
  font-size:clamp(28px,3.4vw,40px);
  color:var(--text-dark);
  line-height:1.18;
  letter-spacing:-0.018em;
  margin-bottom:22px;
}
.phil-text h2 .italic-teal{font-weight:400;}
.phil-text p{
  font-size:16px;
  font-weight:300;
  color:var(--text);
  line-height:1.75;
  margin-bottom:16px;
}
.phil-text p strong{font-weight:500;color:var(--navy);}
.phil-closer{
  margin-top:24px;
  padding-top:20px;
  border-top:1.5px solid var(--line-soft);
  font-size:20px;
  font-weight:400;
  font-style:italic;
  color:var(--teal);
}

/* Smaller rectangle photo on the right with the curve motif */
.phil-image-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.phil-image{
  width:100%;
  max-width:360px;
  aspect-ratio:4/5;
  border-radius:16px;
  /* Soft curved corner — the brand's curve vocabulary */
  border-top-right-radius:80px;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(135deg, var(--teal) 0%, var(--navy) 60%, var(--purple) 100%);
  box-shadow:0 18px 50px rgba(0,51,102,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:rgba(255,255,255,0.55);
  font-size:12px;
  padding:24px;
  line-height:1.5;
  letter-spacing:0.02em;
  position:relative;
  overflow:hidden;
}
/* Three brand-color dots in the corner */
.phil-image-dots{
  position:absolute;
  top:16px;
  left:16px;
  display:flex;
  align-items:center;
  gap:7px;
}
.phil-image-dots .d{
  width:8px;height:8px;border-radius:50%;
  border:1px solid rgba(255,255,255,0.5);
}
.phil-image-dots .d1{background:var(--navy);}
.phil-image-dots .d2{background:var(--teal);}
.phil-image-dots .d3{background:var(--purple);}

/* Curve divider between philosophy and not-sure band */
.curve-divider{
  position:relative;
  height:80px;
  background:linear-gradient(135deg,var(--navy) 0%,var(--teal) 100%);
  margin-top:-1px;
}
.curve-divider svg{
  position:absolute;
  top:0;left:0;width:100%;height:100%;
  display:block;
}

/* ════════════════════════════════════════════════════════════════
   4. NOT SURE — Full-width band
   ════════════════════════════════════════════════════════════════ */
.notsure{
  padding:80px 48px;
  background:linear-gradient(135deg,var(--navy) 0%,var(--teal) 100%);
  position:relative;
  overflow:hidden;
}
.notsure::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle at 1px 1px,rgba(255,255,255,0.05) 1px,transparent 0);
  background-size:32px 32px;
}
.notsure-inner{
  position:relative;
  z-index:2;
  max-width:820px;
  margin:0 auto;
  text-align:center;
}
.notsure h3{
  font-weight:500;
  font-size:clamp(26px,3.2vw,36px);
  color:#fff;
  line-height:1.2;
  margin-bottom:16px;
  letter-spacing:-0.015em;
}
.notsure h3 .italic-teal-light{font-weight:400;}
.notsure p{
  font-size:16.5px;
  font-weight:300;
  color:rgba(255,255,255,0.82);
  line-height:1.7;
  margin-bottom:30px;
  max-width:660px;
  margin-left:auto;
  margin-right:auto;
}
.btn-white{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 28px;
  border-radius:8px;
  background:#fff;
  color:var(--navy);
  font-size:14.5px;
  font-weight:500;
  text-decoration:none;
  transition:all 0.22s;
}
.btn-white:hover{background:var(--teal-light);color:#fff;transform:translateY(-1px);}

/* ════════════════════════════════════════════════════════════════
   5. BEHIND-THE-SCENES — Elevate's "people partner" layout
       Left: heading + intro + four numbered items with thin dividers
       Right: tall lifestyle photo, soft left-edge fade
   ════════════════════════════════════════════════════════════════ */
.behind-scenes{
  background:var(--light-gray);
  position:relative;
  overflow:hidden;
}
.behind-scenes-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  max-width:1400px;
  margin:0 auto;
  min-height:680px;
}
.bs-text{
  padding:90px 56px 90px 64px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.bs-text h2{
  font-weight:500;
  font-size:clamp(32px,4vw,46px);
  color:var(--text-dark);
  line-height:1.12;
  letter-spacing:-0.02em;
  margin-bottom:22px;
}
.bs-text h2 .italic-teal{font-weight:400;}
.bs-intro{
  font-size:16px;
  font-weight:300;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:36px;
  max-width:500px;
}
.bs-items{
  list-style:none;
  padding:0;
  margin:0;
}
.bs-item{
  padding:20px 0;
  border-bottom:1px solid var(--line-soft);
}
.bs-item:last-child{border-bottom:none;}
.bs-item-name{
  font-size:15px;
  font-weight:600;
  color:var(--text-dark);
  margin-bottom:5px;
  letter-spacing:-0.005em;
}
.bs-item-desc{
  font-size:14.5px;
  font-weight:300;
  color:var(--muted);
  line-height:1.55;
}

.bs-photo-wrap{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 60% 40%, rgba(255,255,255,0.1), transparent 50%),
    linear-gradient(135deg,#3d4a5e 0%,#2d3a52 50%,#4a5570 100%);
  min-height:680px;
}
/* Soft left-edge fade where photo meets text */
.bs-photo-wrap::before{
  content:'';
  position:absolute;
  top:0;bottom:0;
  left:0;
  width:120px;
  background:linear-gradient(to right,var(--light-gray) 0%,transparent 100%);
  z-index:2;
  pointer-events:none;
}
.bs-photo-label{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:1;
  color:rgba(255,255,255,0.5);
  font-size:13px;
  letter-spacing:0.04em;
  text-align:center;
  padding:24px;
  line-height:1.55;
  font-weight:400;
}

/* ════════════════════════════════════════════════════════════════
   6. PHOTO STRIP — Visual evidence of what the rooms look like
   ════════════════════════════════════════════════════════════════ */
.photo-strip{
  padding:80px 48px;
  background:#fff;
}
.photo-strip-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 48px;
}
.photo-strip-head h3{
  font-weight:500;
  font-size:clamp(22px,2.6vw,30px);
  color:var(--text-dark);
  line-height:1.2;
  letter-spacing:-0.015em;
  margin-bottom:10px;
}
.photo-strip-head h3 .italic-teal{font-weight:400;}
.photo-strip-head p{
  font-size:15px;
  font-weight:300;
  color:var(--muted);
  line-height:1.6;
}
.photo-strip-inner{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.photo-zone{
  aspect-ratio:1/1.15;
  border-radius:14px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  padding:20px;
  color:#fff;
  transition:transform 0.3s;
}
.photo-zone:hover{transform:translateY(-3px);}
.photo-zone::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,transparent 35%,rgba(0,15,40,0.65) 100%);
  z-index:1;
}
.photo-zone span{
  position:relative;
  z-index:2;
  font-size:13px;
  font-weight:500;
  letter-spacing:0.02em;
}
.pz-1{background:linear-gradient(135deg,#2a3548 0%,#3d4e6a 100%);}
.pz-2{background:linear-gradient(135deg,#1a3a5e 0%,#3a607a 100%);}
.pz-3{background:linear-gradient(135deg,#3a2d4e 0%,#5d4670 100%);}
.pz-4{background:linear-gradient(135deg,#2d4a55 0%,#4a6a78 100%);}
.photo-zone-label{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  z-index:2;
  color:rgba(255,255,255,0.45);
  font-size:11px;
  text-align:center;
  font-weight:400;
  letter-spacing:0.04em;
  padding:14px;
  line-height:1.55;
}

/* ════════════════════════════════════════════════════════════════
   7. TESTIMONIALS
   ════════════════════════════════════════════════════════════════ */
.testimonials{
  padding:90px 48px;
  background:var(--offwhite);
}
.testimonials-inner{max-width:1180px;margin:0 auto;}
.testimonials-head{
  text-align:center;
  margin-bottom:48px;
}
.testimonials-head h2{
  font-weight:500;
  font-size:clamp(24px,3vw,34px);
  color:var(--text-dark);
  line-height:1.2;
  letter-spacing:-0.015em;
}
.testimonials-head h2 .italic-teal{font-weight:400;}
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.test-item{position:relative;padding:0 4px;}
.test-mark{
  width:32px;
  height:3px;
  margin-bottom:18px;
}
.test-item:nth-child(1) .test-mark{background:var(--teal);}
.test-item:nth-child(2) .test-mark{background:var(--navy);}
.test-item:nth-child(3) .test-mark{background:var(--purple);}
.test-body{
  font-size:15.5px;
  font-style:italic;
  color:var(--text);
  line-height:1.7;
  margin-bottom:20px;
  font-weight:300;
}
.test-att-name{
  font-size:14px;
  font-weight:500;
  color:var(--text-dark);
}
.test-att-role{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
  line-height:1.45;
  font-weight:300;
}

/* ════════════════════════════════════════════════════════════════
   8. CLOSER
   ════════════════════════════════════════════════════════════════ */
.closer{
  padding:110px 48px;
  background:linear-gradient(135deg,var(--navy-deep) 0%,#0a2748 50%,var(--navy) 100%);
  position:relative;
  overflow:hidden;
  text-align:center;
}
.closer::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle at 1px 1px,rgba(255,255,255,0.05) 1px,transparent 0);
  background-size:32px 32px;
}
.closer::after{
  content:'';
  position:absolute;
  bottom:-180px;
  left:50%;
  transform:translateX(-50%);
  width:700px;
  height:380px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,104,131,0.32) 0%,rgba(149,82,150,0.18) 45%,transparent 70%);
  filter:blur(60px);
}
.closer-inner{
  position:relative;
  z-index:2;
  max-width:780px;
  margin:0 auto;
}
.closer-dots{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:30px;
}
.closer-dots .dot{width:9px;height:9px;border-radius:50%;}
.closer-dots .d1{background:var(--navy);box-shadow:0 0 12px rgba(77,184,204,0.5),inset 0 0 3px rgba(255,255,255,0.4);}
.closer-dots .d2{background:var(--teal);box-shadow:0 0 12px rgba(0,104,131,0.8),inset 0 0 3px rgba(255,255,255,0.4);}
.closer-dots .d3{background:var(--purple);box-shadow:0 0 12px rgba(149,82,150,0.8),inset 0 0 3px rgba(255,255,255,0.4);}
.closer-dots-line{width:32px;height:1px;background:rgba(255,255,255,0.3);}
.closer-quote{
  font-weight:400;
  font-style:italic;
  font-size:clamp(28px,3.8vw,42px);
  color:#fff;
  line-height:1.28;
  margin-bottom:32px;
  letter-spacing:-0.01em;
}
.closer-quote em{color:var(--teal-light);font-style:italic;font-weight:500;}
.closer-body{
  font-size:16.5px;
  font-weight:300;
  color:rgba(255,255,255,0.72);
  line-height:1.7;
  margin-bottom:40px;
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
}
.closer-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 32px;
  border-radius:8px;
  background:#fff;
  color:var(--navy);
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  transition:all 0.22s;
}
.closer-cta:hover{background:var(--teal-light);color:#fff;transform:translateY(-1px);box-shadow:0 14px 30px rgba(0,0,0,0.25);}

footer{
  padding:32px 48px;
  background:var(--navy-deep);
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.05);
}
footer p{font-size:12px;color:rgba(255,255,255,0.4);}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media(max-width:1024px){
  .hero{height:auto;min-height:500px;padding:80px 0;}
  .hero-content{padding:60px 32px;}
  .services-grid{grid-template-columns:1fr;}
  .philosophy-inner{grid-template-columns:1fr;gap:48px;}
  .phil-image{max-width:300px;margin:0 auto;}
  .phil-text{padding-right:0;}
  .behind-scenes-grid{grid-template-columns:1fr;}
  .bs-text{padding:64px 32px;}
  .bs-photo-wrap{min-height:380px;}
  .bs-photo-wrap::before{
    top:0;left:0;right:0;bottom:auto;
    width:auto;height:80px;
    background:linear-gradient(to bottom,var(--light-gray) 0%,transparent 100%);
  }
  .photo-strip-inner{grid-template-columns:repeat(2,1fr);}
  .testimonials-grid{grid-template-columns:1fr;}
}
@media(max-width:680px){
  nav.topbar{padding:0 20px;}
  .nav-links .nl{display:none;}
  .nav-btn{margin-left:auto;padding:8px 14px;font-size:13px;}
  .hero-content{padding:48px 24px;}
  .services,.philosophy,.notsure,.photo-strip,.testimonials,.closer{padding-left:20px;padding-right:20px;}
  .bs-text{padding:48px 24px;}
  .photo-strip-inner{grid-template-columns:1fr 1fr;gap:10px;}
}

