* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  font-family: 'Jost', sans-serif;
}

a {
  text-decoration: none;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background-color: #FDFAF5;
  border-bottom: 1px solid #F0E8D8;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.logo-big {
  font-family: 'Playfair Display', serif;
  font-size: 29px;
  font-weight: 700;
  color: #1A1208;
  margin: 0;
  letter-spacing: 0.05em;
}

.logo-small {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #B8860B;
  margin: 0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1A1208;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #B8860B;
  transform:scale(1.1);
}

.header-btn {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FDFAF5;
  background-color: #B8860B;
  padding: 15px 30px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background-color 0.2s ease;
}

.header-btn:hover {
  background-color: #9A700A;
}

/* HERO */
.hero {
  display: flex;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
background-image: url('images/hero.jpg'); 
background-size:cover;
background-position:right top;
background-repeat:no-repeat;
min-height:90vh;

}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(26, 18, 8, 0.95) 30%, rgba(26, 18, 8, 0.2) 60%);  /* dark on left where text is, fades to show dog on right */
  z-index: 0;
}

.left-hero {
  width: 45%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.right-hero {
  width: 55%;
  position: relative;
}

.right-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sub {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #D4B896;
  margin: 0;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}


.hero h1 span {
  color: #B8860B;               /* golden color for "WITH LOVE" */
}

.hero .description {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #CCBBAA;
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-btn {
  background-color: #B8860B;
  color: #FDFAF5;
  padding: 20px 28px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-btn:hover{
transform: scale(1.1);
}

.services-btn {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  padding: 20px 50px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;


}

.services-btn:hover {
  background-color: #FFFFFF;
  color: #1A1208;
  transform: scale(1.1);
}
i{
    color:#B8860B;
    font-size:25px;
    padding-left:15px;
}

/* HERO BOXES */
.hero-boxes {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: nowrap;
  text-align:center;
flex-direction: row;
}

.hero-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex:1;
}

.big-text {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.description-box {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #AAAAAA;
  margin: 0;
}

.second-hero {
  display: grid;
  grid-template-columns: 250px 1fr;  /* fixed widths for left and middle, rest for services */
  background-color: #FDFAF5;
  border-bottom: 1px solid #F0E8D8;
}

.text {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid #F0E8D8;
}

.text .small {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #B8860B;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-style: italic;
  margin: 0;
}

.text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  font-weight: 700;
  color: #1A1208;
  margin: 0;
  line-height: 1.2;
}

.text .description {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.about-btn {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1A1208;
  background-color: #F5EDD8;
  padding: 12px 20px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
  transition: background-color 0.2s ease;
}

.about-btn:hover {
  background-color: #E8D9B8;
  transform: scale(1.1);
}

.services {
  padding: 80px 100px;
  display: flex;
 
  flex-direction: column;
  gap: 30px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services .top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  font-weight: 700;
  color: #1A1208;
  margin: 0;
}

.services-button {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #B8860B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border:1px solid #B8860B;
  Padding:15px;
  border-radius:15px;

}
.services-button:hover{
    transform: scale(1.1);
    border:1px solid #D4B896;
}

.Boxes-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 equal columns */
  gap: 8px;
  
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers everything */
  text-align: center;
  gap: 30px;
  padding: 30px 20px;
  background-color: transparent;
  border: none;
  border:1px solid #B8860B;
  border-radius:15px;
  min-height:320px;
  justify-content: center;
}

.service i {
  font-size: 45px;
  color: #B8860B;        /* golden icon */
  margin-bottom: 4px;
}

.service .main {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1A1208;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service .description {
  font-family: 'Jost', sans-serif;
  font-size: 15spx;
  font-weight: 500;
  color: #777777;
  line-height: 1.5;
  margin: 0;
}

.third-hero {
  background-color: #1A1208;   /* dark brown background */
  padding: 60px;
}
.third-hero .top > div {
  display: flex;
  flex-direction: column;  /* stacks "Pricing" label above the heading */
}

.third-hero .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.third-hero .top .small {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #B8860B;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-style: italic;
  margin: 0 0 8px;
  display: block;
}

.third-hero .top h4 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.third-btn {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #B8860B;
  border: 1px solid #B8860B;   /* golden outline button */
  background-color: transparent;
  padding: 12px 24px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.third-btn:hover {
  background-color: #B8860B;
  color: #1A1208;

}

.third-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 equal columns */
  gap: 16px;
}

.small-box {
  background-color: #FDFAF5;   /* light card background */
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: row;          /* image on left, content on right */
  align-items: stretch;
  padding: 0;
  gap: 0;
  overflow:visible;
}

.small-right {
  flex-shrink: 0;
  width: 50%;                  /* fixed image width */
}

.small-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;         /* shows dog's face */
  border-radius: 8px 0 0 8px;
  display: block;
  
}

.small-left {
    width:50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding:40px;
}

.upper {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #1A1208;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.small-left .box-description {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #999999;
  margin: 0;
}

.pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #1A1208;
  margin: 0;
  line-height: 1;
}

.pricing .box-description {
  font-size: 15px;
  color: #999999;
}

.small-left ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.small-left ul li {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #444444;
  display: flex;
  align-items: center;
  gap: 6px;
}

.small-left ul li::before {
  content: '✓';
  color: #B8860B;              /* golden checkmark */
  font-weight: 700;
  font-size: 11px;
}
/* LAST SECTION */
.last-hero {
  min-height: 350px;
  position: relative;
  display: flex;
  overflow: hidden;
  background-image: url('images/last.jpg');  /* your dog photo */
  background-size: cover;
  background-position: left ;              /* keeps dog on the left */
  background-repeat: no-repeat;
  border-radius: 15px;
}
.last-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(26, 18, 8, 0.1) 20%, rgba(26, 18, 8, 0.97) 60%);  /* transparent on left so dog shows, dark on right for text */
  z-index: 0;
}
.right-last {
  position: relative;
  z-index: 1;                  /* lifts text above overlay */
  margin-left: auto;           /* pushes content to the right side */
  width: 50%;                  /* text takes right 70% of the section */
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.right-last .small {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #B8860B;
  font-style: italic;
  margin: 0;
}

.last-big {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.1;
}

hr {
  border: none;
  border-top: 1px solid #2A2A2A;
  margin: 0;
}

.last-boxes {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.last {
  display: flex;
  align-items: center;
  gap: 12px;
}

.last-left {
  width: 44px;
  height: 44px;
 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.last-left i {
  font-size: 35px;
  color: #B8860B;              /* golden icon */
}

.main-txt {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 4px;
}

.last-right .description {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #AAAAAA;
  margin: 0;
}

.last-btn {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align:center;
  letter-spacing:4px;
  color: #1A1208;
  background-color: #B8860B;
  padding: 14px 32px;
  border-radius: 15px;
  text-transform: uppercase;
  
  width: fit-content;
  transition: background-color 0.2s ease;
}

.last-btn:hover {
  background-color: #9A700A;
}
.empty{
    background-color:rgba(26, 18, 8, 0.1);
    padding:60px;
}
hr{
    border:1px solid #B8860B;
    
}
footer {
  background-color: #FDFAF5; 
  padding-left: 60px;
  padding-bottom:30px;
  padding-right:60px;

}
.footer{
     display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top:30px;

}

.footer-txt{
    padding:15px;
}
.about-hero {
  display: flex;
  background-color: #FDFAF5;
  min-height: 800px;
  align-items: stretch;
}

/* LEFT COLUMN */
.left-about {
  width: 40%;
  padding: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.left-about .small {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #B8860B;
  font-style: italic;
  letter-spacing: 0.1em;
  margin: 0;
}

.left-about h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  color: #1A1208;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.left-about .description {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #555555;
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

/* FEATURE BLOCKS */
.hero-about-boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.left-block {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.left-block i {
  font-size: 35px;
  color: #B8860B;

}

.right-block .name {
  font-family: 'Jost', sans-serif;
  font-size: 1p7x;
  font-weight: 700;
  color: #1A1208;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.right-block .description {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #777777;
  margin: 0;
}

/* RIGHT COLUMN */
.right-about {
  width: 60%;
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: url('images/about-hero.jpg');  /* your groomer photo */
  background-size: cover;
  background-position: center top 20%;
  background-repeat: no-repeat;
  
}

.right-about::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, #FDFAF5 0%, rgba(253, 250, 245, 0) 40%);  /* fades from page color on left to transparent on right so photo shows */
  z-index: 0;
}

.right-about-boxes {
  position: relative;
  z-index: 1;                   /* lifts stats bar above the overlay */
  margin-top: auto;             /* pushes stats to the bottom */
  background-color: rgba(253, 250, 245, 0.9);  /* slightly transparent so it blends */
display:flex;
padding:20px;
}
.right-about-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  border-right: 1px solid #F0E8D8;
  text-align: center;
}

.right-about-box:last-child {
  border-right: none;
}

.box-txt {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #B8860B;              /* golden number */
  margin: 0;
}

.box-desc {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}
/* SERVICES HERO */
.services-hero {
  background-image: url('images/services-hero.jpg');  /* dog being groomed photo */
  background-size: cover;
  background-position: center 20% ;
  background-repeat: no-repeat;
  min-height: 60vh;
  position: relative;
  padding-bottom: 200px;
  padding-left:100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}
.description{
    font-size:20px;
}
.services-hero-txt{
    padding-top:80px;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, #FDFAF5 10%, rgba(253, 250, 245, 0) 55%);  /* fades from white left to photo right */
  z-index: 0;
}

.services-hero * {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

/* wrap your small, h1, description in a div with class services-hero */

 .small {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #B8860B;
  font-style: italic;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

main >h1 {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  font-weight: 700;
  color: #1A1208;
  margin: 0 0 16px;
  text-transform: uppercase;
  line-height: 1.1;
}
h1{
      font-family: 'Playfair Display', serif;
  font-size: 65px;
  font-weight: 700;
  color: #1A1208;
  margin: 0 0 16px;
  text-transform: uppercase;
  line-height: 1.1;
}


main > .description {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #555555;
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
}

/* SERVICE GRID */
.hero-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 columns */
  gap: 16px;
  padding: 80px;
  background-color: #FDFAF5;
}

.hero-service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 45px 60px;
  background-color: #FFFFFF;
  border: 1px solid #F0E8D8;
  border-radius: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-service-box:hover {
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.1);
  border-color: #B8860B;
}

.hero-service-box i {
  font-size: 40px;
  color: #B8860B;
  padding: 0;
  margin-bottom: 4px;
}

.service-box-txt {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1208;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.service-description {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #777777;
  line-height: 1.6;
  margin: 0;
}
.about-logo{
        color:rgb(44, 37, 15);
    }
    /* PRICING HERO */
.hero-pricing {
  display: flex;
  background-color: #FDFAF5;
  min-height: 100vh;
  align-items: stretch;
}

/* LEFT COLUMN */
.hero-pricing-left {
  width: 25%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  padding-top: 80px;
  position: relative;
}

.hero-pricing-left .small {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #B8860B;
  font-style: italic;
  letter-spacing: 0.1em;
  margin: 0;
}

.hero-pricing-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 65px;
  font-weight: 700;
  color: #1A1208;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-pricing-left .description {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.hero-pricing-left img {
  width: 90%;
  border-radius: 12px;
  object-fit: cover;
  margin-top: auto;             /* pushes image to bottom */
}

/* RIGHT COLUMN */
.hero-pricing-right {
  width: 75%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #FDFAF5;
}

/* PRICING BOXES */
.pricing-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 equal columns */
  gap: 16px;
  align-items: start;
  padding-bottom:100px;
}

.pricing-box {
  background-color: #FFFFFF;
  border: 1px solid #F0E8D8;
  border-radius: 12px;
  padding: 106px 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s ease;
}

.pricing-box.popular {
  border: 2px solid #B8860B;   /* golden border for popular */
  margin-top: -20px;            /* makes it taller than others */
  padding-top: 48px;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #B8860B;
  color: #FFFFFF;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-box i {
  font-size: 38px;
  color: #B8860B;
  padding: 0;
}

.name-txt {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1208;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  
}

.name-desc {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #999999;
  margin: 0;
}

/* PRICE CIRCLE */
.pricing {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid #B8860B;
  display: flex;
  align-items: center;        /* vertically centers content */
  justify-content: center;    /* horizontally centers content */
  margin: 0 auto;
  flex-direction: row;        /* puts $ and number side by side */
  gap: 0;
}

.pricing-box.popular .pricing {
  background-color: #B8860B;   /* filled circle for popular */
}

.pricing-box.popular .pricing .icon,
.pricing-box.popular .pricing .price {
  color: #FFFFFF;               /* white text on golden circle */
}

.icon {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #B8860B;
  margin: 0;
  align-self: center;         /* CHANGED from flex-start — aligns $ with the number vertically */
  padding-top: 0;             /* CHANGED — removes the top push that was misaligning it */
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #1A1208;
  margin: 0;
  line-height: 1;
}

.pricing-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.pricing-box ul li {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #555555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-box ul li::before {
  content: '✓';
  color: #B8860B;
  font-weight: 700;
  font-size: 12px;
}

/* ADDITIONAL SECTION */
.additional {
  display: flex;
  gap: 24px;
  background-color: #F5EDD8;
  padding: 35px 60px;          /* full width padding */
  width: 100%;                  /* matches right column width */
  margin-left: auto;           /* pushes it to the right to align with pricing boxes */
  border-radius: 12px;
}

.additional-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.additional-left {
  width: 44px;
  height: 44px;
  border: 1px solid #B8860B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.additional-left i {
  font-size: 18px;
  color: #B8860B;
  padding: 0;
}

.big-text {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #B8860B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
}

.additional-right .description {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #777777;
  line-height: 1.5;
  margin: 0;
}


/* ========== CONTACT HERO ========== */
.contact-hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 40px 60px 80px;
  overflow: hidden;
}

/* faint decorative paw print behind the form, top right */
.contact-hero::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 90px;
  width: 70px;
  height: 70px;
  opacity: 0.35;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><g fill='%23E7DCC3'><ellipse cx='32' cy='42' rx='16' ry='13'/><ellipse cx='14' cy='22' rx='7' ry='9'/><ellipse cx='50' cy='22' rx='7' ry='9'/><ellipse cx='22' cy='10' rx='6' ry='8'/><ellipse cx='42' cy='10' rx='6' ry='8'/></g></svg>");
  z-index: 0;
  pointer-events: none;
}

