/* The Barbería Shop — base design system (ported 1:1 from the original prototype).
   Loaded with high priority so the brand look is predominant over Elementor's defaults.
   Image URLs point to the theme's imported assets. */
:root {
  /* Brand tokens. Each one reads from the matching Elementor GLOBAL value first
     (so editing Site Settings → Global Colors/Fonts updates the whole brand),
     and falls back to the original brand hex when Elementor is absent. This is
     how "the colors configured in the theme" stay wired to Elementor's globals. */
  --c-ink:      var(--e-global-color-secondary, #1a1d21);
  --c-ink-2:    var(--e-global-color-tbsink2, #232730);
  --c-ink-3:    #2c313b;
  --c-gold:     var(--e-global-color-primary, #bf9456);
  --c-gold-2:   var(--e-global-color-tbsgold2, #d8b07a);
  --c-gold-soft: rgba(191, 148, 86, 0.12);
  --c-green:    var(--e-global-color-accent, #5a1f24);
  --c-green-2:  #6e2930;
  --c-cream:    var(--e-global-color-tbscream, #f5f1ea);
  --c-cream-2:  #ece6db;
  --c-paper:    var(--e-global-color-tbspaper, #faf7f2);
  --c-line:     rgba(26, 29, 33, 0.12);
  --c-line-dark: rgba(245, 241, 234, 0.14);

  --f-display: var(--e-global-typography-primary-font-family, 'Playfair Display'), Georgia, serif;
  --f-body:    var(--e-global-typography-text-font-family, 'Inter'), -apple-system, BlinkMacSystemFont, sans-serif;

  --density: 1;
  --pad-section: calc(120px * var(--density));
  --pad-section-sm: calc(80px * var(--density));
  --gap-card: calc(28px * var(--density));
  --radius-card: 4px;

  --container: 1280px;
  --container-narrow: 1080px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

.tbs * { box-sizing: border-box; }

/* Typography helpers (scoped to .tbs wrappers so they don't fight the WP admin) */
.tbs h1, .tbs h2, .tbs h3, .tbs h4 { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.08; margin: 0; color: var(--c-ink); }
.tbs h1 { font-size: clamp(48px, 7vw, 104px); }
.tbs h2 { font-size: clamp(36px, 4.5vw, 64px); }
.tbs h3 { font-size: clamp(24px, 2.6vw, 36px); }
.tbs p { margin: 0 0 20px; }
.tbs img { max-width: 100%; display: block; }
.tbs a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 500;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--c-gold); }
.eyebrow.center::before { display: inline-block; content: ""; width: 24px; height: 1px; background: var(--c-gold); }
.eyebrow.center { display: inline-flex; }
.eyebrow.center::after { content: ""; width: 24px; height: 1px; background: var(--c-gold); margin-left: 12px; }

.serif-italic, .gold-italic { font-family: var(--f-display); font-style: italic; font-weight: 400; }
.gold-italic { color: var(--c-gold); }

/* Layout */
.tbs-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.tbs-container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.tbs-section { padding: var(--pad-section) 0; }
.tbs-section-sm { padding: var(--pad-section-sm) 0; }
.tbs-section-dark { background: var(--c-ink); color: var(--c-cream); }
.tbs-section-dark h1, .tbs-section-dark h2, .tbs-section-dark h3, .tbs-section-dark h4 { color: var(--c-cream); }
.tbs-section-cream { background: var(--c-cream); }
.tbs-section-green { background: var(--c-green); color: var(--c-cream); }
.tbs-section-green h1, .tbs-section-green h2, .tbs-section-green h3 { color: var(--c-cream); }

.section-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; margin-bottom: calc(64px * var(--density)); }
.section-head .eyebrow { margin-bottom: 4px; }
.section-head p { max-width: 620px; color: rgba(26,29,33,0.7); margin: 0; font-size: 17px; }
.tbs-section-dark .section-head p { color: rgba(245,241,234,0.7); }
.tbs-section-green .section-head p { color: rgba(245,241,234,0.7); }

.divider-orn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--c-gold); font-size: 10px; opacity: 0.9;
}
.divider-orn::before, .divider-orn::after { content: ""; width: 40px; height: 1px; background: currentColor; opacity: 0.6; }

/* Buttons */
.tbs .btn, .tbs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--f-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn-gold { background: var(--c-gold); color: var(--c-ink); }
.btn-gold:hover { background: var(--c-gold-2); transform: translateY(-2px); }
.btn-outline-gold { border-color: var(--c-gold); color: var(--c-gold); background: transparent; }
.btn-outline-gold:hover { background: var(--c-gold); color: var(--c-ink); }
.btn-ghost { color: var(--c-ink); border-color: var(--c-line); background: transparent; }
.btn-ghost:hover { border-color: var(--c-ink); }
.tbs-section-dark .btn-ghost, .tbs-section-green .btn-ghost { color: var(--c-cream); border-color: var(--c-line-dark); }
.tbs-section-dark .btn-ghost:hover, .tbs-section-green .btn-ghost:hover { border-color: var(--c-cream); }
.btn-ink { background: var(--c-ink); color: var(--c-cream); }
.btn-ink:hover { background: var(--c-ink-2); transform: translateY(-2px); }

.btn-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-gold);
  padding: 8px 0; border-bottom: 1px solid var(--c-gold);
  transition: gap .3s var(--ease);
}
.btn-link:hover { gap: 18px; }

/* Hero */
.tbs-hero {
  position: relative; min-height: 100vh;
  background: var(--c-ink); color: var(--c-cream);
  overflow: hidden; display: flex; align-items: center; padding-top: 100px;
}
.tbs-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.45), rgba(0,0,0,0.85)),
    repeating-linear-gradient(45deg, #1a1d21 0 4px, #1f2228 4px 8px),
    var(--c-ink);
  z-index: 1;
}
.tbs-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(191, 148, 86, 0.18) 1px, transparent 1px);
  background-size: 28px 28px; z-index: 1; opacity: 0.3;
}
.tbs-hero .hero-img-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,29,33,0.55) 0%, rgba(26,29,33,0.85) 100%),
              url("../images/hero.jpg") center/cover;
  filter: grayscale(0.4) contrast(1.1);
}
.tbs-hero .hero-inner { position: relative; z-index: 2; width: 100%; }
.tbs-hero .hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.tbs-hero h1 { color: var(--c-cream); font-weight: 400; margin-bottom: 28px; }
.tbs-hero h1 .gold-italic { color: var(--c-gold); font-style: italic; font-weight: 400; }
.tbs-hero p.lead { font-size: 18px; line-height: 1.6; color: rgba(245,241,234,0.78); margin: 0 0 40px; max-width: 520px; }
.tbs-hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.tbs-hero .hero-aside { display: grid; gap: 16px; font-family: var(--f-body); }
.tbs-hero .hero-card { border: 1px solid var(--c-line-dark); padding: 28px; background: rgba(245, 241, 234, 0.03); backdrop-filter: blur(4px); }
.tbs-hero .hero-card .label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 12px; display: block; }
.tbs-hero .hero-card .value { font-family: var(--f-display); font-size: 22px; font-style: italic; color: var(--c-cream); }
.tbs-hero .hero-card .meta { font-size: 13px; color: rgba(245,241,234,0.55); margin-top: 8px; }
.tbs-hero .hero-eyebrow { margin-bottom: 24px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,241,234,0.5);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll::after { content: ""; width: 1px; height: 36px; background: rgba(245,241,234,0.3); animation: scrollBlink 2s ease-in-out infinite; }
@keyframes scrollBlink { 0%,100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.3); } }

