/* ===========================================================
   Sofinga Beauty Salon — styles.css
   Glam palette inspired by the real salon interior:
   deep royal navy + brass gold + mustard velvet + marble
   =========================================================== */

:root {
  --navy:         #18406A;
  --navy-deep:    #0E2D50;
  --navy-dark:    #082040;
  --brass:        #B8924B;
  --brass-light:  #D4B16A;
  --brass-soft:   #E5CE9B;
  --mustard:      #C19534;
  --marble:       #F1EDE6;
  --marble-soft:  #F8F4EC;
  --cream:        #FAF6EE;
  --line:         #E2DACB;
  --ink:          #15171C;
  --ink-soft:     #3C4250;
  --muted:        #7C8493;
  --white:        #FFFFFF;

  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 16px 40px rgba(8, 32, 64, 0.12);
  --shadow-sm:    0 6px 18px rgba(8, 32, 64, 0.08);
  --shadow-brass: 0 8px 22px rgba(184, 146, 75, 0.35);

  --font-serif:   "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--marble);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--brass); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.2rem, 5.4vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 780px; }

.centered  { text-align: center; }
.muted     { color: var(--muted); }
.small     { font-size: 0.875rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.6em;
}
.eyebrow.centered { display: block; }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-2px);
}
.eyebrow.centered::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin-left: 10px;
  transform: translateY(-2px);
}

.section { padding: 96px 0; }
.section-alt { background: var(--marble-soft); }
.section-navy {
  background: var(--navy);
  color: var(--cream);
}
.section-navy h2, .section-navy h3 { color: var(--cream); }
.section-navy p { color: rgba(245, 239, 228, 0.88); }
.section-navy .eyebrow { color: var(--brass-light); }
.section-navy .eyebrow::before, .section-navy .eyebrow::after { background: var(--brass-light); }

.section-title { margin-bottom: 0.8em; }
.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 2.4em;
}
.section-navy .lead { color: rgba(245, 239, 228, 0.88); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none !important;
}
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-primary {
  background: var(--brass);
  color: var(--navy-deep);
  font-weight: 600;
  box-shadow: var(--shadow-brass);
}
.btn-primary:hover { background: var(--brass-light); transform: translateY(-1px); }
.btn-navy {
  background: var(--navy);
  color: var(--cream);
}
.btn-navy:hover { background: var(--navy-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.section-navy .btn-ghost { color: var(--cream); border-color: var(--cream); }
.section-navy .btn-ghost:hover { background: var(--cream); color: var(--navy-deep); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink) !important;
  text-decoration: none !important;
}
.logo-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--brass-light);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--brass);
}
.logo-mark.sm { width: 32px; height: 32px; font-size: 18px; border-width: 1px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 2px;
}

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.01em;
}
.main-nav a:hover { color: var(--navy); text-decoration: none; border-bottom-color: var(--brass); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active {
  background: var(--navy);
  color: var(--brass-light);
}

.btn-call { padding: 10px 18px; font-size: 0.9rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: var(--cream);
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, var(--navy-deep) 0%, var(--navy) 45%, rgba(24, 64, 106, 0.4) 100%),
    var(--navy);
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 78% 30%, rgba(184, 146, 75, 0.25), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  max-width: 760px;
  color: var(--cream);
}
.hero .eyebrow { color: var(--brass-light); }
.hero .eyebrow::before { background: var(--brass-light); }
.hero-title {
  margin-bottom: 0.4em;
  color: var(--cream);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: 1.18rem;
  color: rgba(245, 239, 228, 0.92);
  margin-bottom: 2.2em;
  max-width: 600px;
  font-weight: 300;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: rgba(8, 32, 64, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 146, 75, 0.35);
  border-radius: var(--radius);
}
.hero-meta li { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brass-light);
  font-weight: 600;
}
.hero-meta span { color: var(--cream); font-weight: 500; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.about-emblem {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(8, 32, 64, 0.18));
}
.about-emblem svg {
  width: 100%;
  height: auto;
  display: block;
}
/* outer brass corner brackets */
.about-emblem::before,
.about-emblem::after {
  content: "";
  position: absolute;
  width: 56px; height: 56px;
  pointer-events: none;
  z-index: 2;
}
.about-emblem::before {
  top: -14px; right: -14px;
  border-top: 2px solid var(--brass);
  border-right: 2px solid var(--brass);
}
.about-emblem::after {
  bottom: -14px; left: -14px;
  border-bottom: 2px solid var(--brass);
  border-left: 2px solid var(--brass);
}

