*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg:#f6f1ea;
    --white:#ffffff;
    --dark:#0f172a;
    --dark-soft:#1e293b;
    --text:#5f6673;
    --text-light:#7b8494;
    --gold:#c7a46a;
    --gold-dark:#a8854c;
    --gold-soft:#e9d6b3;
    --line:rgba(255,255,255,0.18);
    --overlay:rgba(9,13,22,0.52);
    --shadow:0 20px 60px rgba(15, 23, 42, 0.14);
    --shadow-lg:0 30px 90px rgba(15, 23, 42, 0.18);
    --radius:24px;
    --container:1280px;
}


html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(231, 214, 186, 0.25), transparent 28%),
        radial-gradient(circle at bottom right, rgba(199, 164, 106, 0.12), transparent 30%),
        var(--bg);
    color:var(--dark);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

h1,h2,h3,h4{
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
    line-height:1.1;
}

#progress-bar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:linear-gradient(90deg,var(--gold),#ecd8b3);
    z-index:2000;
}

/* Header */
.header{
    min-height:100vh;
    position:relative;
    background:
        linear-gradient(var(--overlay), var(--overlay)),
        url("Images/Knoetzie-Accommodation.png") center center / cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    isolation:isolate;
}
.header::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(199,164,106,0.12), transparent 30%),
        linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.25));
    z-index:0;
}


.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,0.08), transparent 38%),
        linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.35));
    pointer-events:none;
}

nav{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:min(92%, var(--container));
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 24px;
    border-radius:20px;
    background:rgba(15,23,42,0.28);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.14);
    z-index:1500;
    transition:all .35s ease;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

nav.scrolled{
    top:10px;
    background:rgba(15,23,42,0.85);
    box-shadow:var(--shadow-lg);
}

.logo img{
    width:100px;
    max-width:100%;
    height:auto;
}


.nav-links ul li{
    display:inline-block;
    margin:0 14px;
}

.nav-links ul li a{
    color:#fff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1.8px;
    font-weight:500;
    position:relative;
    padding-bottom:6px;
}

.nav-links ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--gold);
    transition:width .35s ease;
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after{
    width:100%;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:16px;
}

.nav-book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 20px;
    border-radius:999px;
    background:var(--gold);
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s ease;
    box-shadow:0 12px 30px rgba(199,164,106,0.28);
}

.nav-book-btn:hover{
    background:var(--gold-dark);
    transform:translateY(-2px);
}

nav .fa{
    display:none;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

.text-box{
    position:relative;
    z-index:5;
    width:90%;
    max-width:920px;
    text-align:center;
    color:#fff;
    padding-top:60px;
}

.hero-subtitle{
    display:inline-block;
    margin-bottom:18px;
    color:var(--gold-soft);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:12px;
    font-weight:700;
}

.text-box h1{
    font-size:clamp(3rem, 8vw, 5.8rem);
    color:#fff;
    margin-bottom:20px;
    text-shadow:0 12px 40px rgba(0,0,0,0.28);
}

.text-box p{
    max-width:740px;
    margin:0 auto 34px;
    color:rgba(255,255,255,0.9);
    font-size:clamp(1rem, 2.2vw, 1.15rem);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 32px;
    border-radius:999px;
    background:var(--gold);
    color:#fff;
    border:1px solid var(--gold);
    font-size:14px;
    font-weight:600;
    transition:.35s ease;
    box-shadow:0 18px 35px rgba(0,0,0,0.18);
}

.hero-btn:hover{
    background:var(--gold-dark);
    border-color:var(--gold-dark);
    transform:translateY(-3px);
}

.hero-btn-secondary{
    background:transparent;
    border:1px solid rgba(255,255,255,0.45);
    color:#fff;
}

.hero-btn-secondary:hover{
    background:rgba(255,255,255,0.10);
    border-color:#fff;
}

.dark-outline{
    color:var(--dark);
    border:1px solid rgba(17,24,39,0.16);
}

.dark-outline:hover{
    color:#fff;
    background:var(--dark);
    border-color:var(--dark);
}

.hero-scroll-indicator{
    position:absolute;
    bottom:28px;
    left:50%;
    transform:translateX(-50%);
    z-index:6;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    opacity:.9;
}

.hero-scroll-indicator::after{
    content:"";
    display:block;
    width:1px;
    height:46px;
    margin:10px auto 0;
    background:linear-gradient(to bottom, var(--gold), transparent);
}

/* Intro strip */
.intro-strip{
    width:92%;
    max-width:var(--container);
    margin:-75px auto 0;
    position:relative;
    z-index:20;
}

.intro-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.8);
    border-radius:28px;
    padding:34px 36px;
    box-shadow:var(--shadow);
    text-align:center;
}

