/* ===== BRENTWOOD SURPLUS SALES — PREMIUM ===== */
:root {
  --ink: #111111;
  --charcoal: #1d1d1d;
  --steel: #4a4a4a;
  --concrete: #8a8a8a;
  --line: #e8e6e1;
  --bone: #f5f3ee;
  --paper: #ffffff;
  --warm-white: #faf8f3;
  --blue: #1e5ba8;
  --orange: #d97224;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--ink); color: var(--orange); }

/* TOP BAR */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 0.6rem 1.5rem;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.topbar .left { display: flex; gap: 2rem; flex-wrap: wrap; }
.topbar .left span { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar .left span svg { color: var(--orange); width: 11px; height: 11px; }
.topbar .right { color: rgba(255,255,255,0.5); font-style: italic; font-family: var(--display); font-size: 0.85rem; }
@media (max-width: 768px) {
  .topbar .right { display: none; }
  .topbar .left { gap: 1.3rem; justify-content: center; width: 100%; }
}

/* NAV */
.nav-wrap {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem; max-width: 1440px; margin: 0 auto; gap: 2rem;
}
.logo-img { height: 56px; width: auto; transition: opacity 0.2s; }
.logo-img:hover { opacity: 0.75; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  padding: 0.6rem 1.1rem; color: var(--charcoal);
  transition: color 0.2s; position: relative; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0.15rem; left: 1.1rem; right: 1.1rem;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { transform: scaleX(1); background: var(--orange); height: 2px; }
.nav-cta-wrap {
  margin-left: 1.5rem; padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}
.nav-cta {
  display: inline-flex !important; align-items: center; gap: 0.5rem;
  background: var(--ink); color: var(--paper) !important;
  font-weight: 500 !important; font-size: 0.88rem !important;
  padding: 0.75rem 1.4rem !important; border-radius: 100px;
  transition: all 0.3s ease; letter-spacing: 0.01em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--orange) !important; color: var(--ink) !important;
  transform: translateY(-1px);
}
.nav-cta svg { width: 11px; height: 11px; transition: transform 0.3s; }
.nav-cta:hover svg { transform: translateX(3px); }

.menu-toggle {
  display: none; background: none; border: 1px solid var(--line);
  cursor: pointer; padding: 0.55rem 0.7rem;
  border-radius: 100px; color: var(--ink);
}
.menu-toggle svg { width: 18px; height: 18px; }

@media (max-width: 1024px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .menu-toggle { display: block; }
  .logo-img { height: 46px; }
  nav { padding: 0.9rem 1.4rem; }
  .mobile-menu-wrap.open .nav-links,
  .mobile-menu-wrap.open .nav-cta-wrap {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--warm-white); padding: 0; margin: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.08);
    align-items: stretch; gap: 0;
  }
  .mobile-menu-wrap.open .nav-links a {
    padding: 1.1rem 1.8rem; border-bottom: 1px solid var(--line); font-size: 1.05rem;
  }
  .mobile-menu-wrap.open .nav-cta-wrap { border-left: none; padding: 1rem 1.8rem; margin: 0; }
  .mobile-menu-wrap.open .nav-cta { justify-content: center; padding: 1rem 1.4rem !important; width: 100%; }
}

