/* ============================================================
   Isabel Dog Walking — styles
   Palette: cream #f4ede2 · sage #5a7a52 · terracotta #c0703c · ink #2a2420
   Type: Bricolage Grotesque (display) · Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --cream:      #f4ede2;
  --cream-2:    #efe7d9;
  --cream-card: #ffffff;
  --sage:       #5a7a52;
  --sage-dark:  #4e6b47;
  --sage-light: #6c8a63;
  --terra:      #c0703c;
  --ink:        #2a2420;
  --muted:      #6b6258;
  --muted-2:    #8a8073;
  --gold:       #e6d2a8;
  --line:       #e4d8c4;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
}
::selection { background: var(--gold); color: var(--ink); }
a { color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* striped image placeholder */
.ph {
  background: repeating-linear-gradient(45deg, #e7dccb, #e7dccb 12px, #efe7d9 12px, #efe7d9 24px);
}
.ph-cap {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: #a3937a;
  background: var(--cream);
  padding: 7px 12px;
  border-radius: 7px;
  text-align: center;
}
.mono-note {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: #a3937a;
}

/* shared bits */
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--terra); color: #fff; padding: 15px 28px; }
.btn-ghost-light {
  background: transparent; color: var(--cream);
  padding: 15px 28px; font-weight: 600;
  border: 1.5px solid rgba(244,237,226,.45);
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--sage);
  box-shadow: 0 6px 22px -16px rgba(30,40,20,.7);
}
.nav .wrap {
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800; font-size: 22px;
  color: var(--cream);
  display: flex; align-items: center; gap: 10px;
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream); color: var(--sage);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 15px; color: #e3ecdf; font-weight: 500;
}
.nav-links a { text-decoration: none; }
.nav-cta {
  background: var(--terra); color: #fff;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; white-space: nowrap;
}