.intro-card h2{
    font-size:42px;
    margin-bottom:12px;
}

.intro-card p{
    max-width:900px;
    margin:0 auto;
    color:var(--text);
    font-size:16px;
}

/* Shared section */
.premium-section{
    width:92%;
    max-width:var(--container);
    margin:0 auto;
    padding:110px 0;
}

.section-heading{
    max-width:860px;
    margin:0 auto 58px;
    text-align:center;
}

.section-heading span,
.transfer-text span,
.cta-box span{
    display:inline-block;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.section-heading h2,
.transfer-text h2,
.cta-box h2{
    font-size:58px;
    margin-bottom:18px;
}

.section-heading p,
.transfer-text p,
.cta-box p{
    color:var(--text);
    font-size:17px;
}

/* Accommodation */
.row{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.campus-col{
    flex:1 1 320px;
    max-width:390px;
    height:500px;
    position:relative;
    overflow:hidden;
    border-radius:30px;
    box-shadow:var(--shadow);
    transform-style:preserve-3d;
    transition:transform .25s ease, box-shadow .25s ease;
    background:#ddd;
    will-change:transform;
}

.campus-col img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

.campus-col:hover img{
    transform:scale(1.08);
}

.layer{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:28px;
    background:linear-gradient(to top, rgba(10,10,10,0.88), rgba(0,0,0,0.18), rgba(0,0,0,0.02));
}

.card-text h3{
    color:#fff;
    font-size:34px;
    margin-bottom:8px;
}

.card-text p{
    color:rgba(255,255,255,0.82);
    margin-bottom:14px;
    font-size:14px;
}

.mini-link{
    color:var(--gold);
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-weight:600;
}

/* Features */
.features-section{
    padding-top:20px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.feature-card{
    background:rgba(255,255,255,0.88);
    border:1px solid rgba(255,255,255,0.7);
    border-radius:24px;
    padding:34px 26px;
    box-shadow:var(--shadow);
    transition:transform .3s ease, box-shadow .3s ease;
    text-align:left;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 26px 70px rgba(17,24,39,0.16);
}

.feature-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    margin-bottom:18px;
    background:linear-gradient(135deg, var(--gold), #e4c48d);
    color:#fff;
    font-size:22px;
    box-shadow:0 14px 30px rgba(199,164,106,0.28);
}

.feature-card h3{
    font-size:30px;
    margin-bottom:10px;
}

.feature-card p{
    color:var(--text);
    font-size:15px;
}

/* Transfer section */
.transfer-section{
    padding-top:20px;
}

.transfer-content{
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(245,236,223,0.93)),
        url("Images/50.jpg") center center / cover no-repeat;
    border-radius:32px;
    padding:70px 60px;
    box-shadow:var(--shadow-lg);
    position:relative;
    overflow:hidden;
}


.transfer-content::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.15) 100%);
}

.transfer-text{
    position:relative;
    z-index:2;
    max-width:680px;
}

