:root {
  --navy: #0B1D33;
  --navy-2: #101828;
  --slate: #41566E;
  --gold: #C9A35B;
  --soft: #F5F6F8;
  --white: #FFFFFF;
  --text: #1F2937;
  --muted: #6B7280;
  --border: #E5E7EB;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
  position: relative;
}
.brand-mark span { color: var(--gold); font-size: 17px; position: absolute; right: 6px; top: 11px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.brand-text strong { font-family: Georgia, 'Times New Roman', serif; font-size: 22px; font-weight: 500; letter-spacing: .1em; }
.brand-text small { color: var(--slate); font-size: 10px; letter-spacing: .45em; margin-top: 6px; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 600; color: var(--navy); }
.nav-cta { background: var(--navy); color: #fff !important; padding: 10px 16px; border-radius: 999px; }
.nav-cta:hover { background: var(--gold); }
.nav-toggle { display: none; border: 1px solid var(--border); background: #fff; border-radius: 999px; padding: 9px 14px; color: var(--navy); font-weight: 700; }

.hero {
  background: radial-gradient(circle at 80% 5%, rgba(201,163,91,.25), transparent 30%), linear-gradient(135deg, var(--navy) 0%, #122944 100%);
  color: white;
  padding: 96px 0 88px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 56px; align-items: center; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: 13px; font-weight: 700; margin-bottom: 18px; }
.hero h1, .page-hero h1 { font-family: Georgia, 'Times New Roman', serif; font-weight: 500; line-height: 1.05; margin: 0; font-size: clamp(42px, 6vw, 72px); letter-spacing: -.02em; }
.hero p { color: rgba(255,255,255,.78); max-width: 680px; font-size: 18px; margin: 24px 0 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 20px; font-weight: 800; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #d7b36d; color: var(--navy); }
.btn-secondary { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-secondary:hover { border-color: var(--gold); color: #fff; }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 32px; padding: 34px; box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.hero-card h3 { margin: 0 0 14px; font-size: 16px; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; }
.hero-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.hero-card li { padding-left: 28px; position: relative; color: rgba(255,255,255,.82); }
.hero-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

.section { padding: 84px 0; }
.section-soft { background: var(--soft); }
.section-header { max-width: 760px; margin-bottom: 34px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2, .content-page h2 { font-family: Georgia, 'Times New Roman', serif; color: var(--navy); font-weight: 500; font-size: clamp(30px, 4vw, 46px); line-height: 1.15; margin: 0 0 14px; }
.section-header p { color: var(--muted); font-size: 17px; margin: 0; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card, .portfolio-card, .contact-panel, .content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(11,29,51,.06);
}
.value-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: rgba(201,163,91,.12); color: var(--gold); font-size: 25px; margin-bottom: 18px; }
.value-card h3, .portfolio-card h3 { color: var(--navy); margin: 0 0 10px; font-size: 21px; }
.value-card p, .portfolio-card p { color: var(--muted); margin: 0; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.portfolio-card { display: flex; flex-direction: column; min-height: 260px; }
.portfolio-media { height: 132px; border-radius: 18px; background: linear-gradient(135deg, var(--navy), var(--slate)); margin-bottom: 20px; display: grid; place-items: center; overflow: hidden; }
.portfolio-media img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-initial { color: rgba(255,255,255,.9); font-family: Georgia, serif; font-size: 54px; }
.badge { display: inline-flex; align-items: center; border-radius: 999px; background: rgba(65,86,110,.1); color: var(--slate); padding: 6px 10px; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; width: fit-content; }
.card-link { margin-top: auto; color: var(--navy); font-weight: 800; padding-top: 20px; }
.card-link::after { content: ' →'; color: var(--gold); }

.cta { background: var(--navy); color: #fff; border-radius: 34px; padding: 46px; display: grid; grid-template-columns: 1.2fr auto; gap: 28px; align-items: center; }
.cta h2 { font-family: Georgia, serif; margin: 0 0 10px; font-size: clamp(28px, 4vw, 42px); font-weight: 500; }
.cta p { margin: 0; color: rgba(255,255,255,.75); }

.page-hero { background: var(--soft); padding: 72px 0 56px; border-bottom: 1px solid var(--border); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 18px; }
.content-page { padding: 64px 0; }
.content-card { max-width: 860px; }
.content-card p { color: #374151; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-pill { border: 1px solid var(--border); border-radius: 999px; padding: 10px 14px; font-weight: 700; color: var(--navy); background: #fff; }
.filter-pill.active, .filter-pill:hover { background: var(--navy); color: #fff; }
.company-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 38px; align-items: start; }
.company-sidebar { background: var(--soft); border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); }
.company-sidebar dl { margin: 0; display: grid; gap: 18px; }
.company-sidebar dt { font-size: 12px; text-transform: uppercase; color: var(--muted); letter-spacing: .12em; font-weight: 800; }
.company-sidebar dd { margin: 4px 0 0; color: var(--navy); font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; }
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; gap: 7px; }
.form-row label { font-weight: 800; color: var(--navy); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 13px 14px; font: inherit; background: #fff;
}
.form-row textarea { min-height: 150px; resize: vertical; }
.notice { border-radius: 14px; padding: 14px 16px; margin-bottom: 18px; font-weight: 700; }
.notice-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.notice-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

.site-footer { background: #071524; color: rgba(255,255,255,.72); padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-brand { display: inline-block; color: #fff; font-family: Georgia, serif; font-size: 26px; letter-spacing: .05em; margin-bottom: 10px; }
.site-footer h4 { color: var(--gold); text-transform: uppercase; letter-spacing: .15em; font-size: 13px; margin: 0 0 12px; }
.site-footer p { margin: 0 0 8px; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 20px; font-size: 13px; color: rgba(255,255,255,.5); }

@media (max-width: 900px) {
  .hero-grid, .company-layout, .contact-grid, .cta { grid-template-columns: 1fr; }
  .value-grid, .portfolio-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; position: absolute; left: 20px; right: 20px; top: 78px; flex-direction: column; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 18px; box-shadow: 0 18px 50px rgba(0,0,0,.08); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 70px 0; }
  .value-grid, .portfolio-grid, .footer-grid { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .cta { padding: 30px; }
}
