/* mr.photos — shared styling for local-business unofficial preview pages */
:root{
  --canvas:#1B3A52;
  --canvas-deep:#122633;
  --bone:#EFE7D6;
  --ochre:#C89B3C;
  --rust:#B5432A;
  --ink:#151313;
  --line: rgba(239,231,214,.14);
}
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  background:
    radial-gradient(ellipse at 78% 8%, rgba(200,155,60,.16), transparent 45%),
    radial-gradient(ellipse at 10% 92%, rgba(181,67,42,.14), transparent 50%),
    var(--canvas);
  color:var(--bone);
  font-family:"Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  min-height:100vh;
}
a{color:inherit;}
img{max-width:100%; display:block;}

.frame{
  max-width:1180px;
  margin:0 auto;
  padding:0 clamp(20px, 5vw, 64px) 40px;
}

/* ---------- top bar ---------- */
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:28px 0 0;
  font-family:"Space Grotesk", sans-serif;
  font-weight:500;
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  gap:16px;
  flex-wrap:wrap;
}
.wordmark{
  display:flex;
  align-items:baseline;
  gap:.5em;
  font-family:"Fraunces", serif;
  font-weight:500;
  font-style:italic;
  font-size:1.05rem;
  letter-spacing:0;
  text-transform:none;
  text-decoration:none;
}
.wordmark .dot{color:var(--ochre);font-style:normal;}
.badge{
  border:1px solid var(--line);
  border-radius:999px;
  padding:.5em 1.1em;
  display:flex;
  align-items:center;
  gap:.55em;
  font-size:.78rem;
}
.badge::before{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:var(--rust);
  box-shadow:0 0 0 3px rgba(181,67,42,.22);
}

/* ---------- claim strip ---------- */
.claim-strip{
  margin-top:22px;
  border:1px solid var(--line);
  border-left:3px solid var(--ochre);
  background:rgba(200,155,60,.07);
  border-radius:2px;
  padding:14px 18px;
  font-size:.9rem;
  line-height:1.55;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.claim-strip strong{color:var(--bone); font-weight:500;}
.claim-strip a{
  color:var(--ochre);
  text-decoration:none;
  font-weight:500;
  border-bottom:1px solid rgba(200,155,60,.4);
  white-space:nowrap;
}
.claim-strip a:hover{color:var(--bone); border-color:var(--bone);}

/* ---------- hero ---------- */
.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:clamp(24px,5vw,72px);
  align-items:center;
  padding:clamp(30px,6vh,64px) 0 clamp(20px,4vh,40px);
}
@media (max-width: 880px){
  .hero{grid-template-columns:1fr; padding-top:28px;}
  .hero .photo-col{order:-1;}
}

.eyebrow{
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--ochre);
  font-weight:500;
  margin:0 0 18px;
}

h1{
  font-family:"Fraunces", serif;
  font-weight:500;
  line-height:1.02;
  letter-spacing:-.01em;
  margin:0 0 20px;
  font-size:clamp(2.4rem, 5.4vw, 4rem);
}
h1 em{
  font-style:italic;
  color:var(--ochre);
}

.sub{
  font-size:clamp(1rem, 1.4vw, 1.12rem);
  line-height:1.6;
  max-width:36em;
  color:rgba(239,231,214,.82);
  margin:0 0 30px;
}
.sub strong{color:var(--bone); font-weight:500;}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}
.cta{
  font-family:"Space Grotesk", sans-serif;
  font-weight:500;
  font-size:.92rem;
  text-decoration:none;
  padding:.9em 1.5em;
  border-radius:2px;
  background:var(--bone);
  color:var(--canvas-deep);
  display:inline-flex;
  align-items:center;
  gap:.6em;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), background .35s;
}
.cta:hover{background:var(--ochre); transform:translate(2px,-2px);}
.cta.ghost{
  background:none;
  border:1px solid var(--line);
  color:var(--bone);
}
.cta.ghost:hover{border-color:var(--ochre); color:var(--ochre); background:none; transform:none;}

/* ---------- facet frame: the cubist signature, applied to a real photo ---------- */
.facet-frame{
  max-width:460px;
  margin:0 auto;
}
.facet-frame .stage{
  position:relative;
}
.facet-frame .plate{
  position:absolute;
  inset:0;
  z-index:0;
}
.facet-frame .plate.p1{
  background:var(--rust);
  clip-path: polygon(6% 10%, 100% 0%, 94% 92%, 0% 100%);
  transform: translate(14px, -14px) rotate(-3deg);
}
.facet-frame .plate.p2{
  background:var(--ochre);
  clip-path: polygon(0% 6%, 96% 0%, 100% 94%, 8% 100%);
  transform: translate(-10px, 12px) rotate(2deg);
  opacity:.85;
}
.facet-frame .shot{
  position:relative;
  z-index:1;
  clip-path: polygon(4% 3%, 97% 0%, 100% 95%, 3% 100%);
  overflow:hidden;
  aspect-ratio: 4 / 5;
  background:var(--canvas-deep);
}
.facet-frame .shot img{
  width:100%; height:100%; object-fit:cover;
}
.facet-frame .shot.logo-shot{
  display:flex; align-items:center; justify-content:center;
  background:var(--bone);
}
.facet-frame .shot.logo-shot img{
  width:70%; height:70%; object-fit:contain;
}
.facet-frame .shot.placeholder{
  display:flex; align-items:center; justify-content:center;
  background:var(--canvas-deep);
}
.facet-frame figcaption{
  margin-top:14px;
  font-size:.74rem;
  color:rgba(239,231,214,.5);
  text-align:center;
  letter-spacing:.03em;
}

/* ---------- info panel ---------- */
.info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:2px;
  overflow:hidden;
  margin:8px 0 46px;
}
@media (max-width: 700px){
  .info-grid{grid-template-columns:1fr;}
}
.info-cell{
  background:var(--canvas);
  padding:20px 22px;
}
.info-cell .label{
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--ochre);
  margin-bottom:8px;
}
.info-cell .value{
  font-size:1rem;
  line-height:1.5;
}
.info-cell a{
  text-decoration:none;
  border-bottom:1px solid var(--line);
}
.info-cell a:hover{color:var(--ochre); border-color:var(--ochre);}

/* ---------- footer ---------- */
footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 0 32px;
  font-size:.78rem;
  letter-spacing:.03em;
  color:rgba(239,231,214,.55);
  border-top:1px solid var(--line);
  margin-top:12px;
  flex-wrap:wrap;
  gap:10px;
}
footer a{
  text-decoration:none;
  color:rgba(239,231,214,.78);
  border-bottom:1px solid transparent;
  transition:border-color .25s, color .25s;
}
footer a:hover{color:var(--ochre); border-color:var(--ochre);}

a:focus-visible, .cta:focus-visible{
  outline:2px solid var(--ochre);
  outline-offset:4px;
  border-radius:2px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.01ms !important; animation-iteration-count:1 !important;}
}
