:root{
  --bg:#ffffff;
  --soft:#faf9f7;
  --card:#ffffff;
  --text:#1f2933;
  --muted:#6b7280;
  --accent:#6b8f71;
  --accent2:#dfece3;
  --border:#e9e6e1;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{ color:inherit; }

.container{
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px;
}

/* Sticky contact bar */
.stickybar{
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 24px));
  display:flex;
  gap:10px;
  padding:10px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 99;
  backdrop-filter: blur(10px);
}

.stickybtn{
  flex:1;
  text-align:center;
  text-decoration:none;
  padding:10px 12px;
  border-radius: 999px;
  background: var(--accent2);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Hide stickybar on wide screens */
@media(min-width: 900px){
  .stickybar{ display:none; }
}

/* Top nav */
.topnav{
  position: sticky;
  top:0;
  background: rgba(255,255,255,0.92);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
  z-index: 50;
}

.navrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-logo{
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}

.brand-name{
  font-weight: 800;
  font-size: 1.05rem;
}
.brand-sub{
  color: var(--muted);
  font-size: 0.9rem;
}

.navactions{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.pill{
  text-decoration:none;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: var(--soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.pill.primary{
  border-color: transparent;
  background: var(--accent);
  color:#fff;
}

/* Hero */
.hero{
  background: linear-gradient(180deg, var(--soft), #fff);
  padding: 34px 0 18px;
}

.hero-grid{
  display:grid;
  gap: 26px;
}

.hero-copy h1{
  font-size: 2.1rem;
  line-height: 1.15;
  margin: 8px 0 10px;
}

.lead{
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 56ch;
}

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
}

.trustline{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color: var(--muted);
  font-size: 0.92rem;
  align-items:center;
}
.trustline a{ color: var(--accent); text-decoration:none; font-weight:700; }
.dot{ opacity:.4; }

/* Percy profile row */
.profile-row{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  box-shadow: var(--shadow);
}

.profile-pic{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.profile-title{
  font-weight: 900;
}
.profile-sub{
  color: var(--muted);
  font-size: 0.92rem;
}

/* Hero photos */
.hero-photos{
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 130px;
  gap: 12px;
  align-content:start;
}

.photo{
  border-radius: 18px;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.photo.big{
  grid-column: 1 / 3;
  height: 220px;
}

.photo.small{
  height: 130px;
}

/* Buttons */
.btn{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--soft);
  text-decoration:none;
  font-weight:800;
  font-size: 0.95rem;
}

.btn.primary{
  background: var(--accent);
  color:#fff;
  border-color: transparent;
}

.btn.small{
  padding: 10px 14px;
  font-size: 0.9rem;
}

.btn.full{
  width: 100%;
  text-align:center;
}

/* Sections */
.section{
  padding: 34px 0;
}

.section.soft{
  background: var(--soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head h2{
  margin: 0 0 6px;
  font-size: 1.6rem;
}

.muted{ color: var(--muted); }

.two-col{
  display:grid;
  gap: 18px;
}

.panel{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.panel h2{
  margin-top:0;
  margin-bottom:6px;
}

.bullets{
  margin: 12px 0 14px;
  padding-left: 18px;
  color: var(--muted);
}

.link{
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}

/* Cards */
.cards{
  display:grid;
  gap: 16px;
}

.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow);
}

.cardimg{
  height: 150px;
  background-size: cover;
  background-position: center;
}

.cardbody{
  padding: 16px 16px 18px;
}

.cardtitle{
  font-weight: 900;
  margin-bottom: 4px;
}

.cardtext{
  color: var(--muted);
  margin-bottom: 12px;
}

/* Contact box */
.contactbox{
  display:grid;
  gap: 18px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
}

.contactgrid{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}

.contacttile{
  text-decoration:none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.contacttile.plain{
  background: #fff;
}

.label{
  color: var(--muted);
  font-size: 0.85rem;
}
.value{
  font-weight: 900;
  font-size: 1.05rem;
  margin-top: 3px;
}

/* Form */
.form{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.fieldrow{
  margin-bottom: 12px;
}

label{
  display:block;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

input, textarea, select{
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.tiny{
  font-size: 0.85rem;
  margin-top: 10px;
}

/* Footer */
.footer{
  padding: 28px 0 88px;
  text-align:center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #fff;
}

.footline{
  margin: 6px 0;
}

.footer a{
  color: var(--accent);
  text-decoration:none;
  font-weight: 800;
}

/* Responsive */
@media(min-width: 860px){
  .hero-grid{
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
  .two-col{
    grid-template-columns: 1fr 1fr;
  }
  .cards{
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contactbox{
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    padding: 22px;
  }
  .hero-copy h1{
    font-size: 2.6rem;
  }
}
.sold-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 14px 0 18px;
}

.iframe-shell{
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#fff;
}

.iframe-shell iframe{
  width: 100%;
  height: 78vh;
  border: 0;
}
