:root {
  --bg: #f7f4ee;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.92);
  --text: #201b16;
  --muted: #6e6253;
  --gold: #c59a43;
  --gold-soft: #d8b86f;
  --gold-deep: #8f6c2f;
  --line: rgba(197, 154, 67, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(40, 27, 8, 0.08);
  --max: 1380px;
  --radius: 24px;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(197, 154, 67, 0.04), transparent 28%),
    linear-gradient(180deg, #fbf8f3 0%, #f5f1ea 42%, #faf7f2 100%);
  line-height: 1.72;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
  border-bottom: 1px solid transparent;
  background: rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(8px);
}
.topbar.scrolled,
.topbar.light {
  background: rgba(255, 252, 247, 0.9);
  backdrop-filter: blur(16px);
  border-color: rgba(197, 154, 67, 0.08);
  box-shadow: 0 8px 24px rgba(25, 18, 10, 0.04);
}

.nav {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  align-items: center;
  gap: 28px;

  color: rgba(255,255,255,0.94);
  font-size: .95rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
      width: 78px;
      height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(197, 154, 67, 0.12));
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
  color: rgba(255,255,255,0.96);
  transition: color .25s ease;
}
.topbar.scrolled .brand-copy,
.topbar.light .brand-copy { color: var(--text); }
.brand-copy strong {
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brand-copy span {
  font-size: .58rem;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color .25s ease;
}
.topbar.scrolled .brand-copy span,
.topbar.light .brand-copy span { color: rgba(143, 108, 47, 0.72); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.94);
  font-size: .95rem;
  transition: color .25s ease;
}
.topbar.scrolled .nav-links,
.topbar.light .nav-links { color: rgba(32, 27, 22, 0.92); }
.nav-links a {
  position: relative;
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  transition: color .22s ease, opacity .22s ease;
}
.nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease, background .22s ease;
}
.topbar.scrolled .nav-links a::after,
.topbar.light .nav-links a::after { background: linear-gradient(90deg, transparent, var(--gold-soft), transparent); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, #d8b86f 0%, #c59a43 60%, #aa8236 100%);
  box-shadow: 0 10px 24px rgba(197, 154, 67, 0.16);
}
.btn-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, #d8b86f 0%, #c59a43 60%, #aa8236 100%);
  box-shadow: 0 10px 24px rgba(197, 154, 67, 0.16);
}
.btn-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}
.nav-cta {
  background: rgba(255,255,255,0.94);
  color: #2b241d;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}
.topbar.scrolled .nav-cta,
.topbar.light .nav-cta {
  background: linear-gradient(135deg, #d8b86f 0%, #c59a43 60%, #aa8236 100%);
  color: #fff;
  border-color: transparent;
}
.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.topbar.scrolled .menu-btn,
.topbar.light .menu-btn {
  border-color: rgba(197, 154, 67, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}
.mobile-panel { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}
.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02) brightness(0.82);
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.10) 0%, rgba(16,11,7,0.16) 20%, rgba(16,11,7,0.38) 60%, rgba(16,11,7,0.56) 100%),
    radial-gradient(circle at center, rgba(197,154,67,0.04), transparent 42%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(248,245,239,0.94));
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 285px 0 110px;
}
.hero-copy {
  max-width: 1320px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-copy::before {
  content: '';
  width: 78px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.78), transparent);
  margin-bottom: 24px;
}
.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: .78rem;
  letter-spacing: .30em;
  text-transform: uppercase;
}
.eyebrow { color: rgba(255, 244, 220, 0.9); }
.section-label { color: var(--gold); }

h1, h2, h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.hero h1 {
  font-family: 'Caveat', cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2.9rem, 4.5vw, 5rem);
  color: #fff8ed;
  text-shadow: 0 10px 40px rgba(0,0,0,0.30);
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}
.hero p {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  color: rgba(255, 245, 224, 0.92);
  text-align: center;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  align-items: center;
  width: 100%;
}

.page-hero {
  position: relative;
  padding: 190px 0 90px;
  background:
    linear-gradient(180deg, rgba(25,18,10,0.74), rgba(25,18,10,0.60)),
    url('../images/hero-poster.jpg') center/cover no-repeat;
  color: #fff8ed;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 18px;
  color: #fff8ed;
}
.page-hero p {
  max-width: 760px;
  color: rgba(255,245,224,0.9);
  font-size: 1.08rem;
}

