/* Steve Watts Upholstery — site stylesheet */
:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-deep: #134e4a;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --cream: #fffbf2;
  --ink: #1c2b2a;
  --grey: #5c6b6a;
  --white: #ffffff;
  --yellow: #fbbf24;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(19, 78, 74, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: var(--teal-dark); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--teal-deep);
  color: #d7f5f1;
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.topbar a { color: var(--yellow); text-decoration: none; font-weight: 600; }

/* ---------- Header / nav ---------- */
header.site {
  background: var(--white);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
header.site .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; gap: 10px;
}
.logo { text-decoration: none; line-height: 1.15; }
.logo strong { display: block; font-size: 1.35rem; color: var(--teal-deep); letter-spacing: 0.5px; }
.logo span { font-size: 0.78rem; color: var(--orange-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

nav.main { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
nav.main a {
  text-decoration: none; color: var(--ink); font-weight: 500;
  padding: 8px 12px; border-radius: 8px; font-size: 0.95rem;
}
nav.main a:hover { background: #e6f7f5; color: var(--teal-dark); }
nav.main a.active { background: var(--teal); color: var(--white); }
nav.main a.cta {
  background: var(--orange); color: var(--white); font-weight: 700;
}
nav.main a.cta:hover { background: var(--orange-dark); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 55%, #2dd4bf 100%);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(251, 191, 36, 0.18);
}
.hero::before {
  content: ""; position: absolute; left: -80px; bottom: -140px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(249, 115, 22, 0.20);
}
.hero .container { position: relative; z-index: 2; }
.hero .kicker {
  display: inline-block; background: var(--yellow); color: var(--teal-deep);
  font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(1.9rem, 4.5vw, 3.1rem); line-height: 1.15; margin-bottom: 16px; max-width: 720px; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero p.lead { font-size: 1.15rem; max-width: 640px; margin-bottom: 28px; color: #ccfbf1; }
.hero .btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 14px 28px; border-radius: 999px; font-size: 1rem;
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--orange); color: var(--white); box-shadow: 0 6px 18px rgba(249,115,22,0.4); }
.btn.whatsapp { background: #25d366; color: var(--white); box-shadow: 0 6px 18px rgba(37,211,102,0.35); }
.btn.ghost { background: rgba(255,255,255,0.14); color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn.teal { background: var(--teal); color: var(--white); }

/* ---------- Hero with visual ---------- */
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-shot {
  background: var(--white); border-radius: var(--radius); padding: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3); transform: rotate(1.5deg);
}
.hero-shot .caption {
  text-align: center; font-weight: 700; color: var(--teal-deep);
  font-size: 0.9rem; padding: 10px 6px 4px;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-shot { transform: none; }
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 4px solid var(--yellow);
}
.trust .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.trust .item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--teal-deep); }
.trust .item .dot { color: var(--orange); font-size: 1.2rem; }

/* ---------- Sections ---------- */
section.block { padding: 64px 0; }
section.block.alt { background: var(--white); }
section.block.tint { background: #e6f7f5; }

.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head .kicker {
  color: var(--orange-dark); font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; font-size: 0.8rem;
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--teal-deep); margin: 6px 0 10px; }
.section-head p { color: var(--grey); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  border-top: 5px solid var(--teal);
}
.card.orange { border-top-color: var(--orange); }
.card.yellow { border-top-color: var(--yellow); }
.card .body { padding: 22px; flex: 1; }
.card h3 { color: var(--teal-deep); margin-bottom: 8px; font-size: 1.15rem; }
.card p { color: var(--grey); font-size: 0.95rem; }
.card .body a.more { font-weight: 700; color: var(--orange-dark); text-decoration: none; }

/* ---------- Photo placeholders ---------- */
.ph {
  background: repeating-linear-gradient(45deg, #d2efeb, #d2efeb 14px, #c2e8e3 14px, #c2e8e3 28px);
  border: 2px dashed var(--teal);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-weight: 600; font-size: 0.85rem; padding: 12px;
  min-height: 200px;
}
.ph.tall { min-height: 300px; }
.ph small { display: block; font-weight: 400; }

/* ---------- Before / after pair ---------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; position: relative; }
.ba .tag {
  position: absolute; top: 10px; padding: 3px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; color: var(--white); z-index: 3;
}
.ba .tag.before { left: 10px; background: var(--grey); }
.ba .tag.after { right: 10px; background: var(--orange); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 24px 20px;
  box-shadow: var(--shadow); position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white); font-weight: 800; font-size: 1.2rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.02rem; color: var(--teal-deep); margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--grey); }

/* ---------- Feature list ---------- */
ul.features { list-style: none; display: grid; gap: 12px; }
ul.features li {
  background: var(--white); border-radius: 10px; padding: 14px 18px 14px 46px;
  box-shadow: var(--shadow); position: relative; font-size: 0.97rem;
}
ul.features li::before {
  content: "✓"; position: absolute; left: 16px; top: 12px;
  color: var(--orange); font-weight: 800; font-size: 1.1rem;
}
ul.features li strong { color: var(--teal-deep); }

/* ---------- Reviews ---------- */
.review {
  background: var(--white); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); border-left: 5px solid var(--yellow);
}
.review .stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 10px; }
.review p { font-style: italic; color: var(--ink); }
.review footer { margin-top: 12px; font-weight: 600; color: var(--teal-dark); font-style: normal; font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white); padding: 56px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.cta-band p { max-width: 620px; margin: 0 auto 26px; color: #ffedd5; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn.primary { background: var(--white); color: var(--orange-dark); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--white); padding: 54px 0 46px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -100px; bottom: -160px;
  width: 320px; height: 320px; border-radius: 50%; background: rgba(249,115,22,0.22);
}
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 8px 0 12px; max-width: 760px; position: relative; z-index: 2; }
.page-hero p { max-width: 680px; color: #ccfbf1; font-size: 1.08rem; position: relative; z-index: 2; }
.page-hero .crumb { font-size: 0.85rem; color: var(--yellow); font-weight: 600; position: relative; z-index: 2; }
.page-hero .crumb a { color: var(--yellow); }

/* ---------- Two-column text/media ---------- */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.split h2 { color: var(--teal-deep); font-size: 1.6rem; margin-bottom: 12px; }
.split p { color: var(--grey); margin-bottom: 12px; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--teal-deep); color: #b9e8e2; padding: 50px 0 24px; margin-top: 0;
}
footer.site .grid { grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
footer.site h4 { color: var(--white); margin-bottom: 12px; font-size: 1.02rem; }
footer.site a { color: var(--yellow); text-decoration: none; }
footer.site ul { list-style: none; }
footer.site ul li { margin-bottom: 8px; font-size: 0.92rem; }
footer.site .legal {
  border-top: 1px solid rgba(255,255,255,0.15); margin-top: 36px; padding-top: 18px;
  font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 99;
  background: #25d366; color: var(--white); text-decoration: none;
  font-weight: 700; padding: 13px 20px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); font-size: 0.95rem;
}

/* ---------- Real photos ---------- */
.card .photo { width: 100%; height: 230px; object-fit: cover; object-position: center 28%; display: block; }
.hero-shot .photo { width: 100%; max-height: 480px; object-fit: cover; object-position: center 22%; border-radius: 10px; display: block; }
.split .photo { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  footer.site .grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid.cols-3, .grid.cols-2, .steps { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
  nav.main { justify-content: center; }
}
