/* ============================================
   Emirates PD — Classic Corporate Stylesheet
   ============================================ */

:root {
    --navy: #0a1f3d;
    --navy-deep: #061429;
    --navy-light: #14315c;
    --gold: #c9a961;
    --gold-light: #e0c887;
    --gold-deep: #a08542;
    --cream: #faf6ee;
    --ivory: #f5efe1;
    --parchment: #efe7d3;
    --ink: #1a1a1a;
    --muted: #5a5a5a;
    --border: #d4c89a;
}

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

html, body {
    font-family: "Garamond", "Times New Roman", Georgia, serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    font-size: 17px;
}

body {
    background-image:
        repeating-linear-gradient(0deg, rgba(201, 169, 97, 0.03) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(90deg, rgba(201, 169, 97, 0.03) 0 1px, transparent 1px 4px);
}

/* --------- Top Ribbon --------- */
.top-ribbon {
    background: var(--navy-deep);
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 2px;
    text-align: center;
    padding: 7px 20px;
    border-bottom: 1px solid var(--gold-deep);
    text-transform: uppercase;
    font-family: Georgia, serif;
}

.top-ribbon span { margin: 0 18px; }

/* --------- Header --------- */
header {
    background: linear-gradient(180deg, #0c2546 0%, var(--navy) 100%);
    color: var(--cream);
    border-bottom: 4px double var(--gold);
    padding: 28px 0 0 0;
    position: relative;
}

header::before, header::after {
    content: "";
    position: absolute;
    height: 2px;
    background: var(--gold);
    top: 12px;
    left: 5%;
    right: 5%;
    opacity: 0.4;
}

.brand {
    text-align: center;
    padding: 0 20px 22px 20px;
}

.brand-emblem {
    display: inline-block;
    width: 90px;
    height: 90px;
    border: 3px double var(--gold);
    border-radius: 50%;
    line-height: 84px;
    color: var(--gold);
    font-family: "Garamond", serif;
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 14px;
    background: rgba(201, 169, 97, 0.08);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.brand h1 {
    font-family: "Garamond", "Times New Roman", serif;
    font-size: 52px;
    font-weight: normal;
    letter-spacing: 8px;
    color: var(--gold-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 6px;
}

.brand .tagline {
    font-style: italic;
    font-size: 15px;
    letter-spacing: 4px;
    color: var(--cream);
    opacity: 0.85;
    text-transform: uppercase;
}

.brand .tagline::before, .brand .tagline::after {
    content: "✦";
    color: var(--gold);
    margin: 0 14px;
    font-size: 11px;
}

/* --------- Navigation --------- */
nav {
    background: var(--navy-deep);
    border-top: 1px solid var(--gold-deep);
    border-bottom: 1px solid var(--gold-deep);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    border-right: 1px solid rgba(201, 169, 97, 0.2);
}
nav ul li:first-child { border-left: 1px solid rgba(201, 169, 97, 0.2); }

nav ul li a {
    display: block;
    padding: 14px 28px;
    color: var(--gold-light);
    text-decoration: none;
    font-family: Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    transition: all 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background: var(--gold);
    color: var(--navy-deep);
    text-shadow: none;
}

/* --------- Container --------- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

main {
    padding: 50px 0 70px 0;
}

/* --------- Hero --------- */
.hero {
    background:
        linear-gradient(135deg, rgba(10, 31, 61, 0.85) 0%, rgba(10, 31, 61, 0.7) 100%),
        repeating-linear-gradient(45deg, var(--navy) 0 20px, var(--navy-light) 20px 40px);
    color: var(--cream);
    text-align: center;
    padding: 80px 30px;
    border-bottom: 4px double var(--gold);
    border-top: 1px solid var(--gold-deep);
}

.hero h2 {
    font-family: "Garamond", serif;
    font-size: 44px;
    font-weight: normal;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 18px;
    line-height: 1.3;
}

.hero p {
    font-size: 18px;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
    opacity: 0.95;
}

.hero .ornament {
    color: var(--gold);
    font-size: 24px;
    margin: 18px 0;
    letter-spacing: 8px;
}

/* --------- Buttons --------- */
.btn {
    display: inline-block;
    padding: 12px 36px;
    background: var(--gold);
    color: var(--navy-deep);
    text-decoration: none;
    font-family: Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    border: 2px solid var(--gold-deep);
    transition: all 0.3s;
    font-weight: bold;
}

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

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

/* --------- Section Headers --------- */
.section-title {
    text-align: center;
    margin: 50px 0 40px 0;
}

.section-title h2 {
    font-family: "Garamond", serif;
    font-size: 36px;
    color: var(--navy-deep);
    font-weight: normal;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 30px;
    position: relative;
}

.section-title h2::before, .section-title h2::after {
    content: "❦";
    color: var(--gold);
    font-size: 22px;
    vertical-align: middle;
    margin: 0 18px;
}

.section-title .sub {
    color: var(--muted);
    font-style: italic;
    margin-top: 10px;
    font-size: 16px;
    letter-spacing: 2px;
}

/* --------- Cards / Grid --------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 30px 0;
}

.card {
    background: var(--ivory);
    border: 1px solid var(--border);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 6px var(--ivory), inset 0 0 0 7px var(--gold);
}

.card::before {
    content: "";
    position: absolute;
    top: 14px; left: 14px; right: 14px; bottom: 14px;
    border: 1px solid var(--border);
    pointer-events: none;
}

.card .icon {
    color: var(--gold-deep);
    font-size: 42px;
    margin-bottom: 14px;
    display: block;
    font-family: Georgia, serif;
}

.card h3 {
    font-family: "Garamond", serif;
    color: var(--navy-deep);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
    font-weight: normal;
}

.card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

/* --------- Two-column block --------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
}

.split-text h2 {
    font-family: "Garamond", serif;
    color: var(--navy-deep);
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.split-text .small-title {
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.split-text p {
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.9;
}

.split-image {
    height: 380px;
    border: 1px solid var(--border);
    box-shadow: 8px 8px 0 var(--gold), 8px 8px 0 1px var(--gold-deep);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.split-image::after {
    content: "";
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 2px solid rgba(201, 169, 97, 0.55);
    pointer-events: none;
}

.split-image .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 20, 41, 0.92) 100%);
    color: var(--gold-light);
    padding: 30px 24px 16px 24px;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
}

/* --------- Picture Strip --------- */
.picture-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 30px 0 50px 0;
}

.picture-strip .pic {
    height: 220px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    box-shadow: 4px 4px 0 var(--gold);
    position: relative;
}

.picture-strip .pic::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(201, 169, 97, 0.55);
    pointer-events: none;
}

.picture-strip .pic .pic-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(6, 20, 41, 0.85);
    color: var(--gold-light);
    padding: 8px 12px;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
    border-top: 1px solid var(--gold);
}

/* --------- Hero with image --------- */
.hero-image {
    position: relative;
    border-bottom: 4px double var(--gold);
    border-top: 1px solid var(--gold-deep);
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.05);
    z-index: 0;
}

