/* ═══════════════════════════════════════════════════════ */
/* PRESTIGE EXECUTIVE ASSISTANCE — Stylesheet              */
/* Palette: Navy #1B2B4A · Gold #C8A84C · Ivory #F8F6F0   */
/* ═══════════════════════════════════════════════════════ */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy:      #1B2B4A;
    --navy-dark: #0D1828;
    --gold:      #C8A84C;
    --gold-light:#DFC070;
    --ivory:     #F8F6F0;
    --ivory-mid: #F0EDE4;
    --charcoal:  #2C2C2C;
    --mid-grey:  #666660;
    --light-grey:#E8E4DC;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════ */
/* HEADER                                                   */
/* ═══════════════════════════════════════════════════════ */
.site-header {
    padding: 0;
    background: #fff;
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(27,43,74,0.07);
}

/* Horizontal flex row: logo left, nav right */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

/* Logo — butterfly left, text column right */
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.logo-butterfly {
    display: block;
    width: 65px;
    height: 54px;
    flex-shrink: 0;
    color: var(--gold);
    opacity: 0.9;
}

.logo-butterfly svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-text-col {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    letter-spacing: 12px;
    color: var(--navy);
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.logo span {
    display: flex;
    justify-content: space-between;
    padding-right: 12px;
    margin-top: 5px;
}

.logo span span {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0;
    padding-right: 0;
    margin-top: 0;
    display: inline;
    justify-content: unset;
}

/* Nav — right aligned */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--charcoal);
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--gold);
}

.nav-cta {
    color: var(--navy) !important;
    border: 1px solid var(--navy);
    padding: 9px 22px;
    border-radius: 2px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--navy);
    color: #fff !important;
}

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animated X state when open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8.25px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8.25px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════ */
/* HERO                                                     */
/* ═══════════════════════════════════════════════════════ */
.hero-block {
    position: relative;
    height: 90vh;
    min-height: 580px;
    background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 22, 40, 0.55) 0%,
        rgba(11, 22, 40, 0.72) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 0 20px;
}

.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 400;
}

.hero-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #fff;
}

.hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════ */
/* BUTTONS                                                  */
/* ═══════════════════════════════════════════════════════ */
.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 14px 36px;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-block;
}

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

.btn-ghost {
    color: #fff;
    padding: 14px 36px;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--navy);
    color: var(--navy);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 2px;
    margin-top: 24px;
}

.btn-secondary:hover {
    background: var(--navy);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════ */
/* INTRO STATEMENT                                          */
/* ═══════════════════════════════════════════════════════ */
.intro-statement {
    background: var(--navy);
    padding: 80px 0;
}

.intro-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.intro-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 400;
}

.intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin-bottom: 24px;
}

.intro-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════ */
/* THREE PILLARS / FEATURES                                 */
/* ═══════════════════════════════════════════════════════ */
.features {
    display: flex;
    justify-content: space-between;
    padding: 90px 30px;
    gap: 40px;
    text-align: center;
}

.feature-item {
    flex: 1;
    padding: 40px 28px;
    border: 1px solid var(--light-grey);
    background: #fff;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item .icon {
    width: 42px;
    height: 36px;
    color: var(--gold);
    margin: 0 auto 20px;
    display: block;
}

.feature-item .icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.feature-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 400;
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--mid-grey);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════ */
/* SECTION COMMON ELEMENTS                                  */
/* ═══════════════════════════════════════════════════════ */
.section-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    font-weight: 400;
}

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

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.light {
    color: #fff;
}

.section-intro {
    font-size: 0.95rem;
    color: var(--mid-grey);
    max-width: 620px;
    margin: 0 auto 36px;
    text-align: center;
    line-height: 1.8;
}

/* ── Currency toggle bar ── */
.currency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.currency-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--mid-grey);
    text-transform: uppercase;
}

.currency-toggle {
    display: flex;
    align-items: center;
    border: 1px solid var(--light-grey);
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
}

.currency-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-right: 1px solid var(--light-grey);
    color: var(--mid-grey);
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.currency-btn:last-child {
    border-right: none;
}

.currency-btn:hover {
    background: var(--ivory);
    color: var(--navy);
}

.currency-btn.active {
    background: var(--navy);
    color: #fff;
}