/* Marquee */
.tbs-marquee { background: var(--c-gold); color: var(--c-ink); padding: 22px 0; overflow: hidden; border-top: 1px solid rgba(26,29,33,0.15); border-bottom: 1px solid rgba(26,29,33,0.15); }
.marquee-track { display: flex; gap: 56px; animation: marquee 35s linear infinite; white-space: nowrap; font-family: var(--f-display); font-size: 22px; font-style: italic; }
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track > span > span::after { content: "✦"; font-size: 14px; color: rgba(26,29,33,0.6); font-style: normal; margin-left: 56px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-grid .about-img {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(26,29,33,0.4), rgba(26,29,33,0.15)), url("../images/about.jpg") center/cover;
  filter: grayscale(0.2);
}
.about-grid .about-img::after { content: ""; position: absolute; inset: 24px; border: 1px solid var(--c-gold); pointer-events: none; }
.about-grid .about-text h2 { margin-bottom: 28px; }
.about-grid .about-text p { font-size: 17px; line-height: 1.75; color: rgba(26,29,33,0.78); margin: 0 0 20px; max-width: 520px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--c-line); }
.stats-row .stat .n { font-family: var(--f-display); font-size: 40px; font-style: italic; color: var(--c-gold); line-height: 1; margin-bottom: 6px; }
.stats-row .stat .l { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(26,29,33,0.6); }

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.services-list { display: flex; flex-direction: column; }
.service-row { border-top: 1px solid var(--c-line); padding: 24px 0; cursor: pointer; transition: padding .3s var(--ease); }
.service-row:last-child { border-bottom: 1px solid var(--c-line); }
.service-row .row-head { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; }
.service-row .row-head h3 { font-size: 28px; font-weight: 400; transition: color .3s var(--ease); }
.service-row .row-head .price { font-family: var(--f-display); font-style: italic; font-size: 22px; color: var(--c-gold); }
.service-row .row-head .toggle { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--c-line); display: grid; place-items: center; color: var(--c-ink); font-size: 18px; font-weight: 300; transition: all .3s var(--ease); }
.service-row.open .row-head .toggle { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); transform: rotate(45deg); }
.service-row.open .row-head h3 { color: var(--c-gold); }
.service-row .row-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.service-row.open .row-body { max-height: 400px; }
.service-row .row-body-inner { padding: 16px 0 8px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; font-size: 15px; }
.service-row .row-body p { color: rgba(26,29,33,0.75); margin: 0 0 12px; line-height: 1.7; }
.service-row .row-body .meta { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-gold); }
.service-row .row-body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.service-row .row-body ul li { font-size: 14px; color: rgba(26,29,33,0.75); padding-left: 18px; position: relative; }
.service-row .row-body ul li::before { content: "✦"; position: absolute; left: 0; color: var(--c-gold); font-size: 10px; top: 4px; }
.services-imgs { display: grid; gap: 16px; }
.services-imgs .img-block { aspect-ratio: 4/3; background-position: center; background-size: cover; }
.services-imgs .img-block:nth-child(1) { background-image: url("../images/service-1.jpg"); }
.services-imgs .img-block:nth-child(2) { background-image: url("../images/service-1.jpg"); aspect-ratio: 16/10; }
.services-imgs .img-block:nth-child(3) { background-image: url("../images/service-2.jpg"); }

