/* ================= HERO SECTION ================= */

.hero{
  position:relative;
  min-height:85vh;
  background:
    linear-gradient(
      rgba(47,64,83,.65),
      rgba(47,64,83,.55)
    ),
    url("/assets/hero-bg.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:120px 8%;
  overflow:hidden;
}

/* Overlay (extra depth) */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(47,64,83,.15) 0%,
    rgba(47,64,83,.35) 45%,
    rgba(47,64,83,.55) 100%
  );
  z-index:1;
}

/* Content */
.hero-content{
  position:relative;
  max-width:720px;
  color:#ffffff;
  z-index:2;
}

.hero-content h1{
  font-family:"Playfair Display", serif;
  font-size:clamp(40px,5vw,64px);
  font-weight:600;
  line-height:1.15;
  margin-bottom:22px;
}

.hero-content p{
  font-size:18px;
  line-height:1.7;
  max-width:600px;
  color:#e4ebf2;
}

/* Bottom fade */
.hero-fade{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:180px;
  background:linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.65) 55%,
    #ffffff 100%*
  );
  z-index:3;
  pointer-events:none;
}

/* Scroll indicator */
.scroll-indicator{
  position:absolute;
  bottom:42px;
  left:50%;
  transform:translateX(-50%);
  width:26px;
  height:44px;
  border:2px solid rgba(255,255,255,.75);
  border-radius:14px;
  display:flex;
  justify-content:center;
  z-index:4;
}

.scroll-indicator span{
  width:4px;
  height:8px;
  background:#ffffff;
  border-radius:2px;
  margin-top:8px;
  animation:scrollDot 1.6s infinite ease-in-out;
}

@keyframes scrollDot{
  0%{
    opacity:0;
    transform:translateY(0);
  }
  30%{
    opacity:1;
  }
  100%{
    opacity:0;
    transform:translateY(14px);
  }
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
  .hero{
    padding:100px 6%;
    min-height:75vh;
  }

  .hero-content h1{
    font-size:36px;
  }

  .hero-content p{
    font-size:16px;
  }

  .scroll-indicator{
    bottom:32px;
  }
}

/* ================= OUR STORY ================= */

.about-story{
  background:#ffffff;
  padding:120px 0;
}

.story-wrapper{
  max-width:1240px;
  margin:0 auto;
  padding:0 6%;
  display:grid;
  grid-template-columns:1.05fr .95fr; /* closer balance */
  gap:90px;
  align-items:flex-start;
}

/* Text column */
.story-text{
  max-width:520px; /* IMPORTANT: limits paragraph width */
}

.story-eyebrow{
  display:block;
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
  color:#f08a24;
  margin-bottom:14px;
}

.story-text h2{
  font-family:"Playfair Display", serif;
  font-size:48px;
  line-height:1.12;
  color:#2f4053;
  margin-bottom:26px;
}

.story-text p{
  font-size:14px;
  line-height:1.85;
  color:#7a8a9a; /* lighter, closer to image */
  margin-bottom:22px;
}

/* Image column */
.story-image{
  position:relative;
}

.story-image img{
  width:100%;
  height:520px;              /* fixed visual height */
  object-fit:cover;          /* key for same look */
  border-radius:18px;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

/* Badge */
.story-badge{
  position:absolute;
  bottom:-26px;
  left:-26px;
  background:#d9b63f;
  color:#fff;
  padding:26px 32px;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.story-badge strong{
  display:block;
  font-size:36px;
  font-weight:700;
  line-height:1;
  margin-bottom:6px;
}

.story-badge span{
  font-size:14px;
  line-height:1.4;
  opacity:.95;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){
  .story-wrapper{
    grid-template-columns:1fr;
    gap:70px;
  }

  .story-text{
    max-width:100%;
  }

  .story-image img{
    height:auto;
  }

  .story-badge{
    left:20px;
    bottom:-24px;
  }
}

@media(max-width:600px){
  .about-story{
    padding:90px 0;
  }

  .story-text h2{
    font-size:36px;
  }
}

/**philosophy***/

.about-philosophy {
  padding: 120px 0;
  background: #ffffff;
}

.about-philosophy .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TOP GRID ---------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #f28c28;
  margin-bottom: 14px;
}

.philosophy-text h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #243746;
  margin-bottom: 26px;
}

.philosophy-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #6b7a86;
  margin-bottom: 18px;
}

/* ---------- IMAGE MOSAIC ---------- */
.philosophy-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.media-box {
  border-radius: 14px;
  overflow: hidden;
  background: #f3f5f7;
}

.media-box.ghost {
  background: #ffffff;
}

.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- VALUES ---------- */
.philosophy-values {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: #ffffff;
  padding: 34px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.value-icon {
  font-size: 22px;
  color: #f28c28;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 20px;
  color: #243746;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7a86;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .philosophy-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .philosophy-text h2 {
    font-size: 32px;
  }

  .philosophy-values {
    grid-template-columns: 1fr;
  }
}



.about-team {
  padding: 120px 0;
  background: #ffffff;
}

.about-team .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.team-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.team-header h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #243746;
  margin: 16px 0;
}

.team-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7a86;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.team-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.09);
}

/* Image */
.team-photo {
  width: 100%;
  height: 280px;
  background: #f3f5f7;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info */
.team-info {
  padding: 28px;
}

.team-info h3 {
  font-size: 22px;
  color: #243746;
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #f28c28;
  margin-bottom: 6px;
}

.team-meta {
  display: block;
  font-size: 14px;
  color: #7b8a96;
  margin-bottom: 16px;
}

.team-link {
  font-size: 14px;
  font-weight: 600;
  color: #f28c28;
  text-decoration: none;
  transition: color .25s ease;
}

.team-link:hover {
  color: #d9741f;
}

/* Responsive */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-header h2 {
    font-size: 30px;
  }
}



.cta-section {
  background: #2f4356;
  padding: 120px 20px;
  color: #ffffff;
}

.cta-container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.cta-container h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 18px;
  line-height: 1.7;
  color: #d7dee5;
  max-width: 760px;
  margin: 0 auto 40px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #d4af37;
  color: #243746;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #c59d2d;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 16px 26px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

/* Divider */
.cta-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 40px 0;
}

/* Contact */
.cta-contact span {
  display: block;
  font-size: 15px;
  color: #c9d4de;
  margin-bottom: 16px;
}

.cta-contact-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-contact-items a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}



.cta-copyright {
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 36px;
  }

  .cta-container p {
    font-size: 16px;
  }
}
