/* =========================================================
   Piękna Ty — Premium Beauty Salon · Awwwards-level
   ========================================================= */

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

:root {
  --cream:    #f9f5f0;
  --cream-2:  #f2ece3;
  --gold:     #c9a96e;
  --gold-lt:  #e8d5b0;
  --charcoal: #1c1a18;
  --mid:      #5a5550;
  --muted:    #9a948c;
  --white:    #ffffff;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --ease:     cubic-bezier(.25,.1,.25,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.76,0,.24,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── GRAIN OVERLAY ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  pointer-events: all;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(12px);
}
.loader-crown { color: var(--gold); font-size: 1.2rem; }

.loader-bar {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
  opacity: 0;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width .05s linear;
}

.loader-wipe {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform-origin: left;
  transform: scaleX(0);
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 8999;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform .1s var(--ease), width .25s var(--ease), height .25s var(--ease);
}
.cursor-ring {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease-out), width .35s var(--ease), height .35s var(--ease), opacity .3s;
  will-change: transform;
}

.cursor.is-hovering .cursor-dot { width: 0; height: 0; }
.cursor.is-hovering .cursor-ring { width: 56px; height: 56px; opacity: .7; }
.cursor.is-clicking .cursor-ring { width: 28px; height: 28px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
h2 { font-size: clamp(2.4rem, 4vw, 3.6rem); color: var(--charcoal); }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }
p  { font-size: 0.95rem; line-height: 1.75; color: var(--mid); }
em { font-style: italic; }
sup { font-size: 0.55em; vertical-align: super; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow.light { color: var(--gold-lt); }

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-head h2 { margin-top: 0.5rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .35s var(--ease), transform .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-in-out);
  z-index: 0;
}
.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary span, .btn-primary:not(:has(span)) { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--white); }

.btn-ghost {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color .3s, background .3s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .3s, color .3s;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
#nav.scrolled {
  background: rgba(249,245,240,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  transition: color .3s;
  letter-spacing: 0.02em;
}
#nav.scrolled .logo { color: var(--charcoal); }

.logo-crown {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .25s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-in-out);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
#nav.scrolled .nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--gold) !important; }

.nav-cta {
  padding: 9px 22px !important;
  border: 1px solid rgba(255,255,255,.45) !important;
  color: var(--white) !important;
  transition: border-color .25s, background .25s !important;
}
.nav-cta:hover { border-color: var(--gold) !important; background: var(--gold) !important; color: var(--white) !important; }
#nav.scrolled .nav-cta { border-color: var(--charcoal) !important; color: var(--charcoal) !important; }
#nav.scrolled .nav-cta:hover { background: var(--charcoal) !important; color: var(--white) !important; border-color: var(--charcoal) !important; }

.burger { display: none; flex-direction: column; gap: 6px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: background .3s, transform .3s, opacity .3s; }
#nav.scrolled .burger span { background: var(--charcoal); }
.burger.open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:last-child  { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 40px 24px;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,.06);
  gap: 4px;
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mm-cta { color: var(--gold) !important; font-weight: 500; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,7,4,.6) 0%,
    rgba(10,7,4,.25) 50%,
    rgba(10,7,4,.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.8rem;
  opacity: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.6rem;
  opacity: 0;
  overflow: hidden;
}
.hero-title .word {
  display: inline-block;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin-bottom: 2.8rem;
  font-weight: 300;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.45);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: .5; }
  50%       { transform: scaleY(0.7) translateY(6px); opacity: 1; }
}

.br-d { display: inline; }

/* ── TICKER ── */
.ticker {
  background: var(--charcoal);
  overflow: hidden;
  padding: 15px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 40s linear infinite;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.ticker-track span { margin-right: 4px; }
.ticker-track .sep { color: var(--gold); margin: 0 14px 0 4px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about {
  padding: 140px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.about-img-inner {
  width: 100%; height: 100%;
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.05);
  transition: transform 6s var(--ease-out);
}
.about-img-wrap:hover .about-img { transform: scale(1); }

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--charcoal);
  color: var(--white);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 140px;
}
.about-badge strong {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
}
.about-badge sup {
  font-family: var(--serif);
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--gold-lt);
}
.about-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: center;
}

.about-copy h2 { margin: 0.5rem 0 1.5rem; }
.about-copy p  { margin-bottom: 1rem; }

