/* Barber of South Yarra — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #16130F;
  --bg-card:  #211C16;
  --accent:   #C68A4E;
  --accent2:  #A5342A;
  --text:     #F3ECE1;
  --muted:    #A79B8B;
  --line:     #39312A;
  --font-h:   'Oswald', sans-serif;
  --font-b:   'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.nav-logo { text-decoration: none; display: inline-flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.btn-book {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  transition: background 0.2s;
}

.btn-book:hover { background: var(--text); }

.btn-book-lg {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  transition: background 0.2s;
}

.btn-book-lg:hover { background: var(--text); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* ── COPPER HAIRLINE ── */
.copper-rule {
  width: 100%;
  border: none;
  border-top: 2px solid var(--accent);
  margin: 0 0 2.5rem;
}

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 9rem 2.5rem 4rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
}

/* ── FOOTER ── */
footer {
  background: #0E0C09;
  padding: 4rem 2.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 200px;
}

.footer-col h4 {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 2;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: var(--line);
}

.footer-socials {
  display: flex;
  gap: 1.75rem;
}

.footer-socials a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { padding: 1rem 1.25rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
