:root {
  --bg: #0d0d0f;
  --bg-soft: #141418;
  --surface: #1b1b20;
  --surface-2: #111216;
  --text: #f5f5f2;
  --muted: #c9c6bf;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #ad8330;
  --gold-soft: #ad833037;
  --silver: #c0c0c0;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --container: min(1180px, calc(100% - 32px));
  --nav-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #0d0d0f 0%, #111216 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

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

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

video {
  display: block;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tight {
  padding-top: 80px;
}

.dark-section {
  background-image: url('/images/bg2.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #fff;
}
.dark-section h2{
  color: #0a0a0d;
}
.section-kicker,
.footer-kicker,
.hero-est {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

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

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}
.btn-block {
  width: 100%;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}


.site-header.scrolled,
.site-header:hover {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}


.topbar {
  font-size: 0.82rem;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled .topbar,
.site-header:hover .topbar {
  background: rgba(0, 0, 0, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}


.topbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.navbar-wrap {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.25s ease;
}



.navbar {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  position: relative;
  z-index: 1002;
  min-width: 0;
}

.brand-mark {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.15rem;
  font-family: Georgia, "Times New Roman", serif;
}

.brand-copy small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 30px);
  justify-self: center;
}

.nav-links a,
.nav-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  padding: 10px 0;
  transition: color 0.25s ease;
}

.nav-links a::after,
.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    #c9a227 18%,
    #e9e9e9 50%,
    #c9a227 82%,
    rgba(255,255,255,0) 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a.active:not(.nav-cta)::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  justify-self: end;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.28), rgba(255, 255, 255, 0.12));
  border-color: rgba(201, 162, 39, 0.45);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}



.nav-menu {
  display: none;
}



.site-header.scrolled .navbar-wrap,
.site-header:hover .navbar-wrap {
  background-color: rgba(0, 0, 0, 0.82);
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.22) 0%, rgba(7, 7, 8, 0.38) 68%, rgba(7, 7, 8, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
  padding-top: 200px;
}

.hero h1 span {
  display: block;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--silver);
}

.hero-copy {
  max-width: 760px;
  font-size: 1.1rem;
}

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

