:root{
	--jl-black:#0b0b0f;
	--jl-gold:#d4af37;
	--jl-gold-2:#b8902b;
	--jl-cream:#f3efe6;
	--jl-line: rgba(212,175,55,.22);
	--container: 1160px;
	--radius: 18px;
	--serif: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
	--sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;
	--shadow-soft: 0 14px 34px rgba(0,0,0,.33);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
	margin:0;
	font-family:var(--sans);
	color:var(--jl-cream);
	background: var(--jl-black);
}
a{color:inherit;text-decoration:none}
a:hover{color:var(--jl-gold)}
img{max-width:100%;height:auto;display:block}
.container{width:min(var(--container), calc(100% - 48px));margin-inline:auto}

/* Header */
.jl-header{position:sticky;top:0;z-index:90}
.jl-topbar{
	background: linear-gradient(to bottom, rgba(11,11,15,.94), rgba(11,11,15,.78));
	border-bottom:1px solid var(--jl-line);
	backdrop-filter: blur(12px);
}
.jl-topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:16px 0}
.jl-brand__img{height:54px;width:auto}
.jl-nav ul{list-style:none;display:flex;gap:20px;align-items:center;margin:0;padding:0}
.jl-nav a{font-weight:500;color:rgba(243,239,230,.88);position:relative;padding:8px 4px}
.jl-nav a:hover{color:var(--jl-gold)}
.jl-nav .current-menu-item>a,.jl-nav .current_page_item>a{color:var(--jl-gold)}
.jl-nav .current-menu-item>a:after,.jl-nav .current_page_item>a:after{
	content:"";position:absolute;left:0;right:0;bottom:-6px;height:2px;
	background: linear-gradient(90deg, transparent, var(--jl-gold), transparent);
}
.jl-cta{display:flex;align-items:center;gap:10px}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 18px;border-radius:10px;font-weight:600;letter-spacing:.2px}
.btn--outline{border:2px solid rgba(212,175,55,.55);background:rgba(0,0,0,.20);color:var(--jl-cream)}
.btn--outline:hover{background:rgba(212,175,55,.10);border-color:rgba(212,175,55,.85)}
.btn--gold{border:2px solid rgba(212,175,55,.35);background:linear-gradient(180deg, rgba(212,175,55,.95), rgba(184,144,43,.92));color:#101014;box-shadow:0 10px 26px rgba(0,0,0,.35)}
.btn--gold:hover{filter:brightness(1.05)}

.jl-burger{display:none;border:1px solid var(--jl-line);background:rgba(255,255,255,.03);color:var(--jl-cream);border-radius:999px;padding:10px 12px;cursor:pointer}
.jl-burger__bars{display:inline-block;width:18px;height:12px;background:
	linear-gradient(var(--jl-cream), var(--jl-cream)) 0 0/100% 2px,
	linear-gradient(var(--jl-cream), var(--jl-cream)) 0 5px/100% 2px,
	linear-gradient(var(--jl-cream), var(--jl-cream)) 0 10px/100% 2px;
	background-repeat:no-repeat;margin-right:8px;opacity:.9}

/* Sections use three distinct background images */
.jl-hero,
.jl-services,
.jl-why{
	background-repeat:no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}
.jl-hero {
  background-image: url("../images/bg-hero.png");
}

.jl-services {
  background-image: url("../images/bg-services.png");
}

.jl-why {
  background-image: url("../images/bg-why.png");
}


/* dark overlay to keep text readable, like the mockup */
.jl-hero:before,
.jl-services:before,
.jl-why:before{
	content:"";
	position:absolute;inset:0;
	background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.68));
	pointer-events:none;
}
.jl-hero__inner,
.jl-services .container,
.jl-why .container{position:relative}

/* Hero */
.jl-hero__inner{display:grid;grid-template-columns:1.05fr .95fr;gap:28px;align-items:center;padding:54px 0 42px}
.jl-hero__title{margin:0;font-family:var(--serif);font-weight:600;font-size:clamp(34px, 4.2vw, 58px);line-height:1.08;text-shadow:0 10px 28px rgba(0,0,0,.5)}
.gold{color:var(--jl-gold)}
.gold-italic{color:var(--jl-gold);font-style:italic}
.jl-hero__subtitle{margin:16px 0 0;color:rgba(243,239,230,.80);font-size:16px;max-width:55ch}
.jl-hero__actions{display:flex;gap:14px;margin-top:22px;flex-wrap:wrap}
.jl-hero__right{justify-self:end;width:min(560px,100%)}
.jl-hero__device{filter:drop-shadow(0 18px 36px rgba(0,0,0,.55));border-radius:12px}

