/* =========================================================
   Luxury Unlocked — Corporate Travel City Pages
   Shared by:
   Gurgaon, Mumbai, Bangalore, Chennai, Delhi, Pune, Hyderabad
========================================================= */

.ct-city-page {
  --ct-accent: #C49A4C;
  --ct-accent-deep: #6E4E18;
  --ct-ink: #1C1813;
  --ct-text: #675f54;
  --ct-paper: #fbfaf7;
  --ct-paper-alt: #f4f0e8;
  --ct-line: rgba(28,24,19,.18);
  --ct-line-soft: rgba(28,24,19,.10);
  --ct-serif: "Cormorant Garamond", Georgia, serif;
  --ct-sans: "Jost", Arial, sans-serif;
  --ct-ease: cubic-bezier(.22,.61,.36,1);
  background: var(--ct-paper);
  color: var(--ct-ink);
  font-family: var(--ct-sans);
  font-weight: 300;
}

.ct-city-page *,
.ct-city-page *::before,
.ct-city-page *::after { box-sizing: border-box; }

.ct-city-page .ct-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.ct-city-page .ct-section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.ct-city-page h1,
.ct-city-page h2 {
  font-family: var(--ct-serif);
  font-weight: 400;
  letter-spacing: -.028em;
}

.ct-city-page h2 {
  margin: 16px 0 24px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.ct-city-page h3 {
  font-family: var(--ct-sans);
  font-weight: 500;
}

.ct-city-page p {
  font-weight: 300;
}

.ct-city-page a { color: inherit; }

.ct-city-page .ct-paper { background: var(--ct-paper-alt); }

.ct-city-page .ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ct-accent-deep);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.ct-city-page .ct-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .72;
}

.ct-city-page .ct-eyebrow-light { color: #f2dfb1; }
.ct-city-page .ct-eyebrow-gold { color: var(--ct-accent); }

.ct-city-page .ct-prose,
.ct-city-page .ct-lede {
  color: var(--ct-text);
  font-size: 15.5px;
  line-height: 1.82;
}

.ct-city-page .ct-prose p { margin: 0 0 18px; }
.ct-city-page .ct-prose p:last-child { margin-bottom: 0; }

.ct-city-page .ct-prose a {
  color: var(--ct-accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* HERO */
.ct-city-page .ct-hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ct-ink);
}

.ct-city-page .ct-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ctHeroScale 1.8s var(--ct-ease) both;
}

.ct-city-page .ct-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg,rgba(14,12,9,.18),rgba(14,12,9,.38) 44%,rgba(14,12,9,.84)),
    linear-gradient(90deg,rgba(14,12,9,.42),transparent 70%);
}

.ct-city-page .ct-hero-inner {
  padding-top: 158px;
  padding-bottom: clamp(62px,8vw,96px);
}

.ct-city-page .ct-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.70);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.ct-city-page .ct-crumb a { text-decoration: none; }
.ct-city-page .ct-crumb a:hover { color: #fff; }

.ct-city-page .ct-hero h1 {
  max-width: 20ch;
  margin: 13px 0 0;
  color: #fff;
  font-size: clamp(3.2rem,6.6vw,6.1rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.045em;
}

.ct-city-page .ct-hero h1 em {
  color: #f0dba9;
  font-weight: 300;
}

.ct-city-page .ct-hero-copy {
  max-width: 730px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(15px,1.45vw,18px);
  line-height: 1.75;
}

.ct-city-page .ct-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.ct-city-page .ct-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .10em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .45s var(--ct-ease), border-color .45s var(--ct-ease);
}

.ct-city-page .ct-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f7f2e8;
  transform: translateY(102%);
  transition: transform .5s var(--ct-ease);
}

.ct-city-page .ct-btn span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ct-city-page .ct-btn b {
  font-size: 15px;
  font-weight: 300;
  transition: transform .35s var(--ct-ease);
}

