:root {
--bg: #120b08;
--bg-soft: #1a100c;
--panel: rgba(129, 82, 62, 0.10);
--text: #f3e8dc;
--muted: #d2b6a0;
--line: rgba(243, 232, 220, 0.08);
--accent: #7a3b10;
--accent-2: #81523e;
--accent-light: #d9c2ae;
--white: #ffffff;

--font-display: 'Playfair Display', serif;
--font-body: 'Manrope', sans-serif;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
overflow-x: hidden;
cursor: none;
}

a {
color: inherit;
text-decoration: none;
}

img {
max-width: 100%;
display: block;
}

.container {
width: min(1200px, 92%);
margin: 0 auto;
}

.section {
padding: 110px 0;
}

.section-tag {
display: inline-block;
margin-bottom: 18px;
color: var(--accent-light);
font-size: 0.78rem;
letter-spacing: 0.22em;
font-weight: 700;
}

.section-title {
font-family: var(--font-display);
font-size: clamp(2.3rem, 5vw, 4.5rem);
line-height: 1.05;
max-width: 850px;
}

.reveal {
opacity: 0;
transform: translateY(35px);
transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
opacity: 1;
transform: translateY(0);
}

/* cursor */
.cursor {
position: fixed;
width: 18px;
height: 18px;
border: 1px solid rgba(243,232,220,0.85);
border-radius: 50%;
pointer-events: none;
transform: translate(-50%, -50%);
z-index: 9999;
transition: width .25s, height .25s, background .25s;
mix-blend-mode: difference;
}

.cursor.hovered {
width: 54px;
height: 54px;
background: #f3e8dc;
border-color: transparent;
}

/* preloader */
.preloader {
position: fixed;
inset: 0;
background: #0c0705;
z-index: 10000;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 24px;
transition: transform 1s cubic-bezier(.77,0,.18,1);
}

.preloader.hide {
transform: translateY(-100%);
}

.preloader-line {
width: 180px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
animation: pulse 1.8s infinite;
}

.preloader-text {
letter-spacing: 0.45em;
font-size: 0.8rem;
color: var(--muted);
}

@keyframes pulse {
0%,100% { opacity: .3; transform: scaleX(.8); }
50% { opacity: 1; transform: scaleX(1); }
}

/* navbar */
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 24px 4%;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
background: rgba(18,11,8,0.40);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(243,232,220,0.05);
}

.logo {
font-weight: 800;
letter-spacing: 0.18em;
color: var(--text);
}

.logo span {
color: var(--accent-light);
}

.nav-links {
display: flex;
gap: 28px;
}

.nav-links a {
font-size: 0.9rem;
color: var(--muted);
transition: .3s;
}

.nav-links a:hover {
color: var(--text);
}

/* hero */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
padding: 140px 0 80px;
overflow: hidden;
background:
linear-gradient(rgba(18,11,8,0.78), rgba(18,11,8,0.88)),
url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}


.hero-overlay {
position: absolute;
inset: 0;
background:
radial-gradient(circle at 80% 20%, rgba(122,59,16,0.16), transparent 25%),
radial-gradient(circle at 20% 80%, rgba(129,82,62,0.10), transparent 30%),
linear-gradient(rgba(243,232,220,0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(243,232,220,0.02) 1px, transparent 1px);
background-size: auto, auto, 50px 50px, 50px 50px;
mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 90%);
pointer-events: none;
}


.hero-grid {
width: min(1280px, 92%);
margin: 0 auto;
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 60px;
align-items: end;
position: relative;
z-index: 2;
}

.eyebrow {
display: inline-block;
margin-bottom: 20px;
font-size: 0.82rem;
letter-spacing: 0.24em;
color: var(--accent-light);
font-weight: 700;
}

.hero h1 {
font-family: var(--font-display);
font-size: clamp(3rem, 7vw, 6.5rem);
line-height: 0.98;
letter-spacing: -0.03em;
margin-bottom: 28px;
color: var(--text);
}

.hero-text {
max-width: 650px;
color: var(--muted);
font-size: 1.08rem;
line-height: 1.9;
margin-bottom: 34px;
}

.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 54px;
padding: 0 28px;
border-radius: 999px;
font-size: 0.88rem;
letter-spacing: 0.08em;
text-transform: uppercase;
font-weight: 700;
transition: .35s ease;
border: 1px solid transparent;
}

.btn-primary {
background: var(--accent);
color: #f8eee7;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 12px 30px rgba(122, 59, 16, 0.28);
}

.btn-secondary {
border-color: rgba(243,232,220,0.14);
color: var(--text);
}

