:root {
  --ink: #08090b;
  --charcoal: #12161a;
  --charcoal-2: #1c2126;
  --smoke: #eef1f3;
  --mist: #c7d0d7;
  --steel: #7f8d98;
  --gold: #d2a854;
  --gold-deep: #936b2d;
  --ice: #31a8ff;
  --leaf: #2f5148;
  --paper: #f6f3ed;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--smoke);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 9, 11, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--gold);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--mist);
  font-size: 0.94rem;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-cta,
.button,
.contact-actions a,
.social-links a,
.floating-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-cta {
  color: var(--ink);
  background: var(--gold);
  padding: 0 14px;
}

.nav-social,
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-social a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-social a:hover,
.nav-social a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(210, 168, 84, 0.66);
  background: rgba(210, 168, 84, 0.16);
}

.nav-cta svg,
.nav-social svg,
.button svg,
.contact-actions svg,
.social-links svg,
.footer-social svg,
.floating-call svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
  flex: 0 0 auto;
}

.brand-glyph {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  color: currentColor;
}

.icon-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 78svh;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/salon-main.jpg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.76) 42%, rgba(8, 9, 11, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.9) 0%, rgba(8, 9, 11, 0.05) 46%, rgba(8, 9, 11, 0.46) 100%);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 78svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 680px) 250px;
  align-items: center;
  gap: 48px;
  padding: 74px 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.89;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.55);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.hero-arabic {
  width: fit-content;
  margin-bottom: 18px;
  color: #f8f9fb;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  font-weight: 800;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--mist);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: 1px solid transparent;
  padding: 13px 18px;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #f0cf7a);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(210, 168, 84, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.button.full {
  width: 100%;
}

.hero-mark {
  align-self: end;
  justify-self: end;
  width: 220px;
  opacity: 0.9;
  filter: drop-shadow(0 18px 40px rgba(49, 168, 255, 0.24));
}

.hero-mark img {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.quick-strip div {
  padding: 26px clamp(18px, 4vw, 54px);
  border-right: 1px solid rgba(8, 9, 11, 0.12);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip span,
.quick-strip strong {
  display: block;
}

.quick-strip span {
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-strip strong {
  margin-top: 4px;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 250px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: var(--gold);
}

.service-card p {
  color: var(--mist);
  margin-bottom: 0;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(64px, 8vw, 106px) max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(115deg, rgba(47, 81, 72, 0.88), rgba(18, 22, 26, 0.96) 48%, rgba(147, 107, 45, 0.4)),
    var(--leaf);
}

.experience-copy {
  padding-left: 16px;
}

.experience-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--mist);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 750;
}

.feature-list svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.experience-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.film-band {
  position: relative;
  min-height: clamp(360px, 54vw, 680px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.film-band video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.film-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.12), rgba(8, 9, 11, 0.92));
}

.film-band div {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 54px;
}

.film-band h2 {
  max-width: 760px;
}

.gallery {
  background: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
}

.gallery-grid .wide {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-grid figure:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(5) {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(74px, 10vw, 118px);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 22, 26, 0.94), rgba(47, 81, 72, 0.86)),
    var(--charcoal);
  border: 1px solid var(--line);
}

.location-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.location-copy address {
  color: var(--mist);
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-links a {
  min-height: 50px;
  padding: 0 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.social-links a:first-child {
  color: var(--ink);
  background: var(--gold);
  border-color: transparent;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal-2);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(1.05) contrast(1.03);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(74px, 10vw, 118px);
}

.booking-image,
.booking-panel {
  border-radius: 8px;
  overflow: hidden;
}

.booking-image {
  min-height: 640px;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-panel {
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper);
  color: var(--ink);
}

.booking-panel .eyebrow {
  color: var(--gold-deep);
}

.booking-panel h2 {
  color: var(--ink);
  margin-bottom: 16px;
}

.whatsapp-agent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 11px 13px;
  border-radius: 8px;
  color: #18352d;
  background: rgba(47, 81, 72, 0.1);
  border: 1px solid rgba(47, 81, 72, 0.18);
  font-weight: 850;
}

.whatsapp-agent svg {
  width: 19px;
  height: 19px;
  color: var(--leaf);
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #30363b;
  font-size: 0.9rem;
  font-weight: 850;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(8, 9, 11, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: 0;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(210, 168, 84, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.contact-actions a {
  min-height: 50px;
  background: var(--charcoal);
  color: #fff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(16px, calc((100vw - 1180px) / 2));
  background: #050607;
  border-top: 1px solid var(--line);
  color: var(--steel);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
}

.site-footer img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}

.site-footer p {
  margin: 0;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  min-width: 112px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 16px 20px;
    background: rgba(8, 9, 11, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 15px 10px;
    border-radius: 6px;
  }

  .nav-cta {
    display: none;
  }

  .nav-social {
    display: none;
  }

  .hero-inner {
    min-height: 80svh;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 58px 0 44px;
  }

  .hero-mark {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience,
  .location,
  .booking {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    padding-left: 0;
  }

  .experience {
    padding-left: 16px;
    padding-right: 16px;
  }

  .experience-image {
    max-width: 560px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid .wide,
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(5) {
    grid-column: span 2;
  }

  .booking-image {
    min-height: 520px;
  }

  .location-copy,
  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    min-height: 74svh;
  }

  h1 {
    font-size: clamp(2.75rem, 17vw, 4.8rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 9, 11, 0.12);
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 62px 0;
  }

  .service-grid,
  .gallery-grid,
  .form-row,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .location {
    width: min(100% - 24px, 1180px);
    padding-bottom: 62px;
  }

  .location-copy {
    padding: 24px;
  }

  .social-links,
  .social-links a {
    width: 100%;
  }

  .service-card {
    min-height: 0;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-grid .wide,
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .booking {
    width: min(100% - 24px, 1180px);
    padding-bottom: 86px;
  }

  .booking-image {
    min-height: 420px;
  }

  .booking-panel {
    padding: 24px;
  }

  .floating-call {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .film-band video {
    display: none;
  }
}