section { position: relative; padding: 110px 0; }
.grid-2 {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 44px;
  align-items: start;
}
.section-title {
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
  margin-bottom: 20px;
  color: #241d16;
}
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 66ch;
}
.glass-card,
.question-card,
.service-card,
.form-card,
.footer-card,
.stat-card,
.info-card,
.story-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.side-copy,
.team-copy,
.question-card,
.form-card,
.footer-block,
.trust-wrap,
.story-card,
.info-card { padding: 36px; }
.story { display: grid; gap: 18px; margin-top: 28px; }
.story p { margin: 0; color: var(--muted); }
.question-card ul,
.feature-list,
.detail-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.question-card li,
.feature-list li,
.detail-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(197, 154, 67, 0.05);
  border: 1px solid rgba(197, 154, 67, 0.10);
  color: #4d402d;
}
.services-grid,
.stats-grid,
.cards-grid,
.instagram-grid {
  display: grid;
  gap: 24px;
}
.services-grid { grid-template-columns: repeat(3, 1fr); margin-top: 46px; }
.stats-grid { grid-template-columns: repeat(3, 1fr); }
.cards-grid { grid-template-columns: repeat(3, 1fr); }
.instagram-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card,
.stat-card,
.info-card { padding: 36px; }
.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover,
.info-card:hover,
.story-card:hover { transform: translateY(-4px); }
.num {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .30em;
  text-transform: uppercase;
}
.service-card h3,
.info-card h3,
.story-card h3 { margin-top: 18px; font-size: 2rem; color: #241d16; }
.service-card p,
.info-card p,
.story-card p,
.stat-card p { color: var(--muted); margin-top: 14px; }
.stat-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #241d16;
}

.image-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 640px;
  width: 100%;
  background: #ffffff;
  align-items: stretch;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.alt-card { min-height: 520px; }
.image-side {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
}
.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex: 1;
}
.image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.14));
  pointer-events: none;
}
.image-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(197,154,67,0.04), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,245,238,0.98));
}
.image-content h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.8rem);
  margin-bottom: 16px;
  color: #231d17;
}
.trust-wrap { background: rgba(255,255,255,0.88); }
.trust-head { max-width: 860px; margin-bottom: 28px; }
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.logo-pill {
  min-height: 92px;
  border-radius: 20px;
  border: 1px solid rgba(197, 154, 67, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: #62533e;
  background: rgba(255,255,255,0.72);
}

.team-showcase { padding-top: 40px; }
.team-showcase-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 54px;
}
.team-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 320px));
  gap: 32px 28px;
  justify-content: center;
  align-items: stretch;
}

.team-member-role {
  margin-top: 10px;
  font-size: .98rem;
  line-height: 1.55;
  color: #8a8175;
  min-height: 4.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 4px;
}

.team-member-role span {
  display: block;
}

.team-member-role small {
  display: block;
  font-size: 0.8rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #c59a43;
}

.licence-wrap {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 40px;
  align-items: center;
}

.licence-badge {
  display: flex;
  justify-content: center;
  align-items: center;
}

.licence-center {
  text-align: center;
}

.company-badge {
  text-align: center;
  margin-bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c59a43;
  opacity: 0.85;
}