/* HERO - editorial split */
.hero { position: relative; background: var(--ink); overflow: hidden; color: var(--paper); }
.hero.hero-large {
  display: grid; grid-template-columns: 1.2fr 1fr;
  min-height: 90vh;
}
@media (max-width: 900px) { .hero.hero-large { grid-template-columns: 1fr; min-height: auto; } }
.hero-left {
  padding: 6rem 4rem; display: flex; flex-direction: column;
  justify-content: center; position: relative; z-index: 2; background: var(--ink);
}
@media (max-width: 1100px) { .hero-left { padding: 4rem 2rem; } }
.hero-right {
  position: relative; overflow: hidden; background: var(--ink); min-height: 500px;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.05);
  animation: subtleZoom 30s ease-in-out infinite alternate;
  filter: brightness(0.85) contrast(1.05);
}
@keyframes subtleZoom {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.15) translateY(-2%); }
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 15%, transparent 100%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 2rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--orange); }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 5.2rem); line-height: 0.98;
  font-weight: 400; color: var(--paper);
  letter-spacing: -0.03em; margin-bottom: 2rem; max-width: 720px;
}
.hero h1 em {
  font-style: italic; font-weight: 300; color: var(--orange);
}
.hero p.hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: rgba(255,255,255,0.7); max-width: 540px;
  margin-bottom: 3rem; line-height: 1.6; font-weight: 400;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn {
  font-family: var(--body); font-size: 0.92rem; font-weight: 500;
  padding: 1rem 1.8rem; border-radius: 100px; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid transparent; letter-spacing: 0.01em;
}
.btn svg { width: 13px; height: 13px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.btn-primary:hover { background: var(--paper); border-color: var(--paper); }
.btn-outline { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--paper); background: rgba(255,255,255,0.05); }
.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.hero-meta {
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; gap: 3rem; flex-wrap: wrap;
}
.hero-meta-item .num {
  font-family: var(--display); font-size: 2.4rem;
  font-weight: 400; font-style: italic;
  color: var(--orange); line-height: 1;
  display: block; letter-spacing: -0.02em;
}
.hero-meta-item .label {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  margin-top: 0.5rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
}

/* Inner-page hero */
.hero.hero-small {
  padding: 7rem 2.5rem 6rem; min-height: 50vh;
  display: flex; align-items: center; position: relative;
}
.hero.hero-small .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.4) contrast(1.05) saturate(0.85);
}
.hero.hero-small .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.65) 100%);
}
.hero.hero-small .hero-content {
  position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; width: 100%;
}
.hero.hero-small h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); margin-bottom: 1.2rem; }
.hero.hero-small p.hero-sub { margin-bottom: 0; max-width: 720px; font-size: clamp(1rem, 1.2vw, 1.15rem); }

.breadcrumb {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.8rem; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.7rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }

/* SECTION */
section { padding: 8rem 2.5rem; }
@media (max-width: 768px) { section { padding: 5rem 1.5rem; } }
.container { max-width: 1440px; margin: 0 auto; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.5rem;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--orange); }
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 1.05;
  font-weight: 400; color: var(--ink);
  letter-spacing: -0.025em; margin-bottom: 1.2rem; max-width: 880px;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--orange); }
.section-intro {
  max-width: 620px; color: var(--steel);
  font-size: 1.1rem; margin-bottom: 4rem; line-height: 1.65;
}

