/* =========================================
   THE BARBERSHOP — Old Wellington
   Deep green + aged brass + near-black
   ========================================= */

:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8de;
  --surface: #ffffff;
  --text: #1a1a18;
  --text-muted: #6b6860;
  --primary: #2d4a2d;
  --primary-dark: #1e3320;
  --accent: #c9a96e;
  --accent-warm: #b8934a;
  --border: rgba(45, 74, 45, 0.15);
  --shadow: rgba(26, 26, 24, 0.08);
  --gradient-start: #2d4a2d;
  --gradient-end: #1e3320;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--primary-dark);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent-warm);
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  background: var(--primary-dark);
  color: var(--bg);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(45, 74, 45, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.75);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #1a1a18;
}

.btn-primary:hover {
  background: #d4b578;
  color: #1a1a18;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(201, 169, 110, 0.5);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* =========================================
   SECTION STYLES
   ========================================= */
.section {
  padding: 80px 24px;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 48px;
}

.section-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* =========================================
   INFO STRIP
   ========================================= */
.info-strip {
  background: var(--primary);
  padding: 40px 24px;
}

.info-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-item {
  text-align: center;
}

.info-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.7);
  margin-bottom: 8px;
}

.info-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #f5f0e8;
}

.info-value a {
  color: #f5f0e8;
  text-decoration: none;
}

.info-value a:hover {
  color: var(--accent);
}

/* =========================================
   SERVICES GRID
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--shadow);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-warm);
}

.service-price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  margin-left: 4px;
}

/* =========================================
   TEAM GRID
   ========================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--shadow);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
}

.team-info {
  padding: 24px;
}

.team-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-contact {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.team-contact a {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
}

.team-contact a:hover {
  color: var(--accent-warm);
}

/* =========================================
   PRICING TABLE
   ========================================= */
.prices-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.prices-table th {
  background: var(--primary);
  color: var(--accent);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: left;
}

.prices-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: middle;
}

.prices-table tr:last-child td {
  border-bottom: none;
}

.prices-table tr:hover td {
  background: var(--bg-alt);
}

.service-name {
  font-weight: 500;
  color: var(--text);
}

.service-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-warm);
  white-space: nowrap;
}

.price-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  margin-top: 2px;
}

/* =========================================
   CONTACT / BOOK FORM
   ========================================= */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
  max-width: 600px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: var(--primary-dark);
  padding: 72px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #f5f0e8;
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* =========================================
   404 PAGE
   ========================================= */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.not-found h1 {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.not-found h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.not-found p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* =========================================
   UTILITY
   ========================================= */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