.hero-image .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 61, 0.55) 0%, rgba(6, 20, 41, 0.7) 100%);
    z-index: 1;
}

.hero-image .hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cream);
    padding: 60px 30px;
    max-width: 880px;
}

.hero-image h2 {
    font-family: "Garamond", serif;
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 18px;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-image .ornament {
    color: var(--gold);
    font-size: 24px;
    margin: 18px 0;
    letter-spacing: 8px;
}

.hero-image p {
    font-size: 18px;
    font-style: italic;
    margin: 0 auto 30px auto;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --------- Two-tone info row --------- */
.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: var(--ivory);
    border: 1px solid var(--border);
    margin: 50px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-row .info-cell {
    padding: 36px 28px;
    border-right: 1px dotted var(--border);
    text-align: center;
}

.info-row .info-cell:last-child { border-right: none; }

.info-row .info-cell h4 {
    font-family: "Garamond", serif;
    color: var(--navy-deep);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: normal;
    text-transform: uppercase;
}

.info-row .info-cell .icon {
    color: var(--gold-deep);
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.info-row .info-cell p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* --------- News / Bulletin --------- */
.bulletin {
    background: var(--parchment);
    border: 1px solid var(--border);
    padding: 36px 40px;
    margin: 40px 0;
    position: relative;
}

.bulletin::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.bulletin h3 {
    font-family: "Garamond", serif;
    color: var(--navy-deep);
    font-size: 26px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
    font-weight: normal;
}

.bulletin h3::before, .bulletin h3::after {
    content: "❦";
    color: var(--gold);
    margin: 0 14px;
}

.bulletin .news-item {
    padding: 16px 0;
    border-bottom: 1px dotted var(--border);
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    align-items: baseline;
}

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

.bulletin .news-date {
    color: var(--gold-deep);
    font-family: Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

.bulletin .news-text {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
}

.bulletin .news-text strong {
    color: var(--navy-deep);
}

@media (max-width: 800px) {
    .picture-strip { grid-template-columns: 1fr; }
    .info-row { grid-template-columns: 1fr; }
    .info-row .info-cell { border-right: none; border-bottom: 1px dotted var(--border); }
    .hero-image h2 { font-size: 30px; }
    .bulletin .news-item { grid-template-columns: 1fr; gap: 4px; }
    .client-logos { grid-template-columns: repeat(2, 1fr); }
    .client-logo:nth-child(6n) { border-right: 1px dotted var(--border); }
    .client-logo:nth-child(2n) { border-right: none; }
    .cookie-banner { flex-direction: column; gap: 14px; padding: 16px; }
    .cookie-banner .cookie-text { padding-right: 0; }
}

/* --------- Stats --------- */
.stats {
    background: var(--navy);
    color: var(--cream);
    padding: 60px 30px;
    border-top: 4px double var(--gold);
    border-bottom: 4px double var(--gold);
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat .number {
    font-family: "Garamond", serif;
    font-size: 52px;
    color: var(--gold-light);
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.stat .label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-top: 10px;
    font-family: Georgia, serif;
    color: var(--cream);
    opacity: 0.85;
}

/* --------- Lists --------- */
.classic-list {
    list-style: none;
    margin: 20px 0;
}

.classic-list li {
    padding: 12px 0 12px 30px;
    border-bottom: 1px dotted var(--border);
    position: relative;
}

.classic-list li::before {
    content: "❖";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--gold-deep);
}

.classic-list li:last-child { border-bottom: none; }

/* --------- Quote --------- */
.testimonial {
    background: var(--parchment);
    border-left: 6px solid var(--gold);
    padding: 36px 40px;
    margin: 40px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--navy-deep);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.testimonial::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 18px;
    font-size: 80px;
    color: var(--gold);
    font-family: "Garamond", serif;
    line-height: 1;
}

.testimonial cite {
    display: block;
    margin-top: 18px;
    font-style: normal;
    font-size: 14px;
    color: var(--gold-deep);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* --------- Tables --------- */
.classic-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--ivory);
    border: 2px solid var(--gold-deep);
    margin: 30px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.classic-table th {
    background: var(--navy);
    color: var(--gold-light);
    padding: 16px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-family: Georgia, serif;
    border-bottom: 2px solid var(--gold);
}

.classic-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.classic-table tr:nth-child(even) td { background: var(--parchment); }
.classic-table tr:hover td { background: rgba(201, 169, 97, 0.15); }

/* --------- Forms --------- */
.contact-form {
    background: var(--ivory);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
}

.contact-form::before {
    content: "";
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.form-group {
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-deep);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-family: Georgia, serif;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 14px;
    background: var(--cream);
    border: 1px solid var(--border);
    font-family: Georgia, serif;
    font-size: 15px;
    color: var(--ink);
    transition: border 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--gold-deep);
    background: #fff;
}

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

/* --------- Contact Info --------- */
.contact-info {
    list-style: none;
    margin: 20px 0;
}

.contact-info li {
    padding: 14px 0;
    border-bottom: 1px dotted var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info .ci-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-deep);
    font-size: 12px;
    min-width: 90px;
    font-family: Georgia, serif;
}

/* --------- Portfolio --------- */
.project {
    background: var(--ivory);
    border: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.project-image {
    height: 220px;
    background: var(--navy);
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 4px double var(--gold);
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 20, 41, 0) 60%, rgba(6, 20, 41, 0.4) 100%);
    pointer-events: none;
}