/* Live rate indicator */
.rate-indicator {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--mid-grey);
    opacity: 0.7;
    font-style: italic;
}

.rate-indicator.live {
    color: #4a8c4a;
    opacity: 0.85;
}

.rate-indicator.fallback {
    color: var(--gold);
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════ */
/* SERVICES / PACKAGES                                      */
/* ═══════════════════════════════════════════════════════ */
.services-section {
    padding: 90px 0;
    background: var(--ivory);
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
    margin-bottom: 28px;
}

/* ── Card shell ── */
.package-card {
    background: #fff;
    border: 1px solid var(--light-grey);
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 2px;
    transition: box-shadow 0.3s ease;
}

.package-card:hover {
    box-shadow: 0 6px 32px rgba(27,43,74,0.08);
}

.package-card.package-featured {
    border-color: var(--navy);
    box-shadow: 0 8px 40px rgba(27,43,74,0.12);
}

.package-card.package-featured:hover {
    box-shadow: 0 12px 48px rgba(27,43,74,0.18);
}

/* ── Most Popular badge ── */
.package-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-dark);
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 2px;
    white-space: nowrap;
}

/* ── Package header ── */
.package-header {
    padding: 32px 28px 22px;
    border-bottom: 1px solid var(--light-grey);
}

.package-featured .package-header {
    background: var(--navy);
    border-bottom-color: rgba(255,255,255,0.1);
}

/* Package type tag */
.package-tag {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.package-featured .package-tag {
    color: rgba(200,168,76,0.8);
}

/* Package name */
.package-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1;
}

.package-featured .package-header h3 {
    color: #fff;
}

/* "Starting from" label */
.package-from {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid-grey);
    margin-bottom: 4px;
}

.package-featured .package-from {
    color: rgba(255,255,255,0.45);
}

/* Anchor price — large and prominent */
.package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 6px;
}

.package-price span {
    font-size: 0.88rem;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--mid-grey);
    letter-spacing: 0.5px;
}

.package-featured .package-price span {
    color: rgba(255,255,255,0.45);
}

/* Hours / commitment line */
.package-hours {
    font-family: 'Jost', sans-serif;
    font-size: 0.76rem;
    color: var(--mid-grey);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.package-featured .package-hours {
    color: rgba(255,255,255,0.5);
}

/* Scope note */
.package-scope {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 8px;
    opacity: 0.8;
}

.package-featured .package-scope {
    color: rgba(200,168,76,0.7);
}

/* ── Package body ── */
.package-body {
    padding: 22px 28px 6px;
    flex: 1;
}

/* Best for description */
.package-best {
    font-size: 0.85rem;
    color: var(--mid-grey);
    font-style: italic;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--light-grey);
    line-height: 1.75;
}

/* "What's included" / "Everything in Essentials, plus" label */
.package-includes-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
    opacity: 0.7;
}

/* Inclusions list */
.package-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-body ul li {
    font-family: 'Jost', sans-serif;
    font-size: 0.84rem;
    font-weight: 300;
    color: var(--charcoal);
    padding: 9px 0 9px 20px;
    border-bottom: 1px solid var(--ivory-mid);
    position: relative;
    line-height: 1.45;
}

.package-body ul li:last-child {
    border-bottom: none;
}

.package-body ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.52rem;
    top: 11px;
}

/* ── CTA button ── */
.btn-package {
    margin: 16px 28px 28px;
    padding: 13px 20px;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--navy);
    color: var(--navy);
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
}

.btn-package:hover {
    background: var(--navy);
    color: #fff;
}

.btn-package-featured {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.btn-package-featured:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy-dark);
}

/* ── Pricing footnote ── */
.packages-note {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--mid-grey);
    text-align: center;
    font-style: italic;
    max-width: 580px;
    margin: 0 auto;
    padding-top: 8px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════ */
/* CONTENT SPLIT — HOW IT WORKS                            */
/* ═══════════════════════════════════════════════════════ */
.content-split {
    padding: 90px 0;
    background: #fff;
}

.split-row {
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 2px;
}

.split-text {
    flex: 1;
    padding-top: 10px;
}

.split-text h2 {
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 36px;
    line-height: 1.25;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    min-width: 42px;
    opacity: 0.8;
}

.step strong {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    display: block;
    margin-bottom: 5px;
}