/* Barbers */
.barbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.barber-card { background: var(--c-paper); position: relative; overflow: hidden; transition: transform .4s var(--ease); }
.tbs-section-cream .barber-card { background: #fff; }
.barber-card:hover { transform: translateY(-6px); }
.barber-card .barber-img { aspect-ratio: 3/4; background-size: cover; background-position: center; position: relative; filter: grayscale(0.15); transition: filter .4s var(--ease); }
.barber-card:hover .barber-img { filter: grayscale(0); }
.barber-card .barber-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(26,29,33,0.55) 100%); }
.barber-card .barber-meta { padding: 28px; text-align: center; }
.barber-card .barber-meta h3 { font-size: 28px; margin-bottom: 4px; }
.barber-card .barber-meta .role { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-gold); }
.barber-card .barber-meta .spec { font-size: 14px; color: rgba(26,29,33,0.65); margin-top: 14px; line-height: 1.6; }
.barber-card .years-badge { position: absolute; top: 20px; left: 20px; background: var(--c-ink); color: var(--c-gold); padding: 6px 14px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; z-index: 2; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card { border: 1px solid var(--c-line-dark); padding: 32px; display: flex; flex-direction: column; gap: 18px; background: rgba(245, 241, 234, 0.02); transition: all .3s var(--ease); }
.review-card:hover { border-color: var(--c-gold); background: rgba(191,148,86,0.04); }
.review-card .stars { color: var(--c-gold); letter-spacing: 4px; font-size: 14px; }
.review-card .quote { font-family: var(--f-display); font-size: 19px; line-height: 1.5; color: var(--c-cream); flex: 1; font-style: italic; }
.review-card .quote::before { content: "\201C"; display: block; font-size: 56px; line-height: 0.5; margin-bottom: 12px; color: var(--c-gold); height: 16px; }
.review-card .reviewer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--c-line-dark); }
.review-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--c-gold); color: var(--c-ink); display: grid; place-items: center; font-family: var(--f-display); font-size: 18px; font-weight: 600; }
.review-card .reviewer .name { font-size: 14px; font-weight: 600; color: var(--c-cream); }
.review-card .reviewer .time { font-size: 12px; color: rgba(245,241,234,0.5); margin-top: 2px; }
.reviews-summary { display: flex; align-items: center; gap: 32px; margin: 0 auto 64px; justify-content: center; flex-wrap: wrap; }
.reviews-summary .big-rating { font-family: var(--f-display); font-style: italic; font-size: 64px; color: var(--c-gold); line-height: 1; }
.reviews-summary .stars-big { color: var(--c-gold); letter-spacing: 6px; font-size: 22px; }
.reviews-summary .meta { color: rgba(245,241,234,0.7); font-size: 14px; margin-top: 6px; }
.reviews-summary .google-pill { background: rgba(245,241,234,0.06); border: 1px solid var(--c-line-dark); padding: 10px 18px; border-radius: 999px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: rgba(245,241,234,0.85); display: inline-flex; align-items: center; gap: 8px; }