/* Services */
.jl-services{padding:46px 0 56px}
.jl-section-title{margin:0;text-align:center;font-family:var(--serif);font-size:40px;font-weight:600;color:var(--jl-gold)}
.jl-section-subtitle{margin:10px auto 0;text-align:center;max-width:64ch;color:rgba(243,239,230,.75)}
.jl-card-grid{margin-top:26px;display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.jl-card{
	border-radius:10px;
	background: linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.62));
	border:2px solid rgba(212,175,55,.25);
	box-shadow: var(--shadow-soft);
	padding:22px 20px 24px;
	text-align:center;
}
.jl-card__icon{width:86px;height:auto;margin:0 auto 14px;opacity:.98}
.jl-card__title{margin:0;font-family:var(--serif);font-size:28px;font-weight:600;color:var(--jl-gold)}
.jl-card__text{margin:10px auto 0;color:rgba(243,239,230,.78);max-width:34ch}
.jl-center{display:flex;justify-content:center;margin-top:22px}

/* Why */
.jl-why{padding:52px 0 66px}
.jl-why__inner{text-align:center;max-width:980px}
.jl-why__title{margin:0;font-family:var(--serif);font-weight:600;letter-spacing:.12em;font-size:28px;color:rgba(243,239,230,.95)}
.jl-why__lead{margin:18px auto 0;color:rgba(243,239,230,.78);max-width:78ch;font-size:16px}
.jl-why__emph{margin:18px auto 0;max-width:80ch;font-size:18px;color:rgba(243,239,230,.88)}
.jl-why__actions{display:flex;justify-content:center;gap:14px;margin-top:24px;flex-wrap:wrap}

/* Basic page/blog templates */
.jl-page-hero{padding:40px 0 18px;border-bottom:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.35)}
.jl-page-hero__title{margin:0;font-family:var(--serif);font-weight:600;font-size:44px}
.jl-content-grid{display:grid;grid-template-columns:1fr 320px;gap:26px;padding:30px 0 66px}
.jl-sidebar{align-self:start;position:sticky;top:110px}
.widget{border-radius:var(--radius);background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);padding:18px;margin-bottom:16px}
.widget-title{margin:0 0 12px;font-family:var(--serif);font-weight:600;color:var(--jl-gold)}
.jl-post-card{border-radius:var(--radius);background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);padding:18px;margin-bottom:16px}
.jl-post-card__title{margin:10px 0 0;font-family:var(--serif);font-size:26px}
.jl-post-card__meta{margin:8px 0 0;color:rgba(243,239,230,.70);font-size:13px}
.jl-post-card__excerpt{margin-top:10px;color:rgba(243,239,230,.82)}
.jl-wysiwyg :where(p,ul,ol){max-width:75ch}
.jl-wysiwyg a{color:var(--jl-gold)}
.jl-wysiwyg a:hover{text-decoration:underline}

/* Footer */
.jl-footer{border-top:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.55);padding:28px 0}
.jl-footer__inner{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;flex-wrap:wrap}
.jl-footer__logo{height:52px;width:auto}
.jl-footer__copy{margin:10px 0 0;color:rgba(243,239,230,.65);font-size:13px}
.jl-footer__cols{display:grid;grid-template-columns:repeat(4, minmax(160px,1fr));gap:22px}
.jl-footer__col h3{margin:0 0 12px;font-family:var(--serif);font-weight:600;color:rgba(243,239,230,.95)}
.jl-footer__col ul{list-style:none;padding:0;margin:0;display:grid;gap:8px}
.jl-footer__col a{color:rgba(243,239,230,.72)}
.jl-footer__col a:hover{color:var(--jl-gold)}

/* Responsive */
@media (max-width: 980px){
	.jl-content-grid{grid-template-columns:1fr}
	.jl-sidebar{position:static}
	.jl-card-grid{grid-template-columns:1fr}
	.jl-hero__inner{grid-template-columns:1fr}
	.jl-hero__right{justify-self:start}
	.jl-footer__cols{grid-template-columns:repeat(2, minmax(160px,1fr))}
}
@media (max-width: 860px){
	.jl-burger{display:inline-flex;align-items:center}
	.jl-nav{display:none;width:100%}
	.jl-nav.is-open{display:block}
	.jl-nav ul{flex-direction:column;gap:12px;background:rgba(0,0,0,.45);padding:12px;border:1px solid rgba(212,175,55,.18);border-radius:12px}
	.jl-topbar__inner{flex-wrap:wrap}
}
@media (max-width: 520px){
	.container{width: calc(100% - 28px)}
	.jl-section-title{font-size:32px}
	.jl-page-hero__title{font-size:34px}
	.btn{width:100%}
}

/* cache-bust: 1770508267 */

/* cache-bust jalsite: 1770509983 */