/* STATS BAR */
.stats-bar { background: var(--ink); color: var(--paper); padding: 4rem 2.5rem; }
.stats-bar-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem;
}
.stat-block { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 2rem; }
.stat-block .num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 3.5vw, 3.5rem); font-weight: 400;
  color: var(--paper); line-height: 1;
  letter-spacing: -0.03em; display: block;
}
.stat-block .num em { font-style: italic; font-weight: 300; color: var(--orange); }
.stat-block .label {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  margin-top: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
}
@media (max-width: 768px) { .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

/* SERVICES */
.services-editorial {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem; margin-top: 4rem;
}
.service-card {
  background: var(--paper); padding: 2.8rem 2.2rem;
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 4px;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-card:hover {
  border-color: var(--ink); transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(17,17,17,0.08);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--display); font-style: italic;
  font-size: 0.85rem; color: var(--concrete);
  letter-spacing: 0.05em; margin-bottom: 1.2rem;
}
.service-icon { width: 64px; height: 64px; margin-bottom: 1.8rem; color: var(--ink); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--display); font-size: 1.5rem;
  font-weight: 400; margin-bottom: 0.7rem; color: var(--ink);
  letter-spacing: -0.015em; line-height: 1.15;
}
.service-card p { color: var(--steel); font-size: 0.95rem; margin-bottom: 1.8rem; flex: 1; line-height: 1.6; }
.service-link {
  font-size: 0.82rem; font-weight: 500; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.5rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.service-link svg { width: 11px; height: 11px; transition: transform 0.3s ease; }
.service-card:hover .service-link svg { transform: translateX(5px); }
.service-card:hover .service-link { color: var(--orange); }

/* WHY */
.why-editorial {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
@media (max-width: 900px) { .why-editorial { grid-template-columns: 1fr; gap: 3rem; } }
.why-image {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
}
.why-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.why-image:hover img { transform: scale(1.05); }
.why-image-tag {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--paper); padding: 1rem 1.3rem; border-radius: 2px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem;
}
.why-image-tag .tag-num {
  font-family: var(--display); font-style: italic;
  font-size: 1.8rem; color: var(--orange); line-height: 1;
}
.why-image-tag .tag-label { color: rgba(255,255,255,0.75); text-align: right; max-width: 60%; }

.why-points { display: flex; flex-direction: column; margin-top: 2.5rem; }
.why-point {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.5rem; padding: 1.8rem 0; border-bottom: 1px solid var(--line);
}
.why-point:last-child { border-bottom: none; }
.why-point-num {
  font-family: var(--display); font-style: italic;
  font-size: 2.4rem; font-weight: 300;
  color: var(--orange); line-height: 1; letter-spacing: -0.02em;
}
.why-point h4 {
  font-family: var(--display); font-size: 1.3rem; font-weight: 400;
  margin-bottom: 0.4rem; color: var(--ink); letter-spacing: -0.01em;
}
.why-point p { color: var(--steel); font-size: 0.96rem; line-height: 1.6; }

/* TESTIMONIALS */
.testimonials-section { background: var(--warm-white); }
.swiper { padding: 3rem 0 4rem; }
.testimonial-card {
  background: var(--paper); padding: 3rem 2.5rem;
  height: 100%; display: flex; flex-direction: column;
  border-radius: 4px; border: 1px solid var(--line);
  position: relative; transition: all 0.4s ease;
}
.testimonial-card:hover {
  border-color: var(--ink); transform: translateY(-3px);
  box-shadow: 0 24px 48px -12px rgba(17,17,17,0.06);
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; left: 1.8rem;
  font-family: var(--display); font-style: italic;
  font-size: 5rem; color: var(--orange); line-height: 1; opacity: 0.3;
}
.stars { color: var(--orange); font-size: 0.78rem; letter-spacing: 0.25em; margin-bottom: 1.5rem; margin-top: 1rem; }
.testimonial-quote {
  font-family: var(--display); font-size: 1.15rem;
  font-weight: 400; line-height: 1.55;
  margin-bottom: 2rem; flex: 1;
  color: var(--ink); letter-spacing: -0.01em;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.author-initial {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 400;
  font-size: 1.1rem; font-style: italic;
}
.author-info strong {
  display: block; font-size: 0.95rem; font-weight: 500;
  color: var(--ink); font-family: var(--body); letter-spacing: 0;
}
.author-info span { font-size: 0.82rem; color: var(--steel); }
.swiper-pagination { position: relative; margin-top: 1.5rem; }
.swiper-pagination-bullet {
  background: var(--ink) !important; opacity: 0.15;
  width: 8px; height: 8px; transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  opacity: 1; width: 32px;
  border-radius: 4px; background: var(--orange) !important;
}

/* SELL CTA */
.sell-cta { background: var(--ink); color: var(--paper); }
.sell-cta .container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 900px) { .sell-cta .container { grid-template-columns: 1fr; gap: 3rem; } }
.sell-cta .section-eyebrow { color: var(--orange); }
.sell-cta .section-title { color: var(--paper); }
.sell-cta .section-title em { color: var(--orange); }
.sell-cta p.lead { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 520px; line-height: 1.65; }

.process-steps { display: flex; flex-direction: column; margin-bottom: 2.5rem; }
.process-step {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 1.5rem; padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--display); font-style: italic;
  font-size: 1.8rem; font-weight: 300;
  color: var(--orange); line-height: 1;
}
.step-text strong {
  display: block; font-family: var(--display); font-size: 1.2rem;
  font-weight: 400; margin-bottom: 0.3rem;
  color: var(--paper); letter-spacing: -0.01em;
}
.step-text span { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.5; }

