/* Skin Sol — MySkinSol.co.uk */
:root {
  --gold: #B8923F;
  --gold-light: #D4AF6A;
  --gold-dark: #8B7030;
  --gold-gradient: linear-gradient(135deg, #D4AF6A 0%, #B8923F 45%, #8B7030 100%);
  --purple: #6B5B7A;
  --purple-light: #8B7BA8;
  --purple-muted: #9A8FA8;
  --cream: #FDFBF7;
  --white: #FFFFFF;
  --charcoal: #2C2C2C;
  --text: #3D3D3D;
  --text-light: #6B6B6B;
  --border: rgba(184, 146, 63, 0.2);
  --shadow: 0 4px 24px rgba(44, 44, 44, 0.06);
  --shadow-lg: 0 12px 48px rgba(44, 44, 44, 0.1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p + p { margin-top: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 64px;
  width: auto;
}

.logo-text {
  display: none;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

@media (min-width: 480px) {
  .logo-text { display: block; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  background: var(--gold-gradient);
  color: var(--white) !important;
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 146, 63, 0.35);
  color: var(--white) !important;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* Hero */
.hero {
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 63, 0.12);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(107, 91, 122, 0.1);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 146, 63, 0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--gold);
}

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

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  padding: 3rem;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.hero-logo-wrap img {
  width: 280px;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-logo-wrap img { width: 220px; }
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-muted);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto;
  max-width: 200px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--purple-muted);
  opacity: 0.5;
}

.divider span {
  color: var(--gold);
  font-size: 0.6rem;
}

/* Pillars */
.pillars {
  background: var(--white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 1.4rem;
}

.pillar-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* Treatments grid */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.treatment-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.treatment-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}

.treatment-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.treatment-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.treatment-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(107, 91, 122, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

/* CTA band */
.cta-band {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-band .btn-primary {
  background: var(--gold-gradient);
}

/* Telford banner */
.telford-banner {
  background: linear-gradient(135deg, var(--purple) 0%, #4A3F58 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.telford-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.telford-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.telford-banner .btn-outline {
  border-color: var(--gold-light);
  color: var(--white);
}

.telford-banner .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero .lead {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

/* About content */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-content h2 {
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  color: var(--text-light);
}

.about-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.values-list {
  list-style: none;
  margin-top: 1.5rem;
}

.values-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.values-list li:last-child { border-bottom: none; }

.value-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.values-list strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.values-list span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.highlight-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-box p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 146, 63, 0.1);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-detail strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text);
  border-radius: 2px;
  transition: border-color var(--transition);
}

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

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

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-light);
}

.form-checkbox input {
  margin-top: 0.25rem;
  accent-color: var(--gold);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Telford page */
.telford-hero {
  background: linear-gradient(160deg, var(--purple) 0%, #3D3348 60%, var(--charcoal) 100%);
  color: var(--white);
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  text-align: center;
}

.telford-hero .site-header-scrolled & { /* noop */ }

.telford-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.telford-hero .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.opening-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.telford-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.telford-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.telford-feature h3 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.telford-feature p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .telford-features { grid-template-columns: 1fr; }
}

.map-placeholder {
  background: var(--white);
  border: 1px solid var(--border);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-light);
  margin-top: 2rem;
}

.map-placeholder strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--charcoal);
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 3rem 0;
}

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

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Utility */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.bg-white { background: var(--white); }
.mt-2 { margin-top: 2rem; }
