/* Go Saloon — premium salon theme
   Inspired by top Indian salon sites (Looks, Jawed Habib class)
   Own identity: ink · champagne · photographic */

:root {
  --ink: #0a0908;
  --ink-2: #161210;
  --ink-3: #241e19;
  --champagne: #d4af77;
  --champagne-bright: #e8c99a;
  --champagne-deep: #a8844f;
  --ivory: #faf6f0;
  --ivory-2: #f0e8dc;
  --muted: #9a8f84;
  --muted-on-dark: rgba(250, 246, 240, 0.62);
  --line: rgba(212, 175, 119, 0.28);
  --white: #fffdf9;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --header-h: 4.5rem;
  --max: 75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--champagne-deep);
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--ink);
}

h1,
h2,
h3,
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--champagne);
  color: var(--ink);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 9, 8, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 119, 0.18);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

/* Transparent only over home hero until scroll */
body.has-hero .site-header:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 9, 8, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(212, 175, 119, 0.18);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 1.5rem, var(--max));
}

.logo {
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo .brand-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0.28rem;
  border: 2px solid #e2c77a;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.logo .brand-logo-frame img,
.logo .brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0.45rem;
  background: transparent;
  box-shadow: none;
}

.logo .brand-text {
  display: none;
  flex-direction: column;
  gap: 0.1rem;
}

.logo .brand-name {
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: 600;
}

.logo .brand-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-bright);
}

@media (min-width: 900px) {
  .logo .brand-text {
    display: flex;
  }

  .logo .brand-logo-frame {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(232, 201, 154, 0.4);
  background: transparent;
  color: var(--champagne-bright);
  cursor: pointer;
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
}

.site-nav a {
  color: rgba(255, 253, 249, 0.78);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--champagne-bright);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--champagne);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--champagne-bright);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(212, 175, 119, 0.28);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(232, 201, 154, 0.55);
  color: var(--champagne-bright);
}

.btn-ghost:hover {
  border-color: var(--champagne-bright);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--ink-3);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  border-color: #1ebe57;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.28);
}

.btn .icon-wa {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.inline-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.inline-wa .icon-wa {
  width: 1.2rem;
  height: 1.2rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-zoom 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 9, 8, 0.88) 0%, rgba(10, 9, 8, 0.45) 48%, rgba(10, 9, 8, 0.25) 100%),
    linear-gradient(to top, rgba(10, 9, 8, 0.92) 0%, transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3rem) 0 5.5rem;
  max-width: 40rem;
  animation: rise 1s var(--ease) both;
}

.hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--champagne-bright);
  margin-bottom: 1.25rem;
}

.hero .brand-name {
  display: block;
  font-size: clamp(3.8rem, 11vw, 6.75rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(250, 246, 240, 0.78);
  max-width: 28rem;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Sections ——— */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-dark {
  background: var(--ink);
  color: var(--ivory);
}

.section-ink {
  background: var(--ink-2);
  color: var(--ivory);
}

.section-head {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-head p,
.section-ink .section-head p {
  color: var(--muted-on-dark);
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head-row .section-head {
  margin-bottom: 0;
}

/* ——— Marquee / strip ——— */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--champagne-bright);
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.marquee-track span::after {
  content: " · ";
  color: rgba(212, 175, 119, 0.45);
  margin-left: 3rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ——— Featured services (home) ——— */
.service-showcase {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .service-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .service-showcase {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }
}

.service-tile {
  position: relative;
  display: block;
  min-height: 22rem;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  isolation: isolate;
}

.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  z-index: -2;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.92) 0%, rgba(10, 9, 8, 0.2) 55%, rgba(10, 9, 8, 0.35) 100%);
  transition: background 0.4s var(--ease);
}

.service-tile:hover img {
  transform: scale(1.08);
}

.service-tile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem;
}

.service-tile .price-from {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne-bright);
  margin-bottom: 0.4rem;
}

.service-tile h3 {
  color: var(--white);
  margin-bottom: 0.35rem;
}

.service-tile p {
  color: rgba(250, 246, 240, 0.72);
  font-size: 0.92rem;
  margin: 0;
}

/* ——— Split story ——— */
.split {
  display: grid;
  gap: 0;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 34rem;
  }
}

.split-media {
  min-height: 22rem;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--ink);
  color: var(--ivory);
}

.split-copy p {
  color: var(--muted-on-dark);
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

/* ——— Gallery ——— */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

@media (min-width: 800px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink-2);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.06);
}

/* ——— Hours / visit band ——— */
.visit-band {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .visit-band {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 119, 0.2);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--champagne-bright);
  font-weight: 500;
  line-height: 1.1;
}

.stat span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.payment-note {
  border-block: 1px solid var(--line);
  padding: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.payment-note strong {
  color: var(--ink);
}

/* ——— Services page table ——— */
.service-group {
  margin-bottom: 3rem;
}

.service-group h3 {
  color: var(--champagne-deep);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
}

.service-table th {
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 0.75rem;
}

.service-table td {
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(10, 9, 8, 0.08);
}

.service-table .price {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}

.price-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:first-child {
  border-top: 1px solid var(--line);
}

.contact-list .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-list a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.contact-panel {
  background:
    linear-gradient(160deg, rgba(10, 9, 8, 0.55), rgba(10, 9, 8, 0.88)),
    url("../img/studio.jpg") center / cover;
  color: var(--ivory);
  padding: clamp(2rem, 4vw, 3rem);
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-panel h3 {
  color: var(--white);
}

.contact-panel p {
  color: var(--muted-on-dark);
  margin-bottom: 1.5rem;
}

.map-block {
  margin-top: 3rem;
}

.map-block .eyebrow {
  margin-bottom: 0.75rem;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 18rem;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand .brand-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0.3rem;
  border: 2px solid #e2c77a;
  border-radius: 0.875rem;
  background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.footer-brand .brand-logo-frame img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0.5rem;
  background: transparent;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.2rem;
}

/* ——— Page hero ——— */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(212, 175, 119, 0.18), transparent 55%),
    url("../img/hero.jpg") center / cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--champagne-bright);
}

.page-hero p {
  color: rgba(255, 253, 249, 0.72);
  max-width: 34rem;
  margin: 0;
}

/* ——— Prose / book ——— */
.prose {
  max-width: 42rem;
}

.prose h2 {
  font-size: 1.85rem;
  margin-top: 2.5rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  padding-left: 1.2rem;
}

.book-panel {
  max-width: 30rem;
  margin: 0 auto;
  text-align: center;
  padding: calc(var(--header-h) + 4rem) 1rem 5rem;
}

.book-panel .brand-name {
  font-size: clamp(2.75rem, 7vw, 4rem);
  margin-bottom: 1rem;
}

/* ——— Footer ——— */
.site-footer {
  background: #050403;
  color: rgba(250, 246, 240, 0.65);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 119, 0.14);
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
}

.footer-nav a {
  color: rgba(250, 246, 240, 0.72);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--champagne-bright);
}

.footer-note {
  max-width: 36rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.4);
}

/* ——— Reveal on scroll ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ——— Mobile ——— */
@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(10, 9, 8, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 119, 0.18);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .site-nav .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-tile {
    min-height: 18rem;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
