/* ============================================
   Vincent's Den For Men — Design System
   ============================================ */

:root {
  --navy: #2d3548;
  --navy-dark: #1c212f;
  --navy-light: #48566b;
  --gold: #b8863b;
  --gold-light: #d4a75f;
  --cream: #faf8f5;
  --white: #ffffff;
  --ink: #24262b;
  --gray: #6b7280;
  --gray-light: #e7e4de;
  --border: #e2ddd3;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1180px;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(28, 33, 47, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 33, 47, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--ink); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.9em;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 56px 0; }

.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #c7cbd6; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.section-head p {
  color: var(--gray);
  font-size: 1.05rem;
}

.section--dark .section-head p { color: #b7bccb; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: var(--gold-light); }

.btn--outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--outline-dark {
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand img { height: 42px; }

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-phone {
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/services-bg.jpg');
  background-size: cover;
  background-position: 78% 15%;
  filter: grayscale(30%) contrast(1.1) brightness(0.8);
  -webkit-mask-image: linear-gradient(100deg, transparent 0, transparent 32%, black 62%);
  mask-image: linear-gradient(100deg, transparent 0, transparent 32%, black 62%);
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(28,33,47,0.96) 0%, rgba(28,33,47,0.75) 42%, rgba(28,33,47,0.25) 72%, rgba(28,33,47,0.15) 100%),
    linear-gradient(180deg, rgba(28,33,47,0.05) 0%, rgba(28,33,47,0.45) 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 640px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 0.35em;
}

.hero .eyebrow { color: var(--gold-light); }

.hero p.lead {
  font-size: 1.15rem;
  color: #d8dbe3;
  max-width: 520px;
  margin-bottom: 2em;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding: 150px 0 70px;
  background: linear-gradient(120deg, rgba(28,33,47,0.92), rgba(28,33,47,0.8)), var(--navy-dark);
  background-size: cover;
  color: var(--white);
}
.page-hero.with-bg {
  background: linear-gradient(120deg, rgba(28,33,47,0.94), rgba(28,33,47,0.82)), url('../img/services-bg.jpg');
  background-size: cover;
  background-position: center 30%;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.3em; }
.page-hero p { color: #c7cbd6; max-width: 560px; }

/* ---------- Facts strip ---------- */
.facts-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.facts-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.fact {
  text-align: center;
  padding: 0 12px;
}
.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
}
.fact span {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(184, 134, 59, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.card h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.card p { color: var(--gray); font-size: 0.96rem; margin-bottom: 0; }

/* ---------- About / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.split .eyebrow { display: block; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.testimonial-card p.quote {
  color: var(--ink);
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card .name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.testimonial-card .date {
  color: var(--gray);
  font-size: 0.82rem;
}

/* ---------- Brand strip ---------- */
.brand-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  opacity: 0.85;
}
.brand-strip img { height: 56px; width: auto; object-fit: contain; }

.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.brand-card img {
  height: 64px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}
.brand-card.no-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-card.no-logo h3 { font-family: var(--font-display); color: var(--navy); }
.brand-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.brand-card p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ---------- Location / contact ---------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-row .label {
  width: 100px;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.info-row .value { color: var(--ink); }
.info-row .value a { color: var(--gold); font-weight: 600; }

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  filter: grayscale(30%) contrast(1.05);
}

/* ---------- Team ---------- */
.team-card {
  text-align: center;
}
.team-card .role {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ---------- Quote banner ---------- */
.quote-banner {
  text-align: center;
  padding: 90px 0;
}
.quote-banner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 20px;
}
.quote-banner cite {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ---------- Includes list ---------- */
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
}

.section--dark .includes-list li {
  color: var(--white);
}
.includes-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Services table ---------- */
.services-list {
  border-top: 1px solid var(--border);
}
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.service-row h3 { margin-bottom: 6px; font-size: 1.25rem; }
.service-row p { color: var(--gray); margin: 0; max-width: 560px; }
.service-row .price-note {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #c7cbd6;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid img { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-grid h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-grid p, .footer-grid a { color: #b7bccb; font-size: 0.95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8991a3;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #c7cbd6; max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-bg {
    mask-image: linear-gradient(100deg, transparent 0, transparent 10%, black 55%);
    -webkit-mask-image: linear-gradient(100deg, transparent 0, transparent 10%, black 55%);
  }
  .hero-scrim {
    background:
      linear-gradient(100deg, rgba(28,33,47,0.97) 0%, rgba(28,33,47,0.85) 55%, rgba(28,33,47,0.4) 100%),
      linear-gradient(180deg, rgba(28,33,47,0.1) 0%, rgba(28,33,47,0.55) 100%);
  }
  .nav-links, .header-cta .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .facts-strip .container { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .includes-list { grid-template-columns: 1fr; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .service-row { flex-direction: column; }
  .facts-strip .container { grid-template-columns: repeat(2, 1fr); }
}
