/* =====================================
   MOOD CAFE V2
   STYLE.CSS
===================================== */

/* RESET */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
:root{
--bg:#ffffff;
--white:#fff;
--text:#2D2D2D;
--primary:#651E26;
--accent:#651E26;
--shadow:0 15px 40px rgba(0,0,0,.12);
}
body{
font-family:'Manrope',sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
}
img{max-width:100%;display:block}
.container{width:min(92%,1280px);margin:auto}

/* NAVBAR */
.navbar{
position:fixed;top:0;left:0;width:100%;
padding:22px 0;
z-index:999;
transition:.4s;
background:transparent;
}
.navbar.scrolled{
background:rgba(255,255,255,.95);
backdrop-filter:blur(12px);
box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.navbar .container{
display:flex;
justify-content:space-between;
align-items:center;
}
.logo img{height:82px}
.nav-links{display:flex;gap:42px;list-style:none}
.nav-links a{
text-decoration:none;
font-weight:600;
color:#fff;
transition:.3s;
}
.navbar.scrolled .nav-links a{color:var(--text)}
.nav-links a:hover,.nav-links .active{color:var(--accent)}

.btn-primary,.btn-outline{
padding:16px 34px;
border-radius:999px;
text-decoration:none;
font-weight:700;
transition:.35s;
display:inline-block;
}
.btn-primary{
background:var(--accent);
color:#fff;
}
.btn-primary:hover{
transform:translateY(-4px);
box-shadow:var(--shadow);
}
.btn-outline{
border:2px solid #fff;
color:#fff;
margin-left:16px;
}
.navbar.scrolled .btn-outline{
border-color:var(--primary);
color:var(--primary);
}
.btn-outline:hover{
background:var(--primary);
color:#fff;
}

/* HERO */
.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#2d2d2d;

    will-change:transform;

    transition:transform .08s linear;

}

.hero-image{

    position:absolute;

    inset:-12%;

    z-index:-2;

    will-change:transform;

}
.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.35));

    z-index:1;

}

.hero > *{
    position:relative;
    z-index:1;
}

@keyframes heroBreath{
    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.03);
    }
}
.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle,
    rgba(0,0,0,0) 35%,
    rgba(0,0,0,.25) 100%);

    z-index:-1;

    pointer-events:none;

}
.hero-content{position:relative;z-index:2}
.hero-text{max-width:640px;color:#fff}
.hero-tag{
letter-spacing:5px;
color:var(--accent);
font-weight:700;
display:block;
margin-bottom:18px;
}
.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:92px;
line-height:.95;
margin-bottom:25px;
}
.hero p{
font-size:22px;
line-height:1.8;
margin-bottom:40px;
max-width:560px;
}
.scroll-indicator{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
}
.scroll-indicator span{
display:block;
width:2px;
height:60px;
background:#fff;
animation:scroll 2s infinite;
}
@keyframes scroll{
0%{opacity:0;transform:translateY(-15px)}
50%{opacity:1}
100%{opacity:0;transform:translateY(15px)}
}
/* ==========================
   HERO SLIDER
========================== */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    inset:0;
    z-index:-2;
}

.slide{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    opacity:0;

    transition:opacity 1.8s ease;

}

.slide::after{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.28);

}

.slide.active{

    opacity:1;

}

/* SECTIONS */
section{padding:110px 0}
.section-title{text-align:center;margin-bottom:60px}
.section-title span{color:var(--accent);letter-spacing:3px;font-weight:700}
.section-title h2{
font-family:'Cormorant Garamond',serif;
font-size:54px;
margin-top:12px;
}

/* ABOUT */
.about{
    padding:140px 0;
    position:relative;
}
.about h2{
    font-family:'Cormorant Garamond', serif;
    font-size:72px;
    line-height:1.1;
    color:#651E26;
    margin-bottom:25px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:90px;
    align-items:center;
}

.about-text{
    max-width:520px;
}

.about-image{
    position:relative;
}
.about .section-title{

    text-align:left;

    margin-bottom:25px;

}