.ct-city-page .ct-btn-light {
  border-color: rgba(242,235,220,.5);
  color: #fff;
}

.ct-city-page .ct-btn-light:hover {
  color: var(--ct-ink);
  border-color: #f7f2e8;
}

.ct-city-page .ct-btn:hover::before { transform: translateY(0); }
.ct-city-page .ct-btn:hover b { transform: translateX(4px); }

.ct-city-page .ct-text-link-light {
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.45);
  text-underline-offset: 5px;
  text-transform: uppercase;
}

@keyframes ctHeroScale {
  from { transform: scale(1.055); opacity: .86; }
  to { transform: scale(1); opacity: 1; }
}

/* INTRO */
.ct-city-page .ct-intro-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(34px,5vw,70px);
  align-items: center;
}

.ct-city-page .ct-intro-grid h2 { max-width: 17ch; }

.ct-city-page .ct-image-card {
  margin: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #e8e2d8;
}

.ct-city-page .ct-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SERVICES */
.ct-city-page .ct-heading-limit { max-width: 23ch; }

.ct-city-page .ct-services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 42px;
  border-top: 1px solid var(--ct-line);
  border-left: 1px solid var(--ct-line);
}

.ct-city-page .ct-service {
  min-height: 235px;
  padding: 30px 28px;
  border-right: 1px solid var(--ct-line);
  border-bottom: 1px solid var(--ct-line);
  background: rgba(255,255,255,.28);
}

.ct-city-page .ct-service > span {
  color: var(--ct-accent-deep);
  font-family: var(--ct-serif);
  font-size: 1rem;
  font-style: italic;
}

.ct-city-page .ct-service h3 {
  margin: 11px 0 10px;
  font-size: 1.08rem;
}

.ct-city-page .ct-service p {
  margin: 0;
  color: var(--ct-text);
  font-size: 14.5px;
  line-height: 1.75;
}

/* SPLIT / WHY */
.ct-city-page .ct-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(38px,6vw,80px);
  align-items: center;
}

.ct-city-page .ct-split-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #e8e2d8;
}

.ct-city-page .ct-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ct-ease);
}

.ct-city-page .ct-split:hover .ct-split-image img { transform: scale(1.035); }

.ct-city-page .ct-split h2 { max-width: 16ch; }

.ct-city-page .ct-lede { max-width: 54ch; margin: 0 0 28px; }

.ct-city-page .ct-reasons > div {
  padding: 22px 0;
  border-top: 1px solid var(--ct-line);
}

.ct-city-page .ct-reasons > div:last-child {
  border-bottom: 1px solid var(--ct-line);
}

.ct-city-page .ct-reasons h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.ct-city-page .ct-reasons p {
  margin: 0;
  color: var(--ct-text);
  font-size: 14.5px;
  line-height: 1.75;
}

/* DARK PROCESS */
.ct-city-page .ct-dark {
  background: var(--ct-ink);
  color: #fff;
}

.ct-city-page .ct-dark h2 {
  max-width: 20ch;
  color: #fff;
}

.ct-city-page .ct-process {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 46px;
  border-top: 1px solid rgba(255,255,255,.20);
}

.ct-city-page .ct-process article {
  padding: 28px 26px 12px;
  border-right: 1px solid rgba(255,255,255,.13);
}

.ct-city-page .ct-process article:last-child { border-right: 0; }

.ct-city-page .ct-process article > span {
  color: var(--ct-accent);
  font-family: var(--ct-serif);
  font-size: 1.55rem;
}

.ct-city-page .ct-process h3 {
  margin: 12px 0 9px;
  color: #fff;
  font-size: 1.05rem;
}

.ct-city-page .ct-process p {
  margin: 0;
  color: rgba(242,235,220,.66);
  font-size: 14px;
  line-height: 1.75;
}

/* CITY CONTEXT */
.ct-city-page .ct-city-context {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  gap: clamp(36px,6vw,86px);
}