/* CTA */
.cta-box{
    text-align:center;
    background:linear-gradient(180deg, #ffffff, #fbf8f3);
    border-radius:32px;
    padding:70px 35px;
    box-shadow:var(--shadow-lg);
    border:1px solid rgba(17,24,39,0.05);
}


.cta-box p{
    max-width:760px;
    margin:0 auto 28px;
}

/* Footer */
.footer{
    background:#0f1724;
    padding:90px 20px 45px;
    margin-top:40px;
}

.footer-inner{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.footer-inner h2{
    color:#fff;
    font-size:48px;
    margin-bottom:12px;
}

.footer-inner p{
    color:rgba(255,255,255,0.72);
    margin-bottom:20px;
}

.icons{
    margin:26px 0 18px;
}

.icons a{
    width:52px;
    height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 8px;
    background:rgba(255,255,255,0.08);
    color:var(--gold);
    font-size:18px;
    transition:.35s ease;
}

.icons a:hover{
    background:var(--gold);
    color:#fff;
    transform:translateY(-4px);
}

.footer-text{
    font-size:14px;
    color:rgba(255,255,255,0.55);
}

/* Reveal animation */
.reveal{
    opacity:0;
    transform:translateY(45px);
    transition:all .85s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* Back to top */
#backToTop{
    position:fixed;
    right:24px;
    bottom:24px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    font-size:22px;
    box-shadow:var(--shadow);
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:1400;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    background:var(--gold-dark);
    transform:translateY(-3px);
}

/* Responsive */
@media (max-width: 1100px){
    .features-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .text-box h1{
        font-size:68px;
    }

    .section-heading h2,
    .transfer-text h2,
    .cta-box h2{
        font-size:46px;
    }
}


@media (max-width: 768px){
    nav{
        width:94%;
        padding:14px 16px;
        border-radius:18px;
    }

    nav .fa{
        display:block;
    }

    .nav-book-btn{
        display:none;
    }

    .nav-actions{
        display:flex;
        align-items:center;
        gap:12px;
    }

    .logo img{
        width:78px;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:78%;
        max-width:320px;
        height:100vh;
        background:rgba(15,23,42,0.98);
        box-shadow:-10px 0 30px rgba(0,0,0,0.3);
        transition:right .35s ease;
        z-index:2000;
        padding:90px 28px 30px;
        display:flex;
        flex-direction:column;
        justify-content:flex-start;
    }

    .nav-links ul{
        padding:0;
        margin:0;
        width:100%;
    }

    .nav-links ul li{
        display:block;
        margin:0 0 22px 0;
    }

    .nav-links ul li a{
        display:inline-block;
        font-size:14px;
        letter-spacing:2px;
        color:#fff;
    }

    .nav-links .fa-times{
        position:absolute;
        top:24px;
        right:22px;
        font-size:28px;
        color:#fff;
        cursor:pointer;
        z-index:2100;
    }

    .text-box{
        width:92%;
        padding-top:30px;
    }

    .text-box h1{
        font-size:46px;
        line-height:1.05;
    }

    .text-box p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-btn{
        width:100%;
        max-width:310px;
    }

    .intro-strip{
        margin-top:-55px;
    }

    .intro-card{
        padding:26px 22px;
    }

    .intro-card h2{
        font-size:30px;
    }

    .premium-section{
        padding:80px 0;
    }

    .section-heading h2,
    .transfer-text h2,
    .cta-box h2{
        font-size:36px;
    }

    .campus-col{
        height:400px;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .transfer-content{
        padding:42px 24px;
    }

    .cta-box{
        padding:50px 22px;
    }

    .footer-inner h2{
        font-size:38px;
    }
}


/* =========================
   BLOG SHARED STYLES
========================= */

.blog-hero,
.post-hero {
    position: relative;
    padding: 160px 20px 80px;
    text-align: center;
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-hero {
    background-image:
        linear-gradient(180deg, rgba(15,23,42,.82), rgba(15,23,42,.70)),
        url('Images/Knoetzie-Accommodation.png');
}

.blog-hero::before,
.post-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.18));
    pointer-events: none;
}

.blog-hero > *,
.post-hero > * {
    position: relative;
    z-index: 2;
}

.blog-hero h1,
.post-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    line-height: 1.05;
    margin-bottom: 14px;
    color: #fff;
}

.blog-hero p,
.post-hero p {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.8;
}

.blog-wrap,
.post-wrap {
    width: 92%;
    max-width: 1280px;
    margin: 50px auto 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card,
.post-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15,23,42,.10);
}

.blog-card {
    transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 80px rgba(15,23,42,.16);
}

.blog-card img,
.post-featured {
    width: 100%;
    display: block;
    object-fit: cover;
}

.blog-card img {
    height: 240px;
}

.post-featured {
    max-height: 520px;
}

.blog-card-content,
.post-content {
    padding: 30px;
}

.blog-meta,
.post-meta {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a8854c;
    margin-bottom: 12px;
    font-weight: 700;
}

.blog-card h2,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #0f172a;
}

.blog-card h2 {
    font-size: 38px;
    line-height: 1.08;
    margin-bottom: 12px;
}

.blog-card p {
    color: #5f6673;
    margin-bottom: 18px;
    line-height: 1.8;
}

.blog-read,
.post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #c7a46a;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.blog-read:hover,
.post-back:hover {
    background: #a8854c;
    color: #fff;
}

.blog-empty {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(15,23,42,.10);
    text-align: center;
    color: #5f6673;
}

