@font-face{
  font-family:"Titan One";
  src:url("/assets/fonts/titan-one.ttf") format("truetype");
  font-style:normal;
  font-weight:400;
  font-display:swap;
}

:root{
  --navy:#123d7a;
  --blue:#119ce6;
  --baby:#e9f8ff;
  --sky:#86d9ff;
  --yellow:#ffc451;
  --pink:#ff9fc4;
  --cream:#fffaf3;
  --ink:#123151;
  --muted:#55728a;
  --line:#d4ebf7;
  --white:#fff;
  --hero-font:"Titan One","Arial Rounded MT Bold","Trebuchet MS",Arial,sans-serif;
  --display-font:"Arial Rounded MT Bold","Trebuchet MS",Arial,sans-serif;
  --body-font:"Trebuchet MS",Arial,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-family:var(--body-font);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#fff;color:var(--ink)}
body,a,button,input,select,textarea{letter-spacing:0}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:70px;
  padding:0 18px;
  border-bottom:1px solid rgba(18,61,122,.1);
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
}
.home-page .site-header{
  position:absolute;
  left:0;
  right:0;
  border:0;
  background:transparent;
}
.brand{display:inline-flex;align-items:center;line-height:1}
.brand img{width:145px;height:auto}
.site-header nav{display:flex;align-items:center;gap:18px;color:var(--muted);font-size:13px;font-weight:900}
.site-header nav a:not(.header-cta){display:none}
.header-cta{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  border:0;
  border-radius:8px;
  padding:0 15px;
  background:var(--yellow);
  color:var(--navy);
  font-weight:900;
  box-shadow:0 12px 28px rgba(18,61,122,.16);
  text-shadow:none;
}
.menu-toggle,.home-menu-toggle{
  display:grid;
  width:42px;
  height:42px;
  place-content:center;
  gap:4px;
  border:1px solid rgba(153,102,40,.42);
  border-radius:50%;
  background:rgba(255,250,245,.84);
  color:#3d342c;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(105,72,37,.12);
}
.menu-toggle i,.home-menu-toggle i{display:block;width:17px;height:2px;border-radius:999px;background:currentColor}
.menu-toggle:focus-visible,.home-menu-toggle:focus-visible,.menu-close:focus-visible{outline:3px solid #123d7a;outline-offset:3px}
.site-menu{position:fixed;z-index:90;inset:0;display:grid;justify-items:end;background:rgba(21,26,34,.34);backdrop-filter:blur(4px)}
.site-menu[hidden]{display:none}
.site-menu-panel{width:min(88vw,390px);min-height:100%;display:grid;align-content:start;gap:30px;padding:26px 25px;background:#fffaf4;box-shadow:-24px 0 70px rgba(36,26,13,.2)}
.site-menu-heading{display:flex;align-items:center;justify-content:space-between;color:#9a6a2b;font:700 14px/1 var(--body-font);letter-spacing:.11em;text-transform:uppercase}
.menu-close{display:grid;width:40px;height:40px;place-items:center;border:1px solid #d6ae72;border-radius:50%;background:transparent;color:#3f3731;font-size:29px;line-height:1;cursor:pointer}
.site-menu-panel .brand img{width:190px}
.site-menu-links{display:grid;gap:3px;border-top:1px solid #ead8bc;border-bottom:1px solid #ead8bc;padding:16px 0}
.site-menu-links a{padding:12px 2px;color:#2f3035;font:400 26px/1.15 Georgia,"Times New Roman",serif}
.site-menu-links a:last-child{color:#a16c29}
.site-menu-panel p{margin:0;color:#71665b;font-size:12px;line-height:1.6}
.menu-open{overflow:hidden}

.hero{
  position:relative;
  min-height:680px;
  overflow:hidden;
}
.hero-playful{
  display:grid;
  align-items:center;
  padding:108px 18px 28px;
  background:
    radial-gradient(circle at 90% 8%,rgba(255,255,255,.46) 0 3%,transparent 3.2%),
    radial-gradient(circle at 12% 72%,rgba(255,255,255,.22) 0 8%,transparent 8.2%),
    linear-gradient(145deg,#159ce5 0%,#5dc9fa 48%,#b6ecff 100%);
}
.hero-playful:before{
  content:"";
  position:absolute;
  width:270px;
  height:270px;
  top:116px;
  right:-118px;
  border:1px solid rgba(255,255,255,.48);
  border-radius:50%;
  box-shadow:-42px 42px 0 -1px rgba(255,255,255,.13),-86px 86px 0 -1px rgba(255,255,255,.10);
}
.hero-playful:after{
  content:"";
  position:absolute;
  left:-8vw;
  right:-8vw;
  bottom:-68px;
  height:104px;
  border-radius:50% 50% 0 0;
  background:#fff;
  z-index:3;
}
.hero-copy{
  position:relative;
  z-index:5;
  max-width:600px;
  text-align:center;
}
.eyebrow{
  display:inline-block;
  color:var(--yellow);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}
.hero .eyebrow{font-size:14px;letter-spacing:1.25px}
.hero h1,.catalog h2,.contact-panel h2,.contact-strip h2,.contact-page h1,.story h1,.detail h1{
  font-family:var(--display-font);
  font-weight:800;
  line-height:.94;
}
.hero h1{
  margin:13px auto 14px;
  color:#fff;
  font-family:var(--hero-font);
  font-size:52px;
  font-weight:400;
  letter-spacing:-1.3px;
  line-height:.98;
  text-shadow:0 5px 22px rgba(18,61,122,.25);
}
.hero p{
  max-width:390px;
  margin:0 auto;
  color:#fff;
  font-size:16px;
  line-height:1.55;
  font-weight:800;
  text-shadow:0 3px 12px rgba(18,61,122,.24);
}
.hero-actions{display:grid;grid-template-columns:1fr;gap:10px;margin:26px auto 0;max-width:330px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  border:0;
  border-radius:14px;
  padding:0 18px;
  font:inherit;
  font-weight:900;
  cursor:pointer;
}
.primary{background:var(--yellow);color:var(--navy);box-shadow:0 16px 30px rgba(18,61,122,.18)}
.ghost{background:rgba(255,255,255,.96);color:var(--navy);box-shadow:0 16px 30px rgba(18,61,122,.12)}
.light{background:#fff;color:var(--navy)}
.hero-dog{
  position:relative;
  z-index:4;
  align-self:end;
  width:min(100%,318px);
  margin:14px auto -12px;
}
.hero-dog img{
  width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 24px 22px rgba(18,61,122,.22));
}
.catalog,.contact-panel,.story,.contact-page,.detail{padding:72px 18px}
.catalog{
  padding-top:46px;
  background:#fff;
}
.catalog .section-intro{margin-bottom:30px}
.section-intro{max-width:660px;margin-bottom:28px}
.section-intro.centered{margin-inline:auto;text-align:center}
.catalog h2,.contact-panel h2{margin:8px 0 12px;color:var(--navy);font-size:42px}
.catalog h2{
  color:#087fc7;
  font-family:var(--hero-font);
  font-weight:400;
  letter-spacing:-.9px;
}
.section-intro p,.contact-panel p,.story p,.contact-page>p,.detail>p{
  margin:0;
  color:var(--muted);
  line-height:1.62;
}
.dog-gallery{max-width:760px;margin-inline:auto}
.catalog-more{max-width:760px;margin:28px auto 0;text-align:center}
.catalog-more a{display:inline-flex;align-items:center;gap:10px;color:#087fc7;font-size:14px;font-weight:900}
.catalog-more span{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#e9f8ff;font-size:18px;line-height:1}
.catalog-filters{
  display:grid;
  gap:13px;
  max-width:760px;
  margin:0 auto 24px;
  padding:16px;
  border:1px solid #d9effa;
  border-radius:18px;
  background:#f6fbfe;
  box-shadow:0 12px 28px rgba(18,61,122,.07);
}
.filter-select,.filter-group{display:grid;gap:7px;color:#55728a;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.45px}
.filter-select select{
  width:100%;
  min-height:43px;
  border:1px solid #cfe8f5;
  border-radius:11px;
  padding:0 12px;
  background:#fff;
  color:var(--navy);
  font:800 14px var(--body-font);
  text-transform:none;
}
.filter-options{display:flex;gap:7px;overflow-x:auto;padding-bottom:2px;scrollbar-width:none}
.filter-options::-webkit-scrollbar{display:none}
.filter-chip,.filter-clear{
  min-height:37px;
  flex:0 0 auto;
  border:1px solid #cfe8f5;
  border-radius:999px;
  padding:0 13px;
  background:#fff;
  color:var(--navy);
  font:800 13px var(--body-font);
  cursor:pointer;
}
.filter-chip.active{border-color:#087fc7;background:#087fc7;color:#fff;box-shadow:0 7px 15px rgba(8,127,199,.18)}
.filter-clear{justify-self:start;border-color:transparent;padding:0;color:#087fc7;background:transparent;text-decoration:underline;text-underline-offset:3px}
.filter-empty{max-width:760px;margin:22px auto 0;color:var(--muted);font-weight:800;text-align:center}
.dog-card[hidden]{display:none!important}
.dog-grid{
  display:flex;
  gap:14px;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}
.dog-grid::-webkit-scrollbar{display:none}
.dog-card{
  position:relative;
  flex:0 0 calc((100% - 14px) / 2.28);
  overflow:visible;
  min-height:0;
  scroll-snap-align:start;
  scroll-snap-stop:always;
  border:0;
  background:transparent;
  box-shadow:none;
}
.dog-image{
  position:relative;
  display:block;
  overflow:hidden;
  aspect-ratio:1/1.15;
  border-radius:16px;
  background:var(--baby);
  box-shadow:0 10px 23px rgba(92,71,56,.12);
}
.dog-image img,.detail-image img,.photo-gallery img{width:100%;height:100%;object-fit:cover}
.placeholder{
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--baby),var(--pink))!important;
  color:#fff;
}
.dog-image.placeholder span,.detail-image.placeholder span{font-family:var(--display-font);font-size:70px}
.dog-image em{
  position:absolute;
  top:12px;
  left:12px;
  border-radius:8px;
  padding:8px 11px;
  background:var(--yellow);
  color:var(--navy);
  font-style:normal;
  font-size:11px;
  font-weight:900;
}
.dog-card-body{
  display:grid;
  align-content:start;
  min-height:76px;
  padding:10px 3px 4px;
  background:transparent;
  color:#393641;
}
.dog-card-body p{
  display:none;
}
.dog-card h3{
  margin:0;
  color:#393641;
  display:-webkit-box;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  font:800 13px/1.23 var(--body-font);
  letter-spacing:-.1px;
}
.dog-card-body>span{display:none}
.dog-price{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:6px;
  margin-top:7px;
}
.dog-price small{
  color:#aa978c;
  font-size:9px;
  font-weight:700;
  text-decoration:line-through;
}
.dog-price strong{
  color:#087fc7;
  font-size:14px;
  font-weight:900;
  line-height:1.2;
}
.dog-card-body a{display:none}

.gallery-page{background:#fff}
.gallery-hero{
  position:relative;
  overflow:hidden;
  padding:110px 18px 78px;
  text-align:center;
  background:#f8f3ed;
}
.gallery-hero:before{
  content:"";
  position:absolute;
  top:-125px;
  right:-90px;
  width:280px;
  height:280px;
  border:1px solid rgba(18,61,122,.1);
  border-radius:50%;
  box-shadow:-38px 38px 0 -1px rgba(18,61,122,.045);
}
.gallery-hero:after{
  content:"";
  position:absolute;
  right:-8vw;
  bottom:-48px;
  left:-8vw;
  height:78px;
  border-radius:0 0 50% 50% / 0 0 44px 44px;
  background:#fff;
}
.gallery-hero>*{position:relative;z-index:1}
.gallery-hero .eyebrow{color:#087fc7}
.gallery-hero h1{
  margin:10px 0 13px;
  color:var(--navy);
  font-family:var(--hero-font);
  font-size:48px;
  font-weight:400;
  letter-spacing:-.8px;
  line-height:.98;
}
.gallery-hero p{max-width:450px;margin:auto;color:#55728a;font-size:16px;font-weight:700;line-height:1.6}
.gallery-catalog{padding-top:38px}
.gallery-page .catalog-filters{
  gap:18px;
  margin-bottom:32px;
  padding:0 0 28px;
  border:0;
  border-bottom:1px solid #e6edf1;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.filter-heading{display:grid;gap:4px}
.filter-heading .eyebrow{color:#087fc7}
.filter-heading p{margin:0;color:#55728a;font-size:14px;line-height:1.5}
.gallery-page .filter-select,.gallery-page .filter-group{gap:8px;color:#395a75}
.gallery-page .filter-select select{
  min-height:46px;
  border:1px solid #dce7ed;
  border-radius:12px;
  background:#f8f3ed;
  box-shadow:none;
}
.gallery-page .filter-options{gap:8px;padding:0}
.gallery-page .filter-chip{
  min-height:40px;
  border-color:#dce7ed;
  background:#fff;
  box-shadow:none;
}
.gallery-page .filter-chip.active{border-color:var(--navy);background:var(--navy);box-shadow:none}
.gallery-page .filter-clear{color:#087fc7}
.gallery-catalog .dog-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px 14px;
  overflow:visible;
  scroll-snap-type:none;
}
.gallery-catalog .dog-card{flex:0 0 auto;scroll-snap-align:none}
.gallery-catalog .dog-card-body{padding:11px 2px 0}
.gallery-catalog .dog-card-body p{display:block;margin:0 0 4px;color:#55728a;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.35px}
.gallery-catalog .dog-card h3{font-size:14px;line-height:1.25}
.gallery-catalog .dog-price strong{color:#087fc7;font-size:15px}
.empty-public,.success-card{
  padding:26px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 44px rgba(18,61,122,.08);
}
.empty-public h3,.success-card h2{margin-top:0;color:var(--navy);font-family:var(--display-font);line-height:1}

.contact-panel{
  position:relative;
  z-index:1;
  display:grid;
  gap:28px;
  margin-top:26px;
  padding-top:118px;
  background:transparent;
}
.contact-panel:before{
  content:"";
  position:absolute;
  z-index:-1;
  top:-47px;
  right:-18%;
  bottom:0;
  left:-18%;
  border-radius:52% 48% 0 0 / 94px 62px 0 0;
  background:#f8f3ed;
}
.contact-panel>*{position:relative;z-index:1}
.contact-panel .eyebrow{color:#bf6a31}
.contact-panel h2{
  color:#393641;
  font-family:var(--hero-font);
  font-weight:400;
  letter-spacing:-.8px;
}
.contact-panel-copy{
  display:grid;
  gap:17px;
  align-content:start;
  padding:25px;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  box-shadow:0 16px 36px rgba(92,71,56,.08);
}
.contact-panel-copy p{
  margin:0;
  color:#38556f;
}
.contact-panel-copy .button{
  justify-self:start;
}

.contact-strip{
  position:relative;
  isolation:isolate;
  display:grid;
  gap:22px;
  padding:100px 18px 48px;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff;
  overflow:hidden;
}
.contact-strip:before{
  content:"";
  position:absolute;
  z-index:-1;
  top:-52px;
  left:-10%;
  width:120%;
  height:100px;
  border-radius:0 0 50% 50% / 0 0 78px 78px;
  background:#f8f3ed;
}
.contact-strip .eyebrow{color:var(--yellow)}
.contact-strip h2{margin:8px 0 0;color:#fff;font-size:38px}
.site-footer{
  display:grid;
  gap:16px;
  padding:32px 18px;
  background:#0c2b58;
  color:#d6edff;
  font-size:13px;
}
.site-footer .brand{width:max-content}
.site-footer .brand img{width:178px}
.site-footer p{margin:0;line-height:1.5}
.footer-contact{display:grid;gap:14px}
.footer-copyright{color:#a7c7de;font-size:11px;line-height:1.45}
.footer-legal{justify-self:start}
.footer-legal summary{color:#d6edff;cursor:pointer;font-size:12px;font-weight:800;list-style-position:inside}
.footer-legal summary::marker{color:var(--yellow)}
.footer-links{display:grid;gap:7px;margin-top:12px;padding-top:12px;border-top:1px solid rgba(214,237,255,.22)}
.footer-links a{color:#d6edff;font-size:11px;line-height:1.35;text-decoration:underline;text-underline-offset:3px}

.legal-page{max-width:820px;margin:auto;padding:64px 18px 78px}
.legal-page h1{margin:12px 0 16px;color:var(--navy);font-family:var(--display-font);font-size:43px;line-height:.98}
.legal-intro{max-width:660px;margin:0;color:var(--muted);font-size:18px;line-height:1.6}
.legal-updated{margin:18px 0 0;color:#718393;font-size:13px}
.legal-content{display:grid;gap:16px;margin-top:35px}
.legal-content section{padding:24px;border:1px solid #e4eef4;border-radius:18px;background:#fff;box-shadow:0 14px 34px rgba(18,61,122,.06)}
.legal-content h2{margin:0 0 12px;color:var(--navy);font-family:var(--body-font);font-size:19px;line-height:1.25}
.legal-content p{margin:10px 0 0;color:#405e77;line-height:1.7}

.contact-page{max-width:760px;margin:auto;background:#fff}
.contact-page h1,.story h1{margin:12px 0 14px;color:var(--navy);font-size:44px}
.public-form{display:grid;gap:15px;margin-top:28px}
.public-form label{display:grid;gap:8px;color:var(--navy);font-size:13px;font-weight:900}
.public-form small{color:var(--muted);font-weight:700}
.public-form input,.public-form select,.public-form textarea{
  width:100%;
  min-height:50px;
  border:1px solid var(--line);
  border-radius:8px;
  padding:12px 14px;
  background:#fff;
  color:var(--ink);
  font:inherit;
}
.public-form textarea{min-height:128px;resize:vertical}
.form-error{color:#c64270;font-weight:900}

.story{max-width:980px;margin:auto}
.lead{max-width:690px;font:700 20px/1.55 var(--body-font)!important}
.mission-copy{display:grid;gap:16px;max-width:720px;margin:30px 0}
.mission-copy p{margin:0;color:var(--muted);line-height:1.75}
.story-grid{display:grid;grid-template-columns:1fr;gap:14px;margin:32px 0}
.story-grid article{padding:22px;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 18px 44px rgba(18,61,122,.06)}
.story-grid b{font:800 24px/1 var(--display-font);color:var(--navy)}

.detail{max-width:1120px;margin:auto;padding-top:40px;background:linear-gradient(180deg,#f7fcff 0,#fff 30%)}
.back{display:inline-block;margin-bottom:26px;color:var(--muted);font-size:14px;font-weight:800}
.detail-grid{display:grid;gap:34px}
.detail-gallery{min-width:0}
.detail-image{display:grid;place-items:center;aspect-ratio:1/1.04;overflow:hidden;border-radius:28px;background:var(--baby);box-shadow:0 22px 45px rgba(18,61,122,.14)}
.detail-image img{width:100%;height:100%;object-fit:cover}
.detail-thumbnails{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:12px}
.detail-thumb{aspect-ratio:1;border:2px solid transparent;border-radius:13px;padding:0;overflow:hidden;background:var(--baby);cursor:pointer;opacity:.72;transition:border-color .18s ease,opacity .18s ease,transform .18s ease}
.detail-thumb img{width:100%;height:100%;object-fit:cover}
.detail-thumb.active{border-color:#087fc7;opacity:1;transform:translateY(-2px)}
.detail-info{align-self:center}
.detail-info h1{margin:10px 0 18px;color:var(--navy);font-family:var(--hero-font);font-size:44px;font-weight:400;letter-spacing:-.8px;line-height:1.02}
.detail-price{display:grid;gap:4px;margin-bottom:18px;padding:17px 18px;border-radius:18px;background:#edf8fe;color:#4e6e89}
.detail-price span{font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.45px}
.detail-price small{font-size:13px;text-decoration:line-through;color:#8296a7}
.detail-price strong{color:#087fc7;font-size:27px;line-height:1.1}
.detail-facts{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;margin:0;border:1px solid #e1eef5;border-radius:18px;overflow:hidden;background:#e1eef5}
.detail-facts div{min-height:76px;padding:14px;background:#fff}
.detail-facts .detail-fact-wide{grid-column:1/-1}
.detail-facts dt{margin-bottom:5px;color:#718393;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.4px}
.detail-facts dd{margin:0;color:var(--navy);font-size:14px;font-weight:900}
.detail-description{margin:20px 0;color:#405e77;line-height:1.72}
.detail-whatsapp{width:100%;margin-top:2px}
.detail-note{margin:12px 0 0;color:#718393;font-size:12px;line-height:1.45;text-align:center}

@media(min-width:760px){
  .site-header{padding:0 7vw}
  .site-header nav a:not(.header-cta){display:inline}
  .hero-playful{grid-template-columns:1fr 1fr;gap:48px;padding:112px 8vw 70px}
  .hero-copy{text-align:left}
  .hero h1{margin-left:0;font-size:78px}
  .hero p{margin-left:0;font-size:18px}
  .hero-actions{display:flex;margin-left:0}
  .hero-dog{width:min(100%,500px);margin:0;justify-self:end}
  .catalog,.contact-panel,.story,.contact-page,.detail{padding:88px 8vw}
  .catalog{padding-top:68px}
  .catalog h2,.contact-panel h2{font-size:58px}
  .dog-gallery{max-width:960px}
  .gallery-page .catalog-filters{grid-template-columns:minmax(190px,1.1fr) minmax(160px,1fr) minmax(160px,1fr);align-items:end;max-width:960px}
  .gallery-page .filter-heading{grid-column:1/-1}
  .filter-clear{align-self:end}
  .dog-grid{gap:18px}
  .dog-card{flex-basis:calc((100% - 54px) / 3.6)}
  .gallery-hero{padding:152px 8vw 105px}
  .gallery-hero h1{font-size:72px}
  .gallery-catalog .dog-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:32px 22px}
  .contact-panel{grid-template-columns:.86fr 1.14fr;align-items:start;gap:58px;padding-top:148px}
  .contact-strip{grid-template-columns:1fr auto;align-items:center;padding:120px 8vw 68px}
  .contact-strip h2{font-size:54px}
  .site-footer{grid-template-columns:auto minmax(300px,1fr);align-items:center;padding:36px 8vw}
  .footer-contact{justify-items:end;text-align:right}
  .footer-legal{justify-self:end}
  .legal-page{padding:92px 8vw}
  .legal-page h1{font-size:56px}
  .story-grid{grid-template-columns:repeat(3,1fr)}
  .detail{padding-top:62px}
  .detail-grid{grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);align-items:start;gap:58px}
  .detail-info{padding-top:26px}
  .detail-info h1{font-size:58px}
  .detail-thumbnails{grid-template-columns:repeat(6,1fr)}
}

@media(max-width:390px){
  .hero h1{font-size:44px}
  .hero p{font-size:16px}
}

/* Home premium: preserva a arte aprovada do cliente e deixa os acessos funcionais. */
.home-page,
.home-page body {
  background: #fbf1e7;
}

body.home-page {
  height: 100svh;
  overflow: hidden;
}

.home-page .site-header,
.home-page .site-footer {
  display: none;
}

.home-page main {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 38px;
  height: 100svh;
}

.home-art {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 720px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: url("/assets/home-reference.png") center center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(175, 130, 79, .1);
}

.home-art::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 22%;
  background:
    radial-gradient(120% 82% at 26% 0%, #fffaf4, #fffaf4 72%, rgba(255, 250, 244, 0) 100%),
    linear-gradient(180deg, #fff9f3 0%, #fff9f3 88%, rgba(255, 249, 243, 0) 100%);
}

.home-art::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 18%;
  left: -8%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 127, 57, .7), transparent);
  transform: rotate(-4deg);
}

.home-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-header {
  position: absolute;
  z-index: 5;
  top: 37px;
  right: 42px;
  left: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.home-brand {
  display: block;
  flex: 0 0 auto;
  width: 154px;
}

.home-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.home-top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-action {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  outline: 0;
}

.home-action:focus-visible,
.home-menu-toggle:focus-visible,
.home-hotspot:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #13366b;
}

.home-action-top {
  gap: 13px;
  min-width: 245px;
  height: 76px;
  padding: 0 30px;
  border: 1px solid #b67a31;
  border-radius: 15px;
  background: linear-gradient(145deg, #f7dfa9, #c78a3d);
  box-shadow: 0 15px 28px rgba(101, 63, 22, .18);
  color: #312d2a;
  font: 400 28px/1 Georgia, "Times New Roman", serif;
}

.home-contact-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.home-contact-icon::before,
.home-contact-icon::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.home-contact-icon::before {
  top: 37%;
}

.home-contact-icon::after {
  top: 59%;
}

.home-menu-toggle {
  display: grid;
  width: 76px;
  height: 76px;
  place-content: center;
  gap: 5px;
  border: 1px solid #b67a31;
  border-radius: 15px;
  background: rgba(255, 252, 247, .94);
  color: #342f2a;
  cursor: pointer;
  box-shadow: 0 15px 28px rgba(101, 63, 22, .12);
}

.home-menu-toggle i {
  display: block;
  width: 23px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.home-hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  border-radius: 999px;
  outline: 0;
}

.home-hotspot-dogs {
  top: 68.7%;
  left: 26%;
  width: 48%;
  height: 5.3%;
}

.home-hotspot-contact {
  top: 75.5%;
  left: 26%;
  width: 48%;
  height: 5.1%;
}

.home-features {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 15px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 135px;
  padding: 18px 0;
  overflow: hidden;
  border: 1px solid rgba(177, 123, 54, .26);
  border-radius: 28px;
  background: #fffaf4;
  box-shadow: 0 -18px 0 #fffaf4, 0 18px 38px rgba(109, 73, 32, .08);
  backdrop-filter: blur(3px);
}

.home-features article {
  min-width: 0;
  padding: 0 10px;
  text-align: center;
}

.home-features article + article {
  border-left: 1px solid rgba(177, 123, 54, .18);
}

.home-feature-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 0 auto 8px;
  border: 2px solid #b78037;
  border-radius: 12px;
  color: #b78037;
  font: 700 18px/1 Georgia, "Times New Roman", serif;
}

.home-features h2 {
  margin: 0;
  color: #403934;
  font: 400 17px/1.12 Georgia, "Times New Roman", serif;
}

.home-features p {
  max-width: 120px;
  margin: 7px auto 0;
  color: #5e544d;
  font: 400 12px/1.35 Georgia, "Times New Roman", serif;
}

.home-copyright {
  display: grid;
  place-items: center;
  padding: 0 14px;
  background: linear-gradient(90deg, #b87d32, #dfa95a 48%, #bd8134);
  color: #fffaf2;
  font: 600 12px/1.25 var(--body-font);
  letter-spacing: .01em;
  text-align: center;
}

@media (max-width: 760px) {
  .home-page main {
    grid-template-rows: minmax(0, 1fr) 34px;
  }

  .home-header {
    top: 28px;
    right: 24px;
    left: 30px;
    gap: 12px;
  }

  .home-brand {
    width: 124px;
  }

  .home-top-actions {
    gap: 9px;
  }

  .home-action-top {
    min-width: 178px;
    height: 58px;
    padding: 0 19px;
    border-radius: 13px;
    font-size: 22px;
  }

  .home-contact-icon {
    width: 25px;
    height: 25px;
  }

  .home-menu-toggle {
    width: 58px;
    height: 58px;
    border-radius: 13px;
  }

  .home-features {
    right: 15px;
    bottom: 11px;
    left: 15px;
    min-height: 126px;
    padding: 15px 0;
    border-radius: 23px;
  }

  .home-features article {
    padding: 0 6px;
  }

  .home-feature-icon {
    width: 29px;
    height: 29px;
    margin-bottom: 7px;
    border-radius: 10px;
    font-size: 16px;
  }

  .home-features h2 {
    font-size: 14px;
  }

  .home-features p {
    max-width: 82px;
    font-size: 10px;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .home-header {
    top: 19px;
    right: 17px;
    left: 18px;
    gap: 9px;
  }

  .home-brand {
    width: 106px;
  }

  .home-action-top {
    min-width: 142px;
    height: 47px;
    gap: 8px;
    padding: 0 14px;
    border-radius: 11px;
    font-size: 17px;
  }

  .home-contact-icon {
    width: 20px;
    height: 20px;
  }

  .home-menu-toggle {
    width: 47px;
    height: 47px;
    border-radius: 11px;
  }

  .home-menu-toggle i {
    width: 18px;
  }

  .home-features {
    right: 0;
    bottom: 9px;
    left: 0;
    min-height: 126px;
    padding: 14px 0;
    border-right: 0;
    border-left: 0;
    border-radius: 24px 24px 0 0;
  }

  .home-features article {
    padding: 0 4px;
  }

  .home-feature-icon {
    width: 27px;
    height: 27px;
    margin-bottom: 6px;
    font-size: 15px;
  }

  .home-features h2 {
    font-size: 12px;
  }

  .home-features p {
    max-width: 78px;
    font-size: 9px;
  }

  .home-copyright {
    font-size: 10px;
  }
}

/* Home limpa enviada pelo cliente: imagem sem botoes, com controles proporcionais. */
.home-page .home-art {
  background-image: url("/assets/home-hero-clean.png");
  background-position: center center;
}

.home-page .home-art::before,
.home-page .home-art::after {
  display: none;
}

/* Composicao efetiva da home: arte limpa no hero e somente a base reaproveitada. */
.home-page .home-art {
  background-image: url("/assets/home-hero-clean.png");
  background-position: center bottom;
  background-size: auto 100%;
}

.home-page .home-art::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: auto;
  height: 18.5%;
  pointer-events: none;
  background: url("/assets/home-reference.png") center bottom / auto 100svh no-repeat;
}

.home-page .home-brand {
  z-index: 8;
  height: auto;
  opacity: 1;
}

.home-page .home-brand img {
  height: auto;
  object-fit: contain;
}

.home-page .home-top-actions::before {
  display: none;
}

.home-page .home-primary-actions .home-action {
  opacity: 1;
}

/* Hero final: a arte limpa sustenta toda a composicao.  Da referencia antiga
   permanece somente o recorte inferior com os diferenciais e o acabamento em dourado. */
.home-page .home-art {
  background-image: url("/assets/home-hero-clean.png");
  background-position: center bottom;
  background-size: auto 100%;
}

.home-page .home-art::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: auto;
  height: 18.5%;
  pointer-events: none;
  background: url("/assets/home-reference.png") center bottom / auto 100svh no-repeat;
}

.home-page .home-brand {
  z-index: 8;
  height: auto;
  opacity: 1;
}

.home-page .home-brand img {
  height: auto;
  object-fit: contain;
}

.home-page .home-top-actions::before {
  display: none;
}

.home-page .home-primary-actions .home-action {
  opacity: 1;
}

.home-page .home-header {
  top: 24px;
  right: 32px;
  left: 42px;
  align-items: flex-start;
  gap: 16px;
}

.home-page .home-brand {
  width: 128px;
}

.home-page .home-top-actions {
  gap: 10px;
}

.home-page .home-action-top {
  min-width: 186px;
  height: 52px;
  gap: 10px;
  padding: 0 22px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(101, 63, 22, .14);
  font-size: 21px;
}

.home-page .home-action-top .home-contact-icon {
  width: 23px;
  height: 23px;
}

.home-page .home-menu-toggle {
  width: 52px;
  height: 52px;
  gap: 4px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(101, 63, 22, .1);
}

.home-page .home-menu-toggle i {
  width: 20px;
}

.home-primary-actions {
  position: absolute;
  z-index: 5;
  top: 67.5%;
  left: 50%;
  display: grid;
  width: min(55%, 395px);
  gap: 9px;
  transform: translateX(-50%);
}

.home-action-dogs,
.home-action-contact {
  min-height: 50px;
  border-radius: 15px;
  font: 400 23px/1 Georgia, "Times New Roman", serif;
}

.home-action-dogs {
  gap: 13px;
  border: 1px solid #b67a31;
  background: linear-gradient(145deg, #f1d39b, #c48737);
  box-shadow: 0 13px 25px rgba(101, 63, 22, .17);
  color: #fffaf3;
}

.home-button-paw {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 21px;
  color: currentColor;
}

.home-button-paw::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 1px;
  width: 11px;
  height: 9px;
  border-radius: 55% 55% 48% 48%;
  background: currentColor;
  transform: rotate(-7deg);
}

.home-button-paw::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 6px -6px 0 -1px currentColor, 14px -6px 0 -1px currentColor, 18px 0 0 -1px currentColor;
}

.home-action-contact {
  gap: 12px;
  border: 1px solid rgba(182, 122, 49, .72);
  background: rgba(255, 250, 244, .93);
  box-shadow: 0 10px 18px rgba(101, 63, 22, .1);
  color: #342f2a;
}

.home-action-contact .home-contact-icon {
  width: 23px;
  height: 23px;
}

@media (max-width: 760px) {
  .home-page .home-header {
    top: 19px;
    right: 20px;
    left: 24px;
    gap: 10px;
  }

  .home-page .home-brand {
    width: 105px;
  }

  .home-page .home-top-actions {
    gap: 7px;
  }

  .home-page .home-action-top {
    min-width: 136px;
    height: 40px;
    gap: 7px;
    padding: 0 13px;
    border-radius: 10px;
    font-size: 16px;
  }

  .home-page .home-action-top .home-contact-icon {
    width: 18px;
    height: 18px;
  }

  .home-page .home-menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .home-page .home-menu-toggle i {
    width: 17px;
  }

  .home-primary-actions {
    top: 67.8%;
    width: min(63%, 310px);
    gap: 7px;
  }

  .home-action-dogs,
  .home-action-contact {
    min-height: 42px;
    border-radius: 13px;
    font-size: 18px;
  }

  .home-action-contact .home-contact-icon {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 480px) {
  .home-page .home-header {
    top: 17px;
    right: 16px;
    left: 17px;
  }

  .home-page .home-brand {
    width: 92px;
  }

  .home-page .home-action-top {
    min-width: 118px;
    height: 36px;
    padding: 0 11px;
    font-size: 14px;
  }

  .home-page .home-action-top .home-contact-icon {
    width: 16px;
    height: 16px;
    border-width: 1.5px;
  }

  .home-page .home-menu-toggle {
    width: 36px;
    height: 36px;
    gap: 3px;
  }

  .home-page .home-menu-toggle i {
    width: 15px;
  }

  .home-primary-actions {
    top: 67.7%;
    width: min(64%, 270px);
  }

  .home-action-dogs,
  .home-action-contact {
    min-height: 39px;
    border-radius: 12px;
    font-size: 16px;
  }

  .home-action-contact .home-contact-icon {
    width: 17px;
    height: 17px;
  }
}

/* Composicao final da home: medidas ancoradas na arte aprovada. */
.home-page .home-art::after {
  display: none;
}

.home-page .home-header {
  top: 3.9%;
  right: 3.2%;
  left: 4.3%;
  align-items: flex-start;
}

.home-page .home-brand {
  width: 112px;
}

.home-page .home-top-actions {
  gap: 8px;
}

.home-page .home-action-top {
  min-width: 136px;
  height: 40px;
  gap: 7px;
  padding: 0 13px;
  border-radius: 10px;
  font-size: 16px;
}

.home-page .home-action-top .home-contact-icon {
  width: 18px;
  height: 18px;
}

.home-page .home-menu-toggle {
  width: 40px;
  height: 40px;
  gap: 3px;
  border-radius: 10px;
}

.home-page .home-menu-toggle i {
  width: 17px;
}

.home-page .home-primary-actions {
  top: 69%;
  width: min(53.5%, 310px);
  gap: 9px;
}

.home-page .home-action-dogs,
.home-page .home-action-contact {
  min-height: 45px;
  border-radius: 14px;
  font-size: 19px;
}

.home-page .home-action-dogs {
  box-shadow: 0 10px 20px rgba(101, 63, 22, .15);
}

.home-page .home-action-contact {
  box-shadow: 0 8px 16px rgba(101, 63, 22, .08);
}

.home-page .home-action-contact .home-contact-icon {
  width: 20px;
  height: 20px;
}

.home-page .home-features {
  right: 0;
  bottom: 9px;
  left: 0;
  min-height: 0;
  height: 144px;
  padding: 14px 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 28px 28px 0 0;
  background: rgba(255, 250, 244, .96);
  box-shadow: 0 -16px 0 rgba(255, 250, 244, .96), 0 15px 30px rgba(109, 73, 32, .06);
}

.home-page .home-features article {
  padding: 0 5px;
}

.home-page .home-feature-icon {
  position: relative;
  display: block;
  width: 35px;
  height: 36px;
  margin: 0 auto 8px;
  border: 0;
  border-radius: 0;
  color: #b78037;
  font: 400 22px/1 Georgia, "Times New Roman", serif;
}

.home-page .home-feature-icon::before,
.home-page .home-feature-icon::after {
  position: absolute;
  display: block;
  color: currentColor;
}

.home-page .home-feature-health::before {
  content: "";
  top: 1px;
  left: 2px;
  width: 29px;
  height: 29px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.home-page .home-feature-health::after {
  content: "✓";
  top: 8px;
  left: 9px;
  font: 700 18px/1 Arial, sans-serif;
}

.home-page .home-feature-quality::before {
  content: "";
  top: 0;
  left: 3px;
  width: 27px;
  height: 27px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.home-page .home-feature-quality::after {
  content: "✦";
  top: 7px;
  left: 10px;
  font-size: 16px;
}

.home-page .home-feature-social::before {
  content: "♡";
  top: -5px;
  left: 1px;
  font: 400 43px/.9 Georgia, "Times New Roman", serif;
}

.home-page .home-feature-social::after {
  content: "•";
  top: 12px;
  left: 14px;
  font: 700 19px/1 Arial, sans-serif;
}

.home-page .home-feature-delivery::before {
  content: "";
  top: 7px;
  left: 1px;
  width: 29px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 2px;
  box-shadow: 19px 8px 0 -2px #fffaf4, 19px 8px 0 0 currentColor;
}

.home-page .home-feature-delivery::after {
  content: "••";
  bottom: 2px;
  left: 5px;
  letter-spacing: 13px;
  font: 700 20px/1 Arial, sans-serif;
}

.home-page .home-features h2 {
  font-size: 13px;
}

.home-page .home-features p {
  max-width: 93px;
  margin-top: 6px;
  font-size: 9px;
  line-height: 1.23;
}

@media (max-width: 480px) {
  .home-page .home-header {
    top: 3.1%;
    right: 3.2%;
    left: 3.8%;
  }

  .home-page .home-brand {
    width: 96px;
  }

  .home-page .home-action-top {
    min-width: 114px;
    height: 34px;
    gap: 6px;
    padding: 0 11px;
    border-radius: 9px;
    font-size: 13px;
  }

  .home-page .home-action-top .home-contact-icon {
    width: 15px;
    height: 15px;
    border-width: 1.5px;
  }

  .home-page .home-menu-toggle {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .home-page .home-menu-toggle i {
    width: 14px;
  }

  .home-page .home-primary-actions {
    top: 69.1%;
    width: min(58%, 270px);
    gap: 8px;
  }

  .home-page .home-action-dogs,
  .home-page .home-action-contact {
    min-height: 41px;
    border-radius: 13px;
    font-size: 17px;
  }

  .home-page .home-action-contact .home-contact-icon {
    width: 18px;
    height: 18px;
  }

  .home-page .home-features {
    height: 137px;
    padding: 12px 0;
  }

  .home-page .home-feature-icon {
    width: 31px;
    height: 32px;
    margin-bottom: 6px;
    transform: scale(.9);
  }

  .home-page .home-features h2 {
    font-size: 11px;
  }

  .home-page .home-features p {
    max-width: 78px;
    font-size: 8px;
  }
}

/* A arte aprovada e a propria composicao da pagina inicial.  Os controles
   transparentes preservam navegacao e acessibilidade sem alterar o desenho. */
.home-page main {
  position: relative;
  display: block;
  height: 100svh;
}

.home-page .home-art {
  max-width: none;
  height: 100%;
  background-image: url("/assets/home-reference.png");
  background-position: center bottom;
  background-size: auto 99%;
  background-repeat: no-repeat;
  background-color: #fdf8f1;
  box-shadow: none;
}

.home-page .home-header,
.home-page .home-primary-actions {
  z-index: 5;
}

.home-page .home-brand,
.home-page .home-action-top,
.home-page .home-primary-actions .home-action {
  opacity: 0;
}

.home-page .home-header {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  pointer-events: none;
}

.home-page .home-brand,
.home-page .home-top-actions,
.home-page .home-action-top,
.home-page .home-primary-actions .home-action {
  pointer-events: auto;
}

.home-page .home-brand {
  position: absolute;
  top: 4%;
  left: 4%;
  width: 24%;
  height: 17%;
}

.home-page .home-brand img {
  width: 100%;
  height: 100%;
}

.home-page .home-top-actions {
  position: absolute;
  top: 7.4%;
  right: 0;
  width: 28%;
  height: 4.8%;
}

.home-page .home-action-top {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
}

.home-page .home-menu-toggle {
  position: absolute;
  top: 0;
  right: calc(100% + 9px);
  display: grid;
  width: 32px;
  height: 32px;
  place-content: center;
  gap: 3px;
  padding: 0;
  border: 1px solid rgba(182, 122, 49, .72);
  border-radius: 9px;
  background: rgba(255, 250, 244, .94);
  color: #342f2a;
  box-shadow: 0 6px 14px rgba(101, 63, 22, .1);
  opacity: 1;
  pointer-events: auto;
}

.home-page .home-menu-toggle i {
  width: 13px;
  height: 1.5px;
}

.home-page .home-primary-actions {
  top: 69.4%;
  width: min(55%, 320px);
  gap: 10px;
}

.home-page .home-primary-actions .home-action {
  width: 100%;
  min-height: 0;
  height: 46px;
}

.home-page .home-features {
  display: none;
}

.home-page .home-copyright {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30px;
  padding: 0 14px;
  background: linear-gradient(90deg, rgba(154, 104, 41, .72), rgba(223, 169, 90, .66) 48%, rgba(154, 104, 41, .72));
  color: #fffaf2;
  font: 600 10px/1.2 var(--body-font);
}

@media (max-width: 480px) {
  .home-page .home-brand {
    top: 4%;
    left: 3.5%;
    width: 28%;
  }

  .home-page .home-top-actions {
    top: 7.4%;
    width: 30%;
  }

  .home-page .home-primary-actions {
    top: 69.4%;
    width: 59%;
    gap: 9px;
  }

  .home-page .home-menu-toggle {
    width: 30px;
    height: 30px;
    right: calc(100% + 7px);
  }

  .home-page .home-primary-actions .home-action {
    height: 43px;
  }
}

/* Controles do topo: mesma escala e leitura, sem competir com a arte. */
.home-page .home-top-actions {
  z-index: 8;
  display: flex;
  align-items: center;
  right: 4%;
  width: auto;
  height: 34px;
  gap: 8px;
}

.home-page .home-top-actions::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 7px;
  left: 57px;
  width: 160px;
  height: 47px;
  background: #fdf8f1;
}

.home-page .home-action-top {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 126px;
  min-width: 126px;
  height: 34px;
  padding: 0 11px;
  gap: 6px;
  border: 1px solid #b67a31;
  border-radius: 9px;
  background: linear-gradient(145deg, #f6dca4, #ce913f);
  box-shadow: 0 6px 13px rgba(101, 63, 22, .13);
  color: #312d2a;
  font-size: 14px;
  opacity: 1;
}

.home-page .home-action-top .home-contact-icon {
  width: 16px;
  height: 16px;
  border-width: 1.5px;
}

.home-page .home-menu-toggle {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
}

.home-page .home-menu-toggle i {
  width: 14px;
}

@media (max-width: 480px) {
  .home-page .home-top-actions {
    height: 32px;
    gap: 7px;
  }

  .home-page .home-action-top {
    width: 116px;
    min-width: 116px;
    height: 32px;
    padding: 0 10px;
    font-size: 13px;
  }

  .home-page .home-menu-toggle {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}

/* O encerramento fica fora da arte: os diferenciais ganham respiro e o
   copyright passa a ser um rodape de verdade. */
body.home-page {
  height: auto;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fffaf4;
}

.home-page main {
  display: block;
  height: auto;
  min-height: 100svh;
}

.home-page .home-art {
  height: calc(100vw * 1.5);
  min-height: 0;
  max-height: 100svh;
}

.home-page .home-copyright {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  display: grid;
  min-height: 44px;
  height: auto;
  /* Reserva o espaço ocupado pela faixa de diferenciais, que desce para
     revelar por completo a curva dourada sob os cachorros. */
  margin: 0;
  padding: 11px 20px 14px;
  border: 0;
  background: linear-gradient(180deg, #fffaf4 0%, #f9efe3 100%);
  box-shadow: none;
  color: #77552c;
  font-size: 11px;
}

.home-page .home-art::after {
  display: none;
}

/* Composicao efetiva da home: arte limpa no hero e somente a base reaproveitada. */
.home-page .home-art {
  background-image: url("/assets/home-reference.png");
  background-position: center top;
  background-size: 100% 100%;
}

.home-page .home-art::before {
  display: none;
}

.home-page .home-brand {
  z-index: 8;
  height: auto;
  opacity: 0;
}

.home-page .home-brand img {
  height: auto;
  object-fit: contain;
}

.home-page .home-top-actions::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -4px;
  right: -6px;
  width: 188px;
  height: 40px;
  display: block;
  background: #fcf6ef;
  border-radius: 12px;
}

.home-page .home-primary-actions .home-action {
  opacity: 0;
}

.home-page .home-action-top {
  opacity: 1;
}

.home-page .home-menu-toggle {
  opacity: 1;
}

/* Ajuste isolado do topo: separa o menu do botao sem alterar a base aprovada. */
.home-page .home-top-actions {
  right: 5.2%;
  height: 32px;
  gap: 10px;
}

.home-page .home-action-top {
  width: 134px;
  min-width: 134px;
  height: 32px;
  padding: 0 10px;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
}

.home-page .home-menu-toggle {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

/* Home final em camadas: fundo limpo + botoes reais + base separada. */
.home-page main {
  min-height: 100svh;
}

.home-page .home-art {
  position: relative;
  container-type: inline-size;
  width: 100%;
  height: calc(100vw * 1.85);
  min-height: 0;
  max-height: none;
  overflow: hidden;
  background: #fff7ef url("/assets/home-hero-final-clean.png?v=20260808-2") center top / 100% 100% no-repeat;
}

.home-page .home-art::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 82.5%;
  left: 4.8%;
  right: auto;
  bottom: auto;
  width: 90.4%;
  aspect-ratio: 926 / 271;
  display: block;
  pointer-events: none;
  background: url("/assets/home-feature-card-final.png?v=20260808-2") center center / contain no-repeat;
}

.home-page .home-art::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: calc(100cqw * .25);
  display: block;
  pointer-events: none;
  background: linear-gradient(90deg, #9b5f22 0%, #d89c4a 18%, #f4ca83 50%, #d89c4a 82%, #9b5f22 100%);
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.home-page .home-brand {
  top: 4%;
  left: 5.5%;
  width: 23%;
  height: auto;
  opacity: 1;
}

.home-page .home-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-page .home-top-actions {
  top: 7.4%;
  right: 5.2%;
  z-index: 9;
  height: 32px;
  gap: 10px;
}

.home-page .home-top-actions::before {
  display: none;
}

.home-page .home-action-top {
  width: 134px;
  min-width: 134px;
  height: 32px;
  padding: 0 10px;
  overflow: hidden;
  font-size: 13px;
  white-space: nowrap;
  opacity: 1;
}

.home-page .home-menu-toggle {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  opacity: 1;
}

.home-page .home-primary-actions {
  z-index: 8;
  top: 50.8%;
  width: min(55%, 320px);
  gap: 8px;
}

.home-page .home-primary-actions .home-action {
  height: 44px;
  min-height: 0;
  opacity: 1;
}

.home-page .home-features {
  display: none;
}

.home-page .home-copyright {
  min-height: 36px;
  margin: 0;
  padding: 9px 16px 11px;
  background: #fff7ef;
  color: #77552c;
  font-size: 10.5px;
}

@media (max-width: 480px) {
  .home-page .home-art {
    height: calc(100vw * 1.85);
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .home-page .home-brand {
    left: 5%;
    width: 24%;
  }

  .home-page .home-top-actions {
    right: 4.2%;
    height: 30px;
    gap: 8px;
  }

  .home-page .home-action-top {
    width: 124px;
    min-width: 124px;
    height: 30px;
    font-size: 12.5px;
  }

  .home-page .home-menu-toggle {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .home-page .home-primary-actions {
    top: 50.8%;
    width: 58%;
    gap: 7px;
  }

  .home-page .home-primary-actions .home-action {
    height: 41px;
  }

  .home-page .home-art::before {
    top: 73%;
  }
}

/* A home nasceu como uma arte vertical: no computador ela permanece inteira,
   centralizada, sem ampliar ou deformar a imagem aprovada. */
.home-page .home-art {
  background-size: 100% auto;
}

@media (min-width: 720px) {
  body.home-page {
    background: #efe6dc;
  }

  .home-page main {
    width: min(100%, 580px);
    min-height: 0;
    margin-inline: auto;
    background: #fff7ef;
    box-shadow: 0 0 36px rgba(79, 49, 24, .12);
  }

  .home-page .home-art {
    height: calc(min(100vw, 580px) * 1.85);
    overflow: visible;
  }

  /* A arte continua centralizada no desktop, mas a base final segue de borda a borda. */
  .home-page .home-art::after {
    right: auto;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }

  .home-page .home-copyright {
    position: relative;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }
}

/* Os botões seguem a largura da arte — e não a altura variável da tela. */
.home-page .home-primary-actions {
  top: calc(100cqw * 1.115);
}

/* A base areia continua até o limite da tela, em qualquer largura. */
html:has(body.home-page),
body.home-page,
body.home-page main,
.home-page .home-copyright {
  background: #f5e5d8;
}

body.home-page,
body.home-page main {
  min-height: 100svh;
}

.home-page .home-art {
  background-color: #f5e5d8;
}

/* Base uniforme sob os botões e o card inferior. */
.home-page .home-sand-base {
  position: absolute;
  z-index: 2;
  top: 57.5%;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: #f5e5d8;
}

/* A base inferior acompanha o card e preenche o espaço restante. */
.home-page .home-art::before {
  top: 73%;
}

/* Ajuste final da composicao aprovada: preserva o arco da arte e compacta a base. */
.home-page .home-sand-base {
  display: none;
}

.home-page .home-art {
  height: calc(100vw * 1.65);
}

.home-page .home-art::before {
  top: calc(100cqw * 1.36);
}

.home-page .home-art::after {
  height: calc(100cqw * .025);
}

@media (max-width: 480px) {
  .home-page .home-art {
    height: calc(100vw * 1.65);
  }
}

@media (min-width: 720px) {
  .home-page main {
    width: min(580px, calc((100svh - 36px) / 1.65));
  }

  .home-page .home-art {
    height: calc(min(580px, calc((100svh - 36px) / 1.65)) * 1.65);
  }
}

/* Identidade Pequenos Encantos nas paginas internas. */
body:not(.home-page) {
  --navy: #3b3028;
  --blue: #b77a31;
  --baby: #f4e4d5;
  --sky: #ead0ae;
  --yellow: #d6a04e;
  --pink: #ead8ca;
  --cream: #fff8f1;
  --ink: #3b322c;
  --muted: #75675b;
  --line: #e4cba9;
  --hero-font: Georgia, "Times New Roman", serif;
  --display-font: Georgia, "Times New Roman", serif;
  background: #f7e9dd;
  color: var(--ink);
}

body:not(.home-page) main {
  min-height: calc(100svh - 70px);
  background:
    radial-gradient(circle at 92% 8%, rgba(190, 133, 61, .09), transparent 24rem),
    #fffaf5;
}

body:not(.home-page) .site-header {
  border-bottom-color: rgba(170, 113, 45, .24);
  background: rgba(255, 248, 241, .94);
  box-shadow: 0 8px 28px rgba(89, 56, 29, .07);
}

body:not(.home-page) .site-header nav {
  color: #65574c;
}

body:not(.home-page) .header-cta,
body:not(.home-page) .button.primary {
  border: 1px solid #b7782d;
  background: linear-gradient(135deg, #edc47f, #cc8e38);
  color: #30271f;
  box-shadow: 0 13px 28px rgba(147, 92, 29, .18);
}

body:not(.home-page) .menu-toggle {
  border-color: rgba(168, 110, 41, .55);
  border-radius: 12px;
  background: #fffaf5;
  color: #42372f;
}

body:not(.home-page) .eyebrow {
  color: #a76d27;
  letter-spacing: .12em;
}

body:not(.home-page) .gallery-hero {
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 82% 18%, rgba(190, 133, 61, .14), transparent 18rem),
    linear-gradient(145deg, #fffaf5, #f1dfce);
}

body:not(.home-page) .gallery-hero::before {
  border-color: rgba(169, 108, 37, .28);
  box-shadow: -38px 38px 0 -1px rgba(190, 133, 61, .08);
}

body:not(.home-page) .gallery-hero::after {
  background: #fffaf5;
}

body:not(.home-page) .gallery-hero .eyebrow,
body:not(.home-page) .filter-heading .eyebrow {
  color: #a76d27;
}

body:not(.home-page) .gallery-hero h1,
body:not(.home-page) .story h1,
body:not(.home-page) .legal-page h1,
body:not(.home-page) .detail-info h1 {
  color: #49392d;
  font-weight: 400;
}

body:not(.home-page) .gallery-hero p,
body:not(.home-page) .section-intro p,
body:not(.home-page) .story p,
body:not(.home-page) .legal-intro,
body:not(.home-page) .legal-content p,
body:not(.home-page) .detail-description {
  color: #75675b;
}

body:not(.home-page) .catalog,
body:not(.home-page) .story,
body:not(.home-page) .legal-page,
body:not(.home-page) .detail {
  background: transparent;
}

body.gallery-page .catalog-filters {
  border-bottom-color: #e5ceb0;
}

body.gallery-page .filter-select,
body.gallery-page .filter-group,
body:not(.home-page) .filter-heading p {
  color: #75675b;
}

body.gallery-page .filter-select select,
body.gallery-page .filter-chip {
  border-color: #dec39e;
  background: #fffaf5;
  color: #4b3b30;
}

body.gallery-page .filter-chip.active {
  border-color: #a76d27;
  background: #a76d27;
  color: #fffaf5;
}

body.gallery-page .filter-clear {
  color: #9a6323;
}

body:not(.home-page) .dog-image,
body:not(.home-page) .detail-image,
body:not(.home-page) .detail-thumb {
  background: #f0dfd0;
  box-shadow: 0 14px 30px rgba(85, 57, 34, .14);
}

body:not(.home-page) .dog-card h3,
body:not(.home-page) .dog-card-body {
  color: #49392d;
}

body:not(.home-page) .gallery-catalog .dog-card-body p,
body:not(.home-page) .back,
body:not(.home-page) .detail-note,
body:not(.home-page) .legal-updated {
  color: #897566;
}

body:not(.home-page) .dog-price strong,
body:not(.home-page) .gallery-catalog .dog-price strong,
body:not(.home-page) .detail-price strong {
  color: #a76d27;
}

body:not(.home-page) .detail-thumb.active {
  border-color: #b77a31;
}

body:not(.home-page) .detail-price {
  background: linear-gradient(135deg, #f6e7d8, #fffaf5);
  color: #75675b;
}

body:not(.home-page) .detail-facts {
  border-color: #ead5bb;
  background: #ead5bb;
}

body:not(.home-page) .detail-facts div,
body:not(.home-page) .legal-content section,
body:not(.home-page) .story-grid article,
body:not(.home-page) .empty-public {
  border-color: #ead5bb;
  background: rgba(255, 250, 245, .94);
  box-shadow: 0 16px 38px rgba(91, 59, 31, .08);
}

body:not(.home-page) .detail-facts dt {
  color: #8a7564;
}

body:not(.home-page) .detail-facts dd,
body:not(.home-page) .legal-content h2,
body:not(.home-page) .story-grid b {
  color: #49392d;
}

body:not(.home-page) .site-footer {
  border-top: 5px solid #c88b38;
  background: #342920;
  color: #f4e5d7;
}

body:not(.home-page) .footer-copyright,
body:not(.home-page) .site-footer p {
  color: #d8c4b3;
}

body:not(.home-page) .footer-legal summary,
body:not(.home-page) .footer-links a {
  color: #f4e5d7;
}

body:not(.home-page) .footer-links {
  border-top-color: rgba(234, 195, 142, .28);
}

/* Rodape leve e padronizado nas paginas internas. */
body:not(.home-page) .site-footer {
  grid-template-columns: 1fr;
  padding: 24px 18px 28px;
  border-top: 5px solid #c88b38;
  background: #f5e5d8;
  color: #49392d;
}

body:not(.home-page) .site-footer > .brand {
  display: none;
}

body:not(.home-page) .footer-contact {
  justify-items: start;
  text-align: left;
}

body:not(.home-page) .footer-copyright,
body:not(.home-page) .site-footer p,
body:not(.home-page) .footer-legal summary,
body:not(.home-page) .footer-links a {
  color: #67574b;
}

body:not(.home-page) .footer-links {
  border-top-color: rgba(167, 109, 39, .24);
}

@media (min-width: 760px) {
  body:not(.home-page) .site-footer {
    padding: 26px 8vw 30px;
  }
}

/* Acesso centralizado às políticas, sem carregar visualmente o rodapé. */
.home-page .home-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-page .home-copyright a {
  padding-left: 10px;
  border-left: 1px solid rgba(119, 85, 44, .35);
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.footer-policies-link {
  color: #67574b;
  font-size: 12px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(167, 109, 39, .35);
  text-underline-offset: 4px;
}

.policies-hub {
  width: min(920px, calc(100% - 36px));
  min-height: 60vh;
  margin: 0 auto;
  padding: 72px 0 86px;
}

.policies-hub > .eyebrow { color: #a76d27; }
.policies-hub h1 {
  max-width: 680px;
  margin: 10px 0 16px;
  color: #49392d;
  font: 500 clamp(40px, 7vw, 66px)/.98 Georgia, serif;
  letter-spacing: -1.5px;
}
.policies-hub > p {
  max-width: 620px;
  margin: 0;
  color: #75675b;
  font-size: 16px;
  line-height: 1.65;
}
.policies-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 36px;
}
.policies-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 15px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  border: 1px solid #e5ceb0;
  border-radius: 17px;
  background: rgba(255, 250, 245, .86);
  color: #49392d;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(93, 61, 35, .05);
}
.policies-list span { color: #a76d27; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; }
.policies-list b { grid-column: 1; font: 500 21px/1.15 Georgia, serif; }
.policies-list i { grid-column: 2; grid-row: 1 / 3; color: #b57930; font-size: 22px; font-style: normal; }

@media (max-width: 620px) {
  .policies-hub { padding: 54px 0 68px; }
  .policies-list { grid-template-columns: 1fr; }
  .home-page .home-copyright { gap: 7px; }
}