.about .section-title span{

    font-size:15px;

    letter-spacing:4px;

    color:#C89D43;

}

.about .section-title h2{

    font-size:64px;

    line-height:1.1;

    color:#651E26;

}

.about p{

    font-size:19px;

    color:#666;

    line-height:2;

    margin:30px 0;

}
.about-image::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border:2px solid rgba(200,157,67,.25);

    border-radius:30px;

    top:-30px;

    left:-30px;

    z-index:-1;

}
.about-image img{

    width:100%;

    border-radius:28px;

    display:block;

    transition:all .6s ease;

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

.about-image img:hover{

    transform:translateY(-12px) scale(1.02);

}
.about-stats{

    display:flex;

    gap:45px;

    margin:40px 0;

}

.about-stats h3{

    font-size:42px;

    color:#651E26;

    font-family:'Cormorant Garamond',serif;

}

.about-stats p{

    margin:6px 0 0;

    font-size:14px;

    color:#777;

    line-height:1.4;

}

/* SIGNATURE */
.features{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}
.feature-card{
background:#fff;
padding:40px;
border-radius:24px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.35s;
text-align:center;
}
.feature-card:hover{
transform:translateY(-10px);
box-shadow:var(--shadow);
}
.feature-card h3{margin-bottom:15px;color:var(--primary)}

/* GALLERY */
.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}
.gallery-grid img{
height:260px;
width:100%;
object-fit:cover;
border-radius:20px;
transition:.4s;
}
.gallery-grid img:hover{
transform:scale(1.05);
}


/* CTA */
.cta{
background:var(--primary);
text-align:center;
color:#fff;
}
.cta h2{
font-family:'Cormorant Garamond',serif;
font-size:58px;
margin-bottom:18px;
}
.cta p{margin-bottom:35px}

/* FOOTER */
footer{
background:#ffffff;
color:#2D2D2D;
padding:70px 0 30px;
}
.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}
.footer-logo{

    height:100px;

    width:auto;

}
footer h4{color:var(--accent);margin-bottom:15px}
footer a{color:#2D2D2D;text-decoration:none}
footer ul{list-style:none}
.copyright{
text-align:center;
margin-top:50px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.1);
}

/* RESPONSIVE */
@media(max-width:992px){
.features,.gallery-grid,.about-grid,.footer-grid{grid-template-columns:1fr 1fr}
.hero h1{font-size:64px}
}
@media(max-width:768px){
.nav-links{display:none}
.features,.gallery-grid,.about-grid,.footer-grid{grid-template-columns:1fr}
.hero{text-align:center}
.hero h1{font-size:48px}
.hero p{font-size:18px}
.btn-outline{margin-left:0;margin-top:15px}
}
/* =====================================
   SCROLL ANIMATIONS
===================================== */

.hidden{

    opacity:0;

    transform:translateY(80px);

}

.show{

    opacity:1;

    transform:translateY(0);

    transition:
        opacity .9s ease,
        transform .9s ease;

}
@keyframes heroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.12);
    }

}
/* ==========================================
   ABOUT PAGE
========================================== */

/* HERO */

.about-hero{

    position:relative;

    height:95vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:url("images/about-hero.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.about-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

}

.about-hero .container{

    position:relative;

    z-index:2;

}

.about-hero .section-label{

    display:inline-block;

    color:#651E26;

    font-size:14px;

    letter-spacing:5px;

    font-weight:700;

    margin-bottom:20px;

    text-transform:uppercase;

}

.about-hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:90px;

    color:#fff;

    line-height:1.05;

    margin-bottom:25px;

}

.about-hero p{

    max-width:700px;

    margin:auto;

    color:#fff;

    font-size:22px;

    line-height:1.8;

}


/* STORY */

.story{

    padding:120px 0;

}

.story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.story-image{

    overflow:hidden;

    border-radius:24px;

}

.story-image img{

    width:100%;

    display:block;

    border-radius:24px;

    transition:.6s ease;

}

