/* ==========================================================================
   BOLONI BOSTON — boloniboston.com
   Premium B2B site for General Contractors & Interior Designers
   ========================================================================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --muted: #6b6b6b;
  --line: #e5e2dc;
  --cream: #f7f4ef;
  --warm: #ede7dc;
  --accent: #8a6a3b;        /* warm bronze */
  --accent-dark: #6b5028;
  --gold: #b8945a;
  --maxw: 1320px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
p { color: var(--ink-soft); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ==========================================================================
   Top Bar + Header
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: #d7d2c5;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar a { color: #d7d2c5; }
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 1.45rem;
  text-transform: uppercase;
}
.brand img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.brand .city {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
}
.nav-main { display: flex; gap: 32px; align-items: center; }
.nav-main a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-main a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 12px 22px !important;
  letter-spacing: 0.12em !important;
}
.nav-cta:hover { background: var(--accent); }
.nav-cta::after { display: none; }

.hamburger {
  display: none;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 21px; }
.hamburger.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff !important;
  transition: all .25s ease;
  cursor: pointer;
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff !important; }
.btn-outline-light {
  background: transparent;
  color: #fff !important;
  border: 1px solid #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--ink) !important; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: zoomIn 18s ease-out forwards;
}
@keyframes zoomIn { to { transform: scale(1); } }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: 110px 0; }
section.tight { padding: 70px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head p {
  font-size: 1.06rem;
  color: var(--muted);
  margin-top: 16px;
}
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink p { color: rgba(255,255,255,0.78); }

/* ==========================================================================
   Value Pillars
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: 50px 36px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.pillar:last-child { border-right: none; }
.pillar .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}
.pillar h3 { font-size: 1.3rem; margin-bottom: 12px; }
.pillar p { font-size: 0.94rem; color: var(--muted); line-height: 1.6; }

/* ==========================================================================
   Category Showcase
   ========================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  background: #2a2a2a;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  cursor: pointer;
}
.cat-tile.span-7 { grid-column: span 7; min-height: 540px; }
.cat-tile.span-5 { grid-column: span 5; min-height: 260px; }
.cat-tile.span-4 { grid-column: span 4; min-height: 360px; }
.cat-tile.span-8 { grid-column: span 8; min-height: 360px; }
.cat-tile.span-6 { grid-column: span 6; min-height: 380px; }
.cat-tile.span-12 { grid-column: span 12; min-height: 320px; }
.cat-tile-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.cat-tile:hover .cat-tile-bg { transform: scale(1.06); }
.cat-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
}
.cat-tile-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  width: 100%;
}
.cat-tile-content h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.cat-tile-content .small {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* ==========================================================================
   Product Grid
   ========================================================================== */
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 11px 22px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .2s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.product-card {
  background: #fff;
  transition: transform .3s ease;
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
  margin-bottom: 18px;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}
.product-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.product-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ==========================================================================
   Trade Program
   ========================================================================== */
.trade-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trade-img {
  aspect-ratio: 5/6;
  background-size: cover;
  background-position: center;
}
.trade-content h2 { margin-bottom: 24px; }
.trade-benefits {
  list-style: none;
  margin-top: 30px;
}
.trade-benefits li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.trade-benefits li:last-child { border-bottom: none; }
.trade-benefits .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}
.trade-benefits strong {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1.02rem;
}
.trade-benefits span {
  color: rgba(255,255,255,0.72);
  font-size: 0.93rem;
}

/* ==========================================================================
   Page Banner
   ========================================================================== */
.page-banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #1a1a1a;
  margin-top: 0;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-banner::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.page-banner-content {
  position: relative; z-index: 2;
  padding: 0 24px;
}
.page-banner h1 { color: #fff; margin-bottom: 14px; }
.page-banner .crumb {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.page-banner .crumb a { color: rgba(255,255,255,0.75); }
.page-banner .crumb a:hover { color: var(--gold); }

/* ==========================================================================
   About / Story Section
   ========================================================================== */
.story-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.story-content p { margin-bottom: 18px; font-size: 1.02rem; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
}
.stat .label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info .info-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-block:last-child { border-bottom: none; }
.contact-info .label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-info .value {
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
}

form.contact-form {
  background: var(--cream);
  padding: 50px;
}
form.contact-form .field { margin-bottom: 22px; }
form.contact-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color .2s ease;
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
form.contact-form textarea { min-height: 130px; resize: vertical; }

/* ==========================================================================
   Product Detail
   ========================================================================== */
.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}
.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.product-gallery .main {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.product-gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-gallery .thumb {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
.product-info .eyebrow { display: block; }
.product-info h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 14px;
}
.product-info .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.product-info p { margin-bottom: 18px; font-size: 1.02rem; }
.product-specs {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.product-specs dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 14px 24px;
  margin-bottom: 28px;
}
.product-specs dt {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.product-specs dd { color: var(--ink); font-size: 0.96rem; }
.product-actions { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }

/* ==========================================================================
   CTA Strip
   ========================================================================== */
.cta-strip {
  background: var(--ink);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.cta-strip h2 {
  color: #fff;
  max-width: 760px;
  margin: 0 auto 22px;
}
.cta-strip p {
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.06rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0f0f0f;
  color: #c4beae;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand h3 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.18em;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.footer-brand .city {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.footer-brand p { color: #9e9888; font-size: 0.93rem; line-height: 1.7; }
.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: #c4beae;
  font-size: 0.93rem;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: #6e6a5e;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: #9e9888; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(6, 1fr); }
  .cat-tile.span-7, .cat-tile.span-5, .cat-tile.span-4,
  .cat-tile.span-8, .cat-tile.span-6 { grid-column: span 6; min-height: 320px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trade-split, .story-split, .contact-grid, .product-detail {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid var(--line); }
  .pillar:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  section { padding: 70px 0; }
  .nav-main {
    position: fixed;
    top: 0; right: -100%;
    width: 86%; max-width: 360px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 36px 40px;
    gap: 24px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
    transition: right .3s ease;
  }
  .nav-main.open { right: 0; }
  .hamburger { display: block; }
  .topbar .container { font-size: 0.72rem; gap: 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  form.contact-form { padding: 32px 24px; }
  .story-stats { grid-template-columns: 1fr; gap: 18px; }
  .hero { min-height: 78vh; }
  .product-gallery .thumbs { grid-template-columns: repeat(2, 1fr); }
}


/* ---- process / how it works ---- */
.process-list { max-width: 860px; margin: 0 auto; }
.proc-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 34px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.proc-step:last-child { border-bottom: none; }
.proc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 600;
}
.proc-content h3 { font-size: 1.32rem; margin-bottom: 14px; }
.proc-content ul { list-style: none; padding: 0; margin: 0; }
.proc-content li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.99rem;
  line-height: 1.6;
}
.proc-content li:last-child { margin-bottom: 0; }
.proc-content li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
@media (max-width: 760px) {
  .proc-step { grid-template-columns: 56px 1fr; gap: 18px; padding: 28px 0; }
  .proc-num { font-size: 2.3rem; }
}
