:root {
   --black: #191919;
   --ink: #101010;
   --panel: #1f1f1f;
   --panel-soft: #252525;
   --panel-glass: rgba(25, 25, 25, 0.82);
   --text: #f7eee8;
   --muted: #d0c4ad;
   --muted-2: #a99b82;
   --gold: #C7A317;
   --gold-soft: #ead06b;
   --gold-deep: #8e740e;
   --line: rgba(199, 163, 23, 0.28);
   --line-soft: rgba(255, 255, 255, 0.09);
   --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
   --radius: 8px;
}

* {
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
   margin: 0;
   color: var(--text);
   background: var(--black);
   font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
   font-size: 16px;
   line-height: 1.65;
}

body::before {
   content: "";
   position: fixed;
   inset: 0;
   z-index: -2;
   background:
      radial-gradient(circle at 18% 8%, rgba(199, 163, 23, 0.12), transparent 34%),
      radial-gradient(circle at 92% 4%, rgba(234, 208, 107, 0.10), transparent 32%),
      linear-gradient(135deg, #191919 0%, #101010 48%, #191919 100%);
}

body::after {
   content: "";
   position: fixed;
   inset: 0;
   z-index: -1;
   opacity: 0.18;
   background-image:
      linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
   background-size: 54px 54px;
   mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

img {
   max-width: 100%;
   height: auto;
   display: block;
}

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

button {
   font: inherit;
}

.skip-link {
   position: absolute;
   left: 1rem;
   top: -4rem;
   z-index: 50;
   padding: 0.75rem 1rem;
   border-radius: 999px;
   background: var(--gold);
   color: var(--black);
   font-weight: 800;
}

.skip-link:focus {
   top: 1rem;
}

.site-header {
   position: sticky;
   top: 0;
   z-index: 30;
   background: rgba(25, 25, 25, 0.72);
   border-bottom: 1px solid var(--line-soft);
   backdrop-filter: blur(18px);
}

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

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

.brand-mark {
   width: 48px;
   height: 48px;
   display: grid;
   place-items: center;
   border: 1px solid var(--line);
   border-radius: 50%;
   background: radial-gradient(circle, rgba(199,163,23,0.18), rgba(255,255,255,0.04));
   box-shadow: 0 12px 30px rgba(199, 163, 23, 0.13);
}

.brand-mark img {
   width: 30px;
   height: 30px;
   object-fit: contain;
}

.brand strong,
.site-footer strong {
   display: block;
   color: #fff;
   font-size: 1.04rem;
   line-height: 1.1;
   letter-spacing: 0;
}

.brand small {
   display: block;
   color: var(--gold-soft);
   font-size: 0.76rem;
   letter-spacing: 0;
   text-transform: uppercase;
}

.nav-toggle {
   display: none;
   align-items: center;
   gap: 8px;
   border: 1px solid var(--line);
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.05);
   color: #fff;
   padding: 10px 14px;
}

.nav-links {
   display: flex;
   align-items: center;
   gap: 8px;
}

.nav-links a {
   border-radius: 999px;
   color: var(--text);
   font-size: 0.94rem;
   font-weight: 800;
   padding: 10px 14px;
}

.nav-links a:hover {
   background: rgba(255, 255, 255, 0.08);
   color: var(--gold-soft);
}

.nav-links .nav-phone {
   border: 1px solid var(--gold);
   background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
   color: #130e0b;
   box-shadow: 0 12px 26px rgba(199, 163, 23, 0.18);
}

.hero {
   width: min(1180px, calc(100% - 32px));
   min-height: calc(100vh - 76px);
   margin: 0 auto;
   padding: 68px 0 44px;
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
   gap: 46px;
   align-items: center;
}

.hero-content {
   max-width: 720px;
}

.eyebrow,
.card-kicker {
   margin: 0 0 12px;
   color: var(--gold-soft);
   font-size: 0.76rem;
   font-weight: 900;
   letter-spacing: 0;
   text-transform: uppercase;
}

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

h1 {
   margin-bottom: 20px;
   color: #fff;
   font-family: Georgia, "Times New Roman", serif;
   font-size: 6.2rem;
   line-height: 0.96;
   font-weight: 700;
   letter-spacing: 0;
}

h2 {
   margin-bottom: 18px;
   color: #fff;
   font-family: Georgia, "Times New Roman", serif;
   font-size: 4rem;
   line-height: 1.02;
   font-weight: 700;
   letter-spacing: 0;
}

h3 {
   color: #fff;
   font-size: 1.18rem;
   line-height: 1.25;
   font-weight: 900;
}

.hero-copy {
   max-width: 650px;
   color: var(--muted);
   font-size: 1.25rem;
}

.hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin: 30px 0 24px;
}