/* ============ HERO ============ */
.hero { background: var(--sage); position: relative; overflow: hidden; }
.hero-blob-1 { position: absolute; top: -90px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: var(--sage-light); }
.hero-blob-2 { position: absolute; bottom: -120px; left: 34%; width: 240px; height: 240px; border-radius: 50%; background: var(--sage-dark); }
.hero .wrap { padding-top: 64px; padding-bottom: 84px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.06fr 1fr;
  gap: 56px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(244,237,226,.14);
  border: 1px solid rgba(244,237,226,.28);
  color: var(--cream);
  font-weight: 600; font-size: 13px;
  padding: 8px 15px; border-radius: 999px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero-hi {
  font-family: var(--display); font-style: italic; font-weight: 600;
  font-size: 23px; color: var(--gold); margin: 24px 0 4px;
}
.hero-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 4.7vw, 62px); line-height: 1.0;
  letter-spacing: -.025em; color: var(--cream); margin: 0;
  white-space: nowrap;
}
.hero-sub {
  font-size: 18px; line-height: 1.62; color: #dbe4d4;
  max-width: 440px; margin: 24px 0 0;
}
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.trust { display: flex; align-items: center; gap: 14px; margin-top: 32px; font-size: 14px; color: #cdd8c6; }
.trust strong { color: var(--cream); }
.avatars { display: flex; }
.avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid var(--sage);
}
.avatars span + span { margin-left: -13px; }
.av-1 { background: #cdbfa6; } .av-2 { background: #d9a87f; }
.av-3 { background: var(--gold); } .av-4 { background: #b6c2a6; }

.hero-photo-col { position: relative; display: flex; justify-content: center; }
.hero-photo {
  width: 100%; max-width: 380px; aspect-ratio: 4/5;
  border-radius: 22px; border: 8px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.photo-layout {
	width: 100%; border-radius: 18px;
}
.dog-gallery {
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	/* border: 10px solid white; */
	 /* border-radius: 10px; */
	    border-radius: inherit;
}
.float-card {
  position: absolute; bottom: -14px; left: 8px;
  background: #fff; border-radius: 14px; padding: 12px 15px;
  box-shadow: 0 14px 30px -14px rgba(30,40,20,.5);
  display: flex; align-items: center; gap: 10px;
}
.float-card .ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--sage); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
}
.float-card .t1 { font-weight: 700; font-size: 14px; color: var(--ink); line-height: 1.25; }
.float-card .t2 { font-size: 12px; color: var(--muted-2); line-height: 1.25; }
.sticker {
  position: absolute; top: 14px; right: 0;
  background: var(--gold); color: #5a4a2a;
  font-weight: 700; font-size: 13px;
  padding: 9px 14px; border-radius: 999px;
  transform: rotate(7deg);
  box-shadow: 0 10px 22px -10px rgba(0,0,0,.4);
}

/* ============ STATS ============ */
.stats { background: var(--cream-2); border-bottom: 1px solid var(--line); }
.stats .wrap {
  padding: 30px 40px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center;
}
.stat-num { font-family: var(--display); font-weight: 800; font-size: 34px; color: var(--terra); }
.stat-label { font-size: 13px; color: var(--muted-2); margin-top: 2px; }

/* ============ SECTION SHELLS ============ */
.section { padding: 88px 0; }
.section.cream { background: var(--cream); }
.section.cream-2 { background: var(--cream-2); }
.section.sage { background: var(--sage); position: relative; overflow: hidden; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.section-title {
  font-family: var(--display); font-weight: 800;
  font-size: 46px; line-height: 1.05; letter-spacing: -.02em;
  color: var(--ink); margin: 12px 0 12px;
}
.section-title.sm { font-size: 44px; }
.section-sub { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ============ SERVICES ============ */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.card {
  background: var(--cream-card); border-radius: 20px; padding: 32px 28px;
  border: 1px solid #ece1cf; display: flex; flex-direction: column;
}
.card.feature {
  background: var(--sage); border: none;
  box-shadow: 0 24px 50px -24px rgba(60,80,45,.6); position: relative;
}
.card .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: #eadeca; display: inline-flex;
  align-items: center; justify-content: center; font-size: 24px;
}
.card.feature .ic { background: rgba(244,237,226,.18); }
.card h3 { font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--ink); margin: 20px 0 6px; }
.card.feature h3 { color: var(--cream); }
.card p { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0 0 18px; }
.card.feature p { color: #d7e1d1; }
.price-list { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0; border-top: 1px solid #f0e7d8;
}
.card.feature .price-row { border-top: 1px solid rgba(244,237,226,.2); }
.price-row .lbl { font-size: 15px; color: #574e44; }
.card.feature .price-row .lbl { color: #d7e1d1; }
.price-row .amt { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink); }
.card.feature .price-row .amt { color: var(--cream); }
.tag-pop {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: #5a4a2a;
  font-weight: 700; font-size: 12px; padding: 6px 12px; border-radius: 999px;
}
.fineprint { text-align: center; margin-top: 28px; font-size: 14px; color: var(--muted-2); }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about-photo-col { position: relative; }
.about-photo {
  aspect-ratio: 1/1; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 8px solid #fff;
}
.about-photo .ph-cap { background: var(--cream-2); }
.about-badge {
  position: absolute; bottom: -18px; right: -14px;
  background: var(--terra); color: #fff;
  font-family: var(--display); font-weight: 700;
  padding: 14px 18px; border-radius: 16px;
  transform: rotate(-5deg);
  box-shadow: 0 14px 28px -12px rgba(120,60,25,.5); line-height: 1.1;
  text-align: center;
}
.about-badge span { font-weight: 500; font-size: 13px; text-align: center; align-items: center; }
.about-title { font-family: var(--display); font-weight: 800; font-size: 44px; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); margin: 12px 0 18px; }
.about-p { font-size: 17px; line-height: 1.68; color: #574e44; margin: 0 0 16px; }
.about-p:last-of-type { margin-bottom: 24px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink); font-weight: 500; }
.check .ic {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--sage); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px;
}

/* ============ GALLERY ============ */
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.gallery-head h2 { font-family: var(--display); font-weight: 800; font-size: 46px; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); margin: 12px 0 0; }
.link-arrow { text-decoration: none; color: var(--terra); font-weight: 600; font-size: 15px; border-bottom: 2px solid var(--terra); padding-bottom: 2px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 200px; gap: 16px; }
.tile { border-radius: 18px; position: relative; display: flex; align-items: flex-end;  overflow: hidden;  border: 12px solid white;}
.tile.tall { grid-row: span 2; background-color: white;}
.tile .name {
  font-family: ui-monospace, monospace; font-size: 15px; color: #574e3f;
  background: rgba(244,237,226,.85); padding: 3px 9px; border-radius: 16px;  
  position: absolute;
      bottom: 0px;
    left: 80%;
    transform: translate(-50%, -50%);
	 font-weight: bold;
}
.gallery-note { text-align: center; margin-top: 20px; }

