:root {
--dark: #050d18;
--navy: #0a1828;
--navy2: #0f2038;
--gold: #c9a84c;
--gold2: #e0bc6a;
--teal: #1abcaa;
--white: #ffffff;
--muted: #7a8fa8;
--border: rgba(201, 168, 76, 0.22);
--px: 80px; /* global horizontal padding */
}

*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
background: var(--dark);
color: var(--white);
font-family: 'Jost', sans-serif;
font-weight: 300;
overflow-x: hidden;
}

/* ── NAV ── */
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px var(--px);
background: rgba(5, 13, 24, 0.88);
backdrop-filter: blur(18px);
border-bottom: 1px solid rgba(201, 168, 76, 0.12);
transition: padding 0.3s;
}
.logo img {
height: 48px;
width: auto;
display: block;
}
.nav-links {
display: flex;
gap: 40px;
list-style: none;
}
.nav-links a {
color: var(--muted);
text-decoration: none;
font-size: 0.78rem;
font-weight: 500;
letter-spacing: 0.14em;
text-transform: uppercase;
transition: color 0.2s;
}
.nav-links a:hover {
color: var(--gold);
}
.nav-cta {
padding: 10px 28px;
background: var(--gold);
color: var(--dark);
border: none;
border-radius: 5px;
font-family: 'Jost', sans-serif;
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
cursor: pointer;
transition:
    background 0.2s,
    transform 0.15s;
text-decoration: none;
display: inline-block;
box-shadow: 0 4px 20px rgba(201, 168, 76, 0.28);
}
.nav-cta:hover {
background: var(--gold2);
transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 55% 45%;
padding-top: 76px;
overflow: hidden;
}
.hero-left {
display: flex;
flex-direction: column;
justify-content: center;
padding: 80px var(--px);
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
border: 1px solid var(--border);
padding: 7px 18px;
border-radius: 100px;
font-size: 0.68rem;
font-weight: 500;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 30px;
width: fit-content;
animation: fadeUp 0.7s ease both;
}
.hero-badge::before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--teal);
flex-shrink: 0;
box-shadow: 0 0 8px var(--teal);
animation: pulse 2s ease infinite;
}
@keyframes pulse {
0%,
100% {
    opacity: 1;
}
50% {
    opacity: 0.3;
}
}

h1 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(3rem, 4.5vw, 5rem);
font-weight: 700;
line-height: 1.06;
margin-bottom: 22px;
animation: fadeUp 0.7s 0.12s ease both;
}
h1 em {
font-style: italic;
color: var(--gold);
}

.hero-sub {
font-size: 1rem;
color: var(--muted);
line-height: 1.8;
max-width: 440px;
margin-bottom: 40px;
animation: fadeUp 0.7s 0.24s ease both;
}
.hero-sub strong {
color: var(--white);
font-weight: 500;
}

.hero-btns {
display: flex;
gap: 14px;
flex-wrap: wrap;
animation: fadeUp 0.7s 0.36s ease both;
}
.btn-primary {
padding: 14px 34px;
background: linear-gradient(135deg, var(--gold), var(--gold2));
color: var(--dark);
border: none;
border-radius: 5px;
font-family: 'Jost', sans-serif;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
cursor: pointer;
transition:
    transform 0.2s,
    box-shadow 0.2s;
text-decoration: none;
display: inline-block;
box-shadow: 0 6px 28px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 36px rgba(201, 168, 76, 0.45);
}
.btn-outline {
padding: 14px 34px;
background: transparent;
color: var(--white);
border: 1px solid rgba(255, 255, 255, 0.22);
border-radius: 5px;
font-family: 'Jost', sans-serif;
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
cursor: pointer;
transition:
    border-color 0.2s,
    background 0.2s;
text-decoration: none;
display: inline-block;
}
.btn-outline:hover {
border-color: var(--gold);
background: rgba(201, 168, 76, 0.08);
}

.hero-stats {
display: flex;
gap: 48px;
margin-top: 56px;
padding-top: 40px;
border-top: 1px solid rgba(255, 255, 255, 0.07);
animation: fadeUp 0.7s 0.48s ease both;
}
.stat-num {
font-family: 'Cormorant Garamond', serif;
font-size: 2.4rem;
font-weight: 700;
color: var(--gold);
line-height: 1;
}
.stat-label {
font-size: 0.68rem;
color: var(--muted);
letter-spacing: 0.12em;
text-transform: uppercase;
margin-top: 5px;
}

