/* ==============================================
   GLOBAL VARIABLES & RESET
   ============================================== */
:root {
    --color-grey-blue: #232C39;
    --color-gold: #B59463;
    --color-gold-hover: #9E7F50;
    --color-white: #FFFFFF;
    --color-cream: #E8E5DF;
    --color-cream-border: #D5D0C7;
    --color-text-main: #000000;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-accent: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ==============================================
   PAGE LOAD FADE-IN ANIMATION (HEADER ONLY)
   ============================================== */
@keyframes cinematicFadeIn {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

.hero-bg::after,
.about-hero-bg::after,
.profile-hero-bg::after,
.contact-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 10;
    animation: cinematicFadeIn 3.5s ease-in-out forwards;
    pointer-events: none;
}

/* ==============================================
   TYPOGRAPHY & GLOBAL HEADINGS
   ============================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-gold); 
    margin-bottom: 1rem;
}

.title-dark {
    color: var(--color-grey-blue);
}

.gold-subtitle {
    color: var(--color-gold);
    font-family: var(--font-accent);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.serif-title {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--color-white);
    font-size: 42px;
    margin-bottom: 40px;
}

a {
    text-decoration: none;
    color: var(--color-grey-blue);
    transition: color 0.3s ease;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ==============================================
   HEADER & NAVIGATION
   ============================================== */
.site-header {
    background-color: var(--color-grey-blue);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav ul li a {
    font-family: var(--font-accent);
    font-weight: bold;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.main-nav ul li a:hover {
    border-bottom-color: var(--color-gold);
}

.main-nav ul li a.active {
    border-bottom-color: var(--color-gold);
    color: var(--color-gold);
}

.nav-btn {
    background-color: var(--color-gold);
    color: var(--color-grey-blue) !important;
    border-bottom: none !important;
    padding: 10px 20px !important;
    border-radius: 4px;
}

/* ==============================================
   HOME HERO SECTION (index.html)
   ============================================== */
.hero-new {
    position: relative;
    min-height: 480px;
    padding: 120px 0;
    color: var(--color-white);
    overflow: hidden;
    background-color: #ffffff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-bg-1 {
    background-image: url('../assets/home-cover-img-1.png');
    animation: fadeImageOne 14s infinite ease-in-out;
}

.hero-bg-2 {
    background-image: url('../assets/home-cover-img-2.png');
    animation: fadeImageTwo 14s infinite ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(35, 44, 57, 0.85), rgba(35, 44, 57, 0.35));
    z-index: 2;
}

.hero-new .container {
    position: relative;
    z-index: 20;
    text-align: left;
}

@keyframes fadeImageOne {
    0% { opacity: 0; transform: scale(1); }
    5% { opacity: 1; transform: scale(1.005); }
    45% { opacity: 1; transform: scale(1.045); }
    50% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

@keyframes fadeImageTwo {
    0%, 50% { opacity: 0; transform: scale(1); }
    55% { opacity: 1; transform: scale(1.005); }
    95% { opacity: 1; transform: scale(1.045); }
    100% { opacity: 0; transform: scale(1.05); }
}

@keyframes subtleZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}


.hero-new h4 {
    font-family: var(--font-accent);
    color: var(--color-gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-new h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 4rem;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-new h1 span {
    color: var(--color-gold);
}

.hero-new p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 40px;
}

/* ==============================================
   ICON CAROUSEL / SLIDER
   ============================================== */
.slider-container {
    background-color: var(--color-grey-blue);
    padding: 60px 0;
    overflow: hidden; 
}

.slider-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.slider-flex .slider-btn {
    flex-shrink: 0;
}

.slider-wrapper {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slider-item {
    flex: 0 0 20%; 
    min-width: 20%;
    scroll-snap-align: start;
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    transition: transform 0.3s;
    padding: 10px;
}

.slider-item:hover {
    transform: translateY(-5px);
}

.slider-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    object-fit: contain;
}

.slider-item h3 {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.slider-btn {
    font-family: var(--font-accent);
    background: none;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

.slider-btn:hover {
    background: var(--color-gold);
    color: var(--color-grey-blue);
}

.slider-btn.disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* ==============================================
   MID-SECTION CONTENT (index.html)
   ============================================== */
.who-we-are {
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are-content {
    flex: 1;
    padding-right: 60px;
    text-align: left;
}

.who-we-are-content h4 {
    font-family: var(--font-accent);
    color: var(--color-gold);
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.who-we-are-content h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 3rem;
    color: var(--color-grey-blue);
    line-height: 1.1;
    margin-bottom: 30px;
    word-wrap: break-word;
}

.who-we-are-content h2 span {
    color: var(--color-gold);
}

.who-we-are-content p {
    font-family: var(--font-primary);
    margin-bottom: 20px;
    font-size: 1rem;
    color: #444;
}

.who-we-are-image {
    flex: 1;
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
}

/* ==============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================== */
.about-hero {
    position: relative;
    min-height: 480px;
    padding: 120px 0;
    background-color: var(--color-grey-blue);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/about-main-img.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: subtleZoom 20s ease-out forwards;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #111722 0%, rgba(17, 23, 34, 0.85) 50%, rgba(17, 23, 34, 0.3) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 20;
    text-align: left;
}

.serif-hero-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 4rem;
    color: var(--color-white);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: left;
}

.serif-hero-title span {
    color: var(--color-gold);
}

.about-hero-content p {
    font-family: var(--font-primary);
    color: #d1d5db;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
}

.about-mid-section {
    background-color: #0E131C;
    padding: 90px 0;
}

.about-mid-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-mid-text {
    flex: 1;
    text-align: left;
}

.about-mid-text p {
    font-family: var(--font-primary);
    color: #A0AEC0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-mid-img-wrapper {
    flex: 1;
}

.about-mid-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.about-mission-section {
    background-color: #F5F5F7;
    padding: 90px 0;
}

.about-mission-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-mission-text {
    flex: 1.2;
    text-align: left;
}

.mission-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 3.2rem;
    color: #111827;
    line-height: 1.15;
    margin-bottom: 25px;
}

.mission-heading span {
    color: var(--color-gold);
}

.about-mission-text p {
    font-family: var(--font-primary);
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-mission-img-wrapper {
    flex: 0.8;
}

.about-mission-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pre-footer-banner {
    background-color: #0B0E14;
    padding: 35px 20px;
    border-top: 1px solid rgba(181, 148, 99, 0.3);
    border-bottom: 1px solid rgba(181, 148, 99, 0.3);
}

.pre-footer-banner h2 {
    color: var(--color-gold);
    font-family: var(--font-accent);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
}

/* ==============================================
   PROFILE PAGE SPECIFIC STYLES
   ============================================== */
.profile-hero {
    position: relative;
    min-height: 480px;
    padding: 120px 0;
    background-color: var(--color-grey-blue);
    overflow: hidden;
}

.profile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/profile-header-img.png');
    background-size: cover;
    background-position: center right;
    z-index: 1;
    animation: subtleZoom 20s ease-out forwards;
}

.profile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #111722 0%, rgba(17, 23, 34, 0.88) 45%, rgba(17, 23, 34, 0.25) 100%);
    z-index: 2;
}

.profile-hero-content {
    position: relative;
    z-index: 20;
    text-align: left;
}

.profile-hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 3.8rem;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: 10px;
    line-height: 1.1;
    text-align: left;
}

.profile-hero-title span {
    color: var(--color-gold);
}

.profile-hero-desc {
    font-family: var(--font-primary);
    color: #d1d5db;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
}

.profile-values-intro {
    background-color: #F5F5F7;
    padding: 80px 0;
}

.profile-values-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.profile-values-text {
    flex: 1.1;
    text-align: left;
}

.profile-values-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 3.2rem;
    color: #111827;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.profile-values-heading span {
    color: var(--color-gold);
}

.profile-values-subtext {
    font-family: var(--font-primary);
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
}

.profile-values-image {
    flex: 0.9;
}

.profile-values-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.profile-values-list-section {
    background-color: #0E131C;
    padding: 40px 0 60px;
}

.profile-principles-list {
    display: flex;
    flex-direction: column;
}

.principle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    gap: 40px;
    scroll-margin-top: 80px;
}