.about-stats {
  display: flex;
  gap: 36px;
  margin: 2.5rem 0 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.stat sup { font-family: var(--serif); font-size: 1rem; }
.stat span {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SERVICES ── */
.services {
  padding: 140px 0;
  background: var(--cream);
}

.tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 60px;
  border: 1px solid rgba(0,0,0,.1);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab {
  padding: 13px 30px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border-right: 1px solid rgba(0,0,0,.1);
  transition: background .25s, color .25s;
}
.tab:last-child { border-right: none; }
.tab:hover { color: var(--charcoal); }
.tab.active { background: var(--charcoal); color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.08);
}

.svc {
  background: var(--cream);
  padding: 44px 36px;
  transition: background .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .4s var(--ease-in-out);
}
.svc:hover::before { width: 100%; }
.svc:hover { background: var(--white); }
.svc.hidden { display: none; }

.svc-num {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.svc h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.svc p { font-size: 0.87rem; line-height: 1.65; color: var(--mid); }
.svc-arrow {
  position: absolute;
  bottom: 20px; right: 24px;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.svc:hover .svc-arrow { opacity: 1; transform: translateX(0); }

.svc-cta {
  text-align: center;
  margin-top: 52px;
}

/* ── GALLERY ── */
.gallery {
  padding: 140px 0 80px;
  background: var(--charcoal);
}
.gallery .eyebrow { color: var(--gold); }
.gallery h2 { color: var(--white); }
.gallery h2 em { color: var(--gold-lt); }

.gallery-reel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 40px 24px;
  margin-top: 0;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-reel:active { cursor: grabbing; }
.gallery-reel::-webkit-scrollbar { display: none; }

.gc {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.gc--sq   { width: 340px; height: 420px; }
.gc--tall { width: 300px; height: 500px; }
.gc--wide { width: 500px; height: 340px; }

.gc-img-wrap {
  width: 100%; height: 100%;
  overflow: hidden;
}
.gc img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .7s var(--ease-out);
}
.gc:hover img { transform: scale(1.06); }

.gc figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transform: translateY(4px);
  transition: transform .3s, opacity .3s;
  opacity: 0;
}
.gc:hover figcaption { opacity: 1; transform: translateY(0); }

.gallery-ig {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 44px;
}
.gallery-ig p { color: rgba(255,255,255,.4); font-size: 0.85rem; }
.ig-link {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-lt);
  transition: color .25s;
}
.ig-link:hover { color: var(--white); }

/* ── TRUST ── */
.trust {
  padding: 110px 0;
  background: var(--cream-2);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.pillar { text-align: center; }
.pillar-icon {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
  letter-spacing: 0.2em;
}
.pillar h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.pillar p { font-size: 0.87rem; }

/* ── REVIEWS ── */
.reviews {
  padding: 140px 0;
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: var(--cream);
  padding: 44px 36px;
  border-left: 2px solid var(--gold);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
}
.stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.review p {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.review cite {
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CONTACT ── */
.contact {
  position: relative;
  padding: 140px 0;
  background: var(--charcoal);
}
.contact-bg-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.contact-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .18;
  filter: grayscale(50%);
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  opacity: .84;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { color: var(--white); margin: 0.5rem 0 1.5rem; }
.contact-info h2 em { color: var(--gold-lt); }
.contact-info > p { color: rgba(255,255,255,.55); margin-bottom: 2.5rem; }

.cinfo-list { display: flex; flex-direction: column; gap: 0; }
.cinfo-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  gap: 16px;
}
.cinfo-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.cinfo-val {
  font-size: 0.88rem;
  color: var(--white);
  text-align: right;
  transition: color .2s;
}
a.cinfo-val:hover { color: var(--gold-lt); }

/* ── FORM ── */
.contact-form {
  background: var(--white);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.opt { font-weight: 400; text-transform: none; color: var(--muted); letter-spacing: 0; }

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(0,0,0,.12);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .25s, background .25s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--gold); background: var(--white); }
.fg textarea { resize: vertical; min-height: 100px; }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a948c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--cream);
  padding-right: 36px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 24px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .3s;
  cursor: none;
  border: none;
}
.btn-submit:hover { background: var(--gold); }
.btn-arr { font-size: 1.1rem; transition: transform .3s; }
.btn-submit:hover .btn-arr { transform: translateX(5px); }

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

.form-success {
  padding: 14px 20px;
  background: #eaf3de;
  color: #3b6d11;
  font-size: 0.85rem;
  font-weight: 500;
}
.hidden { display: none !important; }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo { color: var(--white); }
.footer-brand p { font-size: 0.7rem; color: rgba(255,255,255,.3); letter-spacing: 0.08em; }

.footer-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,.22);
  text-align: right;
}

/* ── REVEAL ANIMATIONS (initial state) ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: transform, opacity;
}
.reveal-up    { transform: translateY(44px); }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid    { gap: 60px; }
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .contact-grid  { gap: 52px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 3/2; max-width: 520px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; text-align: center; }
  .footer-copy   { text-align: center; }
  .footer-brand  { align-items: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger    { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 32px 24px; }
  .tabs { flex-direction: column; width: 100%; }
  .tab  { border-right: none; border-bottom: 1px solid rgba(0,0,0,.1); }
  .tab:last-child { border-bottom: none; }
  .gallery-reel { padding: 0 24px 20px; }
  .gallery-ig   { flex-direction: column; gap: 14px; text-align: center; }
  .br-d { display: none; }
  body { cursor: auto; }
  .cursor { display: none; }
  button { cursor: pointer; }
  .btn-submit { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats  { flex-direction: column; gap: 20px; }
  .trust-grid   { grid-template-columns: 1fr; }
  .about-badge  { right: 0; bottom: -16px; }
}
