:root {
--white: #ffffff;
--off-white: #f7f7f5;
--light-grey: #f0efed;
--mid-grey: #e0dedd;
--text-muted: #888582;
--text-body: #555250;
--text-dark: #1a1917;
--charcoal: #232220;
--accent: #c8a96e;
--accent-dark: #b8944f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
font-family: 'DM Sans', sans-serif;
background: var(--white);
color: var(--text-dark);
overflow-x: hidden;
}

/* ── HEADER ─────────────────────────────────── */
header {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
background: rgba(255,255,255,0.97);
backdrop-filter: blur(10px);
box-shadow: 0 1px 0 rgba(0,0,0,0.07);
transition: box-shadow 0.3s;
}

.header-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 32px;
height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}

.logo-icon {
width: 38px; height: 38px;
background: var(--charcoal);
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}

.logo-icon svg { width: 20px; height: 20px; fill: white; }

.logo-text {
font-size: 1.1rem;
font-weight: 700;
letter-spacing: -0.01em;
color: var(--charcoal);
line-height: 1.15;
}

.logo-text span { color: var(--accent-dark); }
.logo-text small { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

nav { display: flex; align-items: center; gap: 36px; }

nav a {
font-size: 0.9rem;
font-weight: 500;
color: var(--text-body);
text-decoration: none;
transition: color 0.2s;
}

nav a:hover { color: var(--charcoal); }

.nav-cta {
background: var(--charcoal) !important;
color: var(--white) !important;
padding: 10px 24px;
border-radius: 6px;
font-weight: 600 !important;
transition: background 0.2s !important;
}

.nav-cta:hover { background: #3a3836 !important; }

.burger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 4px;
background: none;
border: none;
}

.burger span {
display: block;
width: 24px; height: 2px;
background: var(--charcoal);
border-radius: 2px;
transition: all 0.3s;
}

.mobile-menu {
display: none;
position: fixed;
top: 72px; left: 0; right: 0;
background: var(--white);
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 16px 28px 24px;
z-index: 999;
flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
font-size: 1rem;
font-weight: 500;
color: var(--text-body);
text-decoration: none;
padding: 14px 0;
border-bottom: 1px solid var(--light-grey);
transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--charcoal); }

.mobile-menu .nav-cta {
margin-top: 12px;
background: var(--charcoal);
color: var(--white);
text-align: center;
border-radius: 6px;
padding: 14px;
border-bottom: none;
}

/* ── HERO ──────────────────────────────────── */
#home {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
}

.hero-bg {
position: absolute;
inset: 0;
background:
  linear-gradient(to right, rgba(20,18,16,0.9) 45%, rgba(20,18,16,0.45) 100%),
  url('https://placehold.co/1800x1000/1a1917/444444?text=Hero+Background+Image') center/cover no-repeat;
}

.hero-content {
position: relative;
max-width: 1280px;
margin: 0 auto;
padding: 140px 32px 100px;
width: 100%;
}

.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(200,169,110,0.18);
border-radius: 100px;
padding: 6px 14px;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 28px;
}

.hero-eyebrow::before {
content: '';
width: 6px; height: 6px;
background: var(--accent);
border-radius: 50%;
animation: blink 2s infinite;
}

@keyframes blink {
0%,100% { opacity:1; } 50% { opacity:0.3; }
}

.hero-title {
font-size: clamp(3.2rem, 8vw, 6.8rem);
font-weight: 800;
line-height: 0.94;
letter-spacing: -0.03em;
color: var(--white);
margin-bottom: 28px;
max-width: 760px;
}

.hero-title em { font-style: normal; color: var(--accent); }

.hero-sub {
font-size: clamp(1rem, 2vw, 1.15rem);
font-weight: 300;
color: rgba(255,255,255,0.7);
line-height: 1.75;
max-width: 520px;
margin-bottom: 48px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
background: var(--accent);
color: var(--charcoal);
font-size: 0.92rem;
font-weight: 700;
padding: 15px 34px;
border-radius: 6px;
text-decoration: none;
transition: background 0.2s, transform 0.2s;
display: inline-block;
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-ghost {
background: rgba(255,255,255,0.1);
color: var(--white);
font-size: 0.92rem;
font-weight: 600;
padding: 15px 34px;
border-radius: 6px;
text-decoration: none;
transition: background 0.2s, transform 0.2s;
display: inline-block;
}

.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.hero-stats {
display: flex;
gap: 56px;
margin-top: 80px;
flex-wrap: wrap;
}

.stat-num {
font-size: 2.8rem;
font-weight: 800;
color: var(--white);
line-height: 1;
letter-spacing: -0.03em;
}

.stat-num span { color: var(--accent); }

.stat-label {
font-size: 0.78rem;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(255,255,255,0.4);
margin-top: 5px;
}

/* ── TICKER STRIP ──────────────────────────── */
.ticker-strip {
background: var(--charcoal);
padding: 18px 32px;
}

.ticker-inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
gap: 48px;
align-items: center;
flex-wrap: wrap;
}

