@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --bg: #faf7f2;
  --bg-alt: #f3ece2;
  --ink: #2c2420;
  --ink-soft: #6f6259;
  --gold: #b08d57;
  --gold-dark: #96733f;
  --rose: #c9a191;
  --line: #e5dccf;
  --radius: 4px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Jost", -apple-system, "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

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

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  margin-top: 0;
  line-height: 1.2;
}

h2 { font-size: 2.4rem; text-align: center; margin-bottom: 8px; }

.section-sub {
  text-align: center;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section-sub::before,
.section-sub::after {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.section-sub::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--ink);
}

.logo span { color: var(--gold); }

.site-header nav { display: flex; align-items: center; gap: 28px; }

.site-header nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-header nav a:hover { color: var(--gold-dark); }

.lang-switch {
  border: 1px solid var(--line);
  padding: 4px 12px !important;
  border-radius: 20px;
  font-size: 0.8rem !important;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 150px 24px 140px;
  background:
    linear-gradient(rgba(36, 28, 24, 0.66), rgba(36, 28, 24, 0.74)),
    url("images/salong.jpg") center top / cover no-repeat;
}

.hero > * { position: relative; }

.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero .btn-ghost {
  border-color: #e9dfd2;
  color: #fdfaf5;
}

.hero .btn-ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.hero .eyebrow {
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.6rem;
  max-width: 640px;
  margin: 0 auto 20px;
}

.hero p.lead {
  max-width: 480px;
  margin: 0 auto 40px;
  color: #f7f2ea;
  font-size: 1.1rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.btn {
  display: inline-block;
  padding: 15px 42px;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 400;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }

.btn-ghost {
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  margin-left: 12px;
}
.btn-ghost:hover { background: var(--gold); color: #fff; }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }

/* Services overview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(44, 36, 32, 0.09);
}

.service-card:hover::before { width: 100%; }

.service-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.service-card:hover .icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* Price list */
.price-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}

.price-group h3 {
  font-size: 1.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 18px;
}

.price-group h4 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 22px 0 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 7px 8px;
  margin: 0 -8px;
  border-bottom: 1px dotted var(--line);
  font-size: 0.97rem;
  border-radius: 3px;
  transition: background 0.2s;
}

.price-row:hover { background: rgba(176, 141, 87, 0.07); }

.price-row .dots { flex: 1; }
.price-row .price { font-weight: 400; color: var(--gold-dark); white-space: nowrap; }

/* Salon photo section */
.salon-split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: center;
}

.salon-photo {
  position: relative;
}

.salon-photo::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
}

.salon-photo img {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(44, 36, 32, 0.14);
}

.salon-text h2 { text-align: left; }
.salon-text p { color: var(--ink-soft); margin-bottom: 18px; }
.salon-text .btn { margin-top: 10px; }

/* About */
.about-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-soft);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  text-align: center;
}

.contact-block h3 { font-size: 1.3rem; margin-bottom: 10px; }
.contact-block p { margin: 4px 0; color: var(--ink-soft); }
.contact-block a { text-decoration: none; }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: 72px 24px;
}

.cta-band::before {
  content: "❝";
  position: absolute;
  top: -40px;
  left: 6%;
  font-family: "Cormorant Garamond", serif;
  font-size: 14rem;
  color: var(--gold);
  opacity: 0.12;
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(176, 141, 87, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band > * { position: relative; }

.cta-band h2 { color: var(--bg); margin-bottom: 12px; }
.cta-band p { color: #c9beb2; margin: 0 0 32px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-footer .socials { margin-bottom: 10px; }
.site-footer .socials a { margin: 0 10px; text-decoration: none; letter-spacing: 1px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 760px) {
  .hero h1 { font-size: 2.4rem; }
  .price-columns { grid-template-columns: 1fr; }
  .salon-split { grid-template-columns: 1fr; gap: 40px; }
  .salon-text h2 { text-align: center; }
  .salon-text { text-align: center; }
  .header-inner { flex-direction: column; gap: 12px; }
  .site-header nav { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .btn-ghost { margin-left: 0; margin-top: 12px; }
  .section { padding: 64px 0; }
}
