/* Studio25 — modern hero single-page layout */

:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --ink: #2b2622;
  --muted: #6f6659;
  --accent: #b08d57;
  --accent-dark: #967440;
  --dark: #1d1a17;
  --dark-ink: #f3ede4;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(29, 26, 23, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
}

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

a { color: var(--accent-dark); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  background: rgba(29, 26, 23, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header .bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

.site-header nav a {
  color: var(--dark-ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-header nav a:hover { color: #fff; }

.lang-switch {
  display: flex;
  gap: 0.15rem;
  font-size: 0.9rem;
}

.lang-switch a {
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-switch a.active {
  background: var(--accent);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-block;
  white-space: nowrap;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn.small { padding: 0.5rem 1.2rem; font-size: 0.92rem; }

/* Hero */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 6rem 1.25rem 4rem;
  background:
    linear-gradient(rgba(20, 17, 14, 0.55), rgba(20, 17, 14, 0.65)),
    url("../img/salon-hero.jpg") center / cover no-repeat;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.06em;
}

.hero .subtitle {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 400;
  letter-spacing: normal;
  color: var(--dark-ink);
  margin-top: 0.4rem;
}

.hero .tagline {
  max-width: 34rem;
  margin: 1.2rem auto 2rem;
  color: rgba(243, 237, 228, 0.9);
}

.hero .btn { font-size: 1.05rem; }

.scroll-hint {
  margin-top: 3.5rem;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

/* Content sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  scroll-margin-top: 4.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse .media { order: 2; }

.split .media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.split h2, .team h2, .contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.split p + p { margin-top: 0.8rem; }

.media-caption {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.6rem;
  text-align: center;
}

/* Team */
.team { text-align: center; }

.team-grid {
  display: grid;
  grid-template-columns: minmax(240px, 480px);
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
}

.member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  box-shadow: var(--shadow);
}

.member h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

.member p { color: var(--muted); font-size: 0.97rem; margin-bottom: 1.2rem; }

/* CTA band */
.cta-band {
  background: var(--dark);
  color: var(--dark-ink);
  text-align: center;
  padding: 3.5rem 1.25rem;
}

.cta-band p {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  max-width: 36rem;
  margin: 0 auto 1.6rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-grid iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info p { margin-bottom: 0.9rem; }

.contact-info .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
}

.hours { border-collapse: collapse; margin-top: 0.3rem; }

.hours td { padding: 0.15rem 1.2rem 0.15rem 0; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(243, 237, 228, 0.75);
  text-align: center;
  padding: 1.6rem 1.25rem;
  font-size: 0.9rem;
}

.site-footer a { color: var(--dark-ink); }

.site-footer .powered { margin-top: 0.5rem; }

.site-footer .powered a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: rgba(243, 237, 228, 0.75);
}

.site-footer .powered a:hover { color: var(--dark-ink); }

.site-footer .powered img { height: 18px; width: 18px; }

/* Mobile */
@media (max-width: 780px) {
  .site-header nav .section-link { display: none; }
  .site-header .bar { gap: 0.6rem; padding: 0.6rem 0.75rem; }
  .site-header nav { gap: 0.6rem; }
  .site-header .btn.small { padding: 0.45rem 0.9rem; font-size: 0.85rem; }
  .lang-switch { font-size: 0.85rem; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 1.6rem; }
  .split.reverse .media { order: 0; }
  .team-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
}