.ticker-item {
display: flex;
align-items: center;
gap: 10px;
white-space: nowrap;
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(255,255,255,0.5);
}

.ticker-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ── SECTION COMMONS ───────────────────────── */
section { padding: 100px 32px; }

.container { max-width: 1280px; margin: 0 auto; }

.eyebrow {
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--accent-dark);
margin-bottom: 14px;
}

.section-title {
font-size: clamp(2rem, 4.5vw, 3.2rem);
font-weight: 800;
line-height: 1.02;
letter-spacing: -0.03em;
color: var(--charcoal);
margin-bottom: 18px;
}

.section-title em { font-style: normal; color: var(--accent-dark); }

/* ── ABOUT ─────────────────────────────────── */
#about { background: var(--off-white); }

.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 88px;
align-items: center;
}

.about-text p {
font-size: 0.97rem;
color: var(--text-body);
line-height: 1.82;
margin-bottom: 16px;
}

.about-features {
margin-top: 40px;
display: flex;
flex-direction: column;
gap: 24px;
}

.feature-row {
display: flex;
align-items: flex-start;
gap: 18px;
}

.feature-icon {
width: 42px; height: 42px;
background: var(--charcoal);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}

.feature-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }

.feature-text h4 {
font-size: 0.95rem;
font-weight: 700;
color: var(--charcoal);
margin-bottom: 3px;
}

.feature-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

.about-image-wrap {
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.about-image-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }

.about-badge {
position: absolute;
bottom: 24px; left: 24px;
background: var(--white);
border-radius: 10px;
padding: 16px 22px;
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-badge .num {
font-size: 2rem;
font-weight: 800;
color: var(--accent-dark);
line-height: 1;
letter-spacing: -0.04em;
}

.about-badge .lbl {
font-size: 0.74rem;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--text-muted);
margin-top: 3px;
}

/* ── SERVICES ──────────────────────────────── */
#services { background: var(--white); }

.services-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 52px;
flex-wrap: wrap;
gap: 20px;
}

.services-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}

.service-card {
border-radius: 10px;
overflow: hidden;
background: var(--off-white);
transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 48px rgba(0,0,0,0.09);
}

.service-img { height: 220px; overflow: hidden; }

.service-img img {
width: 100%; height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

.service-card:hover .service-img img { transform: scale(1.04); }

.service-body { padding: 24px; }

.service-body h3 {
font-size: 1.02rem;
font-weight: 700;
color: var(--charcoal);
margin-bottom: 10px;
letter-spacing: -0.01em;
}

.service-body p {
font-size: 0.85rem;
color: var(--text-body);
line-height: 1.65;
}

/* ── FAQ ───────────────────────────────────── */
#faq { background: var(--off-white); }

.faq-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 88px;
align-items: start;
}

.faq-image {
position: sticky;
top: 96px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.faq-image img { width: 100%; height: 540px; object-fit: cover; display: block; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--mid-grey); }

.faq-q {
display: flex;
justify-content: space-between;
align-items: center;
padding: 22px 0;
cursor: pointer;
gap: 16px;
}

.faq-q span {
font-size: 0.97rem;
font-weight: 600;
color: var(--charcoal);
line-height: 1.3;
}

.faq-icon {
width: 26px; height: 26px;
background: var(--charcoal);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
font-size: 1.1rem;
color: white;
line-height: 1;
transition: background 0.2s;
}

.faq-item.open .faq-icon { background: var(--accent-dark); }

.faq-a {
display: none;
padding: 0 0 22px;
font-size: 0.9rem;
color: var(--text-body);
line-height: 1.78;
}

.faq-item.open .faq-a { display: block; }

/* ── CONTACT ───────────────────────────────── */
#contact { background: var(--white); }

.contact-grid {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 88px;
align-items: start;
}

.contact-info p {
font-size: 0.97rem;
color: var(--text-body);
line-height: 1.78;
margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail { display: flex; align-items: flex-start; gap: 16px; }

.contact-detail-icon {
width: 38px; height: 38px;
background: var(--charcoal);
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}

.contact-detail-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }

.contact-detail-text strong {
display: block;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 2px;
}