/* Hero right — photo flush right */
.hero-right {
position: relative;
animation: fadeIn 0.9s 0.1s ease both;
}
.hero-right::before {
content: '';
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(to right, var(--dark) 0%, rgba(5, 13, 24, 0) 28%), linear-gradient(to top, var(--dark) 0%, transparent 22%);
}
.hero-img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
display: block;
}
.founder-card {
position: absolute;
bottom: 44px;
left: -24px;
z-index: 3;
background: rgba(10, 24, 40, 0.92);
backdrop-filter: blur(20px);
border: 1px solid var(--border);
border-radius: 14px;
padding: 20px 26px;
min-width: 220px;
animation: slideRight 0.8s 0.6s ease both;
}
.fc-tag {
font-size: 0.65rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 8px;
}
.gold-bar {
width: 36px;
height: 2px;
background: var(--gold);
margin-bottom: 8px;
}
.fc-name {
font-family: 'Cormorant Garamond', serif;
font-size: 1.25rem;
font-weight: 700;
}
.fc-title {
font-size: 0.75rem;
color: var(--muted);
margin-top: 3px;
}

/* ── TRUST STRIP ── */
.trust-strip {
border-top: 1px solid rgba(255, 255, 255, 0.05);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
background: rgba(255, 255, 255, 0.02);
padding: 22px var(--px);
display: flex;
align-items: center;
gap: 40px;
overflow: hidden;
}
.trust-label {
font-size: 0.68rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
white-space: nowrap;
flex-shrink: 0;
}
.trust-items {
display: flex;
gap: 36px;
align-items: center;
flex-wrap: wrap;
}
.trust-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.78rem;
color: rgba(255, 255, 255, 0.4);
font-weight: 500;
letter-spacing: 0.06em;
white-space: nowrap;
}
.trust-dot {
width: 4px;
height: 4px;
background: var(--gold);
border-radius: 50%;
opacity: 0.7;
}

/* ── SECTION SHARED ── */
section {
padding: 110px var(--px);
}
.section-tag {
font-size: 0.68rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 14px;
display: flex;
align-items: center;
gap: 10px;
}
.section-tag::before {
content: '';
width: 28px;
height: 1px;
background: var(--teal);
}
h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2.2rem, 3.5vw, 3.6rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: 14px;
}
h2 em {
color: var(--gold);
font-style: italic;
}
.section-sub {
font-size: 0.95rem;
color: var(--muted);
line-height: 1.8;
max-width: 520px;
margin-bottom: 56px;
}

/* ── SERVICES ── */
.services {
padding-top: 100px;
padding-bottom: 100px;
}
.service-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}
.service-card {
background: var(--navy);
border: 1px solid rgba(255, 255, 255, 0.07);
border-radius: 18px;
padding: 38px 32px;
position: relative;
overflow: hidden;
transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
display: flex;
flex-direction: column;
}
.service-card:hover {
transform: translateY(-6px);
border-color: var(--border);
box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}
.service-card.featured {
background: linear-gradient(155deg, #102844 0%, var(--navy) 100%);
border-color: var(--border);
}
.service-card::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(to right, transparent, var(--gold), transparent);
opacity: 0;
transition: opacity 0.3s;
}
.service-card:hover::after,
.service-card.featured::after {
opacity: 1;
}
.featured-tag {
position: absolute;
top: 18px;
right: 18px;
font-size: 0.6rem;
letter-spacing: 0.14em;
text-transform: uppercase;
background: var(--gold);
color: var(--dark);
padding: 4px 12px;
border-radius: 100px;
font-weight: 700;
}
.card-icon {
width: 50px;
height: 50px;
border-radius: 12px;
background: rgba(201, 168, 76, 0.1);
border: 1px solid rgba(201, 168, 76, 0.22);
display: grid;
place-items: center;
font-size: 1.3rem;
margin-bottom: 22px;
}
h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.55rem;
font-weight: 700;
margin-bottom: 10px;
}
.card-desc {
font-size: 0.87rem;
color: var(--muted);
line-height: 1.7;
margin-bottom: 22px;
}
.card-features {
list-style: none;
display: flex;
flex-direction: column;
gap: 9px;
flex: 1;
}
.card-features li {
font-size: 0.82rem;
color: rgba(255, 255, 255, 0.68);
display: flex;
align-items: center;
gap: 10px;
}
.check {
width: 16px;
height: 16px;
flex-shrink: 0;
border-radius: 50%;
background: rgba(26, 188, 170, 0.12);
border: 1px solid rgba(26, 188, 170, 0.45);
display: flex;
align-items: center;
justify-content: center;
font-size: 0.6rem;
color: var(--teal);
}
.card-price {
margin-top: 28px;
padding-top: 22px;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.price-from {
font-size: 0.68rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 4px;
}
.price-val {
font-family: 'Cormorant Garamond', serif;
font-size: 2.2rem;
font-weight: 700;
color: var(--gold);
line-height: 1;
}
.price-unit {
font-size: 0.78rem;
color: var(--muted);
}

/* ── PROCESS ── */
.process-wrap {
background: var(--navy);
border-top: 1px solid rgba(255, 255, 255, 0.05);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
padding: 100px var(--px);
}
.process-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 100px;
align-items: start;
}
.steps {
margin-top: 16px;
}
.step {
display: flex;
gap: 22px;
padding: 26px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.step:last-child {
border-bottom: none;
}
.step-num {
font-family: 'Cormorant Garamond', serif;
font-size: 2.8rem;
font-weight: 700;
color: rgba(201, 168, 76, 0.18);
line-height: 1;
flex-shrink: 0;
width: 56px;
transition: color 0.3s;
}
.step:hover .step-num {
color: var(--gold);
}
.step-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 7px;
}
.step-desc {
font-size: 0.86rem;
color: var(--muted);
line-height: 1.7;
}