.story-image:hover img{

    transform:scale(1.05);

}

.story-text .section-label{

    color:#651E26;

    letter-spacing:4px;

    font-size:14px;

    font-weight:700;

}

.story-text h2{

    font-family:'Cormorant Garamond',serif;

    font-size:64px;

    color:#651E26;

    margin:18px 0 30px;

    line-height:1.1;

}

.story-text p{

    color:#666;

    font-size:18px;

    line-height:1.9;

    margin-bottom:25px;

}


/* PHILOSOPHY */

.philosophy{

    padding:120px 0;

    background:#FBF8F4;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:64px;

    color:#651E26;

    margin-top:15px;

}

.philosophy-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.philosophy-card{

    background:#fff;

    border-radius:20px;

    padding:45px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.philosophy-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.philosophy-card h3{

    color:#651E26;

    margin-bottom:18px;

    font-size:26px;

}

.philosophy-card p{

    color:#666;

    line-height:1.8;

}


/* EXPERIENCE */

.experience{

    padding:250px 0;

    text-align:center;

    color:#fff;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("images/experience.jpg") center/cover no-repeat;

    background-attachment:fixed;

}

.experience h2{

    font-family:'Cormorant Garamond',serif;

    font-size:76px;

    margin-bottom:30px;

}

.experience p{

    max-width:700px;

    margin:auto;

    font-size:24px;

    line-height:1.9;

}


/* RESPONSIVE */

@media(max-width:992px){

.story-grid{

    grid-template-columns:1fr;

}

.philosophy-grid{

    grid-template-columns:1fr;

}

.about-hero h1{

    font-size:60px;

}

.experience h2{

    font-size:52px;

}

}

@media(max-width:768px){

.about-hero{

    height:60vh;

}

.about-hero h1{

    font-size:46px;

}

.about-hero p{

    font-size:18px;

}

.story{

    padding:80px 0;

}

.story-text{

    text-align:center;

}

.story-text h2{

    font-size:46px;

}

.experience{

    padding:100px 0;

}

.experience h2{

    font-size:42px;

}

.experience p{

    font-size:18px;

}

}
/* =====================================
   GALLERY PAGE
===================================== */

.gallery-hero{

    height:95vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#fff;

    background:
    linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
    url("images/gallery-hero.jpg") center/cover no-repeat;

}

.gallery-hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:84px;

    margin:20px 0;

}

.gallery-hero p{

    font-size:22px;

    max-width:700px;

    margin:auto;

}

.gallery-page{

    padding:120px 0;

}

.gallery-masonry{

    column-count:4;

    column-gap:20px;

}

.gallery-masonry img{

    width:100%;

    margin-bottom:20px;

    border-radius:18px;

    cursor:pointer;

    transition:.4s;

}

.gallery-masonry img:hover{

    transform:scale(1.03);

    box-shadow:0 25px 45px rgba(0,0,0,.18);

}

@media(max-width:992px){

.gallery-masonry{

column-count:2;

}

}

@media(max-width:768px){

.gallery-masonry{

column-count:1;

}

.gallery-hero h1{

font-size:52px;

}

}
/* ==========================================
   CAREERS PAGE
========================================== */

/* HERO */

.careers-hero{
    position:relative;
    height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url("images/careers-hero.jpg") center center/cover no-repeat;
    color:#fff;
}

.careers-hero .section-label{
    color:#651E26;
    letter-spacing:5px;
    text-transform:uppercase;
    font-weight:700;
    font-size:14px;
}

.careers-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:82px;
    margin:25px 0;
    line-height:1.1;
}

.careers-hero p{
    max-width:700px;
    margin:auto;
    font-size:22px;
    line-height:1.8;
}


/* WHY JOIN */

.careers-about{
    padding:120px 0;
}

.careers-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.careers-grid img{
    width:100%;
    border-radius:24px;
    transition:.5s ease;
}

.careers-grid img:hover{
    transform:scale(1.03);
}

.careers-grid h2{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    color:#651E26;
    margin:20px 0 30px;
}

