:root {
    --brand-maroon: #6b0c25;
    /* Adjust to exact brand color */
    --brand-gold: #b8901e;
    --brand-gold-dark: #8e6c12;
    --text-dark: #0f141a;
    --text-light: #f5f7fa;
    --bg-dark: #1f2a35;
    --bg-darker: #19222b;
    --bg-subscribe: #eef0f4;
    --focus-ring: 0 0 0 3px rgba(184, 144, 30, 0.5);
    font-size: 16px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.5;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 .6em;
    font-weight: 600;
    letter-spacing: .5px;
}

p {
    margin: 0 0 1em;
}

a {
    color: var(--brand-maroon);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

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

.container {
    width: min(1200px, 100%);
    margin-inline: auto;
    padding: 0 1.25rem;
}

/* Top Bar */
.topbar {
    background: #fff;
    
    
    text-align: center;
    padding: 2rem;
}

.brand-title {
    font-size: clamp(1.25rem, 2.3vw + .5rem, 2.25rem);
    font-weight: 700;
    color: var(--brand-gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  
    border: 8px solid var(--brand-gold);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .4));
    mix-blend-mode: multiply;
}

.hero__content {
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
}

.hero__logo-wrapper {
    display: inline-flex;
    padding: 1.5rem 2rem;
    border: 3px solid var(--brand-gold);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(2px);
    border-radius: 8px;
}

.hero__logo {
    width: clamp(140px, 25vw, 280px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .35));
}

/* Subscription / Contact Bar */
.subscribe-bar {
    background: var(--bg-subscribe);
    padding: .85rem 0;
    border-top: 1px solid #d2d7dc;
    border-bottom: 1px solid #d2d7dc;
}

.subscribe-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
    justify-content: space-between;
}

.contact-inline {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .9rem;
    color: #222;
}

.contact-inline .icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-inline .label {
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    gap: .5rem;
    flex: 1;
    max-width: 420px;
    margin-left: auto;
}

.subscribe-form input {
    flex: 1;
    padding: .65rem .85rem;
    border: 1px solid #c0c5ca;
    border-radius: 6px;
    font-size: .9rem;
    background: #fff;
}

.subscribe-form input:focus {
    outline: none;
    box-shadow: var(--focus-ring);
    border-color: var(--brand-gold);
}

.subscribe-form button {
    padding: .65rem 1.1rem;
    font-weight: 600;
    font-size: .9rem;
    border: 1px solid var(--brand-maroon);
    background: var(--brand-maroon);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background .25s, transform .15s;
}

.subscribe-form button:hover,
.subscribe-form button:focus {
    background: #4c0613;
}

.subscribe-form button:active {
    transform: translateY(1px);
}

/* Footer Main */
.footer-main {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem 3rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
}

.footer-heading {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--brand-gold);
    margin-bottom: 1rem;
}

.address {
    font-style: normal;
    font-size: .9rem;
    line-height: 1.5;
}

.identity {
    margin-top: 1.25rem;
    font-size: .85rem;
    background: var(--bg-darker);
    padding: .75rem 1rem;
    border-left: 4px solid var(--brand-gold);
    border-radius: 4px;
}

.identity-label {
    font-weight: 600;
    color: var(--brand-gold);
    margin-bottom: .25rem;
    text-transform: uppercase;
    font-size: .75rem;
}

.identity-value {
    font-family: "Courier New", monospace;
    letter-spacing: 1px;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .9rem;
    display: grid;
    gap: .55rem;
}

.link-list a {
    position: relative;
    padding-left: .75rem;
    color: var(--text-light);
}

.link-list a:before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--brand-gold);
    font-weight: 600;
}

.link-list a:hover {
    color: var(--brand-gold);
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand img {
    max-width: 140px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4));
}

.footer-bottom {
    background: #12191f;
    color: #9ba8b5;
    text-align: center;
    padding: .9rem 0;
    font-size: .75rem;
    letter-spacing: .4px;
}

.footer-bottom a {
    color: var(--brand-gold);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Tweaks */
@media (max-width: 760px) {
    .subscribe-form {
        width: 100%;
        order: 3;
        margin-left: 0;
    }

    .subscribe-bar__inner {
        justify-content: flex-start;
    }

    .brand-title {
        font-size: 1.4rem;
    }

    .hero {
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    } }