.licence-center-logo {
  width: 150px;
  margin: 0 auto 18px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .team-showcase-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 640px) {
  .team-showcase-grid {
    grid-template-columns: 1fr;
  }
}
.team-member-card {
  position: relative;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(197, 154, 67, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 112px 24px 28px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member-card::before { left: -18px; }
.team-member-card::after { right: -18px; }
.team-showcase-grid .team-member-card:nth-child(4n+1)::before,
.team-showcase-grid .team-member-card:nth-child(4n)::after { display: none; }
.team-member-photo {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 146px;
  height: 146px;
  border-radius: 38px;
  overflow: hidden;
  border: 8px solid #ece8df;
  box-shadow: 0 10px 28px rgba(20, 16, 10, 0.10);
  background: #ddd;
}
.team-member-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member-name {
  margin-top: 10px;
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 500;
  color: #2a2118;
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.team-member-role {
  margin-top: 10px;
  font-size: .98rem;
  line-height: 1.55;
  color: #8a8175;
  min-height: 4.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.licence-band { padding-bottom: 30px; }
.licence-wrap {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 40px;
  align-items: center;
}
.licence-badge {
  display: flex;
  justify-content: center;
  align-items: center;
}
.licence-badge img {
  width: 100%;
  max-width: 220px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #fff;
}
.licence-center { text-align: center; }
.licence-center-logo { width: 150px; margin: 0 auto 18px; }
.licence-center h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #2a2118;
}
.licence-center p {
  margin: 0 0 8px;
  color: #5f5548;
  font-size: 1.05rem;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(197,154,67,0.12);
  color: #2b241d;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}

.contact-section,
.form-section {
  background: radial-gradient(circle at top, rgba(197,154,67,0.04), transparent 42%);
}
.form-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: start;
}
form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field, .field-full {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-full { grid-column: 1 / -1; }
label {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
input, select, textarea {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(197, 154, 67, 0.12);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  outline: none;
}
textarea {
  min-height: 160px;
  resize: vertical;
  padding: 16px;
}
.helper { color: var(--muted); }

footer {
  padding: 34px 0 52px;
  background: #f4f0e8;
}
.footer-stack { display: grid; gap: 22px; }
.footer-nav {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 22px;
}
.footer-block { padding: 28px; }
.footer-block h3 {
  font-size: 1.6rem;
  color: #241d16;
  margin-bottom: 12px;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #6f6558; }
.footer-card {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.74);
  box-shadow: none;
}

@media (max-width: 1200px) {
  .team-showcase-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .team-showcase-grid .team-member-card::before,
  .team-showcase-grid .team-member-card::after { display: none; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .licence-wrap { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 1024px) {
  .grid-2, .form-wrap, .image-card, .footer-nav { grid-template-columns: 1fr; }
  .services-grid, .logo-grid, .cards-grid, .stats-grid { grid-template-columns: 1fr; }
  .image-side { min-height: 420px; }
  .image-content { padding: 40px; }
  .team-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-panel {
    position: fixed;
    inset: 78px 20px auto 20px;
    z-index: 60;
    display: none;
    background: rgba(255, 252, 247, 0.96);
    border: 1px solid rgba(197, 154, 67, 0.12);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }
  .mobile-panel.open { display: grid; gap: 10px; }
  .mobile-panel a {
    color: var(--text);
    padding: 12px 10px;
    border-radius: 14px;
  }
  .hero-inner { padding-top: 240px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav { min-height: 78px; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: .74rem; }
  .brand-copy span { font-size: .54rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; }
  .hero-actions .btn { max-width: 320px; }
  form { grid-template-columns: 1fr; }
  .question-card, .service-card, .form-card, .image-content, .team-copy, .trust-wrap, .footer-block { padding: 22px; }
  section { padding: 84px 0; }
  .section-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero h1 {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.3rem, 9.6vw, 3.5rem);
    white-space: normal;
    line-height: 1.02;
    max-width: 11ch;
  }
  .hero p { font-size: .96rem; max-width: 34ch; }
  .team-showcase-grid, .instagram-grid { grid-template-columns: 1fr; }
  .team-member-card { padding-top: 94px; }

/* ===== PAGE HERO (ALL SUBPAGES) ===== */

.page-hero-video {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0b0b0b;
}

.page-hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.02) saturate(0.92);
}

.page-hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,9,0.22) 0%, rgba(15,12,9,0.38) 50%, rgba(15,12,9,0.55) 100%);
  z-index: 1;
}

.page-hero-video .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 70px;
}

.page-hero-copy {
  max-width: 880px;
}

.page-hero-video .eyebrow {
  color: rgba(255,241,214,0.88);
  margin-bottom: 16px;
}

.page-hero-video h1 {
  color: #fff7ea;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.page-hero-video p {
  margin-top: 20px;
  max-width: 720px;
  color: rgba(255,245,224,0.92);
}

.page-hero-video {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: #0d0d0d;
}

.page-hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: brightness(0.58) saturate(0.9);
}

.page-hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,14,14,0.22) 0%, rgba(14,14,14,0.38) 100%),
    radial-gradient(circle at center, rgba(197,154,67,0.08), transparent 46%);
}

.page-hero-video .container {
  position: relative;
  z-index: 2;
}

.page-hero-copy {
  max-width: 980px;
  color: #fff8ed;
}

.page-hero-copy .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 237, 198, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.page-hero-copy h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff8ed;
  max-width: 14ch;
}

.page-hero-copy p {
  margin: 22px 0 0;
  max-width: 720px;
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(255, 244, 224, 0.9);
}

@media (max-width: 860px) {
  .page-hero-video {
    min-height: 300px;
    padding: 130px 0 64px;
  }
}

@media (max-width: 640px) {
  .page-hero-video {
    min-height: 260px;
    padding: 118px 0 50px;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    max-width: 10ch;
  }

  .page-hero-copy p {
    font-size: 0.95rem;
    max-width: 32ch;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;

  position: relative;
  overflow: hidden;
  isolation: isolate;

  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

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

.btn::before,
.btn::after {
  display: none !important;
  content: none !important;
}

.btn-gold {
  color: #fff;
  background: #c59a43;
  background-image: linear-gradient(135deg, #d8b86f 0%, #c59a43 60%, #aa8236 100%);
  box-shadow: 0 10px 24px rgba(197, 154, 67, 0.16);
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  /* 🔥 to zakrywa ten 1px artefakt */
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

a:hover svg {
  color: #d8b86f;
}

.socials a {
  color: #888;
  transition: 0.3s ease;
}

.socials a svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.socials a:hover {
  color: #d8b86f;
  transform: translateY(-2px);
}

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

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

.nav {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  position: absolute;
  top: 50%;
  left: 50vw;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  color: rgba(255,255,255,0.94);
  font-size: .95rem;
  transition: color .25s ease;
  z-index: 20;
}
}