.step p {
    font-size: 0.88rem;
    color: var(--mid-grey);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════ */
/* TESTIMONIALS                                             */
/* ═══════════════════════════════════════════════════════ */
.testimonials {
    background: var(--navy);
    padding: 90px 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
    text-align: left;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,168,76,0.25);
    padding: 36px 30px 30px;
    border-radius: 2px;
    position: relative;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 0.8;
    margin-bottom: 16px;
    opacity: 0.6;
}

.testimonial-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 20px;
}

.testimonial-attr {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════ */
/* CTA BANNER                                               */
/* ═══════════════════════════════════════════════════════ */
.cta-banner {
    background: var(--ivory-mid);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
}

.cta-inner {
    max-width: 640px;
}

.cta-inner h2 {
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 18px;
}

.cta-inner p {
    font-size: 0.95rem;
    color: var(--mid-grey);
    margin-bottom: 36px;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════ */
/* CONTACT                                                  */
/* ═══════════════════════════════════════════════════════ */
.contact-section {
    background: #fff;
    padding: 90px 0;
}

.contact-inner {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

/* Top row: Let's Talk text left, Book a Call box right */
.contact-top-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.contact-top-row .contact-text {
    flex: 1;
}

.contact-top-row .contact-cta-box {
    flex: 0 0 400px;
}

/* Form row below */
.contact-form-wrapper {
    border-top: 1px solid var(--light-grey);
    padding-top: 60px;
}

.contact-form-box {
    background: var(--ivory);
    padding: 44px 40px;
    border-radius: 2px;
}

.contact-form-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 28px;
    font-weight: 400;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group-full {
    margin-bottom: 20px;
}

.form-group label,
.form-group-full label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.8;
}

.form-group input,
.form-group-full input,
.form-group-full textarea {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--charcoal);
    background: #fff;
    border: 1px solid var(--light-grey);
    border-radius: 2px;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group-full input:focus,
.form-group-full textarea:focus {
    border-color: var(--gold);
}

.form-group-full textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.btn-form {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 14px 36px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

.btn-form:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 20px;
    margin-top: 8px;
}

.contact-text > p {
    font-size: 0.92rem;
    color: var(--mid-grey);
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-detail {
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-weight: 300;
}

.contact-detail strong {
    font-weight: 500;
    color: var(--navy);
}

.contact-note {
    font-size: 0.75rem;
    color: var(--mid-grey);
    font-style: italic;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--light-grey);
    line-height: 1.7;
    max-width: 380px;
}

.contact-cta-box {
    flex: 1;
    background: var(--navy);
    padding: 44px 40px;
    border-radius: 2px;
}

.contact-cta-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

.contact-cta-box > p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-cta-box ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.contact-cta-box ul li {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.75);
    padding: 8px 0 8px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    line-height: 1.5;
}

.contact-cta-box ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════ */
/* FORM SUBMISSION MODAL                                    */
/* ═══════════════════════════════════════════════════════ */
.form-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 22, 40, 0.65);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.form-modal-overlay.is-open {
    display: flex;
}

.form-modal-box {
    background: #fff;
    border-radius: 2px;
    padding: 56px 48px 48px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(11, 22, 40, 0.22);
    border-top: 3px solid var(--gold);
    animation: modal-in 0.25s ease;
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form-modal-icon {
    width: 48px;
    height: 40px;
    color: var(--gold);
    margin: 0 auto 20px;
    display: block;
}

.form-modal-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.form-modal-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 14px;
}

.form-modal-box p {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--mid-grey);
    line-height: 1.75;
    margin-bottom: 32px;
}

.form-modal-close {
    cursor: pointer;
    border: none;
}

/* ═══════════════════════════════════════════════════════ */
/* FOOTER                                                   */
/* ═══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── Footer logo lockup: butterfly / PRESTIGE / EXECUTIVE ASSISTANCE ── */
.footer-logo-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
}

.footer-logo-butterfly {
    display: block;
    width: 100%;
    height: 42px;
    color: var(--gold);
    opacity: 0.85;
    margin-bottom: 6px;
}

.footer-logo-butterfly svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    letter-spacing: 10px;
    color: #fff;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.footer-logo-sub {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    margin-bottom: 0;
    padding-right: 10px;
}

.footer-logo-sub span {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0;
}

