/* ════════════════════════════════════════
   ACOUSTIC THAT WORKS — Shared Stylesheet
   ════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', serif;
  background-color: #F5F3EF;
  color: #2B2B2B;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
}

/* ─── Layout ─── */
.section-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Grain ─── */
.grain { position: relative; }
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ─── Announcement bar ─── */
#announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  height: 38px;
  background: #F28C18;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.25s ease;
}
#announcement-bar span {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111111;
}

/* ─── Nav ─── */
#site-nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,243,239,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,17,17,0.1);
  transition: top 0.25s ease;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

/* Logo — no badge needed on cream nav */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
  opacity: 0.6;
  transition: opacity 0.18s ease, color 0.18s ease;
  text-decoration: none;
}
.nav-link:hover { opacity: 1; color: #F28C18; }
.nav-link:focus-visible { outline: 2px solid #F28C18; outline-offset: 3px; border-radius: 2px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(17,17,17,0.08);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(17,17,17,0.06);
  opacity: 1;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #F28C18;
  color: #111111;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  border: 2px solid #F28C18;
  cursor: pointer;
  transition: background 0.18s cubic-bezier(0.34,1.56,0.64,1),
              transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.18s ease;
  box-shadow: 0 4px 16px rgba(242,140,24,0.22), 0 1px 4px rgba(0,0,0,0.15);
  text-decoration: none;
}
.btn-primary:hover {
  background: #C96F12;
  border-color: #C96F12;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,140,24,0.32), 0 2px 8px rgba(0,0,0,0.2);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid #F28C18; outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: #F5F3EF;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  border: 2px solid rgba(245,243,239,0.32);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease,
              transform 0.18s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none;
}
.btn-outline:hover { border-color: #F5F3EF; transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 2px solid #F28C18; outline-offset: 3px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F28C18;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: gap 0.18s ease, opacity 0.18s ease;
  padding: 0;
}
.btn-ghost:hover { gap: 0.7rem; opacity: 0.8; }
.btn-ghost:focus-visible { outline: 2px solid #F28C18; outline-offset: 3px; border-radius: 2px; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 75% 60% at 80% 15%, rgba(242,140,24,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 10% 90%, rgba(200,175,130,0.22) 0%, transparent 55%),
    #EDE6D8;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-headline {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: #111111;
  text-transform: uppercase;
  text-align: left;
}
.hero-headline .accent { color: #F28C18; }
.hero-sub {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(17,17,17,0.62);
  max-width: 460px;
  text-align: left;
}
.hero-wave-shape {
  position: absolute;
  bottom: -1px; left: 0; right: 0; z-index: 4;
}

/* ─── Page hero (inner pages) ─── */
.page-hero {
  background:
    radial-gradient(ellipse 75% 60% at 80% 15%, rgba(242,140,24,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 10% 90%, rgba(200,175,130,0.22) 0%, transparent 55%),
    #EDE6D8;
  padding: 10.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.page-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0; z-index: 4;
}

/* ─── Typography helpers ─── */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F28C18;
}
.section-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}
.orange-rule {
  width: 44px;
  height: 3px;
  background: #F28C18;
  border-radius: 2px;
}
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.eyebrow-line {
  width: 28px;
  height: 2px;
  background: #F28C18;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.45);
}

/* ─── Product cards ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(17,17,17,0.05),
    0 6px 28px rgba(17,17,17,0.07);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 16px rgba(17,17,17,0.09),
    0 14px 42px rgba(17,17,17,0.11);
}
.product-card:focus-visible { outline: 2px solid #F28C18; outline-offset: 3px; }
.product-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  min-height: 300px;
}
.product-img-wrap img {
  max-height: 240px;
  width: auto;
  object-fit: contain;
}
.product-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.product-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #111111;
}
.product-size {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F28C18;
  margin: 0.25rem 0 0.75rem;
}
.product-desc {
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #343A40;
  margin: 0;
}
.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(17,17,17,0.12);
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.color-swatch:hover { transform: scale(1.2); }

/* ─── Feature cards (image-bg style) ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 2px 10px rgba(17,17,17,0.08),
    0 6px 28px rgba(17,17,17,0.1);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 4px 16px rgba(17,17,17,0.12),
    0 10px 36px rgba(17,17,17,0.14);
}
.feature-card-bg {
  position: relative;
  height: 175px;
  overflow: hidden;
}
.feature-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.2) 0%, rgba(17,17,17,0.65) 100%);
}
.feature-card-body {
  background: #fff;
  padding: 1.75rem 1.75rem 2rem;
  border-top: 3px solid #F28C18;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: #111111;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 3px 8px rgba(17,17,17,0.2);
}
.feature-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #111111;
  margin: 0 0 0.6rem;
}
.feature-desc {
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #343A40;
  margin: 0;
}

/* ─── CTA band ─── */
.cta-band {
  padding: 5.5rem 1.5rem;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(242,140,24,0.18) 0%, transparent 65%),
    #1E1208;
  position: relative;
  overflow: hidden;
}

/* ─── Footer ─── */
.site-footer {
  background: #1E1208;
  border-top: 1px solid rgba(242,140,24,0.15);
  padding: 3rem 1.5rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(245,243,239,0.07);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; }
.footer-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.42);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-link:hover { color: #F28C18; }
.footer-link:focus-visible { outline: 2px solid #F28C18; outline-offset: 3px; border-radius: 2px; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,243,239,0.42);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.18s ease;
}
.footer-social:hover { color: #F28C18; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
}
.footer-copy {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: rgba(245,243,239,0.28);
  margin: 0;
}
.footer-slogan {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,140,24,0.45);
  margin: 0;
}

/* ─── Scroll animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34,1.2,0.64,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #nav-cta { display: none !important; }
}
@media (min-width: 768px) {
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}
