
:root{
  --peach:#F6E0CB;
  --peach-2:#FFF8F1;
  --brown:#2F281E;
  --soft-brown:#5D4A3A;
  --accent:#D9863B;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--brown);
  background:var(--peach);
  line-height:1.5;
}
a{color:inherit}
.container{max-width:1100px;margin:0 auto;padding:0 20px;}
/* Header */
.header{
  position:sticky;top:0;z-index:10;
  backdrop-filter:saturate(140%) blur(6px);
  background:color-mix(in srgb, var(--peach) 85%, white);
  border-bottom:1px solid #0001;
}
.header__inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;}
.brand{display:flex;align-items:center;gap:12px;font-weight:800;font-size:1.25rem}
.brand__logo{height:42px;width:42px;border-radius:999px;background:var(--accent);display:grid;place-items:center;color:white;font-weight:900}
.nav{display:flex;gap:18px;font-weight:600}
.nav a{opacity:.9;text-decoration:none}
.nav a:hover{text-decoration:underline}
.cta-btn{
  background:var(--accent);color:white;border:none;border-radius:16px;
  padding:10px 16px;font-weight:700;cursor:pointer;box-shadow:0 4px 14px #0002
}
.cta-btn.secondary{background:white;border:1px solid #0002;color:var(--brown)}
/* Hero */
.hero{
  position:relative;
  min-height:600px;
  display:flex;
  align-items:center;
  justify-content:flex-start; /* left align content */
}
.hero img.bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
  filter:saturate(110%);
}
.hero .overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg, var(--peach) 0%, color-mix(in srgb,var(--peach) 70%, transparent) 45%, transparent 80%);
}
.hero .content{
  position:relative;
  margin:0 0 0 20px; /* override .container centering */
  max-width:620px;
  padding:120px 0 60px;
  text-align:left;
}
/* Contact puppy illustration */
.contact-illustration {
  margin-top: 22px;
  text-align: left;           /* will center on small screens below */
}
.contact-illustration img {
  width: 100%;
  max-width: 320px;           /* keep it tasteful */
  display: block;
  border-radius: 18px;
  box-shadow: 0 6px 18px #0002;
  background: #fff;           /* crisp edge against peach background */
}
@media (max-width: 899px) {
  .contact-illustration { text-align: center; }
  .contact-illustration img { max-width: 360px; }
}

.testimonial-highlight {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.testimonial-highlight .card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 3px 14px #0001;
  max-width: 340px;         /* reduced from 420px for proportionality */
  text-align: center;
  margin: 0 auto;
}

.testimonial-highlight img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 3px 12px #0001;
  aspect-ratio: 1 / 1;       /* keeps image squareish and balanced */
  object-fit: cover;
}

h1{font-size: clamp(32px, 4vw, 54px);line-height:1.05;margin:0 0 10px;font-weight:900}
.lead{font-size:1.1rem;opacity:.95}
.badges{display:flex;gap:18px;flex-wrap:wrap;margin-top:16px;font-weight:600}
.badge{display:flex;gap:8px;align-items:center}
/* Feature strip */
.features{background:var(--peach-2);border-block:1px solid #0001}
.features .grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;padding:24px 0}
@media (min-width:900px){.features .grid{grid-template-columns:repeat(4,1fr)}}
.feature{display:flex;gap:10px;align-items:center;font-weight:700}
/* Sections */
.section{padding:64px 0}
.section h2{font-size:2rem;margin:0 0 6px;font-weight:900}
.section p{margin:8px 0 0}
.cards{display:grid;grid-template-columns:1fr;gap:18px;margin-top:22px}
@media (min-width:740px){.cards{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1020px){.cards{grid-template-columns:repeat(3,1fr)}}
.card{background:white;border:1px solid #0001;border-radius:18px;padding:18px;box-shadow:0 2px 10px #0001}
.card h3{margin:0 0 6px}
.card .price{font-weight:800;color:var(--accent);margin-bottom:6px}
.card ul{padding-left:18px;margin:8px 0}
/* About */
.about{background:var(--peach-2);border-block:1px solid #0001}
.about-grid{display:grid;gap:26px}
@media (min-width:900px){.about-grid{grid-template-columns:1fr 1fr}}
.about img.about-photo {
  width: 100%;
  height: auto;                /* natural aspect ratio */
  max-height: 480px;           /* prevent it from getting too tall */
  object-fit: contain;         /* show entire image, no distortion */
  border-radius: 18px;
  box-shadow: 0 6px 18px #0002;
  background-color: #fff5ec;   /* soft background if any margin appears */
  display: block;
  margin: 0 auto;              /* centers it neatly */
}
.check{display:flex;gap:10px;align-items:flex-start;margin:6px 0}
/* Puppy illustration */
.puppy-illustration { margin-top: 24px; text-align: right; }
.puppy-illustration img {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  box-shadow: 0 6px 18px #0002;
  background: white;
  padding: 10px;
}
@media (max-width: 899px) {
  .puppy-illustration { text-align: center; }
  .puppy-illustration img { max-width: 360px; }
}
/* CTA strip */
.cta{}
.cta .box{
  background:white;border:1px solid #0001;border-radius:22px;padding:20px;display:grid;gap:16px;align-items:center;box-shadow:0 10px 24px #0001
}
@media (min-width:900px){.cta .box{grid-template-columns:2fr 1fr}}
/* Contact */
.contact-grid{display:grid;gap:26px}
@media (min-width:900px){.contact-grid{grid-template-columns:1fr 1fr}}
.input, textarea{width:100%;padding:12px 14px;border-radius:12px;border:1px solid #0002;background:var(--peach-2)}
label{font-size:.9rem;font-weight:700;margin-bottom:6px;display:block}
footer{padding:36px 0;border-top:1px solid #0001;font-size:.9rem;background:var(--peach-2)}
.small{font-size:.92rem;opacity:.8}
.icon{font-weight:900;font-family: ui-sans-serif, system-ui, -apple-system;}
