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

body {
    background: #f5f3ef; /* exact warm off-white */
    color: #111;
    font-family: 'Inter', sans-serif;
}

/* NAVBAR */
.nav {
    padding: 18px 0;
}

.nav-wrap {
    max-width: 1300px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT */
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.nav-brand {
    font-size: 15px;
    font-weight: 500;
}

/* CENTER */
.nav-center a {
    margin: 0 18px;
    font-size: 14px;
    text-decoration: none;
    color: #222;
}

/* RIGHT BUTTON */
.enquire-btn {
    background: #111;
    color: #fff;
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 6px;
    text-decoration: none;
}

/* HERO */
.hero {
    padding-top: 40px;
    text-align: center;
}

.hero-box {
    max-width: 720px;
    margin: auto;
}

/* LOGO */
.hero-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

/* MINI TEXT */
.hero-mini {
    font-size: 11px;
    letter-spacing: 3px;
    color: #777;
    margin-bottom: 25px;
}

/* MAIN TITLE */
.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 82px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 28px;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    border: 1px solid #d5d5d5;
    padding: 7px 18px;
    border-radius: 25px;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* DIVIDER */
.hero-divider {
    width: 40px;
    height: 1px;
    background: #ccc;
    margin: 25px auto;
}

/* SUB TITLE */
.hero-sub {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 10px;
}

.hero-sub span {
    display: block;
    font-style: italic;
    font-weight: 400;
}

/* TEXT */
.hero-text {
    max-width: 580px;
    margin: auto;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ABOUT SECTION */
.about {
    padding: 100px 0 60px;
}

.about-wrap {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

/* LEFT */
.about-mini {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 20px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-title span {
    font-style: italic;
    font-weight: 400;
}

.about-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 520px;
}

.about-recognised {
    font-size: 13px;
    margin-top: 20px;
    color: #333;
}

/* RIGHT */
.quote-box {
    border: 1px solid #ddd;
    padding: 40px;
    position: relative;
}

.quote-mark {
    font-size: 40px;
    color: #bbb;
    margin-bottom: 15px;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-divider {
    height: 1px;
    background: #ddd;
    margin-bottom: 20px;
}

.quote-title {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #555;
}

.quote-list {
    list-style: none;
    padding-left: 0;
}

.quote-list li {
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.quote-list li::before {
    content: "•";
    position: absolute;
    left: 0;
}

/* STATS */
.stats {
    max-width: 1000px;
    margin: 80px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 8px;
}

.stat p {
    font-size: 11px;
    letter-spacing: 1px;
    color: #666;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #ccc;
}
/* WHY SECTION */
.why {
    padding: 100px 0;
}

.why-wrap {
    max-width: 1300px;
    margin: auto;
}

/* small label */
.why-mini {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 15px;
}

/* title */
.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 40px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.why-card {
    border: 1px solid #e5e5e5;
    padding: 30px;
    border-radius: 6px;
    background: #faf9f6;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
}

/* ICON */
.why-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
}

/* TITLE */
.why-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
/* SERVICES */
.services {
    padding: 100px 0;
}

.services-wrap {
    max-width: 1300px;
    margin: auto;
}

/* headings */
.services-mini {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 10px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 40px;
}

/* MAIN BOX */
.service-box {
    border: 1px solid #e5e5e5;
    padding: 50px;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    background: #faf9f6;
}

/* LEFT */
.service-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.service-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.service-pill {
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 1px;
}

.service-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 15px;
}

.service-heading span {
    font-style: italic;
}

.service-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
}

/* RIGHT TIMELINE */
.timeline-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 25px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

/* vertical line */
.timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #ddd;
}

/* item */
.timeline-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
}

/* circle */
.circle {
    width: 36px;
    height: 36px;
    border: 1px solid #ccc;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

/* text */
.timeline-item h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.timeline-item p {
    font-size: 13px;
    color: #555;
}
/* SERVICES GRID */
.services-grid {
    padding: 80px 0 120px;
}

.services-grid-wrap {
    max-width: 1300px;
    margin: auto;
}

/* GRID LAYOUT */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.grid-card {
    border: 1px solid #e5e5e5;
    padding: 30px;
    border-radius: 6px;
    background: #faf9f6;
    min-height: 180px;
    transition: 0.3s;
}

/* hover subtle */
.grid-card:hover {
    transform: translateY(-4px);
}

/* ICON */
.grid-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* TITLE */
.grid-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* TEXT */
.grid-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
/* TEAM */
.team {
    padding: 100px 0;
}

.team-wrap {
    max-width: 1300px;
    margin: auto;
}

/* headings */
.team-mini {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
}

.team-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 10px 0 40px;
}

.team-sub {
    font-size: 12px;
    letter-spacing: 2px;
    margin: 40px 0 20px;
    color: #777;
}

/* PARTNERS */
.partners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.partner-card {
    border: 1px solid #e5e5e5;
    padding: 30px;
    border-radius: 6px;
    display: flex;
    gap: 20px;
    background: #faf9f6;
}

.partner-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

/* content */
.partner-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-top h3 {
    font-size: 20px;
}

.badge {
    border: 1px solid #ddd;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
}

.partner-role {
    font-size: 13px;
    color: #666;
    margin: 5px 0 10px;
}

.partner-desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

/* TAGS */
.tags span {
    border: 1px solid #ddd;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    background: #f5f5f5;
    white-space: nowrap;
}

/* ADVISORS */
.advisors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.advisor-card {
    border: 1px solid #e5e5e5;
    padding: 25px;
    border-radius: 6px;
    background: #faf9f6;
    text-align: left;
}

.advisor-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;   /* IMPORTANT */
    margin-bottom: 15px;
}

.advisor-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.advisor-role {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.advisor-desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}
/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
}

.testimonials-wrap {
    max-width: 1300px;
    margin: auto;
}

/* headings */
.testimonials-mini {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 10px 0 40px;
}

/* grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* card */
.testimonial-card {
    border: 1px solid #e5e5e5;
    padding: 40px;
    border-radius: 6px;
    background: #faf9f6;
    position: relative;
}

/* quote icon */
.quote-icon {
    font-size: 30px;
    color: #bbb;
    margin-bottom: 15px;
}

/* text */
.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 30px;
}

/* author */
.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
}
/* CONTACT */
.contact {
    padding: 100px 0;
}

.contact-wrap {
    max-width: 1300px;
    margin: auto;
}

/* headings */
.contact-mini {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 10px 0 40px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

/* FORM */
.contact-form label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    margin-top: 20px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    background: #faf9f6;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
.contact-btn {
    margin-top: 25px;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

/* RIGHT SIDE */
.contact-info {
    font-size: 14px;
}

/* INFO BLOCK */
.info-block {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.info-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.info-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: #ddd;
    margin: 25px 0;
}

/* OFFICE */
.office {
    margin-bottom: 20px;
}

/* TAGS */
.tags span {
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    margin-right: 6px;
}

/* FOOTER */
.site-footer {
    width: 100%;
    clear: both;
    margin-top: 0;
    padding: 28px 0;
    border-top: 1px solid #ddd;
    background: #f5f3ef;
    color: #111;
}

.footer-wrap {
    max-width: 1300px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
}

.footer-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 3px;
}

.footer-line,
.footer-copy {
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
}

.footer-copy {
    margin-left: auto;
    text-align: right;
}

@media (max-width: 760px) {
    .site-footer {
        padding: 26px 0;
    }

    .footer-wrap {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .footer-brand {
        min-width: 0;
    }

    .footer-copy {
        margin-left: 0;
        text-align: left;
    }
}