/* ── WHY / ABOUT ── */
.about {
padding: 110px var(--px);
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 90px;
align-items: center;
}
.about-img-wrap {
position: relative;
border-radius: 20px;
overflow: hidden;
aspect-ratio: 4/5;
}
.about-img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
display: block;
}
.about-img-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(5, 13, 24, 0.75) 0%, transparent 55%);
}
.about-card {
position: absolute;
bottom: 28px;
left: 28px;
right: 28px;
background: rgba(10, 24, 40, 0.93);
backdrop-filter: blur(20px);
border: 1px solid var(--border);
border-radius: 14px;
padding: 22px 26px;
}
.about-metrics {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 12px;
margin-top: 16px;
}
.metric-val {
font-family: 'Cormorant Garamond', serif;
font-size: 1.7rem;
font-weight: 700;
color: var(--gold);
line-height: 1;
}
.metric-lbl {
font-size: 0.62rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--muted);
margin-top: 3px;
}
.why-list {
display: flex;
flex-direction: column;
gap: 18px;
margin-top: 36px;
}
.why-item {
display: flex;
gap: 18px;
align-items: flex-start;
padding: 22px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.06);
transition:
    border-color 0.3s,
    background 0.3s;
}
.why-item:hover {
border-color: var(--border);
background: rgba(201, 168, 76, 0.04);
}
.why-icon {
width: 42px;
height: 42px;
border-radius: 10px;
flex-shrink: 0;
background: rgba(201, 168, 76, 0.09);
border: 1px solid var(--border);
display: grid;
place-items: center;
font-size: 1.1rem;
}
.why-title {
font-weight: 600;
margin-bottom: 5px;
font-size: 0.92rem;
}
.why-desc {
font-size: 0.84rem;
color: var(--muted);
line-height: 1.65;
}

