/* Advanced GroHair & GloSkin Tenkasi — single stylesheet, no external libraries. */
:root {
  --red: #ec2024;
  --red-dark: #c4181c;
  --ink: #211e1c;
  --muted: #5f574e;
  --bg-soft: #fdf4f1;
  --line: rgba(33, 30, 28, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
}

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

a { color: var(--red); }

h1, h2 { line-height: 1.25; }

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

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand img { width: 150px; height: auto; display: block; }

.brand-text {
  font-weight: 600;
  font-size: 0.95rem;
  max-width: 200px;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}

.site-nav a:hover { color: var(--red); }

.call-btn {
  background: var(--red);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 6px;
  font-weight: 600;
}

.call-btn:hover { background: var(--red-dark); }

/* ---------- hero ---------- */
.hero {
  background: var(--bg-soft);
  padding: 72px 0 64px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 2.1rem;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary:hover { background: var(--red-dark); }

.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  justify-content: center;
  gap: 12px 28px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 500;
}

.hero-points li::before {
  content: "\2713\00a0";
  color: var(--red);
  font-weight: 700;
}

/* ---------- sections ---------- */
section { padding: 64px 0; }

section h2 {
  font-size: 1.7rem;
  margin: 0 0 20px;
}

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.about-photo { margin: 0; }

.about-photo img {
  border-radius: 10px;
  display: block;
}

/* services */
.services { background: var(--bg-soft); }

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
}

.service-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 500;
}

.service-list li::before {
  content: "\2713\00a0\00a0";
  color: var(--red);
  font-weight: 700;
}

.service-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* booking */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.booking-hours { font-weight: 600; }

.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(33, 30, 28, 0.08);
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  min-height: 48px;
}

.field input:focus,
.field select:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}

.consent-text {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 18px;
}

.booking-form .btn-primary { width: 100%; }

.form-status {
  margin: 14px 0 0;
  font-weight: 600;
  min-height: 1.2em;
}

.form-status.ok { color: #1a7f37; }
.form-status.err { color: var(--red-dark); }

/* visit */
.visit { background: var(--bg-soft); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.visit-details p { margin: 0 0 10px; }

.visit-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 10px;
  display: block;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 32px;
  font-size: 0.93rem;
}

.site-footer a { color: #fff; }

.footer-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.footer-identity p { margin: 0 0 8px; }

.footer-disclosure {
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-legal {
  display: flex;
  gap: 10px 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 100;
  max-width: 680px;
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px 20px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p { margin: 0; flex: 1 1 300px; font-size: 0.9rem; }

.cookie-banner a { color: #f0a5a5; }

.cookie-actions { display: flex; gap: 10px; }

.cookie-actions button {
  min-height: 44px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  border: 0;
}

#cookie-accept { background: var(--red); color: #fff; }
#cookie-accept:hover { background: var(--red-dark); }

#cookie-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ---------- legal pages ---------- */
.legal-page { padding: 56px 0; }

.legal-page h1 { font-size: 1.9rem; margin: 0 0 6px; }

.legal-updated { color: var(--muted); margin: 0 0 28px; }

.legal-page h2 { font-size: 1.25rem; margin: 30px 0 10px; }

.legal-page ul { padding-left: 22px; }

.legal-note {
  background: var(--bg-soft);
  border-left: 4px solid var(--red);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}

/* ---------- 404 ---------- */
.notfound {
  text-align: center;
  padding: 96px 0;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .about-grid,
  .booking-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding: 48px 0 44px; }

  .hero h1 { font-size: 1.65rem; }

  section { padding: 44px 0; }
}

@media (max-width: 560px) {
  .service-list { grid-template-columns: 1fr; }

  .brand-text { display: none; }

  .site-nav { gap: 12px; }

  .header-inner { justify-content: center; }
}