.gold-ribbon {
  position: relative;
  background: linear-gradient(90deg, #be9430 0%, #f4e0a0 50%, #be9430 100%);
  color: #111;
  overflow: hidden;
  min-height: 58px;
  display: flex;
  align-items: center;
}

.gold-ribbon-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  padding: 0 24px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  will-change: transform;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.info-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.info-cluster a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.image-stack {
  position: relative;
  min-height: 700px;
}

.stack-card {
  position: absolute;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stack-card.tall {
  inset: 0 110px 50px 0;
}

.stack-card.small {
  width: 260px;
  height: 210px;
  right: 0;
  bottom: 0;
}
.stack-card.round {
  width: 260px;
  height: 260px;
  border-radius: 999px;
}

.stack-badge {
  position: absolute;
  top: 28px;
  right: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(13, 13, 15, 0.82);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

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

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

.photo-card {
  position: relative;
  min-height: 40vh;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.photo-card-bg,
.photo-card-overlay {
  position: absolute;
  inset: 0;
}

.photo-card-bg {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.photo-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.photo-card:hover .photo-card-overlay {
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.12) 0%, rgba(0, 0, 0, 0.9) 60%);
}
.photo-card-content {
  position: relative;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.photo-card:hover .photo-card-bg {
  transform: scale(1.1);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.service-teaser {
  margin-bottom: 0;
}

.hover-copy {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.photo-card:hover .hover-copy {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
}

.section-cta {
  margin-top: 34px;
}

.parallax-panel {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.parallax-panel.slim {
  min-height: 54vh;
}

.parallax-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.42) 0%, rgba(10, 10, 12, 0.84) 100%);
}

.parallax-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

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

.highlight-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.highlight-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 8px;
  font-family: Georgia, 'Times New Roman', serif;
}

.stack-showcase-card {
  min-height: 460px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.portrait-card{
  min-height: 460px;
  background-size: cover;
  background-position: center;
}


.portrait-large {
  min-height: 580px;
    background-size: contain;
    background-repeat: no-repeat;

}

.reviews-section {
  overflow: hidden;
}

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

.review-card {
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0), rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
  color: #fff;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

.review-stars {
  color: var(--gold);
  margin-bottom: 14px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
}

.compact-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.large-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.05) 0%, rgba(10, 10, 12, 0.88) 100%);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.gallery-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-caption small {
  color: rgba(255, 255, 255, 0.74);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0 20px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--gold);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: '-';
}

.faq-list details p {
  padding-bottom: 18px;
}

.cta-banner-inner {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 26px;
  padding: 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page-hero {
  min-height: 58vh;
  display: grid;
  place-items: center;
  position: relative;
  background-image: var(--page-hero);
  background-position: center;
  background-size: cover;
  padding-top: 160px;
}

.page-hero-content {
  padding: 40px 0 70px;
}

.check-list {
  list-style: disc;
  padding-left: 20px;
  margin: 24px 0 0;
}

.check-list li {
  margin-bottom: 12px;
}
.check-list i {
  color: var(--gold);
  margin-top: 5px;
}

.stack-showcase {
  position: relative;
  min-height: 520px;
}

.stack-showcase-card {
  position: absolute;
}

.stack-showcase-card.large {
  inset: 0 90px 70px 0;
}

.stack-showcase-card.small {
  width: 280px;
  min-height: 220px;
  bottom: 0 !important;
  right: 0 !important;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.contact-panel,
.contact-form-card,
.legal-copy,
.not-found-section .container {
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list,
.footer-list,
.opening-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li,
.footer-list li,
.opening-card li {
  display: flex;
  gap: 12px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-list i,
.footer-list i {
  color: var(--gold);
  margin-top: 4px;
}

.opening-card {
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.opening-card ul {
  display: grid;
  gap: 14px;
}

.opening-card li {
  justify-content: space-between;
  gap: 24px;
}

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

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

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--white);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

select option {
  color: #111;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

textarea {
  resize: vertical;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 600;
}

.form-status.success {
  background: rgba(43, 143, 79, 0.16);
  border: 1px solid rgba(61, 187, 106, 0.36);
  color: #c8f4d6;
}

.form-status.error {
  background: rgba(159, 42, 42, 0.16);
  border: 1px solid rgba(226, 89, 89, 0.32);
  color: #ffd2d2;
}

.legal-copy {
  max-width: 920px;
}

.legal-copy h2,
.legal-copy h3 {
  margin-top: 24px;
}
.site-footer {
  padding: 72px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand h3 {
  margin: 0;
}

.footer-brand > p:last-of-type {
  max-width: 460px;
}

.footer-kicker {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.footer-title {
  margin: 0 0 8px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.footer-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-list li i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-links li {
  display: block;
}

.footer-links a,
.footer-bottom a,
.credits-link {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-links a:hover,
.footer-bottom a:hover,
.credits-link:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(201, 162, 39, 0.08);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-tag {
  margin-top: 20px;
  padding-top: 18px;
  text-align: center;
}

.footer-credits-text {
  margin: 0;
}

.credits-link {
  color: var(--gold);
  text-decoration: none;
}

.credits-link i {
  color: var(--gold);
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-brand > p:last-of-type {
    max-width: 100%;
  }

  .footer-list,
  .footer-links {
    justify-items: center;
  }

  .footer-list li {
    justify-content: center;
    text-align: center;
    max-width: 420px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 60px 0 22px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-list li {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-list li i {
    margin-top: 0;
  }

  .footer-socials a {
    width: 44px;
    height: 44px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1001;
  font-size: 1.8rem;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #8ef4aa);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.not-found-section {
  min-height: 75vh;
  display: grid;
  place-items: center;
  padding-top: 180px;
}

@media (max-width: 1200px) {
  .full-grid,
  .review-grid,
  .large-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .compact-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
 @media (max-width: 980px) {
  :root {
    --nav-height: 78px;
  }

  .topbar span{
    display: none;
  }

  .navbar {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 1003;
  }

  .nav-toggle i {
    font-size: 1rem;
    transition: transform 0.25s ease;
  }

  .nav-open .nav-toggle i {
    transform: rotate(90deg);
  }

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

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 78px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 32px 24px 40px;
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
  }

  .nav-open .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
  }

  .nav-menu .nav-cta {
    margin-top: 10px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .split-layout,
  .faq-layout,
  .contact-grid,
  .footer-grid,
  .highlights-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .image-stack,
  .stack-showcase {
    min-height: 420px;
  }

  .stack-card.tall,
  .stack-showcase-card.large {
    inset: 0 80px 50px 0;
  }

  .cta-banner-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .parallax-panel,
  .page-hero {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  .brand-copy {
    display: none;
  }

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

  .nav-menu a {
    font-size: 1.05rem;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 80px 0;
  }

  .hero-content {
    padding-bottom: 90px;
    padding-top: 160px;
  }

  .hero-tagline {
    letter-spacing: 0.18em;
  }

  .form-row.two-cols,
  .info-cluster,
  .contact-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .service-grid,
  .compact-gallery,
  .large-gallery,
  .full-grid {
    grid-template-columns: 1fr;
  }

  .stack-card.tall,
  .stack-showcase-card.large {
    inset: 0 30px 30px 0;
  }

  .stack-showcase-card.small {
    width: 150px;
    min-height: 150px;
    bottom: -70px !important;
    right: 0 !important;
  }

  .contact-panel,
  .contact-form-card,
  .legal-copy,
  .not-found-section .container,
  .cta-banner-inner,
  .highlight-card,
  .review-card {
    padding: 24px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }
}



html, body {
  overflow-x: hidden;
  max-width: 100%;
}





.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

.services-page-card {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  align-items: stretch;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 0;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.services-page-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.services-page-media {
  min-height: 460px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}


.services-page-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.services-page-label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.services-page-body h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
}

.services-page-teaser {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
}

.services-page-detail {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .services-page-card {
    grid-template-columns: 1fr;
  }

  .services-page-media {
    min-height: 320px;
  }

  .services-page-body {
    padding: 24px 22px;
  }
}

@media (max-width: 640px) {
  .services-page-grid {
    gap: 18px;
  }

  .services-page-media {
    min-height: 300px;
  }

  .services-page-body h3 {
    font-size: 1.3rem;
  }
}



.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  width: min(760px, 100%);
  margin-left: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) - 6px);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.cookie-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cookie-banner__badge {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-soft), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(173, 131, 48, 0.28);
  color: var(--gold);
  font-size: 1.05rem;
}

.cookie-banner__text {
  min-width: 0;
}

.cookie-banner__title {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cookie-banner__description {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner__description a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__description a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.cookie-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
}

.cookie-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-btn--primary {
  background: linear-gradient(135deg, var(--gold), #c79a3e);
  color: #111;
  box-shadow: 0 10px 30px rgba(173, 131, 48, 0.24);
}

.cookie-btn--primary:hover {
  box-shadow: 0 14px 34px rgba(173, 131, 48, 0.32);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner {
    padding: 16px;
    border-radius: 22px;
  }

  .cookie-banner__content {
    gap: 12px;
  }

  .cookie-banner__badge {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
  }

  .cookie-banner__title {
    font-size: 0.96rem;
  }

  .cookie-banner__description {
    font-size: 0.92rem;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .cookie-btn {
    width: 100%;
  }
}


@media (max-width: 768px) {
  h1 {
    font-size: clamp(2rem, 10vw, 3.6rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.6rem);
    line-height: 1.08;
  }

  h3 {
    font-size: clamp(1rem, 4.2vw, 1.25rem);
    line-height: 1.2;
  }

  .page-hero-content {
    width: 100% !important;
  }

}


@media (max-width: 480px) {
  h1 {
    font-size: clamp(1rem, 10vw, 1.8rem);
  }

  h2 {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }

  h3 {
    font-size: 1rem;
  }

  .page-hero {
    min-height: 42vh;
    padding-top: 108px;
  }

}

.salon-note {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}


/* Button reset / final override */
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  appearance: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

a.btn:hover,
button.btn:hover {
  transform: translateY(-2px);
}

/* Stronger selector so this beats generic .btn or framework rules */
a.btn.btn-primary,
button.btn.btn-primary {
  background-color: var(--gold) !important;
  background-image: linear-gradient(135deg, var(--gold), #f2d37b) !important;
  color: #101010 !important;
  border-color: rgba(242, 211, 123, 0.65) !important;
  box-shadow: 0 12px 30px rgba(173, 131, 48, 0.28);
}

a.btn.btn-primary:hover,
button.btn.btn-primary:hover {
  background-color: #f2d37b !important;
  background-image: linear-gradient(135deg, #f2d37b, var(--gold)) !important;
  color: #101010 !important;
  border-color: rgba(242, 211, 123, 0.85) !important;
  box-shadow: 0 16px 36px #ad83305c;
}

a.btn.btn-secondary,
button.btn.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

a.btn.btn-secondary:hover,
button.btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

a.btn.btn-tertiary,
button.btn.btn-tertiary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 0, 0, 0.18);
  color: #101010;
}

a.btn.btn-tertiary:hover,
button.btn.btn-tertiary:hover {
  background: #fff;
  color: #101010;
}

.premium-gradient-text {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8e7b0 18%,
    #d6a94a 38%,
    #fff7d6 52%,
    #ad8330 72%,
    #ffffff 100%
  );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  text-shadow: 0 8px 30px rgba(173, 131, 48, 0.28);
}