.btn-primary,
.btn-secondary {
   min-height: 54px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 999px;
   padding: 14px 23px;
   font-weight: 900;
   transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
   background: linear-gradient(135deg, var(--gold-soft), var(--gold) 48%, var(--gold-deep));
   color: #130e0b;
   box-shadow: 0 18px 34px rgba(199, 163, 23, 0.22);
}

.btn-primary:hover,
.btn-secondary:hover {
   transform: translateY(-2px);
}

.btn-secondary {
   border: 1px solid var(--line);
   background: rgba(255, 255, 255, 0.05);
   color: #fff;
}

.hero-proof {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   color: #fff;
   font-weight: 800;
}

.hero-proof span {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   border: 1px solid var(--line-soft);
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.05);
   padding: 9px 12px;
}

.hero-proof i {
   color: var(--gold);
}

.hero-media {
   position: relative;
   min-height: 560px;
   overflow: hidden;
   border: 1px solid var(--line);
   border-radius: var(--radius);
   background: var(--ink);
   box-shadow: var(--shadow);
   isolation: isolate;
}

.hero-media::before {
   content: "";
   position: absolute;
   inset: 0;
   z-index: 1;
   background:
      linear-gradient(180deg, rgba(25,25,25,0.08), rgba(25,25,25,0.72)),
      radial-gradient(circle at 72% 12%, rgba(199,163,23,0.22), transparent 36%);
}

.hero-media::after {
   content: "Škorpion Beauty";
   position: absolute;
   left: 28px;
   bottom: 24px;
   z-index: 2;
   color: rgba(255, 255, 255, 0.72);
   font-family: Georgia, "Times New Roman", serif;
   font-size: 2rem;
   letter-spacing: 0;
}

.hero-media img {
   width: 100%;
   height: 100%;
   min-height: 560px;
   object-fit: cover;
   filter: saturate(0.96) contrast(1.06);
}

.trust-strip {
   width: min(1180px, calc(100% - 32px));
   margin: 0 auto 28px;
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   border: 1px solid var(--line-soft);
   border-radius: var(--radius);
   background: rgba(255, 255, 255, 0.045);
   box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
   overflow: hidden;
}

.trust-strip div {
   padding: 22px;
}

.trust-strip div + div {
   border-left: 1px solid var(--line-soft);
}

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

.trust-strip strong {
   color: #fff;
}

.trust-strip span {
   color: var(--muted-2);
   font-size: 0.94rem;
}

.section {
   width: min(1180px, calc(100% - 32px));
   margin: 0 auto;
   padding: 92px 0;
}

.section-grid,
.contact-layout {
   display: grid;
   grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
   gap: 46px;
   align-items: center;
}

