:root {
    --navy: #0b2345;
    --navy-2: #12355f;
    --royal: #205f94;
    --gold: #c98a2e;
    --gold-2: #f2bd66;
    --ink: #142033;
    --muted: #667387;
    --surface: #f7f4ee;
    --line: rgba(17, 24, 39, .1);
    --white: #ffffff;
    --shadow: 0 22px 55px rgba(11, 35, 69, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

p {
    color: var(--muted);
}

h1,
h2,
h3,
h4 {
    color: var(--navy);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
}

h1,
h2 {
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.15rem;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 1rem;
    z-index: 10000;
    padding: .75rem 1rem;
    background: var(--gold);
    color: var(--navy);
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.top-strip {
    color: rgba(255, 255, 255, .86);
    background: #06152a;
    font-size: 1.1rem;
}

.top-strip-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contact-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-cluster a:hover,
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-2);
}

.luxury-navbar {
    padding: .9rem 0;
    background: rgba(255, 255, 255, .97);
    border-bottom: 2px solid rgba(201, 138, 46, .55);
    box-shadow: 0 12px 30px rgba(11, 35, 69, .1);
    backdrop-filter: blur(16px);
    transition: padding .25s ease, background .25s ease;
}

.site-header.is-scrolled .luxury-navbar {
    padding: .55rem 0;
    background: rgba(255, 255, 255, .99);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--navy);
}

.navbar-brand:hover {
    color: var(--navy);
}

.site-logo {
    width: auto;
    max-width: 220px;
    max-height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}

.site-logo-mark {
    width: 330px;
    height: 94px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}

.footer-site-logo {
    max-height: 120px;
    width: auto;
    max-width: 100%;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 189, 102, .68);
    border-radius: 8px;
    background: linear-gradient(145deg, var(--gold-2), var(--gold));
    color: var(--navy);
    font-weight: 900;
}

.brand-copy {
    display: grid;
}

.brand-copy strong {
    font-size: 1.1rem;
    line-height: 1.1;
}

.brand-copy small {
    color: rgba(255, 255, 255, .68);
    font-size: 1.1rem;
}

.navbar-nav .nav-link {
    color: rgba(11, 35, 69, .82);
    font-weight: 700;
    padding: .75rem .8rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
    color: var(--gold-2);
}

.navbar-toggler {
    border-color: rgba(11, 35, 69, .28);
}

.navbar-toggler-icon {
    filter: none;
}

.luxury-dropdown {
    border: 1px solid rgba(201, 138, 46, .25);
    border-radius: 8px;
    padding: .6rem;
    background: rgba(11, 35, 69, .98);
    box-shadow: var(--shadow);
}

.luxury-dropdown .dropdown-item {
    color: rgba(255, 255, 255, .84);
    border-radius: 6px;
    padding: .65rem .85rem;
}

.luxury-dropdown .dropdown-item:hover,
.luxury-dropdown .dropdown-item:focus {
    color: var(--navy);
    background: var(--gold-2);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, .12);
}

.btn {
    border-radius: 8px;
    font-weight: 800;
    padding: .86rem 1.25rem;
    border-width: 1px;
}

.btn-gold {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(201, 138, 46, .25);
}

.btn-gold:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(201, 138, 46, .32);
}

.btn-navy {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.btn-navy:hover {
    color: var(--white);
    background: var(--royal);
}

.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .58);
}

.btn-outline-light:hover {
    color: var(--navy);
    background: var(--white);
}

.btn-outline-light.dark {
    color: var(--navy);
    border-color: rgba(11, 35, 69, .2);
}

.btn-outline-light.dark:hover {
    color: var(--white);
    background: var(--navy);
}

.quick-wa,
.floating-whatsapp {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #24c266;
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(36, 194, 102, .25);
}

.social-icon svg {
    width: 21px;
    height: 21px;
    display: block;
    fill: currentColor;
}

.social-icon svg rect,
.social-icon svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.social-icon svg circle:last-child {
    fill: currentColor;
    stroke: none;
}

.quick-wa .whatsapp-phone,
.floating-whatsapp .whatsapp-phone {
    fill: #24c266;
}

.social-links .whatsapp-phone {
    fill: var(--gold);
}

.social-links a:hover .whatsapp-phone {
    fill: var(--royal);
}

.quick-wa:hover,
.floating-whatsapp:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.hero-section {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 3.5rem 0 4.5rem;
    background-size: cover;
    background-position: center;
}

.home-hero {
    background-position: center 52%;
}

.home-hero .hero-copy .eyebrow,
.home-hero .hero-brand-message .eyebrow {
    font-size: 1.1rem;
    letter-spacing: .08em;
}

.hero-copy {
    max-width: 760px;
}

.hero-copy h1 {
    color: var(--white);
    margin: 1rem 0 1.25rem;
}

.hero-copy p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.18rem;
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--royal);
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 900;
}

.eyebrow.gold {
    color: var(--gold-2);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}

.trust-points span {
    color: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: .65rem .8rem;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
}

.glass-panel,
.form-shell,
.content-panel {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .93);
    box-shadow: var(--shadow);
}

.hero-form {
    padding: 1.4rem;
    backdrop-filter: blur(18px);
}

.hero-form h2 {
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.hero-brand-panel {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border: 1px solid rgba(242, 189, 102, .36);
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(11, 35, 69, .92), rgba(12, 45, 85, .78)),
        rgba(11, 35, 69, .84);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
    backdrop-filter: blur(16px);
}

.hero-brand-panel::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -85px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(242, 189, 102, .2);
    transform: rotate(45deg);
}

.hero-brand-logo {
    position: relative;
    z-index: 1;
    width: min(100%, 475px);
    max-height: 275px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
    background: transparent;
    filter:
        drop-shadow(0 0 2px rgba(255, 255, 255, .9))
        drop-shadow(0 14px 24px rgba(0, 0, 0, .36));
}

.hero-brand-message,
.strategy-moves,
.hero-registration-line {
    position: relative;
    z-index: 1;
}

.hero-brand-message {
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.hero-brand-message h2 {
    margin: .7rem 0;
    color: var(--white);
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
}

.hero-brand-message p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.strategy-moves {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.5rem;
}

.strategy-moves div {
    min-width: 0;
    padding-top: .85rem;
    border-top: 2px solid rgba(242, 189, 102, .48);
}

.strategy-moves span,
.strategy-moves strong,
.strategy-moves small {
    display: block;
}

.strategy-moves span {
    margin-bottom: .25rem;
    color: var(--gold-2);
    font-size: 1.1rem;
    font-weight: 900;
}

.strategy-moves strong {
    color: var(--white);
    font-size: 1.1rem;
}

.strategy-moves small {
    margin-top: .2rem;
    color: rgba(255, 255, 255, .56);
    font-size: 1.1rem;
    line-height: 1.35;
}

.hero-registration-line {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.35rem;
}

.hero-registration-line span {
    padding: .45rem .6rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .06);
    font-size: 1.1rem;
    font-weight: 800;
}

.booking-form .form-label,
.newsletter-form label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
}

.booking-form .form-control,
.booking-form .form-select,
.newsletter-form .form-control {
    min-height: 48px;
    border-radius: 8px;
    border-color: rgba(11, 35, 69, .12);
    color: var(--ink);
}

.booking-form textarea.form-control {
    min-height: 128px;
}

.booking-form .phone-number-field {
    display: grid;
    grid-template-columns: minmax(145px, .95fr) minmax(0, 1.2fr);
    gap: .65rem;
}

.booking-form .country-code-picker {
    min-width: 0;
}

.booking-form .phone-code-trigger {
    display: flex;
    align-items: center;
    gap: .55rem;
    width: 100%;
    padding: .55rem 2rem .55rem .7rem;
    background-position: right .65rem center;
    text-align: left;
}

.booking-form .phone-flag {
    flex: 0 0 auto;
    width: 27px;
    height: 18px;
    border: 1px solid rgba(11, 35, 69, .14);
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(11, 35, 69, .12);
}

.booking-form .phone-code-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.booking-form .phone-code-menu {
    width: min(230px, 78vw);
    max-height: 240px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(11, 35, 69, .12);
    box-shadow: 0 18px 45px rgba(11, 35, 69, .18);
}

.booking-form .phone-code-option {
    display: grid;
    grid-template-columns: 27px minmax(42px, 1fr) auto;
    align-items: center;
    gap: .7rem;
    padding: .6rem .8rem;
}

.booking-form .phone-code-option span {
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.booking-form .phone-code-option strong {
    color: var(--navy);
    font-size: 1.1rem;
}

.booking-form textarea.address-field {
    min-height: 48px;
    resize: vertical;
}

.booking-form-hero .form-control,
.booking-form-hero .form-select {
    min-height: 44px;
}

.form-check-label {
    color: var(--muted);
    font-size: 1.1rem;
}

.booking-consent-check {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .85rem .95rem;
    border: 1px solid rgba(201, 138, 46, .35);
    border-radius: 10px;
    background: #fff8e6;
}

.booking-consent-check .form-check-input {
    flex: 0 0 auto;
    float: none;
    margin-left: 0;
}

.booking-consent-label {
    min-width: 0;
    color: var(--navy);
    font-weight: 900;
    line-height: 1.4;
    overflow-wrap: normal;
}

.payment-notice {
    display: grid;
    gap: .2rem;
    border: 1px solid rgba(201, 138, 46, .35);
    border-radius: 8px;
    padding: 1rem;
    color: var(--navy);
    background: #fffaf0;
}

.payment-notice span {
    color: var(--muted);
    font-size: 1.1rem;
}

.payment-notice.is-free-consultation {
    border-color: rgba(36, 194, 102, .35);
    background: #f3fff7;
}

.hp-field {
    display: none;
}

.option-strip {
    margin-top: -3.5rem;
    position: relative;
    z-index: 5;
}

.reference-service-strip {
    position: relative;
    z-index: 6;
    margin-top: -5rem;
    padding-bottom: 3rem;
}

.reference-tile {
    overflow: hidden;
    border: 1px solid rgba(201, 138, 46, .22);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}

.reference-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 62px rgba(11, 35, 69, .18);
}

