
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 7vw 90px;
  background: url("../media/exprience/hero.jpg") center 42% / cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 9, 7, 0.86) 0%,
    rgba(7, 9, 8, 0.55) 48%,
    rgba(7, 9, 8, 0.18) 100%
  );
}
.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}
.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
}
.eyebrow.dark {
  color: var(--green);
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
  margin: 0;
}
h1 {
  font-size: clamp(4rem, 8vw, 7.7rem);
  letter-spacing: -0.04em;
}
h1 span {
  color: var(--gold);
}
.hero-copy {
  font-size: 1.12rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-card {
  position: absolute;
  z-index: 2;
  right: 6vw;
  bottom: 60px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  padding: 20px 24px;
  max-width: 300px;
}
.hero-card span,
.hero-card p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
}
.hero-card strong {
  display: block;
  font-size: 1.2rem;
  margin: 4px 0;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green);
  color: #fff;
  padding: 20px 6vw;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.section {
  padding: 110px 7vw;
}
.split,
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}
.image-frame img,
.why-image img {
  height: 610px;
  border-radius: var(--radius);
}
.section-copy h2,
.section-heading h2,
.why-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
}
.section-copy > p,
.why-copy > p {
  font-size: 1.08rem;
  color: var(--muted);
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.promise-grid span {
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e3ddd2;
  font-weight: 600;
}
.text-link {
  font-weight: 800;
  color: var(--green);
}
.services {
  background: #efe9df;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  min-height: 245px;
  border: 1px solid #e3ddd2;
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card span {
  color: var(--gold);
  font-weight: 800;
}
.service-card h3 {
  font-size: 1.55rem;
  margin: 28px 0 12px;
}
.service-card p {
  color: var(--muted);
}
.experiences {
  background: #10130f;
  color: #fff;
}
.section-heading.light p {
  color: var(--gold);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 310px;
  gap: 18px;
}
.experience-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.experience-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82));
}
.experience-card div {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
}
.experience-card p {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
}
.experience-card h3 {
  font-size: 1.65rem;
}
.experience-card.large {
  grid-row: span 2;
}
.experience-card.wide {
  grid-column: span 1;
}
.why {
  background: #fff;
}
.why-copy ul {
  padding: 0;
  list-style: none;
}
.why-copy li {
  padding: 18px 0;
  border-bottom: 1px solid #e9e5de;
  color: var(--muted);
}
.why-copy strong {
  color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}
.gallery-grid img {
  height: 100%;
  border-radius: 18px;
}
.gallery-grid img:first-child {
  grid-row: span 2;
}
.gallery-grid img:last-child {
  grid-column: span 2;
}
.cta {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 7vw;
  background: url("../media/exprience/heart.jpg") center/cover no-repeat;
  color: #fff;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 8, 0.66);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.cta h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}
.cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}
.cta .hero-actions {
  justify-content: center;
}

@media (max-width: 900px) {
    .hero {
    padding-top: 130px;
    align-items: flex-end;
  }
  .hero-card {
    display: none;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .split,
  .why {
    grid-template-columns: 1fr;
  }
  .image-frame img,
  .why-image img {
    height: 440px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }
  .experience-card.large {
    grid-row: span 1;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
  }
  .gallery-grid img:first-child {
    grid-row: span 1;
  }
  .gallery-grid img:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
    .section {
    padding: 78px 6vw;
  }
  .hero {
    min-height: 92vh;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .hero-copy {
    font-size: 1rem;
  }
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-rows: repeat(4, 330px);
  }
  .trust-strip {
    font-size: 0.78rem;
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .image-frame img,
  .why-image img {
    height: 380px;
  }
}