.ct-city-page .ct-city-context h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

/* USE CASES */
.ct-city-page .ct-use-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--ct-line);
  border-left: 1px solid var(--ct-line);
}

.ct-city-page .ct-use-grid article {
  padding: 27px;
  border-right: 1px solid var(--ct-line);
  border-bottom: 1px solid var(--ct-line);
}

.ct-city-page .ct-use-grid h3 {
  margin: 0 0 9px;
  font-family: var(--ct-serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
}

.ct-city-page .ct-use-grid p {
  margin: 0;
  color: var(--ct-text);
  font-size: 14.5px;
  line-height: 1.72;
}

/* FAQ */
.ct-city-page .ct-faq-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.ct-city-page .ct-faq-head .ct-eyebrow { justify-content: center; }
.ct-city-page .ct-faq { max-width: 840px; margin: 36px auto 0; }

.ct-city-page .ct-faq-item { border-top: 1px solid var(--ct-line); }
.ct-city-page .ct-faq-item:last-child { border-bottom: 1px solid var(--ct-line); }

.ct-city-page .ct-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--ct-ink);
  font-family: var(--ct-serif);
  font-size: clamp(1.15rem,1.7vw,1.4rem);
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.ct-city-page .ct-faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.ct-city-page .ct-faq-icon::before,
.ct-city-page .ct-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ct-accent-deep);
}

.ct-city-page .ct-faq-icon::before {
  width: 13px;
  height: 1.5px;
  transform: translate(-50%,-50%);
}

.ct-city-page .ct-faq-icon::after {
  width: 1.5px;
  height: 13px;
  transform: translate(-50%,-50%);
  transition: transform .35s var(--ct-ease);
}

.ct-city-page .ct-faq-item.open .ct-faq-icon::after {
  transform: translate(-50%,-50%) scaleY(0);
}

.ct-city-page .ct-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ct-ease);
}

.ct-city-page .ct-faq-a p {
  max-width: 70ch;
  margin: 0 0 22px;
  color: var(--ct-text);
  font-size: 15.5px;
  line-height: 1.78;
}

/* RETREAT */
.ct-city-page .ct-retreat-strip { background: var(--ct-paper-alt); }

.ct-city-page .ct-retreat-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid var(--ct-line);
  background: var(--ct-paper);
}

.ct-city-page .ct-retreat-grid > div { padding: clamp(30px,4vw,52px); }
.ct-city-page .ct-retreat-grid h2 { max-width: 15ch; }

.ct-city-page .ct-retreat-grid p {
  max-width: 52ch;
  color: var(--ct-text);
  font-size: 15.5px;
  line-height: 1.78;
}

.ct-city-page .ct-retreat-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.ct-city-page .ct-inline-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--ct-accent-deep);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

/* RELATED CITY LINKS */
.ct-city-page .ct-related-section { padding-bottom: clamp(72px,8vw,108px); }
.ct-city-page .ct-city-links {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 36px;
}

.ct-city-page .ct-city-link {
  position: relative;
  min-height: 145px;
  padding: 26px;
  border: 1px solid var(--ct-line);
  background: var(--ct-paper);
  text-decoration: none;
  transition: transform .35s var(--ct-ease), background .35s var(--ct-ease);
}

.ct-city-page .ct-city-link:hover {
  transform: translateY(-3px);
  background: var(--ct-paper-alt);
}

.ct-city-page .ct-city-link-label {
  display: block;
  margin-bottom: 14px;
  color: var(--ct-accent-deep);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.ct-city-page .ct-city-link strong {
  font-family: var(--ct-serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.ct-city-page .ct-city-link-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--ct-accent-deep);
  font-size: 18px;
}

.ct-city-page .ct-main-mice-link {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ct-line);
  color: var(--ct-text);
  font-size: 13px;
}

.ct-city-page .ct-main-mice-link a {
  color: var(--ct-accent-deep);
  font-weight: 400;
  text-decoration: none;
}