.reference-tile img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.reference-tile div {
    padding: 1.35rem;
}

.reference-tile h2 {
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    margin-bottom: .7rem;
}

.consultation-reference {
    padding-top: 3rem;
}

.homepage-story-image {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.homepage-story-image > img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
}

.story-image-caption {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 1rem 1.15rem;
    border-left: 3px solid var(--gold-2);
    color: var(--white);
    background: rgba(5, 17, 37, .9);
    backdrop-filter: blur(12px);
}

.story-image-caption strong,
.story-image-caption span {
    display: block;
}

.story-image-caption span {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
}

.homepage-story-copy {
    padding: 1rem 0 1rem 1rem;
}

.story-principles {
    display: grid;
    gap: .75rem;
    margin: 1.5rem 0;
}

.story-principles div {
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: center;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
}

.story-principles span {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.story-principles strong {
    color: var(--navy);
    font-size: 1.1rem;
}

.visa-options-panel,
.not-traditional-panel {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.visa-options-panel {
    padding: 2rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #092850);
}

.visa-options-panel h2,
.visa-options-panel p {
    color: var(--white);
}

.visa-options-panel p {
    color: rgba(255, 255, 255, .75);
}

.visa-options-panel .booking-form {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
}

.not-traditional-panel {
    padding: 2rem;
    background: var(--white);
}

.option-panel,
.cta-panel,
.split-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-radius: 8px;
    padding: 2rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    box-shadow: var(--shadow);
}

.reference-form-band {
    background: linear-gradient(135deg, #06101f, #0d3263);
}

.reference-form-band h2,
.reference-form-band p {
    color: var(--white);
}

.reference-form-band p {
    color: rgba(255, 255, 255, .74);
}

.bright-form {
    background: rgba(255, 255, 255, .97);
}

.light-list li {
    color: rgba(255, 255, 255, .78);
}

.apply-visa-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.apply-visa-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(11, 35, 69, .92), rgba(28, 86, 179, .72)),
        url('../images/global-travel.jpg') center/cover;
    box-shadow: var(--shadow);
}

.apply-visa-card span {
    display: inline-flex;
    margin-bottom: 3.75rem;
    color: var(--gold-2);
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 900;
}

.apply-visa-card h3,
.apply-visa-card p {
    color: var(--white);
}

.apply-visa-card p {
    color: rgba(255, 255, 255, .75);
}

.trust-reference {
    background: var(--surface);
}

.trust-logo-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.trust-logo-row div {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(201, 138, 46, .25);
    border-radius: 8px;
    padding: 1rem;
    color: var(--navy);
    background: var(--white);
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(11, 35, 69, .08);
}

.option-panel h2,
.option-panel p,
.cta-panel h2,
.cta-panel p,
.split-panel h2,
.split-panel p,
.navy-band h2,
.navy-band h3,
.navy-band p,
.navy-band .section-heading p {
    color: var(--white);
}

.option-panel p,
.cta-panel p,
.split-panel p,
.navy-band p {
    color: rgba(255, 255, 255, .74);
}

.section-padding {
    padding: 6rem 0;
}

.surface {
    background: var(--surface);
}

.navy-band {
    background: linear-gradient(135deg, var(--navy), #092850);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 3rem;
}

.section-heading h2 {
    margin: .65rem 0 1rem;
}

.achievement-section .section-heading .eyebrow,
.service-specialisations-section .section-heading .eyebrow {
    font-size: 1.1rem;
}

.image-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--navy);
}

.image-frame img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stats-grid div {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.2rem;
    background: var(--white);
}

.stats-grid.dark div {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
}

.stats-grid strong {
    display: block;
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
}

.stats-grid span {
    color: var(--muted);
    font-weight: 700;
    font-size: 1.1rem;
}

.stats-grid.dark span {
    color: rgba(255, 255, 255, .76);
}

.service-card,
.lux-card,
.testimonial-card,
.team-card,
.country-card,
.process-card,
.contact-card,
.stack-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 38px rgba(11, 35, 69, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover,
.lux-card:hover,
.testimonial-card:hover,
.country-card:hover,
.process-card:hover,
.stack-item:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 138, 46, .45);
    box-shadow: 0 24px 52px rgba(11, 35, 69, .13);
}

.service-card {
    overflow: hidden;
}

.service-card-image {
    height: 195px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card-body,
.lux-card,
.testimonial-card,
.team-card,
.contact-card,
.stack-item {
    padding: 1.5rem;
}

.service-icon,
.team-avatar {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-weight: 900;
    margin-bottom: 1rem;
}

.service-icon {
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 38px;
    padding: .5rem .7rem;
    justify-content: flex-start;
    margin-top: 0;
    line-height: 1.25;
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    text-align: left;
}

.text-link {
    display: inline-flex;
    color: var(--royal);
    font-weight: 900;
}

.text-link:hover {
    color: var(--gold);
}

.feature-grid,
.country-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-item {
    padding: 1.1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
}

.feature-grid.light .feature-item {
    color: var(--ink);
    border-color: var(--line);
    background: var(--white);
}

.country-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.country-card {
    padding: 1.5rem;
}

.country-card span,
.process-card span {
    display: inline-flex;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: .85rem;
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
    padding: 1.3rem;
    background: rgba(255, 255, 255, .96);
}

.navy-band .process-card h3 {
    color: var(--navy);
}

.navy-band .process-card p {
    color: var(--muted);
}

.page-hero {
    min-height: 350px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    max-width: 830px;
    padding: 3.25rem 0;
}

.page-hero h1 {
    color: var(--white);
    margin: .85rem 0 1rem;
    font-size: 3.35rem;
}

.page-hero p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.27rem;
    line-height: 1.55;
    max-width: 720px;
}

.page-hero .eyebrow {
    font-size: 1.1rem;
    letter-spacing: .08em;
}

.services-portfolio-section .section-heading .eyebrow {
    font-size: 1.1rem;
}

.services-portfolio-section .section-heading h2 {
    font-size: 2.35rem;
}

.services-portfolio-section .service-card-image {
    height: 175px;
}

.services-portfolio-section .service-card-body {
    padding: 1.2rem;
}

.services-portfolio-section .service-icon {
    font-size: 1.1rem;
}

.breadcrumb-wrap {
    padding: 1rem 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.breadcrumb a {
    color: var(--royal);
    font-weight: 800;
}

.breadcrumb .active {
    color: var(--muted);
}

.content-panel,
.form-shell {
    padding: 2rem;
}

.content-panel.narrow {
    max-width: 820px;
    margin: 0 auto;
}

.payment-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1.5rem;
    align-items: start;
}

.booking-summary {
    display: grid;
    gap: 0;
    margin: 1.5rem 0 0;
}

.booking-summary div {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
}

.booking-summary dt {
    color: var(--muted);
    font-weight: 700;
}

.booking-summary dd {
    margin: 0;
    color: var(--navy);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.payment-action-card {
    text-align: center;
}

.payment-lock,
.status-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-size: 1.6rem;
    font-weight: 900;
}

.booking-status-card.is-confirmed {
    border-color: rgba(36, 194, 102, .4);
}

.booking-status-card.is-confirmed .status-mark {
    color: var(--white);
    background: #24a85d;
}

.booking-status-card.is-pending .status-mark {
    color: var(--navy);
    background: var(--gold-2);
}

.booking-reference {
    overflow-wrap: anywhere;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.check-list li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: .85rem;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 138, 46, .18);
}

.stack-list {
    display: grid;
    gap: 1rem;
}

.team-card {
    display: flex;
    gap: 1.2rem;
}

.team-card h2 {
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    margin-bottom: .3rem;
}

.team-card span,
.testimonial-card span {
    display: block;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: .75rem;
}

.testimonial-card p {
    color: var(--ink);
}

.testimonial-card h3 {
    margin-top: 1.25rem;
}

.google-reviews-section {
    background:
        linear-gradient(180deg, rgba(245, 247, 251, .72), rgba(255, 255, 255, 1)),
        var(--white);
}

.google-reviews-shell {
    display: grid;
    grid-template-columns: .88fr 1.35fr;
    gap: 1.5rem;
    align-items: stretch;
}

.google-review-summary {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 2rem;
    color: var(--white);
    background: linear-gradient(145deg, var(--navy), #174f82);
    box-shadow: var(--shadow);
}

.google-review-summary::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -64px;
    width: 190px;
    height: 190px;
    border: 28px solid rgba(242, 189, 102, .12);
    border-radius: 50%;
}

.google-mark {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border-radius: 50%;
    background: var(--white);
    color: #4285f4;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

.google-review-summary h2,
.google-review-summary p {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.google-review-summary p {
    color: rgba(255, 255, 255, .78);
}

.google-rating-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    align-items: center;
    margin: 1.2rem 0 1.5rem;
}

.google-rating-row span,
.review-stars {
    color: #fbbc05;
    letter-spacing: 1px;
    font-weight: 900;
}

.google-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.google-review-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.35rem;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(11, 35, 69, .08);
}

.google-review-card p {
    color: var(--ink);
}

.google-review-card h3 {
    margin-bottom: .2rem;
}

.google-review-card span {
    color: var(--muted);
    font-weight: 800;
}

.home-address-panel {
    display: grid;
    grid-template-columns: .82fr 1.25fr;
    gap: 1.5rem;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.25rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

.home-address-copy {
    border-radius: 8px;
    padding: 1.75rem;
    background: var(--navy);
}

.home-address-copy h2,
.home-address-copy p {
    color: var(--white);
}

.address-detail-list {
    display: grid;
    gap: .75rem;
    padding: 0;
    margin: 1.35rem 0;
    list-style: none;
}

.address-detail-list li {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.address-detail-list strong {
    color: var(--gold-2);
}

.address-detail-list span,
.address-detail-list a {
    color: rgba(255, 255, 255, .84);
}

.address-detail-list a:hover {
    color: var(--gold-2);
}

.home-address-map {
    min-height: 460px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface);
}

.home-address-map iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
}

