:root {
    --navy: #102b46;
    --blue: #1d5f8c;
    --teal: #2b8a87;
    --gold: #d9a441;
    --cream: #f7f3ea;
    --ink: #172333;
    --muted: #657383;
    --white: #fff;
    --border: #e5ebef;
    --shadow: 0 16px 45px rgba(16,43,70,.10)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial,Helvetica,sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: #fff
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px,92%);
    margin: auto
}

.topbar {
    background: var(--navy);
    color: #fff;
    font-size: 13px
}

.topbar .container {
    height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

header.main {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 3px 15px rgba(0,0,0,.04)
}

.nav {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--teal),var(--blue));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800
}

.brand-text {
    line-height: 1.2
}

.brand-text strong {
    display: block;
    color: var(--navy);
    font-size: 15px
}

.brand-text small {
    color: var(--muted)
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 700
}

.menu a:hover,.menu a.active {
    color: var(--teal)
}

.btn {
    display: inline-flex;
    padding: 12px 19px;
    border-radius: 999px;
    font-weight: 800;
    border: 0
}

.primary {
    background: var(--gold);
    color: #fff
}

.dark {
    background: var(--navy);
    color: #fff
}

.mobile {
    display: none;
    background: none;
    border: 0;
    font-size: 25px
}

.hero {
    background: radial-gradient(circle at 85% 20%,rgba(43,138,135,.32),transparent 30%),linear-gradient(135deg,#0d2842,#164b6c 55%,#1e7180);
    color: #fff;
    padding: 88px 0
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center
}

.kicker {
    display: inline-block;
    border: 1px solid rgba(255,255,255,.35);
    padding: 7px 13px;
    border-radius: 99px;
    font-size: 12px
}

.hero h1 {
    font-family: Georgia,serif;
    font-size: clamp(40px,5.5vw,70px);
    line-height: 1.04;
    margin: 22px 0 18px
}

.hero h1 span {
    color: #f0ca70
}

.hero p {
    font-size: 18px;
    color: #e7f0f5
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px
}

.date-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    padding: 30px;
    border-radius: 26px;
    backdrop-filter: blur(10px)
}

.date-card strong {
    font-size: 40px;
    line-height: 1.05;
    display: block;
    color: #f0ca70
}

.page-hero {
    background: var(--navy);
    color: #fff;
    padding: 65px 0
}

.page-hero h1 {
    font: 700 48px Georgia,serif;
    margin: 5px 0
}

.page-hero p {
    color: #d7e4eb;
    margin: 0
}

.section {
    padding: 80px 0
}

.alt {
    background: var(--cream)
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .15em;
    font-weight: 800;
    color: var(--teal);
    text-transform: uppercase
}

h2 {
    font: 700 42px Georgia,serif;
    color: var(--navy);
    line-height: 1.15;
    margin: 8px 0 16px
}

.lead {
    font-size: 18px;
    color: var(--muted)
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px
}

.card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(16,43,70,.05)
}

.card h3 {
    color: var(--navy);
    margin: 5px 0 10px
}

.person {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff
}

.person strong {
    display: block;
    color: var(--navy)
}

.person span {
    color: var(--muted);
    font-size: 14px
}

.quote {
    border-left: 4px solid var(--gold);
    padding-left: 22px;
    font: 24px Georgia,serif;
    color: var(--navy)
}

.table-wrap {
    overflow: auto
}

.fees {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 16px;
    overflow: hidden
}

.fees th,.fees td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    text-align: center
}

.fees th {
    background: var(--navy);
    color: #fff
}

.fees td:first-child {
    text-align: left;
    font-weight: 700
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.date-box {
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    padding: 25px
}

.date-box strong {
    display: block;
    color: #f0ca70;
    font-size: 27px
}

.contact-box {
    padding: 28px;
    background: var(--cream);
    border-radius: 20px
}

.form {
    display: grid;
    gap: 15px
}

.form input,.form textarea,.form select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d8e0e6;
    border-radius: 10px;
    font: inherit
}

.form textarea {
    min-height: 140px
}

footer {
    background: #0a2034;
    color: #d7e2e9;
    padding: 55px 0 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 35px
}

.footer-grid h3 {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 35px;
    padding-top: 18px;
    font-size: 12px
}

@media(max-width: 950px) {
    .menu {
        display:none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start
    }

    .menu.open {
        display: flex
    }

    .mobile {
        display: block
    }

    .hero-grid,.grid2 {
        grid-template-columns: 1fr
    }

    .grid3,.timeline,.footer-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 65px 0
    }

    h2 {
        font-size: 35px
    }
}

.lucknow-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

.place-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow)
}

.place-img {
    height: 180px;
    background: linear-gradient(135deg,#173b58,#b68b42);
    display: flex;
    align-items: end;
    padding: 20px;
    color: #fff;
    font: 700 25px Georgia,serif
}

.place-card .content {
    padding: 22px
}

.place-card h3 {
    margin: 0 0 7px;
    color: var(--navy)
}

.tag {
    display: inline-block;
    background: #edf6f5;
    color: var(--teal);
    padding: 4px 9px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px
}

.hotel-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden
}

.hotel-img {
    min-height: 170px;
    background: linear-gradient(145deg,#102b46,#2b8a87);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    text-align: center;
    padding: 15px
}

.hotel-content {
    padding: 22px
}

.hotel-content h3 {
    margin: 0;
    color: var(--navy)
}

.hotel-content p {
    margin: 7px 0;
    color: var(--muted);
    font-size: 14px
}

@media(max-width: 950px) {
    .lucknow-grid,.hotel-grid {
        grid-template-columns:1fr
    }

    .hotel-card {
        grid-template-columns: 1fr
    }

    .hotel-img {
        min-height: 130px
    }
}

/* Lucknow heritage conference banner */
.lucknow-hero {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(90deg,rgba(8,29,48,.93) 0%,rgba(8,29,48,.72) 46%,rgba(8,55,70,.48) 100%),url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    min-height: 590px
}

.lucknow-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 28%,rgba(218,171,75,.28),transparent 28%),linear-gradient(180deg,transparent 70%,rgba(8,29,48,.4));
    pointer-events: none
}

.hero-arch {
    display: none
}

.hero-arch:after {
    display: none
}

.hero-lucknow-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 82px 0 90px
}

.hero-lucknow-content .kicker {
    background: rgba(218,171,75,.16);
    border-color: rgba(240,210,135,.6);
    color: #f5d98e
}

.hero-lucknow-content h1 {
    max-width: 850px;
    font-size: clamp(39px,5.2vw,60px);
    margin: 22px 0 15px;
    color: #fff;
}

.hero-lucknow-content h1 span {
    display: block;
    color: #f1cd78
}

.hero-theme {
    font: 700 25px Georgia,serif;
    color: #fff;
    max-width: 750px
}

.hero-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-meta span {
    padding: 9px 14px;
    border-radius: 99px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 13px
}

.heritage-strip {
    background: var(--cream);
    padding: 18px 0;
    border-bottom: 1px solid var(--border)
}

.heritage-strip .container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--navy);
    font-weight: 800;
    font-size: 13px
}

.heritage-strip span:before {
    content: "✦";
    color: var(--gold);
    margin-right: 8px
}

@media(max-width: 950px) {
    .lucknow-hero {
        min-height:560px
    }

    .hero-arch {
        right: -140px;
        opacity: .25
    }

    .hero-lucknow-content {
        padding: 65px 0 75px
    }

    .hero-theme {
        font-size: 21px
    }
}