.careers-grid p{
    font-size:18px;
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}


/* JOBS */

.jobs{
    padding:120px 0;
    background:#FBF8F4;
}

.jobs .section-heading{
    text-align:center;
    margin-bottom:70px;
}

.jobs .section-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    color:#651E26;
    margin-top:15px;
}

.job-card{
    background:#fff;
    border-radius:20px;
    padding:35px 40px;
    margin-bottom:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.job-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.job-card h3{
    color:#651E26;
    font-size:30px;
    margin-bottom:10px;
}

.job-card p{
    color:#777;
    font-size:17px;
}

.job-card .btn-primary{
    margin-left:30px;
}


/* RESPONSIVE */

@media(max-width:992px){

    .careers-grid{
        grid-template-columns:1fr;
    }

    .job-card{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }

    .careers-hero h1{
        font-size:60px;
    }

}

@media(max-width:768px){

    .careers-hero{
        height:60vh;
    }

    .careers-hero h1{
        font-size:46px;
    }

    .careers-grid h2{
        font-size:42px;
    }

    .jobs .section-heading h2{
        font-size:42px;
    }

}
/* ==========================================
   CONTACT PAGE
========================================== */

/* HERO */

.contact-hero{
    height:95vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("images/contact-hero.jpg") center/cover no-repeat;
}

.contact-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:82px;
    margin:25px 0;
}

.contact-hero p{
    max-width:700px;
    margin:auto;
    font-size:22px;
}

/* CONTACT */

.contact-section{
    padding:120px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
}

.contact-info h2{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    color:#651E26;
    margin-bottom:30px;
}

.contact-info p{
    margin-bottom:18px;
    font-size:18px;
    color:#555;
}

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

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:16px;
    font-family:'Manrope',sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#651E26;
}

.contact-form button{
    width:220px;
}

/* MAP */

.map-section iframe{
    width:100%;
    height:500px;
    border:none;
}

/* MOBILE */

@media(max-width:992px){

.contact-grid{
grid-template-columns:1fr;
}

.contact-hero h1{
font-size:58px;
}

}


@media(max-width:768px){
    
.contact-hero{
height:60vh;
}

.contact-hero h1{
font-size:44px;
}

.contact-info h2{
font-size:42px;
}

.mobile-order{
    display:block;
}

.footer-bottom{

    justify-content:center;

}
.about-hero{

    height:auto;
    min-height:100vh;
    padding:140px 25px 80px;
    box-sizing:border-box;

}

.about-hero h1{

    font-size:44px;
    line-height:1.1;
    margin-bottom:25px;

}

.about-hero p{

    font-size:17px;
    line-height:1.7;
    max-width:100%;
    margin-bottom:0;

}

.about-hero .section-label{

    letter-spacing:5px;

    font-size:14px;

}


}
/* SOCIAL LINKS */

.social-links{

    margin-top:45px;

}

.social-links h3{

    color:#651E26;

    margin-bottom:20px;

    font-size:28px;

    font-family:'Cormorant Garamond',serif;

}

.social-links a{

    width:55px;

    height:55px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-right:15px;

    border-radius:50%;

    background:#651E26;

    color:#fff;

    font-size:22px;

    text-decoration:none;

    transition:.35s ease;

}

.social-links a:hover{

    background:#C89D43;

    transform:translateY(-6px) rotate(8deg);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}
/* ==========================================
   SOCIAL CARDS
========================================== */

.social-section{

    margin-top:60px;

}

.social-section h3{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:#651E26;

    margin-bottom:12px;

}

.social-section p{

    color:#777;

    margin-bottom:35px;

    max-width:500px;

}

.social-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.social-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:24px;

    border-radius:18px;

    background:#fff;

    text-decoration:none;

    color:#333;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.social-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    border-left:5px solid #C89D43;

}

.social-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#651E26;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

    transition:.35s;

}

.social-card:hover .social-icon{

    background:#C89D43;

    transform:rotate(15deg) scale(1.08);

}