.premium-accordion .accordion-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 14px 34px rgba(11, 35, 69, .06);
}

.premium-accordion .accordion-button {
    font-weight: 900;
    color: var(--navy);
    background: var(--white);
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--navy);
    background: #fff8e4;
    box-shadow: none;
}

.premium-accordion .accordion-body {
    color: var(--muted);
}

.contact-card {
    margin-top: 1rem;
}

.contact-card a {
    display: block;
    color: var(--royal);
    font-weight: 900;
    margin-top: .25rem;
}

.map-panel {
    display: grid;
    grid-template-columns: .82fr 1.4fr;
    gap: 1.5rem;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.25rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

.map-copy {
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #0d3263);
}

.map-copy h2,
.map-copy p {
    color: var(--white);
}

.map-copy p {
    color: rgba(255, 255, 255, .78);
}

.map-frame {
    min-height: 430px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
}

.legal-strategy-section {
    position: relative;
    overflow: hidden;
}

.legal-strategy-panel {
    display: grid;
    grid-template-columns: .9fr 1.35fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 2rem;
}

.legal-strategy-copy {
    border-radius: 8px;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(11, 35, 69, .96), rgba(13, 50, 99, .94)),
        url("../images/office-consultation.jpg") center/cover;
    box-shadow: var(--shadow);
}

.legal-strategy-copy h2,
.legal-strategy-copy p {
    color: var(--white);
}

.legal-strategy-copy p {
    color: rgba(255, 255, 255, .78);
}

.legal-strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.legal-step-card {
    position: relative;
    min-height: 210px;
    padding: 1.45rem;
    overflow: hidden;
    border: 1px solid rgba(11, 35, 69, .08);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(11, 35, 69, .08);
}

.legal-step-card::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -48px;
    width: 124px;
    height: 124px;
    border: 22px solid rgba(201, 138, 46, .12);
    border-radius: 50%;
}

.legal-step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    border-radius: 8px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-weight: 900;
}

.legal-step-card h3,
.legal-step-card p {
    position: relative;
    z-index: 1;
}

.legal-step-card p {
    margin-bottom: 0;
}

.director-section {
    background: var(--white);
}

.director-section.surface {
    background: var(--surface);
}

.director-section {
    scroll-margin-top: 145px;
}

.director-layout {
    --bs-gutter-x: 4rem;
}

.director-media {
    align-self: flex-start;
}

.director-visual {
    position: relative;
    isolation: isolate;
    min-height: 570px;
    padding: 20px 18px 120px 0;
}

.director-visual::before {
    content: "";
    position: absolute;
    inset: 0 52px 74px 34px;
    z-index: -2;
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(11, 35, 69, .98), rgba(18, 53, 95, .92)),
        var(--navy);
    box-shadow: 0 30px 70px rgba(11, 35, 69, .2);
}

.director-visual::after {
    content: "";
    position: absolute;
    top: 0;
    right: 28px;
    width: 120px;
    height: 120px;
    z-index: -1;
    border: 1px solid rgba(201, 138, 46, .55);
    transform: rotate(12deg);
}

.director-accent {
    position: absolute;
    z-index: -1;
    display: block;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.director-accent-top {
    top: 34px;
    left: -12px;
    width: 7px;
    height: 142px;
}

.director-accent-bottom {
    right: 20px;
    bottom: 88px;
    width: 125px;
    height: 7px;
}

.director-frame {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 24px 55px rgba(7, 20, 38, .25);
}

.director-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(242, 189, 102, .45);
    border-radius: 10px;
    pointer-events: none;
}

.director-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-frame-primary {
    width: calc(100% - 34px);
    height: 355px;
}

.director-frame-primary img {
    object-position: center center;
}

.director-frame-secondary {
    position: absolute;
    right: 0;
    bottom: 24px;
    width: 55%;
    height: 255px;
    z-index: 3;
    border: 7px solid var(--surface);
    transform: rotate(2deg);
}

.director-frame-secondary img {
    object-position: 47% center;
}

.director-credential {
    position: absolute;
    left: 22px;
    bottom: 54px;
    z-index: 4;
    min-width: 210px;
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    color: var(--white);
    background: rgba(11, 35, 69, .96);
    box-shadow: 0 16px 35px rgba(11, 35, 69, .24);
}

.director-credential span,
.director-credential strong,
.director-credential small {
    display: block;
}

.director-credential span {
    color: var(--gold-2);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.director-credential strong {
    margin: .15rem 0;
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
}

.director-credential small {
    color: rgba(255, 255, 255, .74);
    font-weight: 700;
}

.director-copy h2 {
    max-width: 760px;
    margin: .55rem 0 1.25rem;
}

.director-copy p {
    margin-bottom: 1.15rem;
    line-height: 1.75;
}

.director-copy .button-row {
    margin-top: 1.5rem;
}

@media (min-width: 992px) {
    .director-section.surface .director-visual {
        min-height: 730px;
        padding-bottom: 150px;
    }

    .director-section.surface .director-visual::before {
        bottom: 96px;
    }

    .director-section.surface .director-frame-primary {
        height: 450px;
    }

    .director-section.surface .director-frame-secondary {
        height: 315px;
        bottom: 26px;
    }

    .director-section.surface .director-credential {
        bottom: 66px;
    }

    .director-section.surface .director-copy h2 {
        font-size: 2.3rem;
        line-height: 1.08;
        margin-bottom: .85rem;
    }

    .director-section.surface .director-copy p {
        margin-bottom: .72rem;
        font-size: 1.1rem;
        line-height: 1.52;
    }

    .director-section.surface .director-copy .button-row {
        margin-top: 1rem;
    }
}

@media (max-width: 1199.98px) {
    .director-visual {
        min-height: 520px;
    }

    .director-frame-primary {
        height: 310px;
    }

    .director-frame-secondary {
        height: 225px;
    }

    .director-credential {
        left: 12px;
        min-width: 190px;
    }

    .director-section.surface .director-visual {
        min-height: 640px;
    }

    .director-section.surface .director-frame-primary {
        height: 385px;
    }

    .director-section.surface .director-frame-secondary {
        height: 270px;
    }
}

@media (max-width: 991.98px) {
    .director-visual {
        max-width: 680px;
        min-height: 585px;
        margin: 0 auto;
    }

    .director-frame-primary {
        height: 390px;
    }

    .director-frame-secondary {
        width: 48%;
        height: 265px;
    }

    .director-section.surface .director-visual {
        min-height: 585px;
        padding: 20px 18px 120px 0;
    }

    .director-section.surface .director-frame-primary {
        height: 390px;
    }

    .director-section.surface .director-frame-secondary {
        height: 265px;
        bottom: 24px;
    }

    .director-section.surface .director-credential {
        bottom: 54px;
    }

}

@media (max-width: 575.98px) {
    .booking-form .phone-number-field {
        grid-template-columns: minmax(130px, .9fr) minmax(0, 1.1fr);
        gap: .5rem;
    }

    .booking-form .phone-code-trigger {
        gap: .4rem;
        padding-left: .55rem;
    }

    .booking-form .phone-flag {
        width: 24px;
        height: 16px;
    }

    .booking-form .phone-code-text {
        font-size: 1.1rem;
    }

    .director-visual {
        min-height: 435px;
        padding: 12px 10px 92px 0;
    }

    .director-visual::before {
        inset: 0 30px 55px 18px;
    }

    .director-visual::after {
        right: 12px;
        width: 76px;
        height: 76px;
    }

    .director-frame-primary {
        width: calc(100% - 18px);
        height: 235px;
    }

    .director-frame-secondary {
        right: 0;
        bottom: 18px;
        width: 49%;
        height: 175px;
        border-width: 5px;
    }

    .director-credential {
        left: 10px;
        bottom: 34px;
        min-width: 168px;
        padding: .7rem .8rem;
    }

    .director-credential strong {
        font-size: 1.1rem;
    }

    .director-accent-top {
        top: 24px;
        height: 100px;
    }

    .director-accent-bottom {
        right: 8px;
        bottom: 64px;
        width: 82px;
    }
}

.director-visual-single {
    min-height: 525px;
    padding: 20px 18px 78px 0;
}

.director-visual-single::before {
    inset: 0 38px 48px 34px;
}

.director-visual-single .director-frame-primary {
    width: calc(100% - 24px);
    height: 440px;
}

.director-visual-single .director-credential {
    left: 22px;
    bottom: 18px;
}

.director-visual-single .director-accent-bottom {
    bottom: 56px;
}

@media (min-width: 992px) {
    .director-visual-single {
        min-height: 350px;
        padding: 14px 14px 50px 0;
    }

    .director-visual-single::before {
        inset: 0 30px 28px 28px;
    }

    .director-visual-single .director-frame-primary {
        width: calc(100% - 22px);
        height: 260px;
    }

    .director-visual-single .director-credential {
        left: 20px;
        bottom: 2px;
    }

    .director-visual-single .director-accent-bottom {
        bottom: 32px;
    }
}

@media (max-width: 1199.98px) {
    .director-visual-single {
        min-height: 350px;
    }

    .director-visual-single .director-frame-primary {
        height: 270px;
    }
}

@media (max-width: 991.98px) {
    .director-visual-single {
        min-height: 535px;
    }

    .director-visual-single .director-frame-primary {
        height: 450px;
    }
}

@media (max-width: 575.98px) {
    .director-visual-single {
        min-height: 365px;
        padding: 12px 10px 64px 0;
    }

    .director-visual-single::before {
        inset: 0 24px 38px 18px;
    }

    .director-visual-single .director-frame-primary {
        width: calc(100% - 14px);
        height: 300px;
    }

    .director-visual-single .director-credential {
        left: 10px;
        bottom: 12px;
    }

    .director-visual-single .director-accent-bottom {
        bottom: 42px;
    }
}

.achievement-carousel {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy), #0d3263);
    box-shadow: var(--shadow);
}