.contact-detail-text { font-size: 0.9rem; color: var(--text-body); }

.contact-form {
background: var(--off-white);
border-radius: 12px;
padding: 44px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; }

.form-group label {
display: block;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
background: var(--white);
border: none;
border-radius: 6px;
padding: 13px 16px;
color: var(--charcoal);
font-family: 'DM Sans', sans-serif;
font-size: 0.92rem;
outline: none;
box-shadow: 0 1px 3px rgba(0,0,0,0.06);
transition: box-shadow 0.2s;
-webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
box-shadow: 0 0 0 2px rgba(184,148,79,0.35);
}

.form-group select option { background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
width: 100%;
background: var(--charcoal);
color: var(--white);
font-family: 'DM Sans', sans-serif;
font-size: 0.95rem;
font-weight: 700;
padding: 16px;
border-radius: 6px;
border: none;
cursor: pointer;
margin-top: 8px;
transition: background 0.2s;
}

.form-submit:hover { background: #3a3836; }

/* ── FOOTER ────────────────────────────────── */
footer { background: var(--charcoal); }

.footer-accreditations {
border-bottom: 1px solid rgba(255,255,255,0.08);
padding: 36px 32px;
}

.footer-accreditations-inner { max-width: 1280px; margin: 0 auto; }

.footer-accreditations-label {
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(255,255,255,0.3);
margin-bottom: 18px;
}

.accreditation-badges { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.accreditation-badge {
background: rgba(255,255,255,0.06);
border-radius: 8px;
padding: 12px 20px;
display: flex;
align-items: center;
gap: 10px;
transition: background 0.2s;
}

.accreditation-badge:hover { background: rgba(255,255,255,0.1); }

.badge-icon {
width: 30px; height: 30px;
background: var(--accent);
border-radius: 6px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}

.badge-icon svg { width: 15px; height: 15px; stroke: var(--charcoal); fill: none; stroke-width: 2.5; }

.badge-text { line-height: 1.2; }
.badge-text strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--white); }
.badge-text span { font-size: 0.7rem; color: rgba(255,255,255,0.38); }

.accreditation-placeholder {
font-size: 0.78rem;
color: rgba(255,255,255,0.2);
font-style: italic;
padding: 12px 20px;
background: rgba(255,255,255,0.03);
border-radius: 8px;
}

.footer-main {
padding: 60px 32px 52px;
border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
gap: 52px;
}

.footer-brand .footer-logo {
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 20px;
}

.footer-brand .logo-icon {
background: rgba(255,255,255,0.1);
width: 38px; height: 38px;
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}

.footer-brand .logo-icon svg { width: 20px; height: 20px; fill: white; }

.footer-brand .logo-text { color: var(--white); font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; }
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand .logo-text small { display: block; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

.footer-brand p {
font-size: 0.86rem;
color: rgba(255,255,255,0.4);
line-height: 1.78;
margin-bottom: 24px;
max-width: 280px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
width: 36px; height: 36px;
background: rgba(255,255,255,0.08);
border-radius: 7px;
display: flex; align-items: center; justify-content: center;
text-decoration: none;
color: rgba(255,255,255,0.45);
transition: background 0.2s, color 0.2s;
}

.social-link:hover { background: var(--accent); color: var(--charcoal); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; }

.footer-col h4 {
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(255,255,255,0.32);
margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
font-size: 0.87rem;
color: rgba(255,255,255,0.5);
text-decoration: none;
transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }

.footer-contact-item svg {
width: 15px; height: 15px;
stroke: var(--accent);
fill: none;
stroke-width: 2;
flex-shrink: 0;
margin-top: 3px;
}

.footer-contact-item span { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

.footer-bottom { padding: 20px 32px; }

.footer-bottom-inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
.services-grid { grid-template-columns: repeat(2, 1fr); }
.about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
.faq-image { display: none; }
.about-image-wrap { order: -1; }
.footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
nav { display: none; }
.burger { display: flex; }
.services-grid { grid-template-columns: 1fr; }
section { padding: 72px 20px; }
.hero-stats { gap: 32px; }
.form-row { grid-template-columns: 1fr; }
.contact-form { padding: 24px; }
.ticker-inner { gap: 24px; }
.header-inner { padding: 0 20px; }
.footer-grid { grid-template-columns: 1fr; gap: 32px; }
.footer-main { padding: 40px 20px; }
.footer-accreditations { padding: 28px 20px; }
.footer-bottom { padding: 18px 20px; }
.footer-legal { flex-wrap: wrap; gap: 12px; }
}