/* CTA */
.ct-city-page .ct-cta {
  background: var(--ct-ink);
  color: #fff;
  text-align: center;
  box-shadow: none;
}

.ct-city-page .ct-cta h2 {
  max-width: 18ch;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.5rem,5vw,4.5rem);
  font-weight: 300;
}

.ct-city-page .ct-cta > .ct-wrap > p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(242,235,220,.66);
  font-size: 16px;
  line-height: 1.75;
}

.ct-city-page .ct-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.ct-city-page .ct-btn-secondary { border-color: rgba(242,235,220,.27); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .ct-city-page .ct-services,
  .ct-city-page .ct-use-grid { grid-template-columns: repeat(2,1fr); }
  .ct-city-page .ct-process { grid-template-columns: repeat(2,1fr); }
  .ct-city-page .ct-process article { border-bottom: 1px solid rgba(255,255,255,.13); }
}

@media (max-width: 760px) {
  .ct-city-page .ct-wrap { width: min(100% - 32px,1180px); }
  .ct-city-page .ct-section { padding: 68px 0; }
  .ct-city-page .ct-hero { min-height: 72vh; }
  .ct-city-page .ct-hero-inner { padding-top: 132px; padding-bottom: 54px; }
  .ct-city-page .ct-hero h1 { max-width: 11ch; font-size: clamp(3rem,14vw,4.5rem); }
  .ct-city-page .ct-intro-grid,
  .ct-city-page .ct-split,
  .ct-city-page .ct-city-context,
  .ct-city-page .ct-retreat-grid { grid-template-columns: 1fr; }
  .ct-city-page .ct-image-card,
  .ct-city-page .ct-split-image { order: -1; }
  .ct-city-page .ct-split-image { aspect-ratio: 16/10; }
  .ct-city-page .ct-retreat-grid img { order: -1; min-height: 230px; aspect-ratio: 16/9; }
  .ct-city-page .ct-services,
  .ct-city-page .ct-use-grid,
  .ct-city-page .ct-process,
  .ct-city-page .ct-city-links { grid-template-columns: 1fr; }
  .ct-city-page .ct-process article { border-right: 0; }
  .ct-city-page .ct-hero-actions { align-items: flex-start; flex-direction: column; }
  .ct-city-page .ct-main-mice-link { flex-direction: column; gap: 8px; }
  .ct-city-page .ct-cta-actions { flex-direction: column; }
  .ct-city-page .ct-cta-actions .ct-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .ct-city-page *,
  .ct-city-page *::before,
  .ct-city-page *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}


/* =========================================================
   Gurgaon/source-inspired refinements
========================================================= */

.ct-city-page .ct-nowrap {
  white-space: nowrap;
}



.ct-city-page .ct-why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--ct-line);
  border-left: 1px solid var(--ct-line);
}

.ct-city-page .ct-why-grid article {
  padding: 30px 28px;
  border-right: 1px solid var(--ct-line);
  border-bottom: 1px solid var(--ct-line);
}

.ct-city-page .ct-why-grid h3 {
  margin: 0 0 10px;
  font-family: var(--ct-serif);
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1.15;
}

.ct-city-page .ct-why-grid p,
.ct-city-page .ct-feature-copy p,
.ct-city-page .ct-workflow-copy p {
  margin: 0 0 16px;
  color: var(--ct-text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
}

.ct-city-page .ct-workflow-copy {
  max-width: 860px;
  margin-top: 28px;
}

.ct-city-page .ct-dark .ct-workflow-copy p {
  color: rgba(242,235,220,.68);
}

.ct-city-page .ct-feature-copy,
.ct-city-page .ct-wide-prose {
  max-width: 860px;
}

.ct-city-page .ct-faq-section {
  padding-top: 82px;
}

@media (max-width: 980px) {
  .ct-city-page .ct-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ct-city-page .ct-nowrap {
    white-space: normal;
  }
}