.project-body {
    padding: 26px;
}

.project-body h3 {
    font-family: "Garamond", serif;
    color: var(--navy-deep);
    font-size: 22px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-weight: normal;
}

.project-body .meta {
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    margin-bottom: 14px;
    font-family: Georgia, serif;
}

.project-body p {
    color: var(--muted);
    font-size: 15px;
}

/* --------- Team --------- */
.team-card {
    text-align: center;
    background: var(--ivory);
    border: 1px solid var(--border);
    padding: 36px 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.team-avatar {
    width: 110px;
    height: 110px;
    border: 3px double var(--gold);
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-light);
    font-family: "Garamond", serif;
    font-size: 36px;
    line-height: 104px;
    margin: 0 auto 16px auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.team-card h4 {
    font-family: "Garamond", serif;
    color: var(--navy-deep);
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: normal;
    margin-bottom: 6px;
}

.team-card .role {
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.team-card p { font-size: 14px; color: var(--muted); }

/* --------- Footer --------- */
footer {
    background: var(--navy-deep);
    color: var(--cream);
    padding: 50px 0 0 0;
    border-top: 4px double var(--gold);
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: "Garamond", serif;
    color: var(--gold-light);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: normal;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
    padding-bottom: 10px;
}

.footer-col p, .footer-col li {
    font-size: 14px;
    line-height: 1.9;
    opacity: 0.85;
}

.footer-col ul { list-style: none; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.7;
    font-family: Georgia, serif;
}

/* --------- Cookie Banner --------- */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy-deep);
    color: var(--cream);
    padding: 18px 24px;
    border-top: 3px double var(--gold);
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show { display: flex; }

.cookie-banner .cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    padding-right: 20px;
    font-family: Georgia, serif;
}