.contact-hero .left,
.contact-hero .right-contact {
  position: relative;
  z-index: 1;
}

.contact-hero .left {
  flex: 1;
  max-width: 420px;
}

.contact-hero .small {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #B8860B;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight:700;
}

.contact-hero h1 {
  font-size: 55px;
  line-height: 1.2;
  color: #2B2B2B;
  margin-bottom: 18px;
}

.contact-hero .description {
  font-size: 20px;
  font-weight: 300;
  color: #6B6B6B;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* optional hero dog photo - only takes effect if you add
   <img class="hero-dog" src="..." alt="..."> as a direct child of .contact-hero */
.hero-dog {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 380px;
  z-index: 0;
  pointer-events: none;
}

/* address / contact info list */
.address-box {
  display: flex;
  gap: 16px;
}

.left-address {
  display: none; /* single shared icon column isn't used; icons are added per-row below */
}

.right-address {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.right-address .address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.right-address .address::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: #B8860B;
  border: 1px solid #B8860B;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.right-address .address:nth-of-type(1)::before {
  content: "\f095"; /* phone */
}

.right-address .address:nth-of-type(2)::before {
  content: "\f0e0"; /* envelope */
}

.right-address .address:nth-of-type(3)::before {
  content: "\f3c5"; /* map marker */
}

.right-address .large {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2B2B2B;
  margin-bottom: 2px;
}

.right-address .description {
  font-size: 17px;
  color: #6B6B6B;
  margin: 0;
}

/* Follow Us row - only takes effect if you add the markup shown in chat */
.follow-us {
  margin-top: 4px;
}

.follow-us .large {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2B2B2B;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 30px;
  height: 30px;
  border: 1px solid #B8860B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8860B;
  font-size: 18px;
}

/* ========== CONTACT FORM ========== */
.right-contact {
  flex: 1;
  max-width: 560px;
}

.right-contact form {
  background-color: #fff;
  padding: 30px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group:nth-child(3),
.form-group:nth-child(4),
.form-group:nth-child(5) {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #B8860B;
  margin-bottom: 8px;
}

.form-input {
  border: none;
  border-bottom: 1px solid #E8E1D3;
  padding: 8px 0;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  color: #2B2B2B;
  background: transparent;
  outline: none;
  resize: none;
}

.form-input::placeholder {
  color: #B7B0A0;
}

textarea.form-input {
  min-height: 90px;
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  background-color: #B8860B;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s ease;
}

.form-submit:hover {
  background-color: #9A6F09;
}

/* ========== MAP SECTION ========== */
.map-section {
  position: relative;
  padding: 0 60px 60px;
}

.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  border-radius: 14px;
  filter: sepia(15%) saturate(85%);
}

.opening-hours {
  position: absolute;
  right: 90px;
  bottom: 90px;
  background-color: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  min-width: 260px;
}

.opening-hours::before {
  content: "Hours";
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2B2B2B;
  margin-bottom: 14px;
}

.hours-days {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
  border-bottom: 1px solid #F1EADA;
  font-size: 13px;
}

.hours-days:last-child {
  border-bottom: none;
}

.hours-days .days {
  color: #2B2B2B;
  font-weight: 500;
}

.hours-days .hours {
  color: #6B6B6B;
}



/* ========== RESPONSIVE ========== */
@media (max-width: 700px) {
  .contact-hero {
    flex-direction: column;
    padding: 30px 24px 60px;
  }

  .right-contact form {
    grid-template-columns: 1fr;
  }

  .form-group {
    grid-column: 1 / -1 !important;
  }

  .map-section {
    padding: 0 24px 40px;
  }

  .opening-hours {
    position: static;
    margin-top: 20px;
  }
}
@media (max-width: 700px) { 
  /* ============================================================
   HEADER
   ============================================================ */
header {
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 16px 24px;
}
nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ============================================================
   ABOUT HERO
   min-height:800px is a hard-coded desktop value that would leave
   a huge amount of empty space once content stacks into one
   narrower column on mobile — switching to auto lets it size to
   its actual content instead.
   ============================================================ */
.about-hero {
  flex-direction: column;
  min-height: auto;
}
.left-about {
  width: 100%;
  padding: 50px 24px;
}
.left-about h1 {
  font-size: 34px; /* was 60px */
}
.left-about .description {
  max-width: 100%;
}

/* .right-about relied on the parent's 800px min-height (via
   align-items: stretch) to get its own height — with that gone,
   it needs an explicit height so the background photo has
   somewhere to actually show. */
.right-about {
  width: 100%;
  height: 420px;
}
/* This gradient was blending the photo into the page background
   specifically where it sat BESIDE the text column on desktop —
   with the two stacked instead of side by side now, there's no
   shared edge left to blend, so it's just hidden. */
.right-about::before {
  display: none;
}

.right-about-boxes {
  padding: 16px 8px;
}
.box-txt {
  font-size: 24px; /* was 32px */
}
.box-desc {
  font-size: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  flex-direction: column;
  gap: 12px;
  text-align: center;
  max-height:150px;
}
.contact-hero {
  flex-direction: column;
  padding: 30px 24px 60px;
}

.right-contact form {
  grid-template-columns: 1fr;
}

.form-group {
  grid-column: 1 / -1 !important;
}

.map-section {
  padding: 0 24px 40px;
}

.opening-hours {
  position: static;
  margin-top: 20px;
}
/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  padding: 60px 24px;
  min-height: 65vh; /* gives the photo enough vertical room to show
                        something meaningful, rather than being cropped
                        down to whatever height the text content
                        happens to need */
  background-position: center 80%; /* was "right top" — try this as
                        a starting point; adjust below if needed */
}

.hero::before {
  background: linear-gradient(to bottom, rgba(26, 18, 8, 0.9),  rgba(26, 18, 8, 0.7));
  
}
.left-hero {
  width: 100%;
  padding: 0;
}
.hero h1 {
  font-size: 42px; /* was likely much larger on desktop */
}
.hero-btns {
  flex-direction: column;
  align-items: flex-start;
}
.hero-boxes {
  flex-wrap: wrap;
}
.hero-box {
  flex: 1 1 45%; /* two per row instead of four squeezed in one */
}

/* ============================================================
   ABOUT + SERVICES
   250px/1fr grid → stacked single column
   ============================================================ */
.second-hero {
  grid-template-columns: 1fr;
}
.text {
  border-right: none;
  padding: 40px 24px;
}
.services {
  padding: 40px 24px;
}
.top {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.Boxes-services {
  grid-template-columns: 1fr;
}

/* ============================================================
   PRICING PREVIEW
   ============================================================ */
.third-hero {
  padding: 40px 24px;
}
.third-hero .top {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.third-boxes {
  grid-template-columns: 1fr;
}
.small-box {
  flex-direction: column;
}
.small-right,
.small-left {
  width: 100%;
}
.small-right img {
  border-radius: 8px 8px 0 0; /* was rounded on the left side only,
                                  for when the image sat on the left
                                  of a row — now it's on top of a
                                  stacked column, so only the top
                                  corners should be rounded */
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.last-hero {
 position: relative;
  overflow: hidden;
}
.last-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 8, 0.55) 100%,
    rgba(26, 18, 8, 0.35) 105%,
    rgba(26, 18, 8, 0.85) 200%
  );
  z-index: 0;
}
.right-last {
  width: 100%;
  margin-left: 0;
  padding: 40px 24px;
 position: relative;
  z-index: 1;
}
.last-big {
  font-size: 28px; /* was 42px */
}
.last-boxes {
  flex-direction: column;
  gap: 20px;
}
/* ============================================================
   PRICING HERO
   25%/75% fixed-width columns stack; min-height:100vh (inherited
   from .hero-pricing being display:flex, align-items:stretch)
   would leave a huge amount of empty space once content is one
   narrower stacked column instead of two side-by-side ones.
   ============================================================ */
.hero-pricing {
  flex-direction: column;
  min-height: auto;
}
.hero-pricing-left {
  width: 100%;
  padding: 50px 24px;
}
.hero-pricing-left h1 {
  font-size: 36px; /* was 65px */
}
.hero-pricing-left img {
  width: 100%;
  margin-top: 24px;
}
.hero-pricing-right {
  width: 100%;
  padding: 40px 24px;
}

/* ============================================================
   PRICING CARDS
   106px/60px padding is enormous on a phone-width card — same
   category of fix as the BuildPro price boxes earlier tonight.
   ============================================================ */
.pricing-boxes {
  grid-template-columns: 1fr;
  padding-bottom: 40px;
}
.pricing-box {
  padding: 40px 24px;
}
.pricing-box.popular {
  margin-top: 0; /* the -20px "taller than siblings" offset only
                     makes sense in a side-by-side row; stacked,
                     it would just shift the card awkwardly */
}

/* ============================================================
   ADDITIONAL SERVICES
   ============================================================ */
.additional {
  flex-direction: column;
  padding: 24px;
  gap: 20px;
}
/* ============================================================
   SERVICES HERO
   padding-bottom:200px + padding-left:100px are desktop values
   sized for a wide layout with room to spare; the horizontal
   gradient needs the same vertical-scrim treatment as the other
   photo-background heroes.
   ============================================================ */
.services-hero {
  padding: 50px 24px;
  min-height: 45vh;
}
.services-hero::before {
  background: linear-gradient(to bottom, rgba(253,250,245,0.9), rgba(253,250,245,0.6));
}
.services-hero-txt {
  padding-top: 0;
}
.services-hero h1 {
  font-size: 34px; /* was 65-70px */
}
.services-hero * {
  max-width: 100%; /* was 420px, fine on desktop but unnecessarily
                       constraining on an already-narrow phone screen */
}

/* ============================================================
   SERVICE GRID
   4 columns, 45px/60px card padding — same two issues as every
   other card grid on this site tonight.
   ============================================================ */
.hero-services {
  grid-template-columns: 1fr;
  padding: 40px 24px;
  gap: 16px;
}
.hero-service-box {
  padding: 32px 24px;
}
}