:root {
  --navy: #1c2331;
  --navy-deep: #12161f;
  --red: #a52a3f;
  --blue: #5b7fa6;
  --cream: #f4f1ea;
  --ink: #23262f;
  --muted: #6b7280;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Poppins", "Segoe UI", Arial, Helvetica, sans-serif;
}

a { color: inherit; }

img { display: block; max-width: 100%; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.eyebrow-light { color: var(--blue); }

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

header.scrolled {
  background: rgba(18, 22, 31, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  padding: 0.6rem 1.75rem;
}

header .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

header .brand img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}

header .brand span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}

nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--red);
  padding: 0.55rem 1.1rem;
  border-radius: 5px;
  font-weight: 600;
}

.nav-cta:hover { background: #8c2436; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--cream);
  padding: 6rem 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,22,31,0.88) 0%, rgba(28,35,49,0.82) 45%, rgba(165,42,63,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero img.logo-large {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto 2rem;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  letter-spacing: -0.5px;
}

.hero h1 span { color: var(--blue); }

.hero p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.25rem;
  opacity: 0.92;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(165,42,63,0.35);
}

.btn-primary:hover { background: #8c2436; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244,241,234,0.5);
}

.btn-ghost:hover { border-color: var(--cream); transform: translateY(-2px); }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(244,241,234,0.7);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Sections */
section:not(.hero) { padding: 5.5rem 1.5rem; max-width: 1080px; margin: 0 auto; }

section h2 {
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

#services { text-align: center; }
#services .eyebrow { text-align: center; }
#services h2 { margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
  text-align: left;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 16px rgba(23,28,41,0.06);
  border: 1px solid rgba(23,28,41,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(23,28,41,0.12);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.service-card p { color: var(--muted); font-size: 0.96rem; }

/* Feature strip */
.feature-strip {
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature-item {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.feature-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-item:hover img { transform: scale(1.05); }

.feature-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,22,31,0) 40%, rgba(18,22,31,0.92) 100%);
}

.feature-text {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--cream);
}

.feature-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-text p:not(.eyebrow) { opacity: 0.85; font-size: 0.95rem; max-width: 420px; }

@media (max-width: 700px) {
  .feature-strip { grid-template-columns: 1fr; }
}

/* About */
.about { background: white; }

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-copy .eyebrow,
.about-copy h2 { text-align: left; }

.about-copy p { color: var(--muted); margin-bottom: 1.25rem; }

.about-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.about-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
  font-weight: 500;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(23,28,41,0.18);
}

.about-image-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(18, 22, 31, 0.85);
  backdrop-filter: blur(6px);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border-left: 3px solid var(--red);
}

.caption-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.caption-role {
  font-size: 0.8rem;
  opacity: 0.75;
}

@media (max-width: 800px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(280px, 80vw);
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.75rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Contact */
.contact { background: var(--navy); }

.contact .eyebrow,
.contact h2 { text-align: center; color: var(--cream); }

.contact h2 { margin-bottom: 3rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: rgba(244,241,234,0.05);
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.2s ease, background 0.2s ease;
}

a.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(244,241,234,0.1);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.contact-value { font-weight: 600; font-size: 1.05rem; }

/* Footer */
footer {
  background: var(--navy-deep);
  color: #a9adb6;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(244,241,234,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand img { height: 30px; border-radius: 4px; }

.footer-brand span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--cream);
}

footer a { color: var(--blue); text-decoration: none; font-weight: 500; }
footer a:hover { color: var(--cream); }

footer p { font-size: 0.85rem; }