.principle-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1.2;
    min-width: 320px;
}

.principle-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(68%) sepia(29%) saturate(628%) hue-rotate(5deg) brightness(92%) contrast(88%);
}

.principle-number {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.principle-title-wrap {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.principle-title-wrap h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 1px;
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
}

.principle-right {
    flex: 1.8;
}

.principle-right p {
    font-family: var(--font-primary);
    color: #A0AEC0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ==============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================== */
.contact-hero-banner {
    position: relative;
    min-height: 480px;
    padding: 120px 0;
    background-color: var(--color-white);
    color: var(--color-grey-blue);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/contact-header-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: subtleZoom 20s ease-out forwards;
}

.contact-hero-content {
    position: relative;
    z-index: 20;
    text-align: left;
}

.contact-hero-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 3.8rem;
    color: var(--color-grey-blue);
    margin-bottom: 10px;
    text-align: left;
}

.contact-hero-title span {
    color: var(--color-gold);
}

.contact-hero-content p {
    font-family: var(--font-primary);
    color: #444444;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
}

.contact-mid-section {
    background-color: #0E131C;
    padding-bottom: 90px;
}

.contact-image-strip {
    display: flex;
    width: 100%;
    margin-bottom: 80px;
}

.strip-img {
    flex: 1;
    height: 240px;
    overflow: hidden;
}

.strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info-cards-container {
    padding: 0 20px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(68%) sepia(29%) saturate(628%) hue-rotate(5deg) brightness(92%) contrast(88%);
}

.contact-card h3 {
    font-family: var(--font-accent);
    color: var(--color-white);
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.contact-card p, .contact-card a {
    font-family: var(--font-primary);
    color: #A0AEC0;
    font-size: 14px;
    line-height: 1.8;
}

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

/* ==============================================
   PRE-FOOTER FORM & CTA STYLES
   ============================================== */
.pre-footer-contact-section {
    background-color: var(--color-cream);
    padding: 70px 20px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-left {
    text-align: left;
}

.contact-form-title {
    color: var(--color-gold);
    font-family: var(--font-accent);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.contact-text-bold {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-text-main);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    word-break: break-word;
}

.contact-text-sub {
    font-family: var(--font-primary);
    color: #444444;
    font-size: 14px;
    line-height: 1.6;
}

.mockup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CCCCCC;
    background-color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 13px;
    color: #333333;
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AAAAAA;
}

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

.form-submit-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-mockup-submit {
    background-color: var(--color-gold);
    color: var(--color-text-main);
    border: none;
    border-radius: 25px;
    padding: 14px 60px;
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-mockup-submit:hover {
    background-color: var(--color-gold-hover);
}

.pre-footer-cta {
    background-color: var(--color-grey-blue);
    padding: 80px 20px;
    text-align: center;
    color: var(--color-white);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.btn {
    padding: 15px 30px;
    font-family: var(--font-accent);
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s;
    display: inline-block;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 4px;
}

.btn-outline:hover {
    background-color: rgba(181, 148, 99, 0.1);
    color: var(--color-gold);
}

.cta-secondary-link {
    font-family: var(--font-accent);
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}

.cta-secondary-link:hover {
    background-color: rgba(181, 148, 99, 0.1);
    color: var(--color-gold);
}

/* ==============================================
   SITE FOOTER (TOP GRID + BOTTOM EMBLEM)
   ============================================== */
.site-footer {
    background-color: var(--color-cream);
    border-top: 1px solid var(--color-cream-border);
    color: var(--color-text-main);
    padding: 60px 0 60px; /* Increased bottom padding to prevent absolute emblem overflow */
}

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

.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 13px;
    margin-bottom: 18px;
}

.footer-col p, .footer-col a {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #444444;
    line-height: 1.8;
}

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

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

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

.footer-links a {
    font-family: var(--font-primary);
    color: #444444;
    font-size: 13px;
}

.footer-bottom-container {
    position: relative;
    border-top: 1px solid var(--color-cream-border);
    padding-top: 30px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.footer-reg {
    font-family: var(--font-accent);
    flex: 1;
    text-align: left;
    font-size: 13px;
    color: #777;
    margin: 0;
    padding-right: 40px;
}

.footer-copy {
    font-family: var(--font-accent);
    flex: 1;
    text-align: right;
    font-size: 13px;
    color: #777;
    margin: 0;
    padding-left: 40px;
}

.emblem-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    padding: 0 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emblem-wrapper img {
    width: 110px;
    height: auto;
    display: block;
    background: transparent;
    mix-blend-mode: multiply;
    filter: none;
}

/* ==============================================
   HAMBURGER MENU BUTTON
   ============================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .slider-item {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }

    .about-mid-flex, .about-mission-flex, .profile-values-container {
        flex-direction: column;
        text-align: left;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .profile-values-subtext {
        margin: 0;
    }

    .principle-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .principle-left {
        width: 100%;
        min-width: auto;
    }

    .principle-right {
        width: 100%;
        padding-left: 63px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: auto;
        max-height: 45px;
        max-width: 180px;
        object-fit: contain;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--color-grey-blue);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        z-index: 999;
        padding: 10px 0 20px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .main-nav.open {
        display: block !important;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 15px;
        color: var(--color-white);
        border-radius: 0;
        text-align: left;
    }

    .hero-new h1, .serif-hero-title, .profile-hero-title, .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-hero-banner {
        padding: 60px 20px 40px;
    }

    .mission-heading, .profile-values-heading {
        font-size: 2.2rem;
    }

    .contact-image-strip {
        flex-direction: column;
    }

    .strip-img {
        height: 180px;
    }

    .slider-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .who-we-are {
        flex-direction: column;
        padding: 50px 20px;
    }

    .who-we-are-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .who-we-are-content h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .btn-mockup-submit {
        width: 100%;
        border-radius: 6px;
    }

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

    .footer-bottom-container {
        border-top: none;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-reg, .footer-copy {
        text-align: center;
        padding: 0;
        flex: none;
    }

    .emblem-wrapper {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        padding: 10px 0;
        order: -1;
    }

    .principle-right {
        padding-left: 0;
    }
}

/* ==============================================
   UTILITY CLASSES
   ============================================== */
.hidden-field {
    display: none;
}