.post-hero-inner {
    width: 92%;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.post-wrap {
    max-width: 980px;
}

.post-back {
    margin-bottom: 24px;
}

.post-content {
    color: #334155;
    font-size: 18px;
    line-height: 1.9;
}

.post-content h1 { font-size: 48px; margin: 1.2em 0 .5em; }
.post-content h2 { font-size: 40px; margin: 1.2em 0 .5em; }
.post-content h3 { font-size: 32px; margin: 1.2em 0 .5em; }
.post-content h4 { font-size: 26px; margin: 1.2em 0 .5em; }

.post-content p {
    margin: 0 0 1.2em;
}

.post-content ul,
.post-content ol {
    margin: 0 0 1.3em 1.5em;
    padding-left: 1em;
}

.post-content li {
    margin-bottom: .5em;
}

.post-content a {
    color: #a8854c;
    text-decoration: underline;
}

.post-content strong {
    color: #0f172a;
}

.post-content blockquote {
    margin: 1.7em 0;
    padding: 18px 22px;
    border-left: 4px solid #c7a46a;
    background: #faf7f2;
    color: #475569;
    border-radius: 12px;
    font-style: italic;
}

.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 28px auto;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15,23,42,.12);
}

.post-content pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: 18px;
    border-radius: 14px;
    overflow: auto;
    font-size: 15px;
}

.post-content code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: .95em;
}

@media (max-width: 1000px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .blog-hero,
    .post-hero {
        padding: 140px 20px 70px;
    }

    .blog-hero h1,
    .post-hero h1 {
        font-size: 42px;
    }

    .blog-card h2 {
        font-size: 30px;
    }

    .post-content {
        padding: 24px;
        font-size: 17px;
    }

    .post-content h1 { font-size: 36px; }
    .post-content h2 { font-size: 30px; }
    .post-content h3 { font-size: 26px; }
    .post-content h4 { font-size: 22px; }
}

@media (max-width: 680px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   COMMENTS
========================= */

.comments-section {
    margin-top: 36px;
}

.comments-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(15,23,42,.10);
}

.comments-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 20px;
}

.comment-message {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 15px;
}

.comment-message.success {
    background: #e9f7ef;
    color: #1f6b42;
    border: 1px solid #bfe3cc;
}

.comment-message.error {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}

.comment-form {
    margin-bottom: 34px;
}

.comment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8dee8;
    border-radius: 14px;
    font: inherit;
    color: #334155;
    background: #fff;
    box-sizing: border-box;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #c7a46a;
    box-shadow: 0 0 0 4px rgba(199,164,106,.12);
}

.honeypot-wrap {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.comments-list {
    margin-top: 10px;
}

.no-comments {
    color: #64748b;
    line-height: 1.8;
}

.comment-item {
    padding: 20px 0;
    border-top: 1px solid #e8edf3;
}

.comment-author {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.comment-date {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #a8854c;
    margin-bottom: 10px;
}

.comment-text {
    color: #334155;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .comment-grid {
        grid-template-columns: 1fr;
    }

    .comments-card {
        padding: 22px;
    }

    .comments-card h2 {
        font-size: 34px;
    }
}


/* Promotion block */
.site-promo-wrap{
    width:92%;
    max-width:var(--container);
    margin:38px auto 0;
}

.site-promo{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    box-shadow:var(--shadow-lg);
    background:linear-gradient(135deg, #101826, #1e293b);
    color:#fff;
}

.site-promo::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 30%),
        radial-gradient(circle at bottom left, rgba(199,164,106,0.18), transparent 35%);
    pointer-events:none;
}

.site-promo-inner{
    position:relative;
    z-index:2;
    padding:38px 34px;
}

.site-promo-label{
    display:inline-block;
    margin-bottom:14px;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(255,255,255,0.12);
    color:#f6e7ca;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.site-promo h3{
    font-size:46px;
    color:inherit;
    margin-bottom:12px;
}

.site-promo p{
    max-width:780px;
    color:rgba(255,255,255,0.88);
    font-size:17px;
    line-height:1.8;
    margin-bottom:18px;
}

.site-promo-price{
    font-size:18px;
    margin-bottom:20px;
    color:#fff;
}

.site-promo-price strong{
    font-size:28px;
    color:#f6e7ca;
}

.site-promo-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:999px;
    background:var(--gold);
    color:#fff;
    border:1px solid var(--gold);
    font-size:14px;
    font-weight:600;
    transition:.35s ease;
    box-shadow:0 18px 35px rgba(0,0,0,0.18);
}

.site-promo-btn:hover{
    background:var(--gold-dark);
    border-color:var(--gold-dark);
    transform:translateY(-3px);
    color:#fff;
}

@media (max-width:768px){
    .site-promo-inner{
        padding:28px 22px;
    }

    .site-promo h3{
        font-size:34px;
    }

    .site-promo p{
        font-size:16px;
    }

    .site-promo-price strong{
        font-size:24px;
    }
}