.achievement-slide {
    min-height: 360px;
    display: grid;
    grid-template-columns: 340px 1fr;
    align-items: center;
    gap: 2rem;
    padding: 3rem 5rem;
}

.achievement-slide img {
    width: 100%;
    max-height: 230px;
    object-fit: contain;
    border-radius: 8px;
    padding: 1.25rem;
    background: var(--white);
}

.achievement-slide h3 {
    color: var(--white);
    font-size: 1.8rem;
}

.achievement-slide p {
    color: rgba(255, 255, 255, .76);
}

.achievement-carousel.registration-only {
    max-width: 860px;
}

.registration-certificate-mark {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 12px solid var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(201, 138, 46, .22), transparent 52%),
        linear-gradient(145deg, #f7efc7, #e5d792);
    box-shadow: inset 0 0 0 1px rgba(11, 35, 69, .12);
}

.registration-certificate-mark span,
.registration-certificate-mark strong,
.registration-certificate-mark small {
    display: block;
}

.registration-certificate-mark span {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 800;
}

.registration-certificate-mark strong {
    margin: .5rem 0;
    color: var(--navy);
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 2.7rem;
    line-height: 1;
}

.registration-certificate-mark small {
    color: var(--muted);
    font-weight: 700;
}

.achievement-carousel .carousel-indicators {
    margin-bottom: .5rem;
}

.achievement-carousel .carousel-control-prev,
.achievement-carousel .carousel-control-next {
    width: 4rem;
}

.interconnected-section {
    background: linear-gradient(135deg, #06101f, #0d3263);
}

.interconnected-panel {
    display: grid;
    grid-template-columns: 1.4fr .85fr;
    gap: 2rem;
    align-items: stretch;
}

.interconnected-director {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(242, 189, 102, .28);
    border-radius: 8px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
}

.interconnected-director img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(242, 189, 102, .36);
}

.interconnected-director h2,
.interconnected-director p,
.related-pathways h3 {
    color: var(--white);
}

.interconnected-director p {
    color: rgba(255, 255, 255, .76);
}

.related-pathways {
    border: 1px solid rgba(242, 189, 102, .22);
    border-radius: 8px;
    padding: 1.5rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

.related-pathways h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.related-pathways a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-weight: 900;
}

.related-pathways a:last-child {
    border-bottom: 0;
}

.related-pathways a:hover {
    color: var(--royal);
}

.related-pathways span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    border-radius: 8px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-size: 1.1rem;
    font-weight: 900;
}

.cta-band {
    padding: 5rem 0;
    background: var(--white);
}

.cta-panel {
    padding: 2.3rem;
}

.site-footer {
    color: rgba(255, 255, 255, .78);
    background: #06152a;
    padding: 5rem 0 1.25rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr .75fr .9fr .82fr 1.2fr;
    gap: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
    width: fit-content;
    padding: .65rem .9rem;
    border: 1px solid rgba(201, 138, 46, .28);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
}

.footer-brand p {
    color: rgba(255, 255, 255, .7);
}

.site-footer h2 {
    color: var(--white);
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: .7rem;
}

.social-links {
    display: flex;
    gap: .6rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--navy);
    background: var(--gold);
    font-size: 1.1rem;
    font-weight: 900;
}

