.cor-page{
  --red:#C71111;
  --red-dark:#9f0d0d;
  --navy:#07152f;
  --navy-2:#0d2345;
  --text:#172033;
  --muted:#667085;
  --light:#f5f7fa;
  --white:#fff;
  --border:#e5e8ee;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:#fff;
  overflow:hidden;
}

.cor-page *{box-sizing:border-box}
.cor-page a{text-decoration:none}
.cor-container{width:min(1180px,92%);margin:auto}

/* =========================
   HERO
========================= */
.cor-hero{
  min-height:540px;
  display:flex;
  align-items:center;
  position:relative;
  background:
    linear-gradient(90deg,rgba(4,13,30,.94) 0%,rgba(4,13,30,.78) 48%,rgba(4,13,30,.30) 100%),
    url("/images/locations/coronation/hero.jpg") center/cover no-repeat;
}

.cor-hero-inner{
  width:min(1180px,92%);
  margin:auto;
  padding:90px 0;
}

.cor-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:1.8px;
  text-transform:uppercase;
  margin-bottom:22px;
}

.cor-eyebrow:before{
  content:"";
  width:34px;
  height:3px;
  background:var(--red);
  display:block;
}

.cor-hero h1{
  max-width:850px;
  color:#fff;
  font-size:clamp(42px,6vw,76px);
  line-height:1.02;
  letter-spacing:-2.5px;
  margin:0 0 24px;
  font-weight:800;
}

.cor-hero p{
  max-width:680px;
  color:rgba(255,255,255,.82);
  font-size:18px;
  line-height:1.75;
  margin:0 0 34px;
}

.cor-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.cor-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 26px;
  border-radius:4px;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.6px;
  transition:.3s ease;
}

.cor-btn-red{
  background:var(--red);
  color:#fff;
}

.cor-btn-red:hover{
  background:#fff;
  color:var(--red);
  transform:translateY(-2px);
}

.cor-btn-outline{
  border:1px solid rgba(255,255,255,.45);
  color:#fff;
}

.cor-btn-outline:hover{
  background:#fff;
  color:var(--navy);
}

/* =========================
   INTRO
========================= */
.cor-intro{
  padding:100px 0 85px;
  background:#fff;
}

.cor-intro-grid{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:70px;
  align-items:start;
}

.cor-label{
  color:var(--red);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:14px;
}

.cor-intro h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(34px,4vw,54px);
  line-height:1.08;
  letter-spacing:-1.5px;
}

.cor-intro-copy{
  font-size:17px;
  line-height:1.85;
  color:var(--muted);
}

.cor-intro-copy p{
  margin:0 0 20px;
}

.cor-intro-copy p:last-child{
  margin-bottom:0;
}

/* =========================
   BENEFITS
========================= */
.cor-benefits{
  background:var(--light);
  padding:100px 0;
}

.cor-section-head{
  max-width:760px;
  margin-bottom:55px;
}

.cor-section-head h2{
  margin:0 0 18px;
  color:var(--navy);
  font-size:clamp(34px,4vw,52px);
  line-height:1.08;
  letter-spacing:-1.5px;
}

.cor-section-head p{
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
  margin:0;
}

.cor-benefit-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.cor-benefit-card{
  position:relative;
  background:#fff;
  border:1px solid var(--border);
  padding:38px 38px 38px 105px;
  min-height:250px;
  transition:.3s ease;
}

.cor-benefit-card:hover{
  transform:translateY(-5px);
  border-color:rgba(199,17,17,.35);
  box-shadow:0 18px 45px rgba(7,21,47,.08);
}

.cor-number{
  position:absolute;
  left:32px;
  top:35px;
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  font-size:16px;
  font-weight:800;
}

.cor-benefit-card h3{
  margin:0 0 14px;
  color:var(--navy);
  font-size:22px;
  line-height:1.3;
}

.cor-benefit-card p{
  color:var(--muted);
  font-size:15.5px;
  line-height:1.75;
  margin:0;
}

/* =========================
   CONTACT STRIP
========================= */
.cor-contact-strip{
  background:var(--red);
  padding:35px 0;
}

.cor-contact-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.cor-contact-strip h3{
  color:#fff;
  margin:0;
  font-size:28px;
  line-height:1.2;
}

.cor-contact-strip p{
  color:rgba(255,255,255,.82);
  margin:7px 0 0;
  font-size:15px;
}

.cor-contact-strip .cor-btn{
  background:#fff;
  color:var(--red);
  flex-shrink:0;
}

.cor-contact-strip .cor-btn:hover{
  background:var(--navy);
  color:#fff;
}

/* =========================
   CONCLUSION / DARK SECTION
========================= */
.cor-conclusion{
  background:var(--navy);
  padding:100px 0;
  position:relative;
}

.cor-conclusion:before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  border-radius:50%;
  background:rgba(199,17,17,.10);
  right:-120px;
  top:-100px;
}

.cor-conclusion-grid{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:70px;
  align-items:center;
  position:relative;
  z-index:1;
}

.cor-conclusion-label{
  color:#fff;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:800;
  margin-bottom:18px;
}

.cor-conclusion-label span{
  color:#ff4c4c;
}

.cor-conclusion h2{
  color:#fff;
  margin:0;
  font-size:clamp(36px,4vw,56px);
  line-height:1.06;
  letter-spacing:-1.5px;
}