/* ============ TESTIMONIALS ============ */
.sage-blob { position: absolute; top: -60px; left: -50px; width: 200px; height: 200px; border-radius: 50%; background: var(--sage-light); }
.section.sage .eyebrow { color: var(--gold); }
.section.sage .section-title { color: var(--cream); }
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote { background: var(--cream); border-radius: 20px; padding: 28px; }
.stars { color: #e0a23b; font-size: 17px; letter-spacing: 2px; }
.quote p { font-size: 16px; line-height: 1.62; color: #3a342c; margin: 14px 0 22px; }
.byline { display: flex; align-items: center; gap: 12px; }
.byline .pfp { width: 42px; height: 42px; border-radius: 50%; }
.byline .who { font-weight: 700; font-size: 14px; color: var(--ink); line-height: 1.25; }
.byline .ctx { font-size: 13px; color: var(--muted-2); line-height: 1.25; }

/* ============ SERVICE AREA ============ */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.area-title { font-family: var(--display); font-weight: 800; font-size: 44px; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); margin: 12px 0 16px; }
.area-p { font-size: 17px; line-height: 1.66; color: var(--muted); margin: 0 0 26px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 14px; padding: 9px 16px; border-radius: 999px; font-weight: 500; }
.chip.home { background: var(--sage); color: var(--cream); font-weight: 600; }
.chip.plain { background: #fff; color: #574e44; border: 1px solid var(--line); }
.map {
  /* aspect-ratio: 4/3; */
   border-radius: 22px; border: 8px solid #fff;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.map-pin {
  position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: var(--terra); border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

/* ============ BOOKING ============ */
.booking-card {
  background: #fff; border-radius: 26px; overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(60,45,30,.6);
  display: grid; grid-template-columns: .82fr 1.18fr;
}
.booking-card .wrap-narrow { max-width: 1020px; margin: 0 auto; padding: 0 40px; }
.booking-rail { background: var(--sage); padding: 44px 36px; position: relative; overflow: hidden; }
.booking-rail .blob { position: absolute; bottom: -70px; right: -50px; width: 180px; height: 180px; border-radius: 50%; background: var(--sage-dark); }
.booking-rail .inner { position: relative; }
.rail-hi { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 18px; color: var(--gold); }
.rail-title { font-family: var(--display); font-weight: 800; font-size: 36px; line-height: 1.06; letter-spacing: -.02em; color: var(--cream); margin: 8px 0 16px; }
.rail-p { font-size: 15px; line-height: 1.6; color: #d7e1d1; margin: 0 0 28px; }
.rail-list { display: flex; flex-direction: column; gap: 16px; }
.rail-list a, .rail-list .row { text-decoration: none; display: flex; align-items: center; gap: 12px; color: var(--cream); }
.rail-list .ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(244,237,226,.16);
  display: inline-flex; align-items: center; justify-content: center; font-size: 16px;
}
.rail-list .v { font-weight: 600; font-size: 15px; }

.booking-form { padding: 44px 40px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label, .form-label { display: block; font-size: 13px; font-weight: 600; color: #574e44; margin-bottom: 6px; }
.form-label { margin: 20px 0 9px; }
input, textarea {
  width: 100%; padding: 12px 14px; border-radius: 11px;
  border: 1.5px solid #e2d6c3; background: #fcf9f3;
  font-size: 15px; font-family: var(--body); color: var(--ink);
}
textarea { resize: vertical; }
input:focus, textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(90,122,82,.18); }
.err { font-size: 12px; color: #c0392b; margin-top: 5px; }
.err[hidden] { display: none; }

.svc-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.svc-opt {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  text-align: center; padding: 14px 8px; border-radius: 13px; cursor: pointer;
  font-family: var(--body); background: #fcf9f3; color: var(--ink);
  border: 1.5px solid #e2d6c3; transition: all .12s;
}
.svc-opt .em { font-size: 20px; }
.svc-opt .nm { font-weight: 700; font-size: 14px; }
.svc-opt .pr { font-size: 12px; opacity: .75; }
.svc-opt.on { background: var(--sage); color: var(--cream); border-color: var(--sage); }

.days { display: flex; flex-wrap: wrap; gap: 8px; }
.day {
  padding: 9px 15px; border-radius: 999px; cursor: pointer;
  font-weight: 600; font-size: 14px; font-family: var(--body);
  background: #fff; color: #574e44; border: 1.5px solid #e2d6c3; transition: all .12s;
}
.day.on { background: var(--terra); color: #fff; border-color: var(--terra); }

.submit { margin-top: 22px; width: 100%; background: var(--terra); color: #fff; border: none; padding: 16px; border-radius: 13px; font-weight: 700; font-size: 16px; cursor: pointer; font-family: var(--body); }
.submit-note { text-align: center; font-size: 12px; color: #a3937a; margin: 12px 0 0; }

.success { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 380px; }
.success[hidden], .booking-form form[hidden] { display: none; }
.success .check-big { width: 64px; height: 64px; border-radius: 50%; background: var(--sage); display: inline-flex; align-items: center; justify-content: center; font-size: 30px; color: #fff; }
.success h3 { font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--ink); margin: 22px 0 10px; }
.success p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 8px; max-width: 420px; }
.success .small { font-size: 14px; color: var(--muted-2); margin: 0 0 24px; }
.success .small strong { color: var(--terra); }
.btn-reset { background: none; border: 1.5px solid #d9cdb9; color: var(--ink); padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; cursor: pointer; font-family: var(--body); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); padding: 54px 0 40px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-brand { max-width: 300px; }
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand-mark { background: var(--terra); color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: #9b9288; margin: 16px 0 0; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px; }
.footer-col .links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col .links a { text-decoration: none; color: #cfc7bb; }
.footer-bottom { border-top: 1px solid #3e372f; margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #7d756a; }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .wrap { padding: 0 24px; }
  .nav-links { gap: 18px; font-size: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-grid, .about-grid, .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-title { white-space: normal; }
  .hero-photo-col { order: -1; }
  .stats .wrap { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cards-3, .quotes { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .booking-card { grid-template-columns: 1fr; }
  .field-grid, .svc-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr 1fr; }
}
