:root {
  --ink: #0e1418;
  --ink-soft: #3f474e;
  --gold: #ffcc00;
  --muted: #e4e7ec;
  --white: #ffffff;
  --text: #1a1f24;
  --accent: #c17a2d;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 20, 24, 0.97);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(14, 20, 24, 0.88) 0%, rgba(63, 71, 78, 0.82) 100%),
    url('../images/hero.jpg') center / cover no-repeat;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 1.75rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #f6f7f9;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(14, 20, 24, 0.08);
  border: 1px solid rgba(14, 20, 24, 0.06);
}

.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--muted);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.35rem;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.card-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col .visual {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--muted);
}

.two-col .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}

.cta-bar {
  background: linear-gradient(135deg, var(--ink) 0%, #2a3238 100%);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.cta-bar h2 {
  margin-bottom: 0.75rem;
}

.cta-bar p {
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.cta-bar .btn-primary {
  margin-top: 0.25rem;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.65;
}

.page-hero {
  padding: 6.5rem 1.5rem 2.5rem;
  background: linear-gradient(135deg, var(--ink), #2a3238);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid rgba(14, 20, 24, 0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--muted);
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  background: var(--muted);
}

.map-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 16px rgba(14, 20, 24, 0.06);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

.testimonial .author {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
