@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #0c151d;
  --panel: #0f1e28;
  --card: #112734;
  --text: #eaf2f3;
  --muted: #b5c2c7;
  --accent: #f4a321;
  --accent-strong: #f2542d;
  --stroke: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: radial-gradient(1000px circle at 10% 20%, rgba(244, 163, 33, 0.07), transparent),
    radial-gradient(800px circle at 80% 0%, rgba(242, 84, 45, 0.12), transparent),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

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

p {
  color: var(--muted);
}

.shell {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(12, 21, 29, 0.82);
  border-bottom: 1px solid var(--stroke);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand img {
  height: 36px;
  width: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.btn,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 70%);
  color: #0c0f12;
  box-shadow: 0 10px 30px rgba(242, 84, 45, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(242, 84, 45, 0.42);
}

.btn-ghost {
  border-color: var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--stroke);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.hero {
  padding: 72px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 14px 0 16px;
  color: #f8f5ef;
}

.hero-copy .lead {
  font-size: 1.1rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  min-width: 180px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.2rem;
  color: #f8f5ef;
}

.hero-visual {
  position: relative;
}

.hero-photo {
  border-radius: calc(var(--radius) * 1.2);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(244, 163, 33, 0.1), rgba(17, 39, 52, 0.9)), url("images/crew.webp") center/cover;
  min-height: 360px;
  position: relative;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 21, 29, 0) 0%, rgba(12, 21, 29, 0.65) 100%);
}

.hero-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 18px;
  background: rgba(17, 39, 52, 0.92);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  color: var(--text);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.hero-card small {
  display: block;
  color: var(--muted);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 163, 33, 0.12);
  color: #ffdba5;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.brand-strip {
  padding: 18px 0 10px;
}

.strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.strip span {
  padding: 10px 14px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #f8f5ef;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
}

.section-heading p {
  max-width: 540px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow);
  min-height: 240px;
}

.tile img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.35s ease;
}

.tile:hover img {
  transform: scale(1.04);
}

.tile-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(12, 21, 29, 0.8);
  color: var(--text);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
  font-weight: 700;
}

.services,
.process,
.contact-cta,
.about-grid,
.story,
.contact-layout {
  margin: 56px 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  padding: 22px;
  background: rgba(17, 39, 52, 0.9);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  color: #f8f5ef;
}

.card p {
  margin: 0 0 8px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.step {
  padding: 18px;
  background: linear-gradient(145deg, rgba(17, 39, 52, 0.95), rgba(12, 21, 29, 0.95));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step strong {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(244, 163, 33, 0.14);
  color: #ffdba5;
  font-size: 0.9rem;
}

.contact-cta {
  padding: 32px;
  background: linear-gradient(120deg, rgba(244, 163, 33, 0.12), rgba(17, 39, 52, 0.85));
  border-radius: calc(var(--radius) * 1.4);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.contact-cta h3 {
  margin: 0;
  color: #f8f5ef;
}

.footer {
  border-top: 1px solid var(--stroke);
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.page-hero {
  padding: 62px 0 36px;
}

.page-hero h1 {
  margin: 8px 0 10px;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #f8f5ef;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.story-card {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(17, 39, 52, 0.95);
  box-shadow: var(--shadow);
}

.quote {
  font-size: 1.1rem;
  color: #f8f5ef;
  margin: 12px 0 6px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.testimonial {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.contact-card {
  padding: 22px;
  background: rgba(17, 39, 52, 0.9);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(12, 21, 29, 0.65);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(244, 163, 33, 0.5);
  box-shadow: 0 0 0 4px rgba(244, 163, 33, 0.1);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.flash {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  margin-bottom: 10px;
}

.flash.success {
  background: rgba(65, 160, 88, 0.16);
  border-color: rgba(65, 160, 88, 0.35);
}

.flash.error {
  background: rgba(242, 84, 45, 0.16);
  border-color: rgba(242, 84, 45, 0.45);
}

.subtle {
  color: var(--muted);
  font-size: 0.95rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .navbar {
    gap: 14px;
  }

  .nav-links {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 48px;
  }

  .section-heading,
  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 8px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 540px) {
  .shell {
    width: 94vw;
  }

  .navbar,
  .hero-actions,
  .hero-stats {
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero {
    padding: 52px 0 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 7vw, 2.4rem);
  }

  .hero-copy .lead {
    font-size: 1rem;
  }

  .hero-card {
    position: static;
    margin-top: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .services,
  .process,
  .contact-cta,
  .about-grid,
  .story,
  .contact-layout {
    margin: 40px 0;
  }

  .contact-cta,
  .contact-card,
  .card,
  .step {
    padding: 16px;
  }

  form {
    gap: 10px;
  }
}