.image-panel,
.map-panel,
.treatment-card,
.faq-grid article {
   overflow: hidden;
   border: 1px solid var(--line-soft);
   border-radius: var(--radius);
   background: rgba(255, 255, 255, 0.05);
   box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.image-stack {
   display: grid;
   grid-template-columns: 0.9fr 1.1fr;
   gap: 10px;
   padding: 10px;
   background: linear-gradient(135deg, rgba(199,163,23,0.16), rgba(255,255,255,0.04));
}

.image-stack img {
   width: 100%;
   height: 420px;
   object-fit: cover;
   border-radius: var(--radius);
}

.image-stack img:first-child {
   object-fit: contain;
   background: #f7f0e8;
   padding: 22px;
}

.text-panel {
   border-left: 1px solid var(--line);
   padding-left: 32px;
}

.text-panel p,
.section-heading p,
.treatment-card p,
.faq-grid p,
.contact-copy > p:not(.eyebrow) {
   color: var(--muted);
}

.check-list {
   display: grid;
   gap: 10px;
   margin: 24px 0 0;
   padding: 0;
   list-style: none;
}

.check-list li {
   position: relative;
   padding-left: 30px;
   color: #fff;
   font-weight: 700;
}

.check-list li::before {
   content: "\2713";
   position: absolute;
   left: 0;
   top: 0;
   color: var(--gold);
   font-weight: 900;
}

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

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

.treatment-card {
   display: grid;
   transition: transform 0.18s ease, border-color 0.18s ease;
}

.treatment-card:hover {
   transform: translateY(-4px);
   border-color: rgba(199, 163, 23, 0.42);
}

.treatment-card img {
   width: 100%;
   aspect-ratio: 4 / 3;
   object-fit: cover;
   filter: saturate(0.9) contrast(1.04) brightness(0.86);
}

.treatment-card div {
   padding: 24px;
}

.treatment-card p {
   margin-bottom: 0;
}

.card-kicker {
   display: block;
   margin-bottom: 8px;
   letter-spacing: 0;
}

.service-list {
   margin-top: 22px;
   border: 1px solid var(--line-soft);
   border-radius: var(--radius);
   background: rgba(255, 255, 255, 0.045);
   overflow: hidden;
}

.service-item {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   border: 0;
   border-bottom: 1px solid var(--line-soft);
   background: transparent;
   color: #fff;
   padding: 19px 22px;
   text-align: left;
   font-weight: 900;
   cursor: pointer;
}

.service-item i {
   color: var(--gold);
   transition: transform 0.2s ease;
}

.service-item[aria-expanded="true"] i {
   transform: rotate(45deg);
}

.service-content {
   display: none;
   border-bottom: 1px solid var(--line-soft);
   padding: 0 22px 20px;
   color: var(--muted);
}

.service-content.is-open {
   display: block;
}

.service-content p {
   margin: 0;
}

.quote-section {
   position: relative;
   overflow: hidden;
   border-block: 1px solid var(--line-soft);
   background:
      linear-gradient(135deg, rgba(25,25,25,0.9), rgba(16,16,16,0.94)),
      url('../images/bg.jpg') center / cover no-repeat;
   color: #fff;
   padding: 82px max(16px, calc((100% - 1180px) / 2));
   text-align: center;
}

.quote-section p {
   width: min(900px, calc(100% - 32px));
   margin: 0 auto 12px;
   font-family: Georgia, "Times New Roman", serif;
   font-size: 4rem;
   font-weight: 700;
   line-height: 1.06;
   letter-spacing: 0;
}

.quote-section span {
   color: var(--gold-soft);
   font-weight: 900;
   letter-spacing: 0;
   text-transform: uppercase;
}

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

.faq-grid article {
   padding: 24px;
}

.contact-section {
   padding-bottom: 108px;
}

.contact-layout {
   grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.contact-copy > p:not(.eyebrow) {
   max-width: 570px;
}

.contact-cards {
   display: grid;
   gap: 10px;
   margin: 26px 0;
}

.contact-cards a,
.hours-card {
   border: 1px solid var(--line-soft);
   border-radius: var(--radius);
   background: rgba(255, 255, 255, 0.05);
   color: #fff;
   box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.contact-cards a {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 15px 16px;
   font-weight: 900;
}

.contact-cards i {
   color: var(--gold);
}

.hours-card {
   padding: 22px;
}

.hours-card h3 {
   margin-bottom: 12px;
}

.hours-card dl,
.hours-card dd {
   margin: 0;
}

.hours-card dl {
   display: grid;
   gap: 8px;
}

.hours-card dl div {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
}

.hours-card dt {
   color: var(--muted);
}

.hours-card dd {
   color: #fff;
   font-weight: 900;
}

.map-panel iframe {
   width: 100%;
   min-height: 520px;
   display: block;
   border: 0;
   filter: grayscale(0.92) invert(0.9) contrast(0.88) brightness(0.82);
}

.site-footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   border-top: 1px solid var(--line-soft);
   background: #101010;
   color: var(--muted);
   padding: 28px max(16px, calc((100% - 1180px) / 2));
}

.site-footer strong {
   color: #fff;
}

.site-footer span {
   color: var(--muted-2);
}

.footer-links {
   display: flex;
   gap: 10px;
}

.footer-links a {
   width: 44px;
   height: 44px;
   display: grid;
   place-items: center;
   border: 1px solid var(--line-soft);
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.05);
   color: #fff;
}

.mobile-cta {
   display: none;
}

@media (max-width: 900px) {
   body {
      padding-bottom: 82px;
   }

   h1 {
      font-size: 4.5rem;
   }

   h2,
   .quote-section p {
      font-size: 3.1rem;
   }

   .hero-copy {
      font-size: 1.15rem;
   }

   .nav-shell {
      min-height: 68px;
   }

   .nav-toggle {
      display: inline-flex;
   }

   .nav-links {
      position: absolute;
      left: 16px;
      right: 16px;
      top: 76px;
      display: none;
      flex-direction: column;
      align-items: stretch;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(25, 25, 25, 0.98);
      padding: 10px;
      box-shadow: var(--shadow);
   }

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

   .nav-links a {
      padding: 13px 14px;
   }

   .hero,
   .section-grid,
   .contact-layout {
      grid-template-columns: 1fr;
   }

   .hero {
      min-height: 0;
      padding-top: 36px;
      gap: 30px;
   }

   .hero-media,
   .hero-media img {
      min-height: 430px;
   }

   .trust-strip,
   .treatment-grid,
   .faq-grid {
      grid-template-columns: 1fr;
   }

   .trust-strip div + div {
      border-left: 0;
      border-top: 1px solid var(--line-soft);
   }

   .section {
      padding: 66px 0;
   }

   .text-panel {
      border-left: 0;
      border-top: 1px solid var(--line);
      padding-left: 0;
      padding-top: 26px;
   }

   .contact-layout {
      gap: 28px;
   }

   .map-panel iframe {
      min-height: 380px;
   }

   .mobile-cta {
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 40;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      border: 1px solid rgba(199, 163, 23, 0.36);
      border-radius: 999px;
      background: rgba(25, 25, 25, 0.94);
      padding: 8px;
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
      backdrop-filter: blur(14px);
   }

   .mobile-cta a {
      min-height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      color: #fff;
      font-weight: 900;
   }

   .mobile-cta a:last-child {
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      color: var(--black);
   }
}

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

   .brand small {
      display: none;
   }

   .brand-mark {
      width: 42px;
      height: 42px;
   }

   h1 {
      font-size: 3.15rem;
   }

   h2,
   .quote-section p {
      font-size: 2.35rem;
   }

   .hero-copy {
      font-size: 1.05rem;
   }

   .hero,
   .section,
   .trust-strip {
      width: min(100% - 24px, 1180px);
   }

   .hero-actions {
      display: grid;
   }

   .btn-primary,
   .btn-secondary {
      width: 100%;
   }

   .hero-proof span,
   .contact-cards a,
   .hours-card dl div {
      align-items: flex-start;
      border-radius: var(--radius);
   }

   .hero-media,
   .hero-media img {
      min-height: 360px;
   }

   .hero-media {
      border-radius: var(--radius);
   }

   .image-stack {
      grid-template-columns: 1fr;
   }

   .image-stack img {
      height: 250px;
   }

   .treatment-card div,
   .service-item,
   .service-content,
   .faq-grid article {
      padding-left: 18px;
      padding-right: 18px;
   }

   .quote-section {
      padding-top: 58px;
      padding-bottom: 58px;
   }

   .site-footer {
      flex-direction: column;
      align-items: flex-start;
      padding-bottom: 100px;
   }
}
