/*
Theme Name: Sound Business Landing
Theme URI: https://www.soundbusiness.com.au/
Author: Martian Media
Description: Purpose-built one-page landing theme for Sound Business Equipment & Stationery. The homepage content is stored in a normal WordPress Page and can be edited as HTML.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: sound-business-landing
*/

:root {
  --sb-navy: #071a33;
  --sb-black: #080808;
  --sb-pink: #f30b62;
  --sb-teal: #0bb4aa;
  --sb-green: #67bd30;
  --sb-yellow: #ffc21a;
  --sb-orange: #ff7b1a;
  --sb-blue: #1596d2;
  --sb-text: #111827;
  --sb-muted: #555f70;
  --sb-border: #dde1e6;
  --sb-soft: #f7f8fa;
  --sb-max: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--sb-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

.sb-site { overflow: hidden; background: #fff; }
.sb-wrap { width: calc(100% - 72px); max-width: none; margin-inline: auto; }
.sb-section { padding: 36px 0; }

.sb-header {
  background: #fff;
  border-bottom: 1px solid #eceff3;
}
.sb-header-inner {
  min-height: 146px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.sb-logo {
  display: block;
  width: 370px;
  max-width: 48vw;
  aspect-ratio: 640 / 192;
  background: url('assets/images/logo.png') center / contain no-repeat;
  flex: 0 0 auto;
}
.sb-header-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #111;
  font-size: 21px;
  font-weight: 700;
  white-space: nowrap;
}
.sb-round-icon {
  width: 47px;
  height: 47px;
  border: 2px solid var(--sb-pink);
  color: var(--sb-pink);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 23px;
  line-height: 1;
}

.sb-hero {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 390px;
  align-items: stretch;
  border-bottom: 1px solid #eef0f2;
}
.sb-hero-copy {
  padding: 46px 4.5vw 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: #fff;
}
.sb-eyebrow {
  margin: 0 0 8px;
  color: var(--sb-pink);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}
.sb-hero h1 {
  margin: 0 0 12px;
  color: #0b0d12;
  font-size: clamp(36px, 4.1vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  max-width: 680px;
}
.sb-hero p {
  margin: 0;
  max-width: 650px;
  font-size: 16px;
  color: #20242b;
}
.sb-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 23px; }
.sb-btn {
  min-width: 142px;
  min-height: 52px;
  padding: 13px 23px;
  border-radius: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--sb-pink);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.sb-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(243,11,98,.16); }
.sb-btn-primary { background: var(--sb-pink); color: #fff; }
.sb-btn-outline { background: #fff; color: var(--sb-pink); }
.sb-hero-art {
  min-height: 390px;
  background: #fff url('assets/images/hero-products.jpg') center / cover no-repeat;
}

.sb-notice-wrap { padding-top: 0; }
.sb-notice {
  position: relative;
  margin-top: 0;
  border-radius: 8px;
  padding: 17px 26px;
  text-align: center;
  font-weight: 700;
  color: #171717;
  background: linear-gradient(90deg, #fff1bd, #fff8e5 54%, #fff1bd);
  box-shadow: 0 8px 24px rgba(11,21,35,.04);
}
.sb-notice::after,
.sb-contact::before,
.sb-footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--sb-orange) 0 12%,
    var(--sb-yellow) 12% 24%,
    #e8e31b 24% 36%,
    var(--sb-green) 36% 48%,
    #0ea477 48% 60%,
    #43b9cb 60% 72%,
    #4f5db7 72% 80%,
    #cc3f91 80% 90%,
    var(--sb-pink) 90% 100%);
}
.sb-notice::after { bottom: 0; border-radius: 0 0 8px 8px; }
.sb-notice-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 16px;
}

.sb-intro { text-align: center; padding-bottom: 21px; }
.sb-intro h2,
.sb-order h2 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.5px;
  color: #131722;
}
.sb-intro p,
.sb-order > p {
  max-width: 980px;
  margin: 0 auto;
  color: #2f3540;
}