.cor-conclusion-copy{
  border-left:3px solid var(--red);
  padding-left:32px;
}

.cor-conclusion-copy p{
  color:rgba(255,255,255,.78);
  font-size:17px;
  line-height:1.85;
  margin:0 0 20px;
}

.cor-conclusion-copy p:last-child{
  margin-bottom:0;
}

.cor-expert{
  margin-top:28px;
  display:flex;
  align-items:center;
  gap:15px;
}

.cor-expert-line{
  width:42px;
  height:2px;
  background:var(--red);
}

.cor-expert strong{
  color:#fff;
  font-size:15px;
}

/* =========================
   FAQ
========================= */
.cor-faq{
  padding:100px 0;
  background:#fff;
}

.cor-faq-wrap{
  max-width:900px;
  margin:auto;
}

.cor-faq-title{
  text-align:center;
  margin-bottom:50px;
}

.cor-faq-title .cor-label{
  margin-bottom:12px;
}

.cor-faq-title h2{
  color:var(--navy);
  margin:0;
  font-size:clamp(34px,4vw,50px);
  line-height:1.1;
}

.cor-faq-item{
  border-bottom:1px solid var(--border);
}

.cor-faq-question{
  width:100%;
  border:0;
  background:none;
  padding:25px 45px 25px 0;
  text-align:left;
  color:var(--navy);
  font-family:inherit;
  font-size:18px;
  font-weight:750;
  cursor:pointer;
  position:relative;
}

.cor-faq-question:after{
  content:"+";
  position:absolute;
  right:5px;
  top:20px;
  color:var(--red);
  font-size:28px;
  font-weight:400;
  transition:.3s ease;
}

.cor-faq-item.active .cor-faq-question:after{
  transform:rotate(45deg);
}

.cor-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.cor-faq-answer-inner{
  padding:0 45px 25px 0;
  color:var(--muted);
  font-size:15.5px;
  line-height:1.8;
}

/* =========================
   PROJECTS
========================= */
.cor-projects{
  background:var(--light);
  padding:100px 0;
}

.cor-project-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:40px;
}

.cor-project-head h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(34px,4vw,52px);
  line-height:1.08;
  letter-spacing:-1.5px;
}

.cor-project-arrows{
  display:flex;
  gap:10px;
}

.cor-arrow{
  width:48px;
  height:48px;
  border:1px solid #ccd2dc;
  background:#fff;
  color:var(--navy);
  cursor:pointer;
  font-size:22px;
  transition:.3s ease;
}

.cor-arrow:hover{
  background:var(--red);
  color:#fff;
  border-color:var(--red);
}

.cor-carousel{
  position:relative;
  overflow:hidden;
}

.cor-track{
  display:flex;
  transition:transform .6s cubic-bezier(.22,.61,.36,1);
}

.cor-slide{
  min-width:100%;
  padding:0 3px;
}

.cor-slide img{
  width:100%;
  height:550px;
  object-fit:cover;
  display:block;
  border-radius:4px;
}

.cor-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:24px;
}

.cor-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  border:0;
  padding:0;
  background:#cbd1da;
  cursor:pointer;
  transition:.3s ease;
}

.cor-dot.active{
  width:28px;
  border-radius:10px;
  background:var(--red);
}

/* =========================
   FINAL CTA
========================= */
.cor-final{
  padding:90px 0;
  background:
    linear-gradient(135deg,rgba(7,21,47,.97),rgba(13,35,69,.96));
  text-align:center;
}

.cor-final h2{
  max-width:800px;
  margin:0 auto 28px;
  color:#fff;
  font-size:clamp(36px,5vw,62px);
  line-height:1.05;
  letter-spacing:-1.8px;
}

.cor-final .cor-btn{
  background:var(--red);
  color:#fff;
}

.cor-final .cor-btn:hover{
  background:#fff;
  color:var(--red);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:900px){

  .cor-intro-grid,
  .cor-conclusion-grid{
    grid-template-columns:1fr;
    gap:35px;
  }

  .cor-benefit-grid{
    grid-template-columns:1fr;
  }

  .cor-contact-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .cor-project-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .cor-slide img{
    height:460px;
  }
}

@media(max-width:600px){

  .cor-hero{
    min-height:520px;
  }

  .cor-hero-inner{
    padding:75px 0;
  }

  .cor-hero h1{
    font-size:42px;
    letter-spacing:-1.5px;
  }

  .cor-hero p{
    font-size:16px;
  }

  .cor-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .cor-btn{
    width:100%;
  }

  .cor-intro,
  .cor-benefits,
  .cor-conclusion,
  .cor-faq,
  .cor-projects{
    padding:70px 0;
  }

  .cor-benefit-card{
    padding:82px 25px 28px;
  }

  .cor-number{
    left:25px;
    top:25px;
  }

  .cor-contact-strip{
    padding:30px 0;
  }

  .cor-contact-strip h3{
    font-size:23px;
  }

  .cor-conclusion-copy{
    padding-left:22px;
  }

  .cor-slide img{
    height:320px;
  }

  .cor-arrow{
    width:43px;
    height:43px;
  }

  .cor-project-head h2{
    font-size:36px;
  }
}
