:root{
  --lavender:#6f557c;
  --lavender-dark:#4f3959;
  --sage:#69705f;
  --cream:#faf6f1;
  --soft:#f3ece6;
  --text:#38343a;
  --text-light:#514b53;
  --border:#e2d8d1;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:var(--cream);
  color:var(--text);
  font-family:'Inter',sans-serif;
  line-height:1.9;
  font-size:18px;
}

img{
  width:100%;
  display:block;
}

.container{
  margin:auto;
  padding: 0 20px;
}

.centerImg, .hero-content img {
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1,h2,h3,h4{
  font-family:'Cormorant Garamond',serif;
  /*color:var(--lavender-dark);*/
  color: #1F0935;
}

h1, .hero-sub, .hero-copy, .call-btn {
  text-align: center;
}

h1{
  font-size:3.5rem;
  line-height:0.92;
  margin-bottom:18px;
}

h1 .larger-letter{
  font-size:4.5rem;
}

h2{
  font-size:2.4rem;
  text-align:center;
}

h2 .larger-letter {
  font-size:3rem;
}

h3{
  font-size:1.4rem;
  margin-bottom:18px;
  text-transform: uppercase;
  line-height: 1.0;
}

h3 .larger-letter {
  font-size: 1.8rem;
}

h4 .larger-letter {
  font-size:1.4rem;
}

.feature h4 {
  color: var(--sage);
}

p{
  color:var(--text-light);
}

section{
  padding:10px 0;
}

/* HERO */

.hero{
  padding:0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  min-height:760px;
}

.hero-left{
  background:#fbf7f2;
  background-image: url('images/flowers-1.png');
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: bottom;
  display:flex;
  /*align-items:center;*/
  justify-content:center;
  padding:70px;
}

.language-content{
  position: relative;
}

.language-es{
  position: absolute;
  padding: 10px 15px 10px 15px;
  background-color: var(--sage);
}

.language-es p a{
  color: white;
  font-weight: bold;
}

.language-es p a:hover{
  text-decoration: none;
}

.hero-content{
  max-width:520px;
}

.hero-content h2{
  color:var(--sage);
  letter-spacing:2px;
  line-height: 1.2;
}

.hero-sub{
  font-size:2rem;
  color:var(--sage);
  letter-spacing:2px;
}

.hero-copy{
  font-size:1.45rem;
  line-height:2;
  margin-bottom:35px;
  color: #1F0935;
}

.hero-btn {
  text-align: center;
}

.call-btn{
  display:inline-block;
  background: #464a31;
  color:white;
  text-decoration:none;
  padding:18px 45px;
  border-radius:18px;
  font-size:1.6rem;
  font-weight:300;
  transition:.3s;
  line-height: 1.0;
  background-image: url('images/phone.png');
  background-repeat: no-repeat;
  background-position-x: 12px;
  background-position-y: 22px;
}

.call-btn:hover{
  transform:translateY(-2px);
}

.call-btn .smaller {
  font-size: 0.9rem;
}

.hero-right{
  position:relative;
  overflow:hidden;
}

.hero-right img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.badge{
  position:absolute;
  right:35px;
  bottom:35px;
  width:210px;
  height:210px;
  border-radius:50%;
  background:rgba(104,78,118,1);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px;
  font-size:1.25rem;
  line-height:1.6;
  border: 1px solid;
}

.badge span {
  font-size: 30px;
  line-height:0.1;
  display: contents;
}

/* SECTION TITLE */

.section-title{
  text-align:center;
}

.section-title h2{
  line-height: 1.3;
}

/* FEATURES */

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.feature:nth-child(1), .feature:nth-child(2), .feature:nth-child(3) {
  border-right: 1px solid var(--border);
}

.feature{
  text-align:center;
}

.feature-icon{
  margin:auto;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
}

#max {
  width: 124px;
}

#min {
  width: 117px;
}

#last {
  width: 116px;
}

#farewell {
  width: 100px;
}

h4{
  font-size:1.2rem;
  line-height: 1.0;
  margin-bottom:10px;
  text-transform: uppercase;
}

.feature p{
  font-size:1.15rem;
  line-height:2;
  color: #1F0935;
}

/* CONTENT GRID */

.middle-grid{
  display:grid;
  grid-template-columns:.9fr .9fr 1.1fr;
  gap:30px;
  margin-top:60px;
}

.card{
  background:#fcfaf7;
  border:1px solid var(--border);
  border-radius:18px;
  padding:35px;
}

