/* ==========================================================================
   UK-INDIA PAGE — companion styles (loaded after styles.css)
   ========================================================================== */

/* ——— Hero: Mumbai skyline photo ——— */
.ukindia-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(7.5rem, 14vh, 10rem);
  padding-bottom: clamp(5rem, 10vh, 8rem);
  overflow: hidden;
  background: url('mumbai.jpg') center 60% / cover no-repeat;
}

.ukindia-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 13, 21, 0.85) 0%,
    rgba(8, 13, 21, 0.60) 55%,
    rgba(8, 13, 21, 0.92) 100%
  );
  pointer-events: none;
}

.ukindia-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 72ch;
}

.ukindia-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--ivory);
  margin-bottom: 1.8rem;
  animation: heroRise 1.2s var(--ease) both;
}

.ukindia-hero__lede {
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.85;
  color: var(--platinum);
  max-width: 54ch;
  margin-bottom: 2.8rem;
  animation: heroRise 1.2s 0.18s var(--ease) both;
}

.ukindia-hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--midnight));
  pointer-events: none;
  z-index: 1;
}

/* Force readable text against photo background */
.ukindia-hero .eyebrow { color: var(--gold) !important; text-shadow: none !important; }
.ukindia-hero .eyebrow__tick { background: var(--gold) !important; }
.ukindia-hero__title,
.ukindia-hero__lede { text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65); }

/* ——— About section ——— */
.section-ukindia-about { padding-block: var(--pad-y); }

.ukindia-about__copy {
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.88;
  color: var(--platinum);
  max-width: 66ch;
  margin-top: 1.8rem;
  margin-bottom: 3rem;
}

/* ——— UKBAA recognition callout ——— */
.ukindia-award {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.8rem 2.2rem;
  border: 1px solid var(--hairline-dark);
  border-left: 3px solid var(--bronze);
  background: rgba(168, 133, 75, 0.07);
  max-width: 56ch;
}

.ukindia-award__icon {
  font-size: 1.3rem;
  flex: none;
  line-height: 1.6;
  color: var(--gold);
}

.ukindia-award__text {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--platinum);
}

.ukindia-award__text strong {
  color: var(--gold);
  font-weight: 400;
}

/* ——— Corridor section ——— */
.section-ukindia-corridor {
  padding-block: var(--pad-y);
  border-top: 1px solid var(--hairline-dark);
}

.ukindia-corridor__copy {
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.88;
  color: var(--platinum);
  max-width: 66ch;
  margin-top: 1.8rem;
}

/* ——— Pull quote banner ——— */
.section-ukindia-quote {
  padding-block: clamp(5rem, 11vh, 9rem);
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  text-align: center;
}

.ukindia-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.28;
  color: var(--gold);
  max-width: 34ch;
  margin-inline: auto;
}

.ukindia-quote::before {
  content: '\201C';
  display: block;
  font-size: 0.5em;
  color: var(--bronze);
  letter-spacing: 0;
  margin-bottom: 0.4rem;
  font-style: normal;
  opacity: 0.75;
}

/* ——— CTA section ——— */
.section-ukindia-cta { padding-block: var(--pad-y); }

.ukindia-cta-inner {
  max-width: 52ch;
  margin-inline: auto;
  text-align: center;
}

.ukindia-cta__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12;
  color: var(--midnight);
  margin-bottom: 1rem;
}

.ukindia-cta__copy {
  color: var(--stone);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 2.6rem;
}

/* ——— Responsive ——— */
@media (max-width: 760px) {
  .ukindia-hero { background-position: center center; }
  .ukindia-hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .ukindia-award { padding: 1.4rem 1.6rem; gap: 1rem; }
  .ukindia-quote { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }
}