.footer-contact-blurb {
    font-size: 0.78rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-top: 14px;
}

.footer-info p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    max-width: 240px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 10px;
}

.footer-contact a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    margin-top: 28px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════ */
/* ABOUT                                                    */
/* ═══════════════════════════════════════════════════════ */
.about-section {
    padding: 90px 0;
    background: var(--ivory);
}

.about-inner {
    display: flex;
    gap: 72px;
    align-items: flex-start;
}

/* Left column — image + credentials */
.about-image-col {
    flex: 0 0 340px;
}

.about-image-frame {
    position: relative;
    margin-bottom: 28px;
}

.about-image-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top;
    border-radius: 2px;
    display: block;
}

/* Gold corner accent on image */
.about-image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    pointer-events: none;
}

.about-image-frame::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    pointer-events: none;
}

.about-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11,22,40,0.85));
    color: rgba(255,255,255,0.85);
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 28px 18px 16px;
    font-weight: 400;
}

.about-credentials {
    background: var(--navy);
    padding: 24px 22px;
    border-radius: 2px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.3px;
}

.credential-item:last-child {
    border-bottom: none;
}

.credential-icon {
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* Industry experience divider and heading */
.credentials-divider {
    height: 1px;
    background: rgba(200,168,76,0.3);
    margin: 14px 0 12px;
}

.credentials-industry-heading {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

/* Industry credential items — two-line layout */
.credential-industry {
    align-items: flex-start;
    padding: 8px 0;
}

.credential-industry-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.credential-company {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.3px;
}

.credential-sector {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 300;
    color: rgba(255,255,255,0.48);
    letter-spacing: 0.2px;
}

/* Right column — text */
.about-text-col {
    flex: 1;
    padding-top: 6px;
}

.about-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 12px;
    margin-top: 6px;
}

.about-subheadline {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 28px;
}

.about-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 28px;
    opacity: 0.7;
}

.about-body {
    font-size: 0.92rem;
    color: var(--mid-grey);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin: 32px 0 36px;
}

/* ═══════════════════════════════════════════════════════ */
/* RESPONSIVE — TABLET (max 960px)                          */
/* ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 40px auto 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.4rem;
    }

    .features {
        flex-direction: column;
    }

    .split-row {
        flex-direction: column;
        gap: 40px;
    }

    .split-image img {
        height: 300px;
    }

    .contact-inner {
        flex-direction: column;
        gap: 40px;
    }

    .contact-top-row {
        flex-direction: column;
        gap: 40px;
    }

    .contact-top-row .contact-cta-box {
        flex: none;
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 32px 24px;
    }

    /* Show hamburger, hide nav list */
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--light-grey);
        border-bottom: 2px solid var(--gold);
        flex-direction: column;
        gap: 0;
        padding: 8px 0 16px;
        box-shadow: 0 8px 24px rgba(27,43,74,0.10);
    }

    .nav-list.nav-open {
        display: flex;
    }

    .main-nav {
        position: relative;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list a {
        display: block;
        padding: 13px 20px;
        font-size: 0.78rem;
        letter-spacing: 2.5px;
        color: var(--charcoal) !important;
        border-bottom: 1px solid var(--light-grey);
    }

    .nav-list a:hover {
        color: var(--gold) !important;
        background: var(--ivory);
    }

    .nav-list .nav-cta {
        border: none !important;
        color: var(--gold) !important;
        background: none;
    }

    /* Currency bar — stack on mobile */
    .currency-bar {
        flex-direction: column;
        gap: 10px;
    }

    .currency-btn {
        padding: 10px 14px;
    }

    /* Scale logo down on mobile */
    .logo h1 {
        font-size: 1.8rem;
        letter-spacing: 8px;
    }

    .logo span {
        padding-right: 8px;
    }

    .logo span span {
        font-size: 0.55rem;
    }

    .logo-butterfly {
        width: 49px;
        height: 41px;
    }

    .about-inner {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-col {
        flex: none;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .about-image-frame img {
        height: 340px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.9rem;
    }

    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 5px;
    }

    .logo span {
        padding-right: 5px;
    }

    .logo span span {
        font-size: 0.48rem;
    }

    .logo-butterfly {
        width: 37px;
        height: 31px;
    }

    .container {
        padding: 0 18px;
    }
}