/* ── CTA BANNER ── */
.cta-banner-wrap {
padding: 0 var(--px) 110px;
}
.cta-banner {
background: linear-gradient(135deg, #102844 0%, var(--navy) 60%, #0d1f36 100%);
border: 1px solid var(--border);
border-radius: 24px;
padding: 80px;
text-align: center;
position: relative;
overflow: hidden;
}
.cta-banner::before {
content: '';
position: absolute;
top: -80px;
left: 50%;
transform: translateX(-50%);
width: 500px;
height: 260px;
background: radial-gradient(ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
pointer-events: none;
}
.cta-banner h2 {
margin-bottom: 14px;
}
.cta-banner .section-sub {
margin: 0 auto 38px;
text-align: center;
max-width: 480px;
}
.cta-btns {
display: flex;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact {
padding: 0 var(--px) 110px;
}
.contact-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
.contact-items {
display: flex;
flex-direction: column;
gap: 16px;
margin-top: 36px;
}
.contact-item {
display: flex;
gap: 16px;
align-items: center;
padding: 18px 22px;
border-radius: 12px;
color: inherit;
text-decoration: none;
background: var(--navy);
border: 1px solid rgba(255, 255, 255, 0.06);
}
.ci-icon {
width: 40px;
height: 40px;
border-radius: 9px;
flex-shrink: 0;
background: rgba(201, 168, 76, 0.09);
border: 1px solid var(--border);
display: grid;
place-items: center;
font-size: 0.95rem;
}
.ci-label {
font-size: 0.66rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 3px;
}
.ci-val {
font-size: 0.9rem;
font-weight: 500;
}
.contact-form {
background: var(--navy);
border: 1px solid rgba(255, 255, 255, 0.07);
border-radius: 20px;
padding: 44px;
}
.form-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 6px;
}
.form-sub {
font-size: 0.84rem;
color: var(--muted);
margin-bottom: 30px;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}
.form-group {
margin-bottom: 14px;
}
label {
font-size: 0.68rem;
letter-spacing: 0.13em;
text-transform: uppercase;
color: var(--muted);
display: block;
margin-bottom: 7px;
}
input,
select,
textarea {
width: 100%;
padding: 12px 15px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 7px;
color: var(--white);
font-family: 'Jost', sans-serif;
font-size: 0.88rem;
transition:
    border-color 0.2s,
    background 0.2s;
outline: none;
}
input:focus,
select:focus,
textarea:focus {
border-color: var(--gold);
background: rgba(201, 168, 76, 0.05);
}
select option {
background: var(--navy2);
color: var(--white);
}
textarea {
resize: vertical;
min-height: 90px;
}
.submit-btn {
width: 100%;
padding: 14px;
background: linear-gradient(135deg, var(--gold), var(--gold2));
color: var(--dark);
border: none;
border-radius: 7px;
font-family: 'Jost', sans-serif;
font-size: 0.86rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
cursor: pointer;
transition:
    opacity 0.2s,
    transform 0.2s;
margin-top: 6px;
box-shadow: 0 6px 22px rgba(201, 168, 76, 0.28);
}
.submit-btn:hover {
opacity: 0.9;
transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
background: var(--navy);
border-top: 1px solid rgba(255, 255, 255, 0.06);
padding: 64px var(--px) 36px;
}
.footer-top {
display: grid;
grid-template-columns: 2.2fr 1fr 1fr 1fr;
gap: 60px;
margin-bottom: 48px;
}
.footer-logo img {
height: 44px;
width: auto;
display: block;
margin-bottom: 18px;
}
.footer-desc {
font-size: 0.84rem;
color: var(--muted);
line-height: 1.8;
max-width: 250px;
}
.footer-col-title {
font-size: 0.68rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 18px;
font-weight: 600;
}
.footer-links {
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
}
.footer-links a {
font-size: 0.84rem;
color: var(--muted);
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover {
color: var(--white);
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.06);
padding-top: 26px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}
.footer-copy {
font-size: 0.76rem;
color: var(--muted);
}
.footer-legal {
display: flex;
gap: 24px;
}
.footer-legal a {
font-size: 0.76rem;
color: var(--muted);
text-decoration: none;
transition: color 0.2s;
}
.footer-legal a:hover {
color: var(--white);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
from {
    opacity: 0;
    transform: translateY(22px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes fadeIn {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
@keyframes slideRight {
from {
    opacity: 0;
    transform: translateX(-28px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
opacity: 1;
transform: none;
}

/* ── HAMBURGER ── */
.hamburger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 36px;
height: 36px;
background: none;
border: none;
cursor: pointer;
padding: 4px;
z-index: 200;
flex-shrink: 0;
}
.hamburger span {
display: block;
width: 100%;
height: 1.5px;
background: var(--white);
border-radius: 2px;
transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.hamburger:hover span { background: var(--gold); }

.mobile-menu {
display: none;
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
z-index: 150;
background: rgba(5, 13, 24, 0.97);
backdrop-filter: blur(24px);
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0;
padding: 100px 40px 60px;
opacity: 0;
transform: translateY(-12px);
transition: opacity 0.3s ease, transform 0.3s ease;
pointer-events: none;
}
.mobile-menu.open {
opacity: 1;
transform: translateY(0);
pointer-events: all;
}
.mobile-menu ul {
list-style: none;
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
width: 100%;
margin-bottom: 40px;
}
.mobile-menu ul li {
width: 100%;
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu ul li:first-child {
border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu ul a {
display: block;
padding: 20px 0;
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
text-decoration: none;
text-align: center;
transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
padding: 14px 48px;
background: linear-gradient(135deg, var(--gold), var(--gold2));
color: var(--dark);
border-radius: 5px;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
text-decoration: none;
box-shadow: 0 6px 28px rgba(201, 168, 76, 0.3);
transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-menu .mobile-cta:hover {
transform: translateY(-2px);
box-shadow: 0 12px 36px rgba(201, 168, 76, 0.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
:root {
    --px: 24px;
}
nav {
    padding: 14px var(--px);
}
.nav-links {
    display: none;
}
.nav-cta {
    display: none;
}
.hamburger {
    display: flex;
}
.mobile-menu {
    display: flex;
}
.hero {
    grid-template-columns: 1fr;
    min-height: auto;
}
.hero-left {
    padding: 100px var(--px) 60px;
}
.hero-right {
    min-height: 300px;
}
.about-img-wrap{
    aspect-ratio: 9/16;
}
.hero-right::before {
    background: linear-gradient(to top, var(--dark) 0%, transparent 30%);
}
.service-grid,
.process-inner,
.about-grid,
.contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
}
.footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.cta-banner {
    padding: 56px 32px;
}
.form-row {
    grid-template-columns: 1fr;
}
}