.social-card h4{

    font-size:22px;

    margin-bottom:6px;

    color:#651E26;

}

.social-card span{

    color:#777;

    font-size:15px;

}

@media(max-width:768px){

.social-grid{

grid-template-columns:1fr;

}

.social-section{

text-align:center;

}

.social-card{

justify-content:center;

}

}
/* ==========================================
   FOOTER BOTTOM
========================================== */

.footer-bottom{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    width:90%;

    max-width:1200px;

    margin:35px auto 0;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#651E26;

    color:#fff;

    font-size:18px;

    text-decoration:none;

    transition:.35s ease;

}

.footer-social a:hover{

    background:#C89D43;

    transform:translateY(-5px);

}
/* ===========================
   MOBILE MENU
=========================== */

.menu-toggle{

    display:none;

    width:34px;

    cursor:pointer;

    z-index:2000;

}

.menu-toggle span{

    display:block;

    height:3px;

    background:#fff;

    margin:7px 0;

    transition:.35s;

}
.mobile-order{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    color:#651E26;

    padding:2px;

    border-radius:50px;

}

.mobile-order a{

    display:inline-block;

    background:#651E26;

    color:#ffffff;

    padding:16px 36px;

    border-radius:40px;

    text-decoration:none;

    font-weight:700;

}

.mobile-order:hover{

    background:#651E26;

    color:#fff;

}

/* Mobile */

@media(max-width:991px){

.menu-toggle{

display:block;

}

.nav-links{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    height:100vh;

    background:rgba(101,30,38,.92);

    backdrop-filter:blur(18px);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:35px;

    transition:.45s ease;

    z-index:999;

}

.nav-links.active{

    right:0;

}

.nav-links a{

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#CFAF7A;

    transition:.3s;

}

.nav-links a:hover::after,

.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover{

    color:#CFAF7A;

}
.nav-links a.active{

    color:#CFAF7A;

}

/* Hide only the desktop button */
.navbar > .container > .btn-primary{
    display:none;
}

.mobile-order{
    display:block;
    margin-top:25px;
}

.mobile-order .btn-primary{
    display:inline-block;
    padding:16px 34px;
}

.logo img{

height:58px;

}

.navbar{

padding:14px 0;

}

}
/* ==========================================
   ABOUT HERO
========================================== */



.about-hero .container{

    max-width:850px;
    margin:auto;

}

.about-hero .section-label{

    display:block;

    color:#8B1F31;

    letter-spacing:8px;

    font-weight:700;

    margin-bottom:30px;

}

.about-hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:90px;

    line-height:1;

    margin-bottom:35px;

}

.about-hero p{

    font-size:24px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}
/* ===========================
   ABOUT PAGE HERO
=========================== */



.about-hero .container{

    max-width:800px;
    margin:0 auto;

}

.about-hero .section-label{

    display:block;
    color:#8B1F31;
    letter-spacing:6px;
    font-size:14px;
    margin-bottom:25px;

}

.about-hero h1{

    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:1.05;
    margin-bottom:30px;

}

.about-hero p{

    font-size:22px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto;

}

@media (max-width:768px){

.about-hero{

    padding:130px 25px 80px;

}

.about-hero h1{

    font-size:52px;

}

.about-hero p{

    font-size:18px;
    line-height:1.8;

}

}
@media(min-width:769px){
    .mobile-order{
        display:none !important;
    }
}
.mobile-order a::after{
    display:none !important;
}
.success-message{

    background:#e8f8ef;

    color:#0b6b35;

    border:1px solid #7bd59e;

    padding:18px 22px;

    border-radius:12px;

    margin-bottom:25px;

    font-weight:600;

}

.error-message{

    background:#fdeaea;

    color:#a71d2a;

    border:1px solid #f1a2a2;

    padding:18px 22px;

    border-radius:12px;

    margin-bottom:25px;

    font-weight:600;

}
.contact-map iframe{

    width:100%;

    height:500px;

    border:0;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}
.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;
}