/* FORMS */
.form-card {
  background: var(--paper); color: var(--ink);
  padding: 3rem; border-radius: 4px;
}
.form-card.bordered { border: 1px solid var(--line); }
.form-card h3 {
  font-family: var(--display); font-size: 1.8rem;
  font-weight: 400; margin-bottom: 0.5rem; letter-spacing: -0.015em;
}
.form-card p.sub { color: var(--steel); font-size: 0.93rem; margin-bottom: 2rem; line-height: 1.6; }
.form-row { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.form-row label {
  font-size: 0.75rem; font-weight: 500;
  margin-bottom: 0.5rem; color: var(--charcoal);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--body); font-size: 0.95rem;
  padding: 0.85rem 1rem; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink);
  border-radius: 2px; transition: all 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--ink); background: var(--warm-white);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-submit {
  width: 100%; background: var(--ink); color: var(--paper);
  font-family: var(--body); font-weight: 500; font-size: 0.92rem;
  padding: 1.1rem; border: none; border-radius: 100px;
  cursor: pointer; transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  margin-top: 0.5rem; letter-spacing: 0.01em;
}
.form-submit:hover { background: var(--orange); color: var(--ink); }
.form-submit svg { width: 13px; height: 13px; transition: transform 0.3s; }
.form-submit:hover svg { transform: translateX(4px); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info { display: flex; flex-direction: column; }
.info-card {
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 1.8rem 0;
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: all 0.3s ease;
}
.info-card:hover { padding-left: 0.5rem; }
.info-icon {
  color: var(--orange); width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-card h4 {
  font-family: var(--display); font-size: 1.1rem; font-weight: 400;
  margin-bottom: 0.4rem; color: var(--ink);
}
.info-card p, .info-card a { color: var(--steel); font-size: 0.95rem; line-height: 1.6; display: block; }
.info-card a { color: var(--ink); font-weight: 500; }
.info-card a:hover { color: var(--orange); }

/* SUB-SERVICES */
.services-section-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 5rem; align-items: start;
}
@media (max-width: 900px) { .services-section-grid { grid-template-columns: 1fr; gap: 3rem; } }
.section-icon-large { width: 110px; height: 110px; margin-bottom: 2rem; color: var(--ink); }
.section-icon-large svg { width: 100%; height: 100%; }
.subservices {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.subservice {
  padding: 2rem 1.8rem; background: var(--warm-white);
  border: 1px solid var(--line); border-radius: 4px;
  transition: all 0.3s ease;
}
.subservice:hover { border-color: var(--ink); transform: translateY(-2px); }
.subservice h4 {
  font-family: var(--display); font-size: 1.15rem; font-weight: 400;
  margin-bottom: 0.5rem; color: var(--ink); letter-spacing: -0.01em;
}
.subservice p { color: var(--steel); font-size: 0.9rem; line-height: 1.6; }

/* FOOTER */
footer {
  background: var(--ink); color: var(--paper);
  padding: 6rem 2.5rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; max-width: 1440px; margin: 0 auto 4rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 {
  font-family: var(--body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--paper); }
.footer-brand img { height: 60px; width: auto; margin-bottom: 1.5rem; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 1rem; max-width: 380px; line-height: 1.65; }
.footer-brand .footer-tag {
  font-family: var(--display); font-style: italic;
  font-size: 1rem; color: var(--orange);
}
.footer-brand .phone {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--paper); font-weight: 500;
  margin-top: 1rem; font-size: 1rem;
}
.footer-brand .phone svg { width: 14px; height: 14px; color: var(--orange); }
.footer-bottom {
  max-width: 1440px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-legal { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-legal a { cursor: pointer; }
.footer-legal a:hover { color: var(--paper); }

/* BACK TO TOP */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 997;
  opacity: 0; pointer-events: none;
  transition: all 0.3s; border-radius: 100px;
  box-shadow: 0 8px 24px rgba(17,17,17,0.15);
}
.back-to-top svg { width: 14px; height: 14px; transition: transform 0.3s; }
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.back-to-top:hover svg { transform: translateY(-2px); }

/* MODAL */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 9000; opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  position: fixed; bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 95%; max-width: 720px; max-height: 85vh;
  background: var(--warm-white); z-index: 9001;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto; border-radius: 8px 8px 0 0;
}
.modal.active { transform: translateX(-50%) translateY(0); }
.modal-header {
  position: sticky; top: 0; background: var(--warm-white);
  padding: 1.5rem 2.2rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line); z-index: 2;
}
.modal-header h2 { font-family: var(--display); font-size: 1.5rem; font-weight: 400; }
.modal-close {
  background: none; border: none; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--steel);
  border-radius: 100px; transition: all 0.2s;
}
.modal-close svg { width: 16px; height: 16px; }
.modal-close:hover { background: var(--line); color: var(--ink); }
.modal-body { padding: 2.2rem; }
.modal-body h3 {
  font-family: var(--display); font-size: 1.2rem; font-weight: 400;
  margin: 1.8rem 0 0.6rem; color: var(--ink);
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { color: var(--steel); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.65; }

[data-aos] { pointer-events: none; }
.aos-animate { pointer-events: auto; }

.bg-bone { background: var(--bone); }
.bg-paper { background: var(--paper); }
.bg-warm { background: var(--warm-white); }
.text-center { text-align: center; }

/* ===== BUYOUT-READY ADDITIONS ===== */

/* Centered section title variants */
.text-center-title { margin-left: auto; margin-right: auto; }
.section-intro-center { margin-left: auto; margin-right: auto; }

/* Contact panel (inline 3-card layout for home page) */
.contact-panel {
  margin-top: 3rem;
}
.contact-panel-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .contact-panel-inner { grid-template-columns: 1fr; gap: 1rem; } }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.contact-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -12px rgba(17,17,17,0.08);
}
.contact-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.contact-card-icon svg { width: 24px; height: 24px; }
.contact-card-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 0.3rem;
}
.contact-card-value {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  display: block;
}
.contact-card:hover .contact-card-value { color: var(--orange); }
.contact-card-sub {
  font-size: 0.85rem;
  color: var(--steel);
}