/* Works gallery */
.works-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px; }
.works-grid .work { background-size: cover; background-position: center; position: relative; overflow: hidden; cursor: pointer; filter: grayscale(0.1); transition: all .4s var(--ease); }
.works-grid .work::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(26,29,33,0.6) 100%); opacity: 0; transition: opacity .3s var(--ease); }
.works-grid .work:hover { filter: grayscale(0); }
.works-grid .work:hover::after { opacity: 1; }
.works-grid .work .tag { position: absolute; bottom: 16px; left: 16px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--c-cream); z-index: 2; opacity: 0; transform: translateY(6px); transition: all .3s var(--ease); }
.works-grid .work:hover .tag { opacity: 1; transform: translateY(0); }
.works-grid .work.tall { grid-row: span 2; }
.works-grid .work.wide { grid-column: span 2; }

/* Brands */
.brands-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; align-items: center; padding: 24px 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.brand-mark { height: 48px; display: grid; place-items: center; font-family: var(--f-display); font-style: italic; font-size: 22px; color: rgba(26,29,33,0.45); border-right: 1px solid var(--c-line); letter-spacing: 0.05em; transition: color .3s var(--ease); }
.brand-mark:last-child { border-right: 0; }
.brand-mark:hover { color: var(--c-ink); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-line); padding: 24px 0; cursor: pointer; }
.faq-item .faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--f-display); font-size: 22px; font-weight: 500; transition: color .2s var(--ease); }
.faq-item .faq-q .toggle { width: 28px; height: 28px; font-family: var(--f-body); font-weight: 300; font-size: 22px; color: var(--c-gold); flex-shrink: 0; display: grid; place-items: center; transition: transform .3s var(--ease); }
.faq-item.open .faq-q { color: var(--c-gold); }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-item .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .3s var(--ease); font-size: 16px; line-height: 1.7; color: rgba(26,29,33,0.7); }
.faq-item.open .faq-a { max-height: 240px; padding-top: 16px; }

/* Groomsmen strip */
.groomsmen-strip { position: relative; padding: 120px 0; background: linear-gradient(rgba(90, 31, 36, 0.86), rgba(90, 31, 36, 0.93)), url("../images/hero.jpg") center/cover; text-align: center; color: var(--c-cream); }
.groomsmen-strip h2 { color: var(--c-cream); max-width: 720px; margin: 0 auto 24px; font-style: italic; }
.groomsmen-strip p { max-width: 620px; margin: 0 auto 36px; color: rgba(245,241,234,0.8); font-size: 17px; line-height: 1.7; }

/* CTA strip */
.cta-strip { background: var(--c-gold); padding: 80px 0; text-align: center; }
.cta-strip h2 { font-style: italic; max-width: 760px; margin: 0 auto 16px; color: var(--c-ink); }
.cta-strip p { max-width: 540px; margin: 0 auto 32px; color: rgba(26,29,33,0.78); }

/* Page hero (services / barbers / contact) */
.page-hero { padding: 180px 0 100px; background: var(--c-ink); color: var(--c-cream); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(191, 148, 86, 0.12) 1px, transparent 1px); background-size: 32px 32px; opacity: 0.4; }
.page-hero h1 { color: var(--c-cream); margin: 16px auto 20px; max-width: 900px; font-weight: 400; }
.page-hero h1 em { color: var(--c-gold); font-style: italic; font-weight: 400; }
.page-hero p { max-width: 600px; margin: 0 auto; color: rgba(245,241,234,0.7); font-size: 17px; line-height: 1.6; position: relative; z-index: 1; }
.page-hero .breadcrumb { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,241,234,0.5); margin-bottom: 8px; position: relative; z-index: 1; }

/* Service detail page */
.services-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.services-detail-img { position: sticky; top: 100px; aspect-ratio: 3/4; background: center/cover; background-image: url("../images/services-detail.jpg"); }

