:root {
  --ink: #080706;
  --black: #0d0b0a;
  --panel: #151210;
  --panel-2: #1e1915;
  --copper: #c45f2c;
  --copper-2: #e27a3d;
  --gold: #d6ad63;
  --paper: #f6efe6;
  --muted: #b7aaa0;
  --smoke: rgba(246, 239, 230, 0.72);
  --line: rgba(246, 239, 230, 0.13);
  --line-strong: rgba(214, 173, 99, 0.32);
  --green: #4dd56b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --radius: 7px;
  --gradient-primary: linear-gradient(135deg, rgba(196, 95, 44, 0.15) 0%, rgba(214, 173, 99, 0.1) 50%, rgba(196, 95, 44, 0.05) 100%);
  --gradient-secondary: linear-gradient(90deg, transparent 0%, rgba(214, 173, 99, 0.08) 50%, transparent 100%);
  --sparkle-color: rgba(255, 255, 255, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

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

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

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

button {
  color: inherit;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

section {
  scroll-margin-top: 98px;
}

.site-header {
  position: fixed;
  top: 22px;
  left: clamp(14px, 2.2vw, 30px);
  right: clamp(14px, 2.2vw, 30px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 66px;
  padding: 12px 14px 12px 22px;
  background: rgba(13, 11, 10, 0.58);
  border: 1px solid rgba(246, 239, 230, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 7, 6, 0.92);
  border-color: rgba(214, 173, 99, 0.23);
  transform: translateY(-6px);
}

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

.brand-logo {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  box-shadow: none;/*inset 0 0 0 1px rgba(214, 173, 99, 0.2); */
}

.brand-logo svg {
  width: 100%;
  height: 100%;
}

.brand-logo circle {
  fill: transparent;
}

.logo-lines {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
}
/* --- ADDED LOGO ANIMATIONS --- */
.logo-lines path {
  stroke-dasharray: 350;
  stroke-dashoffset: 350;
  animation: logoDraw 3s ease-out forwards;
}

.logo-dots circle {
  opacity: 0;
  fill: currentColor;
  animation: logoFade 1s ease-out 1s forwards;
}

.logo-monogram {
  transform-origin: 100px 100px;
  animation: logoBreathe 0.9s ease-in-out infinite alternate;
  filter: drop-shadow(0px 0px 4px rgba(198, 178, 135, 1));
}

@keyframes logoDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes logoFade {
  to { opacity: 1; }
}

@keyframes logoBreathe {
  from { transform: scale(0.98); }
  to { transform: scale(1.03); }
}
/* ----------------------------- */

.logo-dots {
  fill: currentColor;
  stroke: none;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(246, 239, 230, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.site-nav a {
  white-space: nowrap;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a.hover {
  color: var(--paper);
}

.site-nav .nav-pill,
.site-nav .nav-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  letter-spacing: 0.18em;
}

.site-nav .nav-pill {
  border: 1px solid rgba(246, 239, 230, 0.22);
}

.site-nav .nav-pill:hover,
.site-nav .nav-pill.hover {
  border-color: rgba(246, 239, 230, 0.48);
}

.site-nav .nav-cta {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 12px 30px rgba(196, 95, 44, 0.34);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.hover {
  background: var(--copper-2);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--paper);
  line-height: 0.96;
}

h1,
h2 {
  font-family: Impact, "Arial Narrow", "Franklin Gothic Condensed", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  display: grid;
  gap: 0.02em;
  max-width: 820px;
  font-size: clamp(4.2rem, 11.6vw, 10.4rem);
}

h1 em,
h2 em {
  display: inline-block;
  color: var(--copper-2);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 900;
  text-transform: none;
  text-shadow: 0 12px 35px rgba(196, 95, 44, 0.28);
}

h1 em {
  font-size: 0.58em;
  line-height: 0.85;
}

h2 {
  max-width: 940px;
  font-size: clamp(3.1rem, 7.2vw, 7rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h4 {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
}

.button {
  min-height: 60px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--copper);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  box-shadow: 0 18px 42px rgba(196, 95, 44, 0.34);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  position: relative;
  overflow: hidden;
}

.button:hover,
.button.hover {
  background: var(--copper-2);
  transform: translateY(-2px);
}

.button:hover::before,
.button.hover::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 30%, var(--sparkle-color) 0%, transparent 25%),
    radial-gradient(circle at 70% 60%, var(--sparkle-color) 0%, transparent 20%),
    radial-gradient(circle at 20% 80%, var(--sparkle-color) 0%, transparent 15%),
    radial-gradient(circle at 80% 40%, var(--sparkle-color) 0%, transparent 25%);
  background-size: 600% 600%;
  animation: sparkleShift 4s ease-in-out infinite;
  pointer-events: none;
  opacity: 0;
}

.button:hover::before,
.button.hover::before {
  opacity: 1;
}

.button.ghost,
.button.whatsapp,
.button.instagram,
.button.map-button,
.button.rate-button,
.whatsapp-notice {
  border: 1px solid rgba(246, 239, 230, 0.2);
  background: rgba(246, 239, 230, 0.045);
  color: var(--paper);
  box-shadow: none;
}

.button.ghost:hover,
.button.ghost.hover,
.button.whatsapp:hover,
.button.whatsapp.hover,
.button.instagram:hover,
.button.instagram.hover,
.button.map-button:hover,
.button.map-button.hover,
.button.rate-button:hover,
.button.rate-button.hover,
.whatsapp-notice:hover,
.whatsapp-notice.hover {
  border-color: rgba(246, 239, 230, 0.48);
  background: rgba(246, 239, 230, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 239, 230, 0.05);
}

.icon-button:hover,
.icon-button.hover {
  border-color: var(--line-strong);
  color: var(--gold);
  transform: scale(1.08);
  background: rgba(246, 239, 230, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: 148px clamp(22px, 5vw, 76px) 54px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: url("assets/hero-salon.jpg") center/cover;
  filter: saturate(0.7) contrast(1.18) brightness(0.58);
  transform: scale(1.06);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 86% 16%, rgba(196, 95, 44, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.92) 0%, rgba(8, 7, 6, 0.7) 38%, rgba(8, 7, 6, 0.26) 70%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.25), var(--ink) 100%),
    var(--gradient-primary);
  background-blend-mode: overlay;
  animation: gradientShift 12s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  animation: heroEnter 900ms cubic-bezier(0.16, 1, 0.3, 1) both 120ms;
}

.hero-copy {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--smoke);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.walk-in {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: rgba(246, 239, 230, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.walk-in span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(92, 155, 105, 0.2);
  animation: dotFlash 3s ease-in-out infinite;
}
@keyframes dotFlash {
  0%, 100% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 0.2; /* Fades out smoothly */
  }
}

.hero-status {
  position: absolute;
  top: 116px;
  right: clamp(22px, 4vw, 62px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(246, 239, 230, 0.15);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.48);
  color: rgba(246, 239, 230, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-status span {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: var(--copper);
  box-shadow: 0 0 20px rgba(232, 60, 34, 0.7);
  animation: lineBreathe 2s ease-in-out infinite; /* Adds the live pulse */
}

@keyframes lineBreathe {
  0%, 100% {
    transform: scaleX(1); /* Full width (30px) */
    opacity: 1;
    box-shadow: 0 0 20px rgba(232, 60, 34, 0.7);
  }
  50% {
    transform: scaleX(0.3); /* Shrinks down to a tiny dot */
    opacity: 0.5;
    box-shadow: 0 0 8px rgba(196, 95, 44, 0.2);
  }
}

.hero-panel {
  position: absolute;
  right: clamp(22px, 4vw, 62px);
  bottom: clamp(44px, 9vw, 124px);
  z-index: 2;
  width: min(330px, calc(100% - 44px));
  padding: 28px;
  border: 1px solid rgba(246, 239, 230, 0.13);
  border-radius: 24px;
  background: rgba(13, 11, 10, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: floatPanel 6s ease-in-out infinite;
}

.panel-label {
  display: block;
  margin-bottom: 18px;
  color: var(--copper-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.hero-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.hero-panel dt {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: right;
}

.section {
  padding: clamp(82px, 11vw, 150px) clamp(22px, 5vw, 76px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(36px, 5vw, 70px);
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
}

.services {
  background:
    linear-gradient(180deg, var(--ink), var(--black) 44%, #100d0c);
}

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

.service-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  isolation: isolate;
  transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.service-card:hover,
.service-card.hover {
  transform: translateY(-6px) rotateX(5deg) rotateY(2deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  border-color: var(--line-strong);
  background: var(--panel-2);
}

.service-card:hover img,
.service-card.hover img {
  filter: grayscale(0.35) contrast(1.08) brightness(0.88);
  transform: scale(1.1);
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent 24%, rgba(8, 7, 6, 0.86));
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.08) brightness(0.78);
  transform: scale(1.04);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), filter 600ms ease;
}

.service-card:hover img,
.service-card.hover img {
  filter: grayscale(0.2) contrast(1.12) brightness(0.92);
  transform: scale(1.12) rotate(2deg);
}

.service-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.service-card p {
  margin: 16px 0 0;
  color: rgba(246, 239, 230, 0.74);
}

.service-strip {
  display: flex;
  gap: 10px;
  margin: 28px 0 44px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.service-strip span {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 239, 230, 0.04);
  color: rgba(246, 239, 230, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-board {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(30, 25, 21, 0.96), rgba(13, 11, 10, 0.98));
  box-shadow: var(--shadow);
}

.menu-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.menu-tab {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-align: left;
  text-transform: uppercase;
}

.menu-tab.is-active,
.menu-tab:hover {
  border-color: rgba(196, 95, 44, 0.45);
  background: rgba(196, 95, 44, 0.16);
  color: var(--paper);
}

.menu-panels {
  padding: clamp(18px, 3vw, 34px);
}

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

.menu-panel.is-active {
  display: grid;
  animation: panelIn 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.menu-panel article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(246, 239, 230, 0.045);
}

.menu-panel h4 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  line-height: 1.15;
}

.menu-panel h4 span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.menu-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-panel strong {
  align-self: start;
  color: var(--gold);
  font-size: 1.05rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  background: #0b0908;
}

.about-image {
  min-height: min(70vw, 680px);
  border-radius: 26px;
  background: url("assets/about-salon.jpg") center/cover;
  box-shadow: var(--shadow);
  filter: grayscale(0.65) contrast(1.12);
}

.about-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0;
  color: var(--smoke);
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.stats div {
  padding: 22px;
  background: rgba(246, 239, 230, 0.045);
}

.stats strong {
  display: block;
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.2;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery {
  background: linear-gradient(180deg, #17120f, #0b0908);
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-track {
  display: grid;
  grid-auto-columns: minmax(290px, 390px);
  grid-auto-flow: column;
  gap: 18px;
  margin-inline: calc(clamp(22px, 5vw, 76px) * -1);
  overflow-x: auto;
  padding: 0 clamp(22px, 5vw, 76px) 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.insta-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 7, 6, 0.72);
  scroll-snap-align: start;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.insta-card:hover,
.insta-card.hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--line-strong);
  background: rgba(8, 7, 6, 0.78);
}

.post-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.mini-logo {
  width: 36px;
  height: 36px;
}

.post-head div {
  display: grid;
  line-height: 1.15;
}

.post-head strong {
  font-size: 0.86rem;
}

.post-head span {
  color: var(--muted);
  font-size: 0.74rem;
}

.post-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.06);
  transition: filter 500ms ease, transform 500ms ease;
  backface-visibility: hidden;
}

.insta-card:hover .post-image,
.insta-card.hover .post-image {
  filter: grayscale(0.2) contrast(1.12) brightness(1.04);
  transform: scale(1.02);
}

.insta-card p {
  min-height: 84px;
  margin: 0;
  padding: 16px;
  color: var(--smoke);
}

.booking,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  background: #0b0908;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--smoke);
}

.booking-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  color: var(--muted);
}

.booking-note svg {
  color: var(--gold);
  flex: 0 0 auto;
  margin-top: 4px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(30, 25, 21, 0.94), rgba(8, 7, 6, 0.96));
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(246, 239, 230, 0.16);
  border-radius: 14px;
  background: rgba(8, 7, 6, 0.58);
  color: var(--paper);
  outline: none;
  padding: 15px 16px;
  text-transform: none;
  transition: all 300ms ease;
}

input:hover,
input.hover,
select:hover,
select.hover,
textarea:hover,
textarea.hover {
  border-color: rgba(246, 239, 230, 0.28);
  background: rgba(8, 7, 6, 0.62);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(226, 122, 61, 0.72);
  box-shadow: 0 0 0 4px rgba(196, 95, 44, 0.14);
  background: rgba(8, 7, 6, 0.68);
  transform: translateY(-1px);
}

textarea {
  min-height: 124px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(226, 122, 61, 0.72);
  box-shadow: 0 0 0 4px rgba(196, 95, 44, 0.14);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--gold);
}

.is-hidden {
  display: none !important;
}

.contact-details ul {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  display: flex;
  gap: 12px;
  color: var(--smoke);
}

.contact-details li svg {
  flex: 0 0 auto;
  color: var(--gold);
  margin-top: 4px;
}

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

.map-wrap {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}

.rates-dialog {
  width: min(1120px, calc(100% - 28px));
  max-height: min(86vh, 900px);
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--panel);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.rates-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.rates-window {
  padding: clamp(22px, 4vw, 42px);
}

.rates-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 18px;
}

.rates-head h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.rates-note,
.mini-note {
  color: var(--muted);
}

.rate-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.rate-group {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(246, 239, 230, 0.04);
}

.rate-group h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.rate-group dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.rate-group dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.rate-group dt {
  color: var(--smoke);
}

.rate-group dd {
  margin: 0;
  color: var(--gold);
  font-weight: 900;
  text-align: right;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(22px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: #050404;
}

.site-footer p {
  max-width: 380px;
  color: var(--muted);
}

.footer-meta {
  display: grid;
  gap: 6px;
  text-align: right;
  color: var(--muted);
}

.footer-meta a {
  color: var(--gold);
  transition: all 300ms ease;
  position: relative;
  display: inline-block;
}

.footer-meta a:hover,
.footer-meta a.hover {
  color: var(--copper-2);
  transform: translateY(-2px);
}

.footer-meta a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 300ms ease;
}

.footer-meta a:hover::after,
.footer-meta a.hover::after {
  width: 100%;
}

.services-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;  /* Gives nice spacing between the menu and the button */
  width: 100%;
}

.quick-actions {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 25;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.quick-actions a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 7, 6, 0.82);
  color: var(--paper);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.quick-actions a:hover,
.quick-actions a.hover {
  border-color: var(--line-strong);
  color: var(--gold);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
  background: rgba(8, 7, 6, 0.88);
}

.quick-actions a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.quick-actions a:hover::before,
.quick-actions a.hover::before {
  left: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(2),
.insta-card:nth-child(2) {
  transition-delay: 90ms;
}

.service-card:nth-child(3),
.insta-card:nth-child(3) {
  transition-delay: 180ms;
}

.service-card:nth-child(4),
.insta-card:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes heroDrift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-18px, -10px, 0);
  }
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes sparkleShift {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

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

@media (max-width: 1120px) {
  .site-nav {
    gap: 14px;
    letter-spacing: 0.16em;
  }

  .site-nav .nav-pill {
    display: none;
  }

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

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
  }
}

@media (max-width: 880px) {
  .site-header {
    top: 12px;
    left: 12px;
    right: 12px;
    min-height: 62px;
    padding: 8px 8px 8px 14px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 7, 6, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .nav-pill,
  .site-nav .nav-cta {
    display: inline-flex;
    justify-content: center;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-status {
    position: relative;
    top: auto;
    right: auto;
    width: fit-content;
    margin-bottom: 24px;
  }

  .section-heading,
  .booking,
  .contact,
  .about {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .stats,
  .booking-form,
  .rate-groups,
  .menu-panel {
    grid-template-columns: 1fr;
  }

  .menu-board {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-tab {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text small {
    display: none;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 6rem);
  }

  h2 {
    font-size: clamp(2.5rem, 14vw, 4.4rem);
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 20px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-status {
    width: 100%;
    justify-content: center;
    padding-inline: 14px;
    letter-spacing: 0.18em;
  }

  .hero-panel {
    margin-bottom: 72px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 430px;
  }

  .menu-tabs {
    grid-template-columns: 1fr;
  }

  .menu-panel article {
    grid-template-columns: 1fr;
  }

  .gallery-track {
    grid-auto-columns: minmax(270px, 82vw);
  }

  .site-footer {
    display: grid;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }

  .quick-actions {
    display: grid;
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    top: auto;
    transform: none;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, visibility 160ms ease;
  background: rgba(10, 9, 8, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-image {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  object-fit: contain;
  transition: transform 160ms ease;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  cursor: pointer;
  transition: all 160ms ease;
  z-index: 10;
}

.lightbox-nav:hover,
.lightbox-nav.hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-nav.lightbox-prev {
  left: 20px;
}

.lightbox-nav.lightbox-next {
  right: 20px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  cursor: pointer;
  transition: all 160ms ease;
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-close.hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-close:active {
  transform: scale(0.95);
}

.gallery-link {
  display: inline-block;
  cursor: pointer;
  transition: transform 160ms ease;
}

.gallery-link:hover,
.gallery-link.hover {
  transform: scale(1.05);
}

.gallery-link:active {
  transform: scale(0.95);
}

/* Touch/swipe support for mobile */
@media (pointer: coarse) {
  .lightbox-content {
    touch-action: pan-y; /* Allow vertical scrolling if needed */
  }
}