.sb-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 10px;
}
.sb-card {
  min-height: 260px;
  border: 1px solid var(--sb-border);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
  background: #fff;
  box-shadow: 0 2px 7px rgba(13,26,45,.03);
  position: relative;
}
.sb-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--accent, var(--sb-pink));
}
.sb-card-copy { padding: 52px 4px 26px 15px; position: relative; z-index: 2; }
.sb-card-icon {
  position: absolute;
  top: 15px;
  left: 14px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent, var(--sb-pink));
  color: #fff;
  font-size: 21px;
  font-weight: 700;
}
.sb-card h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.12; }
.sb-card p { margin: 0; font-size: 13.5px; line-height: 1.45; color: #303641; }
.sb-card-media { background-position: center; background-repeat: no-repeat; background-size: cover; }
.sb-card-stationery { --accent: var(--sb-pink); }
.sb-card-stationery .sb-card-media { background-image: url('assets/images/card-stationery.jpg'); }
.sb-card-craft { --accent: #62b72d; }
.sb-card-craft .sb-card-media { background-image: url('assets/images/card-craft.jpg'); }
.sb-card-furniture { --accent: #10a8b9; }
.sb-card-furniture .sb-card-media { background-image: url('assets/images/card-furniture.jpg'); }

.sb-order {
  margin-top: 17px;
  padding: 18px 24px 20px;
  border: 1px solid var(--sb-border);
  border-radius: 8px;
  background: linear-gradient(#fff, #f8f9fa);
  text-align: center;
}
.sb-order-points {
  margin: 17px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.sb-order-point {
  min-width: 205px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-weight: 700;
  border-right: 1px solid #dce0e4;
}
.sb-order-point:last-child { border-right: 0; }
.sb-mini-icon {
  flex: 0 0 auto;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--point, var(--sb-pink));
}

.sb-contact {
  position: relative;
  margin-top: 15px;
  background: #080808;
  color: #fff;
  border-radius: 8px;
  padding: 27px 26px 26px;
}
.sb-contact::before { top: 0; border-radius: 8px 8px 0 0; }
.sb-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr .7fr 1.05fr 1.15fr .9fr;
  align-items: center;
  gap: 0;
}
.sb-contact-title {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.sb-contact-bigicon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sb-pink);
  font-size: 30px;
}
.sb-contact h2 { margin: 0 0 8px; font-size: 26px; line-height: 1.1; }
.sb-contact-item {
  min-height: 72px;
  padding: 0 14px;
  border-left: 1px solid rgba(255,255,255,.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sb-contact-item strong { display: block; font-size: 13px; margin-bottom: 3px; }
.sb-contact-item a { text-decoration: none; }
.sb-contact-item a:hover { text-decoration: underline; }
.sb-contact-actions { display: grid; gap: 10px; padding-left: 18px; }
.sb-contact-actions .sb-btn { width: 100%; min-width: 0; min-height: 47px; padding: 10px 14px; }
.sb-contact-actions .sb-btn-outline { color: var(--sb-pink); }

.sb-footer {
  position: relative;
  margin-top: 29px;
  background: #080808;
  color: #fff;
  padding: 28px 0 31px;
}
.sb-footer::before { top: 0; }
.sb-footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 33px;
}
.sb-footer-logo {
  width: 270px;
  max-width: 36vw;
  aspect-ratio: 640 / 192;
  background: url('assets/images/logo.png') center / contain no-repeat;
}
.sb-footer-rule { width: 1px; height: 70px; background: rgba(255,255,255,.35); }
.sb-footer-copy { font-size: 15px; line-height: 1.45; }
.sb-footer-meta { text-align: center; color: #aeb4bf; font-size: 12px; margin-top: 18px; }

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

@media (min-width: 1500px) {
  .sb-wrap { width: calc(100% - 120px); }
  .sb-header-inner { min-height: 138px; }
  .sb-logo { width: 410px; }
  .sb-hero { min-height: 430px; }
  .sb-hero-art { min-height: 430px; }
  .sb-hero h1 { font-size: 58px; }
  .sb-hero p { font-size: 17px; }
  .sb-card { min-height: 285px; }
}

@media (max-width: 1100px) {
  .sb-header-inner { min-height: 120px; }
  .sb-hero { grid-template-columns: 1fr; }
  .sb-hero-copy { padding: 44px 7vw 32px; text-align: center; align-items: center; }
  .sb-hero-art { min-height: 330px; background-size: contain; }
  .sb-cards { grid-template-columns: 1fr; }
  .sb-card { min-height: 245px; grid-template-columns: 43% 57%; }
  .sb-card-copy { padding-left: 24px; }
  .sb-contact-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sb-contact-title { grid-column: 1 / -1; }
  .sb-contact-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.25); padding: 15px 0 0; }
  .sb-contact-actions { padding-left: 0; }
}

@media (max-width: 700px) {
  .sb-wrap { width: calc(100% - 28px); }
  .sb-header-inner { min-height: 98px; gap: 15px; }
  .sb-logo { width: 255px; max-width: 58vw; }
  .sb-header-call { font-size: 0; gap: 0; }
  .sb-header-call .sb-round-icon { font-size: 22px; }
  .sb-hero-copy { padding: 35px 22px 26px; }
  .sb-hero h1 { font-size: 36px; letter-spacing: -1px; }
  .sb-hero-art { min-height: 270px; background-size: cover; background-position: 56% center; }
  .sb-actions { width: 100%; justify-content: center; }
  .sb-btn { flex: 1 1 140px; }
  .sb-notice { padding: 16px 18px; font-size: 14px; }
  .sb-section { padding: 29px 0; }
  .sb-intro h2, .sb-order h2 { font-size: 24px; }
  .sb-card { grid-template-columns: 1fr; }
  .sb-card-copy { padding: 61px 22px 24px; }
  .sb-card-media { min-height: 205px; background-size: contain; }
  .sb-order-points { display: grid; gap: 13px; }
  .sb-order-point { justify-content: flex-start; border-right: 0; padding: 0; min-width: 0; }
  .sb-contact { padding: 28px 20px 22px; }
  .sb-contact-grid { grid-template-columns: 1fr; }
  .sb-contact-title { grid-column: auto; }
  .sb-contact-item { min-height: 0; }
  .sb-footer-inner { flex-direction: column; gap: 15px; text-align: center; }
  .sb-footer-logo { width: 280px; max-width: 80vw; }
  .sb-footer-rule { width: 100px; height: 1px; }
}
