
/*=========================================================
WHY SAVITUR HERO
=========================================================*/

/* Full-bleed photograph with the copy overlaid on a light wash,
   as in the design. */
.why-hero{

    position:relative;

    padding:0;

    min-height:540px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:var(--background);

}

.why-hero-image{

    position:absolute;

    inset:0;

}

.why-hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.why-hero-wash{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(250,248,244,.94) 0%,
        rgba(250,248,244,.86) 30%,
        rgba(250,248,244,.42) 52%,
        rgba(250,248,244,0) 72%
    );

}

.why-hero .container{

    position:relative;

    z-index:5;

}

.why-hero-content{

    max-width:520px;

}

/* Type comes from the base h1 rule in common.css (the Boutique
   Services standard). */

.why-hero-content .section-divider{

    margin-bottom:26px;

}

.why-hero-content p{

    font-size:14px;

    line-height:1.85;

    margin-bottom:0;

}

/*----------------------------------------*/

@media(max-width:992px){

.why-hero-grid{

grid-template-columns:1fr;

}

.why-hero-content{

max-width:100%;

}

}

@media(max-width:768px){

.why-hero{

padding:30px 0 50px;

}

}

/*=========================================================
WHY SAVITUR - EDITORIAL SECTION
=========================================================*/

.editorial-section{

    background:var(--surface);

    padding:36px 0;

}

.editorial-grid{

    display:grid;

    grid-template-columns:1fr 1.35fr;

    gap:40px;

    align-items:center;

}

.editorial-grid.reverse{

    grid-template-columns:0.8fr 1.2fr;

}

.editorial-content{

    max-width:460px;

}

.editorial-content h2{

    font-size:34px;

    line-height:1.15;

    margin-bottom:12px;

}

.editorial-content p{

    margin-bottom:10px;

}

.editorial-content strong{

    color:#222;

    font-weight:600;

}

.editorial-image img{

    width:100%;

    display:block;
    aspect-ratio:16/10;

    object-fit:cover;

}

@media(max-width:992px){

    .editorial-grid,
    .editorial-grid.reverse{

        grid-template-columns:1fr;

    }

    .editorial-content{

        max-width:100%;

    }

}

/*=========================================================
VALUES
=========================================================*/

.why-values{

background:var(--surface);

padding:36px 0;

}

.values-grid{

display:grid;

grid-template-columns:1fr 1.2fr;

gap:45px;

align-items:start;

}

.values-left h2{

font-size:36px;

line-height:1.15;

margin-bottom:14px;

}

.values-signature{

    margin-top:22px;

    font-family:"Caveat", cursive;

    font-size:48px;

    font-weight:500;

    color:#5d554f;

    transform:rotate(-2deg);

}

.values-right{

border:1px solid var(--border);

padding:28px;

}

.value-item{

display:flex;

gap:22px;

align-items:flex-start;

margin-bottom:20px;

}

.value-item:last-child{

margin-bottom:0;

}

.value-item img{

width:48px;

height:48px;

}

.value-item h3{

font-size:28px;

margin-bottom:10px;

}

.value-item p{

margin:0;

}

@media(max-width:992px){

.values-grid{

grid-template-columns:1fr;

}

.values-right{

padding:35px;

}

}

/*=========================================================
CTA BANNER
=========================================================*/

.cta-banner{

    padding:10px 0 40px;

    background:var(--surface);

}

.cta-banner-inner{

    display:grid;

    grid-template-columns:80px 1fr auto;

    align-items:center;

    gap:40px;

    background:var(--rose-tint);

    border:1px solid #ece3dc;

    padding:25px 35px;

}

.cta-icon{

    display:flex;

    justify-content:center;

}

.cta-icon img{

    width:34px;

    height:34px;

}

.cta-content h2{

    font-size:34px;

    margin-bottom:8px;

    font-weight:400;

}

.cta-content p{

    margin:0;

    color:var(--text-light);

}

/* .btn-outline is now the canonical shared button in common.css -
   these were its values. */

@media(max-width:992px){

.cta-banner-inner{

grid-template-columns:1fr;

text-align:center;

gap:25px;

}

.cta-icon{

justify-content:center;

}

}

img{

    transition:.45s ease;

}

img:hover{

    opacity:.97;

}