.btn-secondary:hover {
border-color: var(--accent-light);
color: var(--accent-light);
}

.hero-card {
background: linear-gradient(180deg, rgba(129,82,62,0.10), rgba(255,255,255,0.02));
border: 1px solid rgba(217,194,174,0.10);
padding: 40px;
min-height: 360px;
display: flex;
flex-direction: column;
justify-content: space-between;
box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.card-top {
color: var(--muted);
font-size: 0.75rem;
letter-spacing: 0.2em;
}

.card-title {
font-family: var(--font-display);
font-size: clamp(2rem, 4vw, 3.4rem);
line-height: 1.05;
color: var(--text);
}

.card-meta {
display: flex;
gap: 16px;
flex-wrap: wrap;
color: var(--accent-light);
font-size: 0.82rem;
letter-spacing: 0.08em;
}

/* marquee */
.marquee-wrap {
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
padding: 20px 0;
overflow: hidden;
white-space: nowrap;
background: #100907;
}

.marquee {
display: inline-block;
animation: marquee 24s linear infinite;
}

.marquee span {
font-family: var(--font-display);
font-size: 1.4rem;
letter-spacing: 0.18em;
color: var(--accent-light);
}

@keyframes marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}

/* about */
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}

.about-right p {
color: var(--muted);
font-size: 1.05rem;
line-height: 1.95;
margin-bottom: 22px;
}

/* practice */
.practice-list {
margin-top: 50px;
border-top: 1px solid var(--line);
}

.practice-item {
display: grid;
grid-template-columns: 90px 1fr;
gap: 22px;
padding: 30px 0;
border-bottom: 1px solid var(--line);
transition: background 0.3s ease, padding 0.3s ease;
}

.practice-item:hover {
background: rgba(129,82,62,0.06);
padding-left: 14px;
padding-right: 14px;
}

.practice-number {
font-family: var(--font-display);
font-size: 2rem;
color: var(--accent-light);
}

.practice-item h3 {
font-size: 1.6rem;
margin-bottom: 8px;
font-family: var(--font-display);
color: var(--text);
}

.practice-item p {
color: var(--muted);
line-height: 1.8;
}

/* stats */
.stats-grid {
margin-top: 45px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}

.stat-card {
background: linear-gradient(180deg, rgba(129,82,62,0.10), rgba(255,255,255,0.02));
border: 1px solid rgba(217,194,174,0.10);
padding: 34px 28px;
}

.stat-card h3 {
font-family: var(--font-display);
font-size: 1.7rem;
margin-bottom: 14px;
color: var(--text);
}

.stat-card p {
color: var(--muted);
line-height: 1.8;
}

/* quote */
.quote-box {
border: 1px solid rgba(217,194,174,0.10);
background: linear-gradient(180deg, rgba(129,82,62,0.10), rgba(255,255,255,0.02));
padding: 60px;
}

.quote-box p {
font-family: var(--font-display);
font-size: clamp(1.8rem, 4vw, 3.3rem);
line-height: 1.2;
max-width: 900px;
color: var(--text);
}

/* contact */
.contact-grid {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 50px;
}

.contact-left p {
color: var(--muted);
margin-top: 20px;
line-height: 1.8;
max-width: 500px;
}

.contact-form {
display: grid;
gap: 16px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
background: rgba(255,255,255,0.03);
border: 1px solid rgba(217,194,174,0.10);
padding: 18px 18px;
color: var(--text);
font-family: var(--font-body);
font-size: 1rem;
outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: rgba(210,182,160,0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
border-color: rgba(217,194,174,0.6);
box-shadow: 0 0 0 3px rgba(122,59,16,0.12);
}

.footer {
border-top: 1px solid var(--line);
padding: 24px 0;
background: #0f0806;
}

.footer-row {
display: flex;
justify-content: space-between;
gap: 20px;
color: var(--muted);
font-size: 0.88rem;
}

/* mobile */
@media (max-width: 960px) {
body {
cursor: auto;
}

.cursor {
display: none;
}

.nav-links {
display: none;
}

.hero-grid,
.about-grid,
.contact-grid,
.stats-grid {
grid-template-columns: 1fr;
}

.hero {
padding-top: 120px;
}

.hero-card {
min-height: auto;
}

.practice-item {
grid-template-columns: 1fr;
gap: 10px;
}

.practice-item:hover {
padding-left: 0;
padding-right: 0;
background: transparent;
}

.quote-box {
padding: 35px 24px;
}

.footer-row {
flex-direction: column;
text-align: center;
}
}