/* Barber detail */
.barber-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.barber-full-card { background: var(--c-paper); display: grid; grid-template-rows: auto 1fr; }
.barber-full-card .barber-img { aspect-ratio: 4/5; background-size: cover; background-position: center top; filter: grayscale(0.1); }
.barber-full-card .barber-body { padding: 32px; }
.barber-full-card h3 { margin-bottom: 4px; font-size: 32px; }
.barber-full-card .role { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 18px; }
.barber-full-card .bio { font-size: 15px; line-height: 1.7; color: rgba(26,29,33,0.75); margin-bottom: 20px; }
.barber-full-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.barber-full-card .tag { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; border: 1px solid var(--c-line); color: rgba(26,29,33,0.7); }
.barber-full-card .book-btn { width: 100%; }
.barber-full-card .specs { display: flex; gap: 20px; padding: 16px 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); margin-bottom: 20px; }
.barber-full-card .specs .item { font-size: 12px; color: rgba(26,29,33,0.6); }
.barber-full-card .specs .item strong { display: block; font-family: var(--f-display); font-style: italic; font-size: 20px; color: var(--c-gold); font-weight: 400; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .info-block { padding: 24px 0; border-bottom: 1px solid var(--c-line); }
.contact-info .info-block:last-child { border-bottom: 0; }
.contact-info .label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 8px; font-weight: 600; }
.contact-info .value { font-family: var(--f-display); font-size: 24px; font-style: italic; color: var(--c-ink); }
.contact-info .value-small { font-size: 16px; line-height: 1.7; color: var(--c-ink); font-family: var(--f-body); }
.contact-info .hours-list { display: grid; gap: 10px; margin-top: 4px; }
.contact-info .hours-list .row { display: flex; justify-content: space-between; gap: 24px; font-size: 14px; padding: 4px 0; }
.contact-info .hours-list .day { color: rgba(26,29,33,0.65); }
.contact-info .hours-list .time { color: var(--c-ink); font-weight: 500; }
.contact-form { background: #fff; padding: 48px; border: 1px solid var(--c-line); }
.contact-form h3 { margin-bottom: 8px; }
.contact-form .sub { color: rgba(26,29,33,0.65); margin-bottom: 28px; font-size: 14px; }
.contact-form .field { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(26,29,33,0.7); margin-bottom: 8px; font-weight: 600; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--c-line); background: transparent; font-family: var(--f-body); font-size: 15px; color: var(--c-ink); transition: border-color .2s var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-bottom-color: var(--c-gold); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; margin-top: 12px; }
.contact-form .success { background: var(--c-gold-soft); border: 1px solid var(--c-gold); padding: 16px; color: var(--c-ink); font-size: 14px; text-align: center; margin-top: 16px; }
.map-block { margin-top: 64px; width: 100%; height: 360px; background: linear-gradient(135deg, #e8e1d4 0%, #d4ccbb 100%); position: relative; overflow: hidden; border: 1px solid var(--c-line); }
.map-block::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(26,29,33,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(26,29,33,0.06) 1px, transparent 1px); background-size: 40px 40px; }
.map-block .pin { position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; background: var(--c-gold); transform: translate(-50%, -100%) rotate(-45deg); border-radius: 50% 50% 50% 0; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.map-block .pin::after { content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; transform: translate(-50%, -50%); background: var(--c-ink); border-radius: 50%; }
.map-block .map-label { position: absolute; bottom: 24px; left: 24px; background: var(--c-ink); color: var(--c-cream); padding: 16px 20px; font-size: 13px; }
.map-block .map-label .name { font-family: var(--f-display); font-style: italic; font-size: 17px; color: var(--c-gold); margin-bottom: 4px; }

/* Scroll reveal */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 1s var(--ease); }
.fade-in.visible { opacity: 1; }

/* Responsive */
@media (max-width: 980px) {
  :root { --pad-section: 80px; --pad-section-sm: 60px; }
  .tbs-hero { padding-top: 120px; min-height: auto; }
  .tbs-hero .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .tbs-hero .hero-aside { display: none; }
  .about-grid, .services-grid, .contact-grid, .services-detail { grid-template-columns: 1fr; gap: 40px; }
  .barbers-grid, .reviews-grid, .barber-detail-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .works-grid .work.wide { grid-column: span 2; }
  .works-grid .work.tall { grid-row: span 1; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .brands-row { grid-template-columns: repeat(3, 1fr); }
  .brand-mark:nth-child(3n) { border-right: 0; }
  .services-detail-img { position: static; }
}
@media (max-width: 600px) {
  .tbs-container, .tbs-container-narrow { padding: 0 22px; }
  .tbs-hero h1 { font-size: 48px; }
  .service-row .row-head { grid-template-columns: 1fr auto; gap: 14px; }
  .service-row .row-head .price { grid-column: 1 / -1; grid-row: 2; font-size: 18px; }
  .service-row .row-body-inner { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; gap: 16px; text-align: center; }
}
