/* Self-hosted display serif for headings — replaces system Georgia (a text face
   that collided at display sizes and rendered inconsistently across OSes). */
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/playfair-display.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #050505; }
.site {
  min-height: 100vh;
  background: #050505;
  color: #f7f1e5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  position: relative;
}

.luxury-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: .22;
  mix-blend-mode: screen;
}
.luxury-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.08) brightness(.72) blur(.2px);
  transform: scale(1.04);
}
.luxury-video-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(5,5,5,.10), rgba(5,5,5,.60) 46%, rgba(5,5,5,.88) 100%),
    linear-gradient(180deg, rgba(5,5,5,.42), rgba(5,5,5,.74));
}
@media (max-width: 700px) {
  .luxury-video-bg { opacity: .16; }
  .luxury-video-bg video { transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  .luxury-video-bg { display: none; }
}

.site:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(217,168,56,.18), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(239,196,91,.10), transparent 25%),
    radial-gradient(circle at 50% 100%, rgba(217,168,56,.08), transparent 32%),
    linear-gradient(180deg, #050505 0%, #090704 60%, #050505 100%);
  pointer-events: none;
}
.site:after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(118deg, transparent 0 23%, rgba(239,196,91,.82) 23.08%, transparent 23.2% 100%),
    linear-gradient(62deg, transparent 0 67%, rgba(217,168,56,.56) 67.08%, transparent 67.2% 100%);
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1160px, calc(100% - 44px)); margin: 0 auto; position: relative; z-index: 1; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5,5,5,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217,168,56,.10);
}
.nav-inner {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 132px; }
.brand-logo {
  height: 66px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(217,168,56,.18)) saturate(1.08) contrast(1.06);
}
.links { display: flex; align-items: center; gap: 34px; color: rgba(247,241,229,.60); font-size: 13px; letter-spacing: .02em; }
.links a { position: relative; padding-bottom: 4px; transition: color .22s ease; }
.links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #d9a838, #f0c457);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}
.links a:hover { color: #f0c457; }
.links a:hover:after { transform: scaleX(1); transform-origin: left; }
.actions { display: flex; align-items: center; gap: 12px; }
.menu-btn { display: none; background: transparent; color: #f7f1e5; border: 1px solid rgba(247,241,229,.12); border-radius: 999px; padding: 9px 14px; }
.mobile-menu { display: none; }
.mobile-menu.open { display: grid; gap: 14px; padding: 0 22px 22px; color: rgba(247,241,229,.75); position: relative; z-index: 4; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 52%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}
.btn:hover:before { left: 125%; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, #d9a838, #f0c457 48%, #b98221); color: #050505; box-shadow: 0 12px 34px rgba(217,168,56,.16); }
.btn-gold:hover { background: linear-gradient(135deg, #f0c457, #ffd978 48%, #c7932c); box-shadow: 0 18px 48px rgba(217,168,56,.28); }
.btn-ghost { background: rgba(217,168,56,.025); color: #f7f1e5; border-color: rgba(217,168,56,.34); }
.btn-ghost:hover { background: rgba(217,168,56,.11); border-color: rgba(239,196,91,.68); box-shadow: 0 14px 36px rgba(217,168,56,.12); }
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 86px 0 108px;
}
.hero-content { max-width: 980px; }
.eyebrow {
  color: #f0c457;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 30px;
  text-shadow: 0 0 24px rgba(217,168,56,.22);
}
h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(58px, 8.8vw, 118px);
  line-height: .92;
  letter-spacing: -.02em;
  font-feature-settings: "liga" 1;
  margin: 0;
  max-width: 1050px;
  transition: text-shadow .35s ease, transform .35s ease;
}
.hero-content:hover h1 { text-shadow: 0 0 38px rgba(217,168,56,.13); transform: translateY(-2px); }
.lead {
  margin: 34px 0 0;
  color: rgba(247,241,229,.64);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
  max-width: 720px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.brand-line {
  width: min(760px, 100%);
  height: 1px;
  background: linear-gradient(90deg, rgba(239,196,91,.88), rgba(217,168,56,.22), transparent);
  margin: 64px 0 0;
  box-shadow: 0 0 20px rgba(217,168,56,.16);
  transition: width .55s ease, box-shadow .35s ease;
}
.hero-content:hover .brand-line { width: min(860px, 100%); box-shadow: 0 0 28px rgba(217,168,56,.28); }
.quiet-proof {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  color: rgba(247,241,229,.45);
  font-size: 13px;
  letter-spacing: .04em;
}
.quiet-proof span { transition: color .22s ease, transform .22s ease; }
.quiet-proof span:before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: #f0c457; margin-right: 10px; transform: translateY(-1px); opacity: .9; box-shadow: 0 0 14px rgba(217,168,56,.35); }
.quiet-proof span:hover { color: rgba(247,241,229,.82); transform: translateY(-2px); }
.section { padding: 112px 0; }
.section-kicker { color: #f0c457; text-transform: uppercase; letter-spacing: .34em; font-size: 12px; font-weight: 900; }
.section-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: .98;
  letter-spacing: -.02em;
  font-weight: 500;
  font-feature-settings: "liga" 1;
  margin: 20px 0 0;
  max-width: 880px;
}
.section-copy {
  color: rgba(247,241,229,.58);
  line-height: 1.75;
  font-size: 18px;
  max-width: 690px;
  margin: 28px 0 0;
}
.services-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(217,168,56,.18);
  border-bottom: 1px solid rgba(217,168,56,.18);
}
.service {
  padding: 42px 34px 44px;
  min-height: 330px;
  border-right: 1px solid rgba(217,168,56,.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .32s ease, background .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.service:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(217,168,56,.16), transparent 34%);
  opacity: 0;
  transition: opacity .32s ease;
  pointer-events: none;
}
.service:after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #d9a838, #f0c457, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .34s ease;
}
.service:hover { transform: translateY(-8px); background: rgba(217,168,56,.045); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.service:hover:before { opacity: 1; }
.service:hover:after { transform: scaleX(1); }
.service:last-child { border-right: 0; }
.service-num { color: rgba(240,196,87,.92); font-size: 13px; letter-spacing: .22em; font-weight: 900; }
.service h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -.015em;
  font-weight: 500;
  font-feature-settings: "liga" 1;
  margin: 28px 0 0;
  transition: color .28s ease, transform .28s ease;
}
.service:hover h3 { color: #f0c457; transform: translateY(-2px); }
.service p { color: rgba(247,241,229,.54); line-height: 1.7; margin: 18px 0 0; }
.service-link { color: #f0c457; margin-top: 30px; font-weight: 800; font-size: 13px; display: inline-block; transition: transform .22s ease, color .22s ease; }
.service-link:hover { transform: translateX(6px); color: #ffd978; }
.youtube-panel {
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(217,168,56,.14);
  transition: transform .28s ease;
}
.youtube-panel:hover { transform: translateY(-3px); }
.youtube-panel p { color: rgba(247,241,229,.58); margin: 0; font-size: 17px; line-height: 1.6; max-width: 620px; }
.contact-section { padding: 112px 0 70px; }
.contact-shell {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 72px;
  align-items: start;
}
.contact-side { position: sticky; top: 110px; }
.contact-side h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .98;
  letter-spacing: -.02em;
  font-weight: 500;
  font-feature-settings: "liga" 1;
  margin: 20px 0 0;
}
.contact-side p { color: rgba(247,241,229,.58); font-size: 18px; line-height: 1.75; margin-top: 28px; }
.contact-lines { display: grid; gap: 15px; margin-top: 34px; color: rgba(247,241,229,.62); font-size: 15px; }
.contact-lines a:hover { color: #d9a838; }
.form-card {
  border: 1px solid rgba(217,168,56,.24);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(217,168,56,.035));
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 30px 80px rgba(0,0,0,.24), 0 0 45px rgba(217,168,56,.055);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.form-card:hover { transform: translateY(-6px); border-color: rgba(239,196,91,.45); box-shadow: 0 36px 92px rgba(0,0,0,.34), 0 0 62px rgba(217,168,56,.12); }
form { display: grid; gap: 18px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; color: rgba(247,241,229,.68); font-size: 13px; font-weight: 800; margin-bottom: 8px; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(247,241,229,.10);
  background: rgba(0,0,0,.28);
  color: #f7f1e5;
  border-radius: 18px;
  padding: 16px 16px;
  font: inherit;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .22s ease;
}
input:focus, select:focus, textarea:focus { border-color: rgba(239,196,91,.78); box-shadow: 0 0 0 4px rgba(217,168,56,.08); background: rgba(0,0,0,.38); transform: translateY(-1px); }
textarea { min-height: 148px; resize: vertical; }
.note { color: rgba(247,241,229,.34); font-size: 12px; line-height: 1.55; text-align: center; margin: 0; }
footer { position: relative; z-index: 1; border-top: 1px solid rgba(217,168,56,.10); color: rgba(247,241,229,.36); text-align: center; padding: 30px 20px; font-size: 13px; }
@media (max-width: 900px) {
  .links, .actions { display: none; }
  .menu-btn { display: block; }
  .mobile-actions { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 8px; }
  .hero { min-height: auto; padding: 74px 0 90px; }
  .services-grid { grid-template-columns: 1fr; border: 0; gap: 1px; background: rgba(217,168,56,.12); }
  .service { border: 0; background: #050505; min-height: auto; }
  .youtube-panel, .contact-shell { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; gap: 30px; }
  .contact-side { position: static; }
  .field-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap, .nav-inner { width: min(100% - 30px, 1160px); }
  .brand-logo { height: 54px; }
  .hero-actions, .mobile-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .form-card { padding: 26px; border-radius: 26px; }
  .service { padding: 32px 24px; }
}