/* Big contact cards (contact page) */
.big-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .big-contact-grid { grid-template-columns: 1fr; gap: 1rem; } }

.big-contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.big-contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.big-contact-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(17,17,17,0.1);
}
.big-contact-card:hover::before { transform: scaleX(1); }
.big-contact-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.big-contact-icon svg { width: 28px; height: 28px; }
.big-contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 0.5rem;
}
.big-contact-value {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  display: block;
  word-break: break-word;
}
.big-contact-card:hover .big-contact-value { color: var(--orange); }
.big-contact-sub {
  font-size: 0.92rem;
  color: var(--steel);
  line-height: 1.5;
}

/* Hours grid (contact page) */
.hours-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.hours-day {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
}
.hours-time {
  color: var(--steel);
  font-weight: 500;
}


/* ===== FINAL: real photo additions ===== */

/* No gradient/shadow on home hero - photo shows clean */
.hero.hero-large .hero-right::after {
  display: none !important;
}
.hero.hero-large .hero-right img {
  filter: none !important;
  animation: none !important;
  transform: none !important;
}

/* Service detail grid (services page) - image + text side by side */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-grid > div:first-child { order: 1; }
}

.service-detail-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bone);
}
.service-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-detail-image:hover img { transform: scale(1.04); }
.service-detail-number {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--orange);
  padding: 0.5rem 1rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

/* Buy grid (sell page "what we buy") - photo cards */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.buy-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
}
.buy-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(17,17,17,0.1);
}
.buy-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.buy-card:hover img { transform: scale(1.04); }
.buy-card-content {
  padding: 1.8rem 1.6rem;
}
.buy-card-content h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.buy-card-content p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* 2x2 grid for Why Brentwood points when no image */
.why-points-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-top: 0 !important;
}
.why-points-grid .why-point {
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) {
  .why-points-grid { grid-template-columns: 1fr; gap: 0; }
}

