/* Brushstroke Decorators — example site styles
   Bright, playful, paint-swatch motif. White background, one bold
   confident colour (teal), a strip of accent swatch colours used
   sparingly to tag services. */

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

:root {
  --teal: #0F7A73;
  --teal-dark: #0B5C56;
  --coral: #F0654A;
  --gold: #E8AA33;
  --plum: #8B5FBF;
  --sky: #3E8FD6;
  --ink: #232323;
  --grey: #6B6B6B;
  --border: #ECECEC;
  --paper: #FFFFFF;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

.example-ribbon {
  background: var(--ink);
  color: #d7d7d7;
  text-align: center;
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
}
.example-ribbon a { color: #F0C34A; font-weight: 700; text-decoration: underline; }

/* Swatch stripe — the visual signature of this brand */
.swatch-stripe { display: flex; height: 8px; }
.swatch-stripe span { flex: 1; }

header.site-header { padding: 1.5rem 0; }
header.site-header .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.3rem; white-space: nowrap; flex-shrink: 0; }
.logo .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--coral); display: inline-block; }
nav.main-nav { display: flex; gap: 2rem; font-weight: 600; font-size: 0.92rem; }
nav.main-nav a { color: var(--grey); }
nav.main-nav a.active, nav.main-nav a:hover { color: var(--teal); }
.btn { display: inline-block; font-weight: 700; padding: 0.8rem 1.6rem; border-radius: 8px; font-size: 0.92rem; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }

.hero { padding: 2rem 0 4rem; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero .kicker { color: var(--coral); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.82rem; margin-bottom: 1rem; }
.hero h1 { font-size: 2.9rem; margin-bottom: 1.25rem; }
.hero p { color: var(--grey); font-size: 1.08rem; max-width: 460px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.hero-img-grid img { width: 100%; height: 190px; object-fit: cover; border-radius: 12px; }
.hero-img-grid img:first-child { grid-row: span 2; height: 100%; }

section { padding: 4.5rem 0; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title .kicker { color: var(--coral); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.82rem; }
.section-title h2 { font-size: 2.1rem; margin-top: 0.4rem; }

.services-swatch { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-swatch { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.svc-swatch .tag { height: 10px; }
.svc-swatch .body { padding: 1.75rem 1.5rem; }
.svc-swatch .icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.svc-swatch h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.svc-swatch p { font-size: 0.9rem; color: var(--grey); }

.gallery-band { background: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; }

.stat-strip { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; padding: 2.5rem 1.5rem; text-align: center; background: #FAFAF9; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-strip div strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.7rem; color: var(--teal); }
.stat-strip div span { font-size: 0.82rem; color: var(--grey); }

.cta-swatch { background: var(--teal); color: #fff; text-align: center; padding: 3.5rem; border-radius: 16px; }
.cta-swatch h2 { color: #fff; font-size: 2rem; margin-bottom: 0.75rem; }
.cta-swatch p { color: #cdeae7; margin-bottom: 1.5rem; }
.cta-swatch .btn { background: #fff; color: var(--teal-dark); }
.cta-swatch .btn:hover { background: #eafffd; }

footer.site-footer { background: #FAFAF9; border-top: 1px solid var(--border); padding: 2.5rem 0 1.5rem; font-size: 0.9rem; }
footer.site-footer .wrap { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
footer.site-footer h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; margin-bottom: 0.8rem; }
footer.site-footer p, footer.site-footer li { color: var(--grey); }
footer.site-footer ul { list-style: none; }
footer.site-footer li { margin-bottom: 0.5rem; }
.footer-bottom { text-align: center; margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: #999; }

/* Services page */
.service-swatch-row { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 1.5rem; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem 1.75rem; margin-bottom: 1rem; }
.service-swatch-row .bar { align-self: stretch; border-radius: 4px; }
.service-swatch-row h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.service-swatch-row p { color: var(--grey); font-size: 0.9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.contact-grid input, .contact-grid textarea {
  width: 100%; padding: 0.75rem 0.95rem; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 1rem; font-family: inherit;
}
.contact-grid label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; }
.info-card { border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; }
.info-card strong { display: block; color: var(--teal); margin-bottom: 0.2rem; font-family: 'Poppins', sans-serif; font-size: 0.95rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.mobile-nav-panel {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-panel a {
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--border);
  font-weight: 600;
  color: var(--ink);
}
.mobile-nav-panel a.active { color: var(--teal); }
.mobile-nav-panel.open { display: flex; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-img-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-img-grid img:first-child { grid-row: span 1; height: 190px; }
  .services-swatch { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  footer.site-footer .wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .mobile-toggle { display: block; }
}

@media (max-width: 480px) {
  .hero { padding: 1.5rem 0 3rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero-img-grid { grid-template-columns: 1fr; }
  .hero-img-grid img:first-child { height: 190px; }
  .hero-img-grid img:nth-child(2), .hero-img-grid img:nth-child(3) { height: 140px; }
  section { padding: 3rem 0; }
  .stat-strip { padding: 1.75rem 1rem; gap: 1.25rem; }
  .cta-swatch { padding: 2.25rem 1.25rem; }
  .service-swatch-row { grid-template-columns: 8px 1fr; row-gap: 0.6rem; }
  .service-swatch-row > a { grid-column: 1 / -1; justify-self: start; }
}