.card-image{
  overflow:hidden;
  padding:0;
}

.card-image img{
  height:100%;
  object-fit:cover;
}

.signs ul{
  list-style-image: url('images/paw_bk.png');
  padding-left: 20px;
}

.signs li{
  margin-bottom:16px;
  color:#1F0935;
  font-size:1.15rem;
  padding-left: 10px;
}

.signs p {
  margin-top: 30px;
  text-align: center;
  color: #1F0935;
}

.expect {
  background-image: url('images/flowers-2.png');
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: bottom;
  padding-right: 75px;
}

.expect h4 {
  color: var(--sage);
  text-transform: none;
}

.expect p{
  margin-bottom:9px;
  font-size:1.12rem;
  line-height:2;
  color: #1F0935;
}

.expect-item{
  display:flex;
  gap:15px;
  margin-bottom:8px;
}

.number{
  min-width:40px;
  height:40px;
  border-radius:50%;
  background:var(--lavender);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.expect-item .content{
  color: #1F0935;
}

.expect strong{
  color:var(--lavender-dark);
}

/* SERVICE STRIP */

.service-strip{
  margin-top:30px;
  background:#fbf8f5;
  border:1px solid var(--border);
  border-radius:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  padding:22px;
}

.service-box{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:1.25rem;
  font-weight:500;
  color:#1F0935;
}

.service-box:nth-child(1) {
  border-right: 1px solid var(--border);
}

#calendar-icon {
  width: 42px;
}

#map-icon {
  width: 38px;
}

#small-phone {
  width: 17px;
  display: inline;
  margin-right: 10px;
}

#email {
  width: 20px;
  display: inline;
  margin-left: 10px;
  margin-right: 10px;
}

/* ABOUT + FAQ */

.about-faq{
  margin-top:30px;
  display:grid;
  grid-template-columns:.9fr 1.4fr;
  gap:30px;
}

.about {
  background-image: url('images/flowers-3.png');
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: bottom;
  padding-left: 110px;
}

.about p{
  font-size:1.32rem;
  line-height:2.1;
  color:#1F0935;
}

#faq {
  text-align:center;
}

.faq-item{
  background:white;
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px 22px;
  margin-bottom:14px;
  font-size:1.05rem;
  line-height:1.9;
  display: flex;
  gap: 15px;
}

.question {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lavender);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 5px;
  font-size: 20px;
}

.faq-item p{
  color:#1F0935;
}

/* FOOTER */

.footer{
  margin-top:10px;
  background:
  linear-gradient(rgba(86,63,95,.72),rgba(86,63,95,.72)),
  url('images/btm.jpg');
  background-size:cover;
  background-position:center;
  text-align:center;
  color:white;
  padding:20px 20px 60px 20px;
}

.footer h3{
  color: white;
  font-size:1.4rem;
  text-align: center;
}

.footer p, .footer a{
  color:#f3ebf6;
  font-size:1.2rem;
}

.contact{ 
  font-size:1.3rem;
  line-height:2.2;
  font-weight: bold;
}

.footer-small{
  opacity:.9;
  font-size:1rem;
  background-color: #50543b;
  color: white;
  text-align: center;
}

.footer-small p {
  color: white;
}

.footer-small img {
  width: auto;
  display: inline-block;
  position: relative;
  top: 2px;
}

/* RESPONSIVE */

@media(max-width: 1100px){

  .features{
    grid-template-columns:repeat(2,1fr);
  }

  .feature:nth-child(1), .feature:nth-child(2), .feature:nth-child(3) {
    border-right: none;
  }

  .middle-grid{
    grid-template-columns:1fr;
  }

  .about-faq{
    grid-template-columns:1fr;
  }

}

@media(max-width: 850px){

  .hero-grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:3.8rem;
  }

  .hero-left{
    padding:50px 30px;
  }

}

@media(max-width: 600px){

  body{
    font-size:16px;
  }

  h1{
    font-size:3rem;
  }

  h2{
    font-size:2.4rem;
  }

  .features{
    grid-template-columns:1fr;
  }

  .service-strip{
    grid-template-columns:1fr;
  }

  .badge{
    width:170px;
    height:170px;
    font-size:1rem;
    right:20px;
    bottom:20px;
  }

  .service-box:nth-child(1) {
    border-right: none;
  }

}

@media(max-width: 415px){
  .hero-left{
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 10px;
    padding-left: 10px;
  }
  .about {
    padding-left: 30px;
    background-image: none;
  }

}