.about-text .lead {
  margin-left: 0;
  margin-bottom: 1.2em;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brass-soft); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--marble);
  border: 1px solid var(--brass-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--navy);
}
.service-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.5rem;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.service-card li {
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.service-card li:last-child { border-bottom: 0; }
.service-cta {
  display: inline-block;
  font-weight: 600;
  color: var(--brass);
  font-size: 0.9rem;
  margin-top: auto;
  letter-spacing: 0.02em;
}
.service-cta:hover { color: var(--mustard); }

/* ============ EXPERIENCE ============ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.exp-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
}
.exp-card::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 50%, transparent);
}
.exp-card:hover {
  transform: translateY(-3px);
  border-color: var(--brass-soft);
  box-shadow: var(--shadow);
}
.exp-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.exp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.exp-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.why-card {
  background: rgba(245, 239, 228, 0.06);
  border: 1px solid rgba(184, 146, 75, 0.25);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.25s;
}
.why-card:hover {
  border-color: var(--brass);
  background: rgba(184, 146, 75, 0.08);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 32px;
  margin-bottom: 14px;
  color: var(--brass-light);
}
.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--cream); font-family: var(--font-serif); }
.why-card p { font-size: 0.95rem; margin-bottom: 0; color: rgba(245, 239, 228, 0.78); }

/* ============ VISIT ============ */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 30px;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; gap: 24px; }
.info-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.info-block h3 {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brass);
  margin-bottom: 14px;
}
.info-block p { margin-bottom: 12px; color: var(--ink); }
.text-link {
  display: inline-block;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
}
.text-link:hover { color: var(--brass); text-decoration: none; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.hours td {
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.hours td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.hours tr:last-child td { border-bottom: 0; }
.social-row { display: flex; gap: 16px; margin-top: 10px; }
.social-row a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  border-bottom: 2px solid var(--brass);
  padding-bottom: 2px;
}
.social-row a:hover { color: var(--brass); text-decoration: none; }

.visit-map {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 440px;
}
.visit-map iframe {
  flex: 1;
  width: 100%;
  min-height: 440px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  filter: contrast(1.02);
}
.map-link { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.map-link:hover { color: var(--brass); }

/* ============ CTA BAND ============ */
.cta-band {
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(184, 146, 75, 0.22), transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--brass);
}
.cta-band::before { top: 40px; }
.cta-band::after { bottom: 40px; }
.cta-band h2 { color: var(--cream); font-style: italic; font-weight: 500; }
.cta-band p { color: rgba(245, 239, 228, 0.9); font-size: 1.12rem; margin-bottom: 1.8em; }
.cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 60px 0 24px;
}
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--brass-light); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(184, 146, 75, 0.2);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.footer-brand strong { font-family: var(--font-serif); font-size: 1.25rem; letter-spacing: 0.06em; text-transform: uppercase; }
.site-footer strong { display: block; margin-bottom: 10px; font-size: 0.95rem; color: var(--brass-light); }
.site-footer .muted { color: rgba(245, 239, 228, 0.5); }
.footer-bottom { padding-top: 22px; text-align: center; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { aspect-ratio: 16 / 11; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .hero { min-height: 540px; }
  .hero-inner { padding: 70px 0; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .logo-sub { display: none; }
  .hero-meta { grid-template-columns: 1fr; padding: 22px; }
  .hero-cta .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .lang-btn { padding: 5px 8px; font-size: 0.75rem; }
  .btn-call span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