.cookie-banner .cookie-text a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-banner button {
    padding: 10px 22px;
    font-family: Georgia, serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold-light);
    transition: all 0.2s;
}

.cookie-banner button.primary {
    background: var(--gold);
    color: var(--navy-deep);
}

.cookie-banner button:hover { opacity: 0.85; }

/* --------- Certifications strip --------- */
.cert-strip {
    background: var(--ivory);
    border: 1px solid var(--border);
    padding: 28px;
    margin: 40px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.cert-strip-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-deep);
    font-family: Georgia, serif;
    font-size: 12px;
    margin-bottom: 18px;
}

.cert-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cert-item {
    text-align: center;
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: var(--cream);
    min-width: 130px;
}

.cert-item .cert-name {
    font-family: "Garamond", serif;
    color: var(--navy-deep);
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 2px;
}

.cert-item .cert-desc {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: Georgia, serif;
}

/* --------- Client logos --------- */
.client-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    background: var(--ivory);
    margin: 40px 0;
}

.client-logo {
    padding: 30px 16px;
    text-align: center;
    border-right: 1px dotted var(--border);
    border-bottom: 1px dotted var(--border);
    font-family: "Garamond", serif;
    color: var(--navy);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.75;
    transition: opacity 0.3s;
}

.client-logo:hover { opacity: 1; }
.client-logo:nth-child(6n) { border-right: none; }
.client-logo:nth-last-child(-n+6) { border-bottom: none; }

/* --------- Social links --------- */
.social-row {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.social-row a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-deep);
    color: var(--gold-light);
    text-decoration: none;
    text-align: center;
    line-height: 34px;
    font-family: Georgia, serif;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
}

.social-row a:hover { background: var(--gold); color: var(--navy-deep); }

/* --------- Footer legal row --------- */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 14px 0;
    border-top: 1px dotted rgba(201, 169, 97, 0.3);
    font-size: 12px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.75;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Georgia, serif;
}

.footer-legal a:hover { opacity: 1; color: var(--gold-light); }

/* --------- Article / Insights --------- */
.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin: 30px 0;
}

.article-card {
    background: var(--ivory);
    border: 1px solid var(--border);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.article-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px double var(--gold);
}

.article-body { padding: 24px; }

.article-meta {
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.article-card h4 {
    font-family: "Garamond", serif;
    color: var(--navy-deep);
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: normal;
}

.article-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.article-card a.read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold-deep);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-family: Georgia, serif;
    border-bottom: 1px solid var(--gold-deep);
    padding-bottom: 2px;
}

/* --------- Responsive --------- */
@media (max-width: 800px) {
    .brand h1 { font-size: 36px; letter-spacing: 4px; }
    .hero h2 { font-size: 30px; }
    .split { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav ul li a { padding: 12px 16px; font-size: 11px; letter-spacing: 2px; }
    .section-title h2 { font-size: 24px; letter-spacing: 3px; }
}
