/* ============================================
   Star Hair NY — Editorial Luxury Hair Salon
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  background: #ffffff;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, .nav-logo, .footer-logo {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
}

/* Announcement Bar */
.announcement-bar {
  background: #111111;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-bar {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 10px 0;
  gap: 36px;
  background: #111111;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.nav-logo-img {
  height: 92px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  transition: opacity 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-book {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s ease;
}

.nav-book:hover { opacity: 0.6; }

.nav-bar .menu-toggle { display: none; }

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  gap: 20px;
}

.mobile-menu a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.mobile-menu.mobile-open { display: flex; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-filled { background: #111111; color: #ffffff; border: 1px solid #111111; }
.btn-filled:hover { background: #2A2A2A; border-color: #2A2A2A; }

.btn-ghost { background: transparent; color: #111111; border: 1px solid #111111; }
.btn-ghost:hover { background: #111111; color: #ffffff; }

.btn-ghost-dark { background: transparent; color: #111111; border: 1px solid #111111; }
.btn-ghost-dark:hover { background: #111111; color: #ffffff; }

.btn-outline-white { background: transparent; color: #ffffff; border: 1px solid #ffffff; }
.btn-outline-white:hover { background: #ffffff; color: #111111; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 90px);
}

.hero-left { position: relative; background: #2A2A2A; overflow: hidden; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a2e28 0%, #2a2420 50%, #1e1a16 100%);
  color: rgba(255,255,255,0.5);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  gap: 8px;
}

.hero-image-note { font-size: 10px; letter-spacing: 0.1em; opacity: 0.6; }

.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); pointer-events: none; }

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  background: #ffffff;
}

.hero-tag {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2A2A2A;
  margin-bottom: 24px;
}

.hero-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 40px;
}

.hero-heading .line { display: block; }
.hero-heading em { font-style: italic; font-weight: 400; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Marquee */
.marquee { background: #2A2A2A; overflow: hidden; padding: 18px 0; }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

.marquee-dot { opacity: 0.4; font-size: 10px !important; }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Services / Price List */
.services { padding: 100px 0; background: #111111; }

.section-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  text-align: center;
  margin-bottom: 64px;
  color: #ffffff;
}

.section-heading span { text-transform: uppercase; }
.section-heading em { font-style: italic; font-weight: 400; }

.pricelist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}

.pricelist-col { display: flex; flex-direction: column; gap: 0; }

.pricelist-category {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.pricelist-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.12);
}

.pricelist-name {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricelist-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
  min-width: 20px;
  margin-bottom: 4px;
}

.pricelist-price {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.services-cta { text-align: center; }

/* About Split */
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }

.about-left { position: relative; background: #2A2A2A; overflow: hidden; }

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-tag-sub {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: #2A2A2A;
  margin-bottom: 16px;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a2e28 0%, #2a2420 50%, #1e1a16 100%);
  color: rgba(255,255,255,0.5);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  gap: 8px;
}

.about-image-note { font-size: 10px; letter-spacing: 0.1em; opacity: 0.6; }

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  background: #F5F0EB;
}

.about-tag {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2A2A2A;
  margin-bottom: 20px;
}

.about-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 24px;
  color: #111111;
  line-height: 1.2;
}

.about-heading span { text-transform: uppercase; }
.about-heading em { font-style: italic; font-weight: 400; }

.about-body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 32px;
  max-width: 420px;
}

/* Showcase */
.showcase { background: #2A2A2A; padding: 100px 0; text-align: center; }

.showcase-heading {
  font-size: clamp(26px, 3.5vw, 44px);
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.25;
}

.showcase-heading span { text-transform: uppercase; }
.showcase-heading em { font-style: italic; font-weight: 400; }

.showcase-body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Gallery Teaser */
.gallery-teaser { padding: 100px 0; background: #F5F0EB; }

.gallery-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  text-align: center;
  margin-bottom: 56px;
  color: #111111;
  line-height: 1.2;
}

.gallery-heading span { text-transform: uppercase; }
.gallery-heading em { font-style: italic; font-weight: 400; }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 12px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-label {
  opacity: 1;
}

.gallery-placeholder {
  background: linear-gradient(160deg, #3a3530 0%, #2a2622 60%, #1e1c18 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  gap: 6px;
}

.gallery-note { font-size: 10px; letter-spacing: 0.1em; opacity: 0.6; }
.gallery-cta { text-align: center; }

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #ffffff;
}

.contact-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 56px;
  color: #111111;
  line-height: 1.2;
}

.contact-heading em { font-style: italic; font-weight: 400; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #111111;
  margin-top: 2px;
}

.contact-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.contact-value {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #111111;
  line-height: 1.6;
  display: block;
}

.contact-link { text-decoration: underline; text-underline-offset: 3px; }
.contact-link:hover { opacity: 0.6; }

.contact-btn { margin-top: 8px; align-self: flex-start; }

.contact-map {
  height: 420px;
  border: 1px solid #E8E2D9;
  overflow: hidden;
}

.contact-map iframe { width: 100%; height: 100%; display: block; }

/* Booking CTA */
.booking-cta { background: #111111; padding: 100px 0; text-align: center; }

.booking-heading { font-size: clamp(28px, 3.5vw, 44px); color: #ffffff; margin-bottom: 16px; }

.booking-sub {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

/* Footer */
.site-footer { background: #2A2A2A; padding: 64px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
  margin-bottom: 10px;
}

.footer-social:last-of-type { margin-bottom: 0; }
.footer-social:hover { color: #ffffff; }

.ig-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-nav { display: flex; flex-direction: column; gap: 12px; }

.footer-nav a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: #ffffff; }

.footer-info {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; }

.footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { min-height: 50vh; }
  .hero-right { padding: 48px 24px; }
  .about-split { grid-template-columns: 1fr; }
  .about-left { min-height: 40vh; }
  .about-right { padding: 48px 24px; }
  .pricelist-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .nav-bar .menu-toggle { display: flex; }
  .nav-bar { justify-content: space-between; }
  .nav-logo-img { height: 44px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .btn { width: 100%; text-align: center; }
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 600px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
}