.social-links a:hover {
    color: var(--white);
    background: var(--royal);
    transform: translateY(-2px);
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-form label {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 1.1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .62);
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 5.1rem;
    z-index: 1000;
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--navy);
    background: var(--gold-2);
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.back-to-top span {
    font-size: 1.5rem;
    line-height: 1;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

[data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    h1 {
        font-size: 3.4rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .top-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: .65rem 0;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-brand-panel {
        max-width: 680px;
    }

    .homepage-story-image,
    .homepage-story-image > img {
        min-height: 500px;
    }

    .homepage-story-copy {
        padding-left: 0;
    }

    .option-strip {
        margin-top: 0;
        padding-top: 1rem;
        background: var(--surface);
    }

    .reference-service-strip {
        margin-top: 0;
        padding: 3rem 0 1rem;
        background: var(--surface);
    }

    .option-panel,
    .cta-panel,
    .split-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .country-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .apply-visa-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-logo-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-hero {
        padding: 3.5rem 0;
    }

    .page-hero-content {
        padding: 0;
    }

    .achievement-slide {
        grid-template-columns: 1fr;
        padding: 2.5rem 4rem;
        text-align: center;
    }

    .achievement-slide img {
        max-height: 190px;
        margin: 0 auto;
    }

    .interconnected-panel,
    .interconnected-director,
    .google-reviews-shell,
    .home-address-panel,
    .legal-strategy-panel,
    .payment-layout,
    .map-panel {
        grid-template-columns: 1fr;
    }

    .interconnected-director img {
        max-width: 240px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.55rem;
    }

    .page-hero h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 2rem;
    }

    .director-section .director-layout {
        --bs-gutter-y: 2rem;
    }

    .director-section .director-media,
    .director-section .director-copy {
        position: relative;
        width: 100%;
        min-width: 0;
    }

    .director-section .director-media {
        z-index: 1;
    }

    .director-section .director-copy {
        z-index: 5;
        padding-top: .35rem;
        background: inherit;
    }

    .director-section .director-copy .eyebrow {
        position: static;
        display: block;
        margin-bottom: .55rem;
    }

    .director-section .director-copy h2 {
        position: static;
        max-width: 100%;
        margin: 0 0 1rem;
        font-size: clamp(2rem, 9vw, 2.65rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .director-section .director-copy p {
        font-size: 1.1rem;
        line-height: 1.65;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .hero-copy p,
    .page-hero p {
        font-size: 1.1rem;
    }

    .feature-grid,
    .country-grid,
    .apply-visa-grid,
    .google-review-grid,
    .legal-strategy-grid,
    .process-grid,
    .stats-grid,
    .trust-logo-row,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .content-panel,
    .form-shell,
    .option-panel,
    .cta-panel,
    .split-panel {
        padding: 1.35rem;
    }

    .team-card {
        flex-direction: column;
    }

    .achievement-slide {
        min-height: auto;
        padding: 2rem 3.4rem 3rem;
    }

    .achievement-slide h3 {
        font-size: 1.35rem;
    }

    .interconnected-director,
    .related-pathways,
    .google-review-summary,
    .home-address-copy,
    .map-copy {
        padding: 1.2rem;
    }

    .address-detail-list li {
        grid-template-columns: 1fr;
        gap: .25rem;
    }

    .booking-summary div {
        grid-template-columns: 1fr;
        gap: .2rem;
    }

    .home-address-map,
    .home-address-map iframe,
    .map-frame,
    .map-frame iframe {
        min-height: 320px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .homepage-story-image,
    .homepage-story-image > img {
        min-height: 420px;
    }
}

@media (max-width: 575.98px) {
    .floating-whatsapp {
        right: .65rem;
        bottom: 1rem;
        width: 40px;
        height: 40px;
    }

    .back-to-top {
        display: none;
    }

    .top-strip-inner {
        min-height: 42px;
        align-items: center;
        padding: 0;
    }

    .top-strip-inner > span {
        display: none;
    }

    .contact-cluster {
        gap: .75rem;
        font-size: 1.1rem;
    }

    .site-logo {
        max-width: 170px;
        max-height: 58px;
    }

    .site-logo-mark {
        width: 225px;
        height: 68px;
    }

    .brand-copy strong {
        font-size: 1.1rem;
    }

    .brand-copy small {
        font-size: 1.1rem;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .button-row,
    .trust-points {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .btn {
        width: 100%;
    }

    .hero-section {
        padding: 3rem 0 3.5rem;
    }

    .hero-copy h1 {
        font-size: 2.35rem;
    }

    .hero-copy p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .hero-copy .button-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .65rem;
        margin-top: 1.4rem;
    }

    .hero-copy .button-row .btn {
        width: auto;
        padding: .78rem .55rem;
        font-size: 1.1rem;
    }

    .hero-copy .trust-points {
        display: none;
    }

    .hero-brand-panel {
        display: grid;
        grid-template-columns: 185px 1fr;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
        padding: .85rem;
    }

    .hero-brand-logo {
        width: 205px;
        max-height: 132px;
        margin: 0;
    }

    .hero-brand-message,
    .strategy-moves {
        display: none;
    }

    .hero-registration-line {
        display: grid;
        gap: .35rem;
        margin: 0;
    }

    .hero-registration-line span {
        padding: .38rem .5rem;
        font-size: 1.1rem;
    }

    .reference-service-strip {
        padding-top: 1rem;
    }

    .story-principles div {
        grid-template-columns: 1fr;
        gap: .25rem;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .row > * {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Brar Immigration luxury theme refresh */
.luxury-theme {
    --navy: #071b33;
    --navy-2: #0d2a4c;
    --royal: #1a5278;
    --gold: #b9853e;
    --gold-2: #e6c27a;
    --ink: #172235;
    --muted: #697386;
    --surface: #f5f1e9;
    --line: rgba(7, 27, 51, .11);
    --white: #fffefb;
    --shadow: 0 26px 70px rgba(7, 27, 51, .13);
    --shadow-soft: 0 14px 42px rgba(7, 27, 51, .09);
    --ivory: #fbf8f2;
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    background:
        radial-gradient(circle at 8% 20%, rgba(230, 194, 122, .08), transparent 28rem),
        var(--ivory);
}

.luxury-theme h1,
.luxury-theme h2 {
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -.025em;
}

.luxury-theme h3,
.luxury-theme h4 {
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    letter-spacing: -.01em;
}

.luxury-theme .top-strip {
    color: rgba(255, 255, 255, .82);
    background: linear-gradient(90deg, #041326, #0c294a 58%, #071b33);
    border-bottom: 1px solid rgba(230, 194, 122, .14);
    font-size: 1.1rem;
    letter-spacing: .025em;
}

.luxury-theme .luxury-navbar {
    padding: .75rem 0;
    border-bottom: 1px solid rgba(185, 133, 62, .24);
    background: rgba(255, 254, 251, .9);
    box-shadow: 0 10px 35px rgba(7, 27, 51, .07);
    backdrop-filter: blur(22px) saturate(130%);
}

.luxury-theme .site-header.is-scrolled .luxury-navbar {
    padding: .45rem 0;
    background: rgba(255, 254, 251, .96);
    box-shadow: 0 14px 38px rgba(7, 27, 51, .1);
}

.luxury-theme .site-logo-mark {
    filter: drop-shadow(0 10px 22px rgba(7, 27, 51, .13));
}

.luxury-theme .navbar-nav .nav-link {
    position: relative;
    color: rgba(7, 27, 51, .78);
    font-size: 1.1rem;
    font-weight: 700;
}

.luxury-theme .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    right: .8rem;
    bottom: .4rem;
    left: .8rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.luxury-theme .navbar-nav .nav-link:hover,
.luxury-theme .navbar-nav .nav-link.active,
.luxury-theme .navbar-nav .show > .nav-link {
    color: var(--navy);
}

.luxury-theme .navbar-nav .nav-link:hover::after,
.luxury-theme .navbar-nav .nav-link.active::after,
.luxury-theme .navbar-nav .show > .nav-link::after {
    transform: scaleX(1);
}

.luxury-theme .luxury-dropdown {
    border: 1px solid rgba(230, 194, 122, .25);
    border-radius: 16px;
    padding: .75rem;
    background: rgba(7, 27, 51, .98);
    box-shadow: 0 28px 75px rgba(4, 19, 38, .3);
}

.luxury-theme .luxury-dropdown .dropdown-item {
    border-radius: 10px;
    font-size: 1.1rem;
}

.luxury-theme .btn {
    border-radius: 12px;
    padding: .9rem 1.35rem;
    font-size: 1.1rem;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.luxury-theme .btn-gold {
    color: #071b33;
    border-color: rgba(185, 133, 62, .48);
    background: linear-gradient(135deg, #f0d89e 0%, #d7a957 52%, #b77c2f 100%);
    box-shadow: 0 14px 30px rgba(185, 133, 62, .23), inset 0 1px 0 rgba(255, 255, 255, .52);
}

.luxury-theme .btn-gold:hover {
    color: #071b33;
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(185, 133, 62, .3), inset 0 1px 0 rgba(255, 255, 255, .58);
}

.luxury-theme .btn-navy {
    border-color: rgba(230, 194, 122, .22);
    background: linear-gradient(145deg, #071b33, #10385f);
    box-shadow: 0 14px 32px rgba(7, 27, 51, .2);
}

.luxury-theme .btn-navy:hover {
    background: linear-gradient(145deg, #0d2a4c, #1a5278);
    transform: translateY(-3px);
}

.luxury-theme .eyebrow {
    color: #986823;
    font-size: 1.1rem;
    font-weight: 800;}

.luxury-theme .eyebrow.gold {
    color: var(--gold-2);
}

.luxury-theme .section-padding {
    padding: 6.5rem 0;
}

.luxury-theme .surface {
    background: linear-gradient(180deg, rgba(245, 241, 233, .96), rgba(251, 248, 242, .98));
}

.luxury-theme .section-heading {
    max-width: 820px;
    margin-bottom: 3.75rem;
}

.luxury-theme .section-heading h2 {
    margin: .7rem 0 1rem;
    font-size: clamp(2.65rem, 4vw, 4rem);
    line-height: .98;
}

.luxury-theme .section-heading p {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.1rem;
}

.luxury-theme .hero-section {
    position: relative;
    isolation: isolate;
    min-height: 720px;
    overflow: hidden;
    padding: 5rem 0;
    box-shadow: inset 0 -1px 0 rgba(230, 194, 122, .2);
}

.luxury-theme .hero-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 19, 38, .82) 0%, rgba(7, 27, 51, .58) 46%, rgba(7, 27, 51, .28) 100%),
        linear-gradient(180deg, rgba(4, 19, 38, .12), rgba(4, 19, 38, .44));
}

.luxury-theme .hero-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -14rem;
    bottom: -19rem;
    width: 45rem;
    height: 45rem;
    border: 1px solid rgba(230, 194, 122, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(230, 194, 122, .035), 0 0 0 10rem rgba(230, 194, 122, .025);
}

.luxury-theme .hero-copy h1 {
    max-width: 700px;
    margin: .85rem 0 1.25rem;
    color: #fffdf8;
    font-size: clamp(4rem, 6vw, 4rem);
    line-height: .88;
    text-wrap: balance;
}

.luxury-theme .hero-copy p {
    max-width: 640px;
    color: rgba(255, 255, 255, .74);
    font-size: 1.1rem;
    line-height: 1.75;
}

.luxury-theme .hero-copy .button-row {
    margin-top: 2rem;
}

.luxury-theme .hero-brand-panel {
    padding: 2rem;
    border: 1px solid rgba(230, 194, 122, .24);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(7, 27, 51, .92), rgba(13, 42, 76, .78));
    box-shadow: 0 38px 90px rgba(2, 12, 25, .34), inset 0 1px 0 rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
}

.luxury-theme .hero-brand-message h2 {
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.05;
}

.luxury-theme .reference-service-strip {
    position: relative;
    z-index: 4;
    margin-top: -3.5rem;
    padding-bottom: 1rem;
}

.luxury-theme .reference-tile {
    overflow: hidden;
    border: 1px solid rgba(185, 133, 62, .18);
    border-radius: 20px;
    background: rgba(255, 254, 251, .96);
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.luxury-theme .reference-tile:hover {
    border-color: rgba(185, 133, 62, .5);
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(7, 27, 51, .15);
}

.luxury-theme .reference-tile img {
    height: 190px;
}

.luxury-theme .reference-tile div {
    padding: 1.5rem;
}

.luxury-theme .text-link {
    color: #986823;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.luxury-theme .homepage-story {
    background: radial-gradient(circle at 88% 10%, rgba(230, 194, 122, .12), transparent 26rem), var(--ivory);
}

.luxury-theme .homepage-story-image {
    border-radius: 28px;
    box-shadow: 0 35px 85px rgba(7, 27, 51, .16);
}

.luxury-theme .story-image-caption {
    border: 1px solid rgba(230, 194, 122, .22);
    border-left: 3px solid var(--gold-2);
    border-radius: 14px;
    background: rgba(7, 27, 51, .88);
    backdrop-filter: blur(14px);
}

.luxury-theme .homepage-story-copy h2,
.luxury-theme .director-copy h2 {
    font-size: clamp(2.85rem, 4.2vw, 4rem);
    line-height: .98;
}

.luxury-theme .story-principles div {
    border-color: rgba(185, 133, 62, .16);
    border-radius: 16px;
    background: rgba(255, 254, 251, .78);
    box-shadow: 0 10px 28px rgba(7, 27, 51, .055);
}

.luxury-theme .director-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 8% 20%, rgba(230, 194, 122, .12), transparent 25rem), linear-gradient(180deg, #fffefb, #faf6ee);
}

.luxury-theme .director-section::after {
    content: "BRAR";
    position: absolute;
    right: -1.5rem;
    bottom: -5rem;
    color: rgba(7, 27, 51, .025);
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.luxury-theme .director-frame-primary,
.luxury-theme .director-frame-secondary {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 26px 65px rgba(7, 27, 51, .2);
}

.luxury-theme .director-visual::before {
    border-radius: 26px;
    background: linear-gradient(145deg, #071b33, #123d66);
}

.luxury-theme .director-credential {
    border-left: 3px solid var(--gold-2);
    border-radius: 0 14px 14px 0;
    background: rgba(7, 27, 51, .95);
}

.luxury-theme .director-credential strong {
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.luxury-theme .achievement-section {
    background: linear-gradient(180deg, #f3ede3, #faf7f1);
}

.luxury-theme .achievement-carousel {
    overflow: hidden;
    border: 1px solid rgba(230, 194, 122, .2);
    border-radius: 28px;
    background: radial-gradient(circle at 15% 20%, rgba(230, 194, 122, .1), transparent 18rem), linear-gradient(135deg, #06172d, #0e355b);
    box-shadow: 0 32px 78px rgba(7, 27, 51, .2);
}

.luxury-theme .registration-certificate-mark {
    border: 10px solid rgba(255, 254, 251, .94);
    border-radius: 20px;
}

.luxury-theme .google-reviews-section {
    background: radial-gradient(circle at 82% 20%, rgba(230, 194, 122, .1), transparent 25rem), #fffefb;
}

.luxury-theme .google-reviews-shell,
.luxury-theme .home-address-panel,
.luxury-theme .map-panel {
    overflow: hidden;
    border: 1px solid rgba(185, 133, 62, .17);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.luxury-theme .google-review-summary,
.luxury-theme .home-address-copy,
.luxury-theme .map-copy {
    background: radial-gradient(circle at top left, rgba(230, 194, 122, .14), transparent 20rem), linear-gradient(145deg, #071b33, #10385f);
}

.luxury-theme .google-review-card,
.luxury-theme .testimonial-card,
.luxury-theme .lux-card,
.luxury-theme .process-card,
.luxury-theme .service-card {
    border: 1px solid rgba(7, 27, 51, .08);
    border-radius: 20px;
    background: rgba(255, 254, 251, .95);
    box-shadow: 0 14px 38px rgba(7, 27, 51, .075);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.luxury-theme .google-review-card:hover,
.luxury-theme .testimonial-card:hover,
.luxury-theme .lux-card:hover,
.luxury-theme .process-card:hover,
.luxury-theme .service-card:hover {
    border-color: rgba(185, 133, 62, .38);
    transform: translateY(-7px);
    box-shadow: 0 28px 60px rgba(7, 27, 51, .13);
}

.luxury-theme .google-review-card::before,
.luxury-theme .testimonial-card::before {
    content: "“";
    display: block;
    height: 1.5rem;
    color: rgba(185, 133, 62, .42);
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 3.5rem;
    line-height: .8;
}

.luxury-theme .service-specialisations-section {
    background: radial-gradient(circle at 10% 10%, rgba(230, 194, 122, .1), transparent 24rem), #f6f2ea;
}

.luxury-theme .service-card {
    overflow: hidden;
}

.luxury-theme .service-card-image {
    position: relative;
    overflow: hidden;
}

.luxury-theme .service-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(7, 27, 51, .36));
}

.luxury-theme .service-card-body,
.luxury-theme .lux-card,
.luxury-theme .testimonial-card {
    padding: 1.55rem;
}

.luxury-theme .navy-band {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 90% 0%, rgba(230, 194, 122, .14), transparent 26rem), linear-gradient(135deg, #041326, #0b2b4d 58%, #071b33);
}

.luxury-theme .feature-item {
    border: 1px solid rgba(230, 194, 122, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
}

.luxury-theme .feature-grid.light .feature-item {
    border-color: rgba(7, 27, 51, .08);
    background: rgba(255, 254, 251, .9);
    box-shadow: 0 12px 32px rgba(7, 27, 51, .065);
}

.luxury-theme .process-card {
    padding: 1.65rem;
}

.luxury-theme .process-card span {
    color: #a16c24;
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 2.1rem;
}

.luxury-theme .premium-accordion .accordion-item {
    overflow: hidden;
    margin-bottom: .9rem;
    border: 1px solid rgba(7, 27, 51, .085);
    border-radius: 16px;
    background: rgba(255, 254, 251, .94);
    box-shadow: 0 10px 30px rgba(7, 27, 51, .05);
}

.luxury-theme .premium-accordion .accordion-button {
    padding: 1.25rem 1.4rem;
    color: var(--navy);
    background: transparent;
}

.luxury-theme .premium-accordion .accordion-button:not(.collapsed) {
    color: var(--navy);
    background: linear-gradient(90deg, rgba(230, 194, 122, .18), rgba(255, 254, 251, .9));
    box-shadow: none;
}

.luxury-theme .cta-band {
    padding: 1.25rem 0 6rem;
    background: var(--ivory);
}

.luxury-theme .cta-panel {
    border: 1px solid rgba(230, 194, 122, .2);
    border-radius: 28px;
    padding: 2.5rem 3rem;
    background: radial-gradient(circle at 10% 0%, rgba(230, 194, 122, .16), transparent 18rem), linear-gradient(135deg, #06172d, #10385f);
    box-shadow: 0 30px 75px rgba(7, 27, 51, .2);
}

.luxury-theme .page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 430px;
    padding: 6rem 0;
}

.luxury-theme .page-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 19, 38, .7), rgba(7, 27, 51, .25));
}

.luxury-theme .page-hero h1 {
    color: #fffdf8;
    font-size: clamp(3.7rem, 6vw, 4rem);
    line-height: .9;
}

.luxury-theme .breadcrumb-wrap {
    border-bottom: 1px solid rgba(185, 133, 62, .14);
    background: rgba(245, 241, 233, .88);
}

.luxury-theme .form-shell,
.luxury-theme .content-panel,
.luxury-theme .contact-card,
.luxury-theme .stack-item,
.luxury-theme .split-panel {
    border: 1px solid rgba(7, 27, 51, .085);
    border-radius: 22px;
    background: rgba(255, 254, 251, .95);
    box-shadow: var(--shadow-soft);
}

.luxury-theme .form-shell {
    padding: 2rem;
}

.luxury-theme .booking-form .form-control,
.luxury-theme .booking-form .form-select,
.luxury-theme .newsletter-form .form-control {
    border: 1px solid rgba(7, 27, 51, .12);
    border-radius: 12px;
    background: #fffefb;
}

.luxury-theme .booking-form .form-control:focus,
.luxury-theme .booking-form .form-select:focus,
.luxury-theme .newsletter-form .form-control:focus {
    border-color: rgba(185, 133, 62, .65);
    box-shadow: 0 0 0 .22rem rgba(185, 133, 62, .12);
}

.luxury-theme .payment-notice {
    border-color: rgba(185, 133, 62, .24);
    border-radius: 14px;
    background: linear-gradient(90deg, #fff9e9, #f9f2e5);
}

.luxury-theme .site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 194, 122, .2);
    background: radial-gradient(circle at 12% 0%, rgba(230, 194, 122, .1), transparent 22rem), linear-gradient(145deg, #031122, #071b33 55%, #0d2a4c);
}

.luxury-theme .footer-logo {
    border: 1px solid rgba(230, 194, 122, .15);
    border-radius: 18px;
    background: rgba(255, 254, 251, .95);
}

.luxury-theme .social-links a {
    border: 1px solid rgba(230, 194, 122, .28);
    border-radius: 50%;
    background: rgba(230, 194, 122, .12);
    color: var(--gold-2);
}

.luxury-theme .floating-whatsapp {
    border: 2px solid rgba(255, 255, 255, .9);
    background: linear-gradient(145deg, #1dba61, #0e944b);
}

.luxury-theme .back-to-top {
    border: 1px solid rgba(230, 194, 122, .35);
    color: #071b33;
    background: linear-gradient(145deg, #efd69d, #c99543);
}

@media (max-width: 991.98px) {
    .luxury-theme .section-padding {
        padding: 5rem 0;
    }

    .luxury-theme .hero-section {
        min-height: auto;
        padding: 4.5rem 0 5.5rem;
    }

    .luxury-theme .hero-copy h1 {
        font-size: clamp(3.6rem, 9vw, 4rem);
    }

    .luxury-theme .reference-service-strip {
        margin-top: -2rem;
    }
}

@media (max-width: 767.98px) {
    .luxury-theme .section-padding {
        padding: 4.25rem 0;
    }

    .luxury-theme .section-heading {
        margin-bottom: 2.5rem;
    }

    .luxury-theme .section-heading h2 {
        font-size: 2.75rem;
    }

    .luxury-theme .hero-copy h1 {
        font-size: clamp(3.05rem, 13vw, 4rem);
    }

    .luxury-theme .homepage-story-copy h2,
    .luxury-theme .director-copy h2 {
        font-size: clamp(2.55rem, 11vw, 3.25rem);
    }

    .luxury-theme .cta-panel {
        padding: 2rem 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .luxury-theme .luxury-navbar {
        padding: .45rem 0;
    }

    .luxury-theme .site-logo-mark {
        width: 205px;
        height: 62px;
    }

    .luxury-theme .hero-section {
        padding: 3.75rem 0 4.75rem;
    }

    .luxury-theme .hero-copy h1 {
        font-size: 3.25rem;
        line-height: .92;
    }

    .luxury-theme .hero-copy p {
        font-size: 1.1rem;
        line-height: 1.65;
    }

    .luxury-theme .reference-service-strip {
        margin-top: -1.35rem;
    }

    .luxury-theme .page-hero {
        min-height: 350px;
        padding: 4.5rem 0;
    }

    .luxury-theme .page-hero h1 {
        font-size: 3.15rem;
    }

    .luxury-theme .form-shell {
        padding: 1.25rem;
    }
}

/* Immersive gradient transformation */
.immersive-theme {
    --midnight: #03101f;
    --deep-blue: #082944;
    --sapphire: #11517c;
    --aqua: #2d8290;
    --champagne: #e8c77e;
    --cream: #fffaf0;
    background:
        radial-gradient(circle at 10% 12%, rgba(45, 130, 144, .08), transparent 26rem),
        radial-gradient(circle at 92% 35%, rgba(232, 199, 126, .1), transparent 30rem),
        linear-gradient(180deg, #f9f6ef, #eef3f5 42%, #faf5eb);
}

.immersive-theme .site-header {
    filter: drop-shadow(0 14px 30px rgba(3, 16, 31, .16));
}

.immersive-theme .top-strip {
    position: relative;
    background:
        radial-gradient(circle at 18% 50%, rgba(45, 130, 144, .2), transparent 20rem),
        linear-gradient(105deg, #020b16, #082944 52%, #0a3a54);
}

.immersive-theme .top-strip::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champagne), rgba(45, 130, 144, .8), transparent);
}

.immersive-theme .luxury-navbar {
    border-bottom: 1px solid rgba(232, 199, 126, .3);
    background:
        radial-gradient(circle at 12% 10%, rgba(45, 130, 144, .2), transparent 22rem),
        linear-gradient(115deg, rgba(3, 16, 31, .98), rgba(8, 41, 68, .97) 55%, rgba(10, 58, 84, .96));
    box-shadow:
        0 18px 48px rgba(3, 16, 31, .2),
        inset 0 -1px 0 rgba(255, 255, 255, .04);
}

.immersive-theme .site-header.is-scrolled .luxury-navbar {
    background:
        radial-gradient(circle at 12% 10%, rgba(45, 130, 144, .18), transparent 22rem),
        linear-gradient(115deg, rgba(3, 16, 31, .985), rgba(8, 41, 68, .98) 55%, rgba(10, 58, 84, .975));
}

.immersive-theme .navbar-brand {
    padding: .35rem .8rem;
    border: 1px solid rgba(232, 199, 126, .26);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, .98), rgba(240, 235, 221, .94));
    box-shadow:
        0 12px 32px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .8);
}

.immersive-theme .site-logo-mark {
    width: 290px;
    height: 80px;
}

.immersive-theme .navbar-nav .nav-link {
    margin: 0 .08rem;
    padding: .7rem .72rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.1rem;
}

.immersive-theme .navbar-nav .nav-link::after {
    display: none;
}

.immersive-theme .navbar-nav .nav-link:hover,
.immersive-theme .navbar-nav .nav-link.active,
.immersive-theme .navbar-nav .show > .nav-link {
    color: #fffdf8;
    background:
        linear-gradient(135deg, rgba(232, 199, 126, .15), rgba(45, 130, 144, .15));
    box-shadow: inset 0 0 0 1px rgba(232, 199, 126, .14);
}

.immersive-theme .nav-cta {
    margin-left: .35rem;
}

.immersive-theme .navbar-toggler {
    border: 1px solid rgba(232, 199, 126, .46);
    border-radius: 12px;
    background: linear-gradient(145deg, #f0d89d, #c78b38);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.immersive-theme .luxury-dropdown {
    background:
        radial-gradient(circle at top left, rgba(45, 130, 144, .2), transparent 16rem),
        linear-gradient(145deg, rgba(3, 16, 31, .99), rgba(8, 41, 68, .99));
}

.immersive-theme .hero-section {
    min-height: 760px;
    background-blend-mode: normal;
}

.immersive-theme .hero-section::before {
    background:
        radial-gradient(circle at 82% 24%, rgba(45, 130, 144, .32), transparent 24rem),
        radial-gradient(circle at 20% 80%, rgba(232, 199, 126, .13), transparent 22rem),
        linear-gradient(105deg, rgba(2, 11, 22, .92), rgba(8, 41, 68, .69) 48%, rgba(10, 58, 84, .28));
}

.immersive-theme .hero-section::after {
    right: -12rem;
    bottom: -20rem;
    width: 48rem;
    height: 48rem;
    border-color: rgba(232, 199, 126, .3);
    box-shadow:
        0 0 0 5rem rgba(45, 130, 144, .045),
        0 0 0 10rem rgba(232, 199, 126, .035),
        0 0 0 15rem rgba(45, 130, 144, .025);
}

.immersive-theme .hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .55rem .85rem;
    border: 1px solid rgba(232, 199, 126, .25);
    border-radius: 999px;
    background: rgba(3, 16, 31, .34);
    backdrop-filter: blur(12px);
}

.immersive-theme .hero-copy .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, var(--champagne), transparent);
}

.immersive-theme .hero-copy h1 {
    background: linear-gradient(120deg, #ffffff 5%, #f4e3bb 55%, #dceef0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 20px 55px rgba(0, 0, 0, .22);
}

.immersive-theme .hero-copy p {
    color: rgba(242, 248, 249, .74);
}

.immersive-theme .hero-brand-panel {
    border-color: rgba(232, 199, 126, .3);
    background:
        radial-gradient(circle at 80% 0%, rgba(45, 130, 144, .24), transparent 20rem),
        linear-gradient(145deg, rgba(3, 16, 31, .88), rgba(10, 58, 84, .72));
    box-shadow:
        0 42px 95px rgba(0, 0, 0, .38),
        inset 0 1px 0 rgba(255, 255, 255, .14);
}

.immersive-theme .hero-brand-panel::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(232, 199, 126, .1);
    border-radius: 21px;
    pointer-events: none;
}

.immersive-theme .reference-service-strip {
    background: transparent;
}

.immersive-theme .reference-tile,
.immersive-theme .service-card,
.immersive-theme .testimonial-card,
.immersive-theme .google-review-card,
.immersive-theme .lux-card,
.immersive-theme .process-card,
.immersive-theme .form-shell,
.immersive-theme .content-panel,
.immersive-theme .contact-card,
.immersive-theme .stack-item {
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(255, 253, 248, .96), rgba(248, 247, 242, .95)) padding-box,
        linear-gradient(135deg, rgba(232, 199, 126, .7), rgba(45, 130, 144, .32), rgba(17, 81, 124, .14)) border-box;
}

.immersive-theme .reference-tile,
.immersive-theme .service-card,
.immersive-theme .testimonial-card,
.immersive-theme .google-review-card,
.immersive-theme .lux-card,
.immersive-theme .process-card {
    position: relative;
}

.immersive-theme .reference-tile::after,
.immersive-theme .service-card::before,
.immersive-theme .lux-card::before,
.immersive-theme .process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    width: 72px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--champagne), var(--aqua));
}

.immersive-theme .reference-tile:hover,
.immersive-theme .service-card:hover,
.immersive-theme .testimonial-card:hover,
.immersive-theme .google-review-card:hover,
.immersive-theme .lux-card:hover,
.immersive-theme .process-card:hover {
    box-shadow:
        0 32px 70px rgba(3, 16, 31, .15),
        0 8px 25px rgba(45, 130, 144, .08);
}

.immersive-theme main > section.section-padding:not(.navy-band):not(.director-section):not(.achievement-section):not(.google-reviews-section):not(.home-address-section):not(.service-specialisations-section) {
    background:
        radial-gradient(circle at 12% 18%, rgba(45, 130, 144, .08), transparent 24rem),
        radial-gradient(circle at 88% 78%, rgba(232, 199, 126, .11), transparent 25rem),
        linear-gradient(135deg, #faf7f0, #edf4f5);
}

.immersive-theme main > section.section-padding:nth-of-type(even):not(.navy-band):not(.director-section):not(.achievement-section):not(.google-reviews-section):not(.home-address-section):not(.service-specialisations-section) {
    background:
        radial-gradient(circle at 84% 16%, rgba(45, 130, 144, .09), transparent 25rem),
        linear-gradient(135deg, #edf3f5, #fff8ea 72%);
}

.immersive-theme .homepage-story {
    background:
        radial-gradient(circle at 12% 14%, rgba(45, 130, 144, .12), transparent 28rem),
        radial-gradient(circle at 88% 80%, rgba(232, 199, 126, .16), transparent 24rem),
        linear-gradient(135deg, #edf4f5, #fff9ee);
}

.immersive-theme .homepage-story-image {
    border: 1px solid rgba(232, 199, 126, .38);
    box-shadow:
        0 38px 90px rgba(3, 16, 31, .2),
        18px 18px 0 rgba(45, 130, 144, .08);
}

.immersive-theme .story-principles div {
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(255, 253, 248, .8), rgba(247, 249, 247, .8)) padding-box,
        linear-gradient(135deg, rgba(232, 199, 126, .45), rgba(45, 130, 144, .2)) border-box;
    backdrop-filter: blur(10px);
}

.immersive-theme .director-section {
    background:
        radial-gradient(circle at 8% 25%, rgba(45, 130, 144, .13), transparent 26rem),
        radial-gradient(circle at 91% 78%, rgba(232, 199, 126, .16), transparent 28rem),
        linear-gradient(125deg, #eef5f5, #fff9ef 63%, #f1ede5);
}

.immersive-theme .director-visual::before {
    background:
        radial-gradient(circle at top right, rgba(45, 130, 144, .25), transparent 17rem),
        linear-gradient(145deg, #03101f, #0b3658);
}

.immersive-theme .director-accent {
    background: linear-gradient(180deg, var(--champagne), var(--aqua));
}

.immersive-theme .achievement-section {
    background:
        radial-gradient(circle at 90% 20%, rgba(45, 130, 144, .16), transparent 28rem),
        linear-gradient(145deg, #e8eff0, #f9edda);
}

.immersive-theme .achievement-carousel {
    background:
        radial-gradient(circle at 16% 20%, rgba(232, 199, 126, .18), transparent 18rem),
        radial-gradient(circle at 85% 80%, rgba(45, 130, 144, .22), transparent 24rem),
        linear-gradient(135deg, #020d1a, #0b3152 58%, #0b4b5b);
}

.immersive-theme .google-reviews-section {
    background:
        radial-gradient(circle at 16% 80%, rgba(232, 199, 126, .13), transparent 25rem),
        radial-gradient(circle at 86% 10%, rgba(45, 130, 144, .12), transparent 24rem),
        linear-gradient(135deg, #fff9ee, #ebf2f3);
}

.immersive-theme .google-reviews-shell {
    border: 1px solid transparent;
    background:
        linear-gradient(#fdfaf3, #fdfaf3) padding-box,
        linear-gradient(135deg, rgba(232, 199, 126, .65), rgba(45, 130, 144, .38)) border-box;
}

.immersive-theme .google-review-summary {
    background:
        radial-gradient(circle at 12% 0%, rgba(232, 199, 126, .18), transparent 18rem),
        radial-gradient(circle at 90% 90%, rgba(45, 130, 144, .2), transparent 18rem),
        linear-gradient(145deg, #03101f, #0b3658);
}

.immersive-theme .home-address-section {
    background:
        radial-gradient(circle at 12% 15%, rgba(45, 130, 144, .14), transparent 24rem),
        linear-gradient(135deg, #e7eff0, #faeedb);
}

.immersive-theme .home-address-panel,
.immersive-theme .map-panel {
    border: 1px solid transparent;
    background:
        linear-gradient(#fdfaf3, #fdfaf3) padding-box,
        linear-gradient(135deg, rgba(232, 199, 126, .7), rgba(45, 130, 144, .45)) border-box;
}

.immersive-theme .home-address-copy,
.immersive-theme .map-copy {
    background:
        radial-gradient(circle at 20% 0%, rgba(232, 199, 126, .18), transparent 18rem),
        linear-gradient(145deg, #03101f, #0b3658 58%, #0a4a59);
}

.immersive-theme .service-specialisations-section,
.immersive-theme .services-portfolio-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(232, 199, 126, .13), transparent 25rem),
        radial-gradient(circle at 88% 80%, rgba(45, 130, 144, .13), transparent 28rem),
        linear-gradient(135deg, #fff8ec, #e8f0f1);
}

.immersive-theme .service-card-image::after {
    background:
        linear-gradient(180deg, transparent 42%, rgba(3, 16, 31, .68)),
        linear-gradient(120deg, rgba(45, 130, 144, .08), rgba(232, 199, 126, .06));
}

.immersive-theme .navy-band {
    background:
        radial-gradient(circle at 82% 16%, rgba(45, 130, 144, .26), transparent 28rem),
        radial-gradient(circle at 12% 80%, rgba(232, 199, 126, .12), transparent 23rem),
        linear-gradient(120deg, #020b16, #082944 52%, #0a4a59);
}

.immersive-theme .feature-item {
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(255, 255, 255, .055), rgba(255, 255, 255, .055)) padding-box,
        linear-gradient(135deg, rgba(232, 199, 126, .35), rgba(45, 130, 144, .28)) border-box;
}

.immersive-theme .premium-accordion .accordion-item {
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(255, 253, 248, .96), rgba(247, 249, 247, .96)) padding-box,
        linear-gradient(135deg, rgba(232, 199, 126, .45), rgba(45, 130, 144, .2)) border-box;
}

.immersive-theme .premium-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(100deg, rgba(232, 199, 126, .22), rgba(45, 130, 144, .1));
}

.immersive-theme .cta-band {
    background:
        radial-gradient(circle at 20% 10%, rgba(45, 130, 144, .12), transparent 23rem),
        linear-gradient(135deg, #eef4f4, #fff6e7);
}

.immersive-theme .cta-panel {
    background:
        radial-gradient(circle at 12% 0%, rgba(232, 199, 126, .2), transparent 18rem),
        radial-gradient(circle at 90% 90%, rgba(45, 130, 144, .22), transparent 20rem),
        linear-gradient(125deg, #020d1a, #0b3152 58%, #0a4a59);
}

.immersive-theme .page-hero::after {
    background:
        radial-gradient(circle at 78% 18%, rgba(45, 130, 144, .3), transparent 25rem),
        radial-gradient(circle at 12% 80%, rgba(232, 199, 126, .15), transparent 22rem),
        linear-gradient(100deg, rgba(2, 11, 22, .94), rgba(8, 41, 68, .7) 55%, rgba(10, 74, 89, .38));
}

.immersive-theme .page-hero h1 {
    background: linear-gradient(120deg, #ffffff, #f4e3bb 60%, #dceef0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.immersive-theme .breadcrumb-wrap {
    background:
        linear-gradient(90deg, rgba(232, 199, 126, .12), rgba(45, 130, 144, .08)),
        #f4f1e9;
}

.immersive-theme .form-shell {
    box-shadow:
        0 30px 75px rgba(3, 16, 31, .12),
        0 8px 25px rgba(45, 130, 144, .06);
}

.immersive-theme .booking-form .form-control,
.immersive-theme .booking-form .form-select,
.immersive-theme .newsletter-form .form-control {
    border: 1px solid transparent;
    background:
        linear-gradient(#fffdf8, #fffdf8) padding-box,
        linear-gradient(135deg, rgba(17, 81, 124, .22), rgba(232, 199, 126, .34)) border-box;
}

.immersive-theme .booking-form .form-control:focus,
.immersive-theme .booking-form .form-select:focus,
.immersive-theme .newsletter-form .form-control:focus {
    border-color: transparent;
    box-shadow:
        0 0 0 .22rem rgba(45, 130, 144, .11),
        0 10px 28px rgba(3, 16, 31, .07);
}

.immersive-theme .payment-notice {
    border: 1px solid transparent;
    background:
        linear-gradient(#fff7e6, #f7f5ed) padding-box,
        linear-gradient(135deg, rgba(232, 199, 126, .72), rgba(45, 130, 144, .26)) border-box;
}

.immersive-theme .site-footer {
    background:
        radial-gradient(circle at 15% 0%, rgba(232, 199, 126, .13), transparent 24rem),
        radial-gradient(circle at 88% 90%, rgba(45, 130, 144, .24), transparent 30rem),
        linear-gradient(120deg, #010812, #061d33 55%, #083d4c);
}

.immersive-theme .footer-logo {
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(255, 250, 240, .98), rgba(240, 235, 221, .96)) padding-box,
        linear-gradient(135deg, rgba(232, 199, 126, .75), rgba(45, 130, 144, .38)) border-box;
}

@media (max-width: 991.98px) {
    .immersive-theme .navbar-collapse {
        margin-top: .7rem;
        padding: 1rem;
        border: 1px solid rgba(232, 199, 126, .2);
        border-radius: 18px;
        background:
            radial-gradient(circle at top left, rgba(45, 130, 144, .2), transparent 16rem),
            linear-gradient(145deg, rgba(3, 16, 31, .99), rgba(8, 41, 68, .99));
        box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
    }

    .immersive-theme .navbar-nav .nav-link {
        margin: .15rem 0;
        padding: .8rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .immersive-theme .navbar-brand {
        padding: .25rem .55rem;
        border-radius: 14px;
    }

    .immersive-theme .site-logo-mark {
        width: 185px;
        height: 56px;
    }

    .immersive-theme .hero-section {
        min-height: auto;
        padding: 4rem 0 5rem;
    }

    .immersive-theme .hero-copy .eyebrow {
        padding: .45rem .65rem;
        font-size: 1.1rem;
    }

    .immersive-theme .hero-brand-panel::before {
        inset: 6px;
    }
}


/* Booking page step-by-step flow */
.booking-flow-section {
    background: #f7f8fb;
}

.booking-flow-wrap {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.booking-sidebar,
.booking-flow-main {
    background: var(--white);
    border: 1px solid rgba(7, 20, 38, .08);
    box-shadow: 0 18px 42px rgba(7, 20, 38, .08);
}

.booking-sidebar {
    padding: 2rem 1.6rem;
    align-self: start;
}

.booking-sidebar-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.booking-sidebar h3 {
    margin-bottom: .15rem;
}

.booking-sidebar p {
    margin-bottom: 1rem;
    color: var(--ink);
}

.booking-sidebar-line {
    height: 1px;
    background: var(--line);
    margin: 1.15rem 0;
}

.booking-sidebar-copy {
    color: var(--muted) !important;
    font-size: 1.1rem;
}

.booking-sidebar-contact {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: .65rem;
    color: var(--muted);
    font-size: 1.1rem;
}

.booking-sidebar-contact a {
    color: var(--royal);
    font-weight: 700;
}

.booking-flow-main {
    min-height: 560px;
    padding: 2.1rem 2.3rem;
}

.booking-step-tracker {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 1.8rem;
}

.booking-step {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid rgba(7, 20, 38, .1);
    border-radius: 999px;
    padding: .45rem .8rem;
    color: var(--muted);
    background: #fff;
    font-size: 1.1rem;
    font-weight: 800;
}

.booking-step strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #eef2f7;
    color: var(--navy);
    font-size: 1.1rem;
}

.booking-step.is-active {
    border-color: rgba(201, 162, 74, .5);
    color: var(--navy);
    background: #fff8e6;
}

.booking-step.is-complete strong,
.booking-step.is-active strong {
    background: var(--gold);
    color: var(--navy);
}

.booking-flow-heading {
    max-width: 780px;
    margin-bottom: 1.7rem;
}

.booking-flow-heading h2 {
    margin-bottom: .55rem;
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.85rem;
}

.booking-flow-heading p {
    margin: 0;
}

.booking-flow-heading.with-change {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    max-width: none;
}

.booking-flow-heading.with-change a {
    white-space: nowrap;
    color: var(--royal);
    font-weight: 800;
    font-size: 1.1rem;
}

.booking-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.booking-choice-card {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
    min-height: 275px;
    padding: 2rem 1.4rem;
    border: 1px solid rgba(7, 20, 38, .08);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(7, 20, 38, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.booking-choice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 74, .55);
    box-shadow: 0 18px 44px rgba(7, 20, 38, .13);
}

.booking-choice-icon,
.booking-event-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.booking-choice-icon svg {
    width: 92px;
    height: 92px;
}

.booking-choice-title {
    margin-top: 1rem;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 900;
}

.booking-choice-meta {
    margin-top: .25rem;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.booking-choice-copy {
    max-width: 280px;
    margin-top: .65rem;
    color: var(--muted);
    font-size: 1.1rem;
}

.booking-choice-arrow,
.booking-event-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 900;
}

.booking-choice-arrow {
    width: 34px;
    height: 34px;
    margin-top: 1rem;
}

.booking-event-list {
    display: grid;
    gap: 1rem;
}

.booking-event-row {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto 38px;
    gap: 1.1rem;
    align-items: center;
    padding: 1.25rem;
    border: 1px solid rgba(7, 20, 38, .1);
    border-radius: 12px;
    background: var(--white);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.booking-event-row:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 74, .55);
    box-shadow: 0 14px 34px rgba(7, 20, 38, .11);
}

.booking-event-icon svg {
    width: 70px;
    height: 70px;
}

.booking-event-body {
    display: grid;
    gap: .15rem;
}

.booking-event-body strong {
    color: var(--navy);
    font-size: 1.1rem;
}

.booking-event-body small {
    color: var(--ink);
    font-weight: 800;
}

.booking-event-body em {
    color: var(--muted);
    font-style: normal;
    font-size: 1.1rem;
}

.booking-event-price {
    color: var(--navy);
    font-weight: 900;
    min-width: 95px;
    text-align: right;
}

.booking-event-arrow {
    width: 32px;
    height: 32px;
}

.booking-selected-box {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem;
    margin-bottom: 1rem;
}

.booking-selected-box div {
    border: 1px solid rgba(7, 20, 38, .08);
    border-radius: 10px;
    padding: .8rem .9rem;
    background: #f9fafc;
}

.booking-selected-box span {
    display: block;
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.booking-selected-box strong {
    display: block;
    margin-top: .18rem;
    color: var(--navy);
    font-size: 1.1rem;
}

.booking-flow-form-shell {
    padding: 1.35rem 0 0;
    border: 0;
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .booking-flow-wrap {
        grid-template-columns: 1fr;
    }

    .booking-flow-main {
        order: 1;
    }

    .booking-sidebar {
        order: 2;
    }

    .booking-flow-main {
        min-height: auto;
        padding: 1.6rem;
    }

    .booking-selected-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .booking-choice-grid {
        grid-template-columns: 1fr;
    }

    .booking-event-row {
        grid-template-columns: 64px minmax(0, 1fr) 30px;
    }

    .booking-event-price {
        grid-column: 2 / 3;
        text-align: left;
        min-width: 0;
    }

    .booking-event-arrow {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }

    .booking-flow-heading.with-change {
        display: grid;
    }

    .booking-selected-box {
        grid-template-columns: 1fr;
    }
}



/* Global EB Garamond font override */
html body,
html body *:not(svg):not(path) {
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
}
