@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800;900&display=swap');

:root {
  --red: #e10600;
  --red-deep: #b50400;
  --red-soft: #fff2f1;
  --red-line: rgba(225, 6, 0, 0.14);
  --white: #ffffff;
  --snow: #faf8f7;
  --ink: #13161d;
  --ink-soft: #434853;
  --ink-muted: #717785;
  --hero: #09111c;
  --hero-2: #101d2f;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --shadow-xl: 0 30px 70px rgba(16, 19, 31, 0.14);
  --shadow-lg: 0 18px 42px rgba(16, 19, 31, 0.1);
  --shadow-red: 0 18px 40px rgba(225, 6, 0, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: 1220px;
  --transition: 240ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(225, 6, 0, 0.08), transparent 24%),
    radial-gradient(circle at 10% 20%, rgba(225, 6, 0, 0.05), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fff9f8 35%, #ffffff 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

main {
  position: relative;
}

section[id] {
  scroll-margin-top: 88px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f4efee;
}

::-webkit-scrollbar-thumb {
  background: rgba(225, 6, 0, 0.7);
  border-radius: 999px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 18px 24px;
  transition: background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(225, 6, 0, 0.08);
  box-shadow: 0 18px 40px rgba(14, 18, 28, 0.08);
}

.nav-shell {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(8, 10, 14, 0.16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  transition: color var(--transition);
}

.site-header.scrolled .nav-links a {
  color: var(--ink-soft);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, #ff4038 100%);
  box-shadow: var(--shadow-red);
}

.button-primary:hover {
  box-shadow: 0 22px 46px rgba(225, 6, 0, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
  color: var(--red);
  background: rgba(255, 255, 255, 0.92);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.site-header.scrolled .menu-toggle {
  border-color: rgba(225, 6, 0, 0.12);
  background: rgba(225, 6, 0, 0.04);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition), background-color var(--transition);
}

.site-header.scrolled .menu-toggle span {
  background: var(--ink);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(var(--container), calc(100% - 48px));
  display: none;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(225, 6, 0, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.mobile-nav.active {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--ink);
}

.mobile-nav a:hover {
  color: var(--red);
  background: var(--red-soft);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 132px 24px 88px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(0deg, rgba(9, 14, 22, 0.22), rgba(9, 14, 22, 0.22)),
    url('https://images.unsplash.com/photo-1615213612138-4d1195b1c0e0?w=1800&q=90&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 9, 16, 0.92) 0%, rgba(7, 15, 24, 0.74) 48%, rgba(6, 12, 20, 0.62) 100%),
    linear-gradient(180deg, rgba(225, 6, 0, 0.16), transparent 35%);
}

.hero-glow {
  pointer-events: none;
}

.hero-glow-left {
  background: radial-gradient(circle at 18% 38%, rgba(225, 6, 0, 0.26), transparent 22%);
}

.hero-glow-right {
  background: radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.08), transparent 18%);
}

.hero-shell {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 34px;
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.section-head h2,
.final-cta-card h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.94;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow-light {
  color: #ffb0ab;
}

.hero-subtitle {
  margin: 18px 0 0;
  font-size: clamp(1rem, 2vw, 1.26rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-text,
.section-head p,
.reason-card p,
.testimonial-card p,
.footer-text,
.footer-contact-column p {
  line-height: 1.75;
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-pills span,
.status-pill,
.feature-tag,
.small-label {
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  align-self: center;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.small-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.status-pill,
.feature-tag {
  background: rgba(225, 6, 0, 0.16);
  color: #ffd0cd;
}

.hero-card-list {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.hero-card-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-card-list strong,
.hero-card-bottom strong {
  color: var(--white);
}

.hero-card-list span,
.hero-card-bottom span {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding: 96px 24px;
}

.section-head,
.overview-grid,
.offerings-grid,
.reasons-grid,
.gallery-grid,
.testimonial-grid,
.footer-grid,
.final-cta-card {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 36px;
}

.section-head h2,
.final-cta-card h2 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.section-head p {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.overview-card,
.reason-card,
.testimonial-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(225, 6, 0, 0.08);
}

.overview-card h3,
.reason-card h3,
.feature-card h3,
.footer-links-column h3,
.footer-contact-column h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.overview-card p,
.reason-card p {
  margin: 0;
  color: var(--ink-soft);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, #ff564f 100%);
  box-shadow: var(--shadow-red);
}

.icon-wrap svg {
  width: 20px;
  height: 20px;
}

.offerings-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(225, 6, 0, 0.2), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #151a24 0%, #0d1118 100%);
}

.offerings-section .section-head h2 {
  color: var(--white);
}

.offerings-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.offerings-grid {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.feature-card {
  position: relative;
  min-height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  overflow: hidden;
  background: #0f141d;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.3);
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.04) 8%, rgba(7, 11, 17, 0.9) 100%),
    linear-gradient(135deg, rgba(225, 6, 0, 0.18), transparent 42%);
}

.feature-card:nth-child(2) .feature-overlay {
  background:
    linear-gradient(180deg, rgba(22, 8, 8, 0.02) 10%, rgba(12, 10, 16, 0.9) 100%),
    linear-gradient(135deg, rgba(225, 6, 0, 0.3), transparent 46%);
}

.feature-card:nth-child(3) .feature-overlay {
  background:
    linear-gradient(180deg, rgba(12, 14, 19, 0.05) 8%, rgba(7, 11, 17, 0.92) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%);
}

.feature-content {
  position: absolute;
  inset: auto 30px 30px;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 28ch;
}

.feature-content h3,
.feature-content p,
.feature-link {
  color: var(--white);
}

.feature-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.feature-content h3 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 0.94;
}

.feature-tag {
  width: fit-content;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
}

.feature-link::after {
  content: '→';
}

.feature-card:hover img,
.gallery-item:hover img {
  transform: scale(1.08);
}

.feature-card:hover .feature-link {
  background: rgba(225, 6, 0, 0.8);
}

.feature-link::after {
  content: '->';
}

.feature-card:hover img,
.gallery-item:hover img {
  transform: scale(1.06);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
}

.feature-card:hover .feature-link {
  background: transparent;
  color: #ffd9d7;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reason-card {
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), #ff615a);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.gallery-wide {
  grid-column: span 2;
  min-height: 340px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(17, 20, 27, 0.78) 100%);
}

.gallery-item figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
}

.testimonials-section {
  background: linear-gradient(180deg, #fffafa 0%, #fff5f4 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.testimonial-card strong {
  color: var(--red);
}

.final-cta {
  padding-top: 40px;
}

.final-cta-card {
  padding: 48px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, var(--red) 0%, #ff423b 100%);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(225, 6, 0, 0.22);
  text-align: center;
}

.final-cta-card .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta-card .eyebrow::before {
  display: none;
}

.final-cta-card h2 {
  max-width: 16ch;
  margin: 0 auto 26px;
}

.site-footer {
  padding: 0 24px 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.9fr 1.1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 32px;
  background: #12161e;
  box-shadow: 0 28px 70px rgba(16, 19, 31, 0.12);
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy span,
.footer-links-column h3,
.footer-contact-column h3,
.footer-links-column a,
.footer-contact-column a,
.footer-contact-column p,
.footer-text {
  color: var(--white);
}

.footer-text,
.footer-contact-column p {
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-links-column,
.footer-contact-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-map-link {
  color: #ff8f88;
  font-weight: 700;
}

.map-card {
  height: 100%;
  min-height: 240px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 1;
  transition: opacity 400ms ease, transform 400ms ease;
}

.reveal {
  transform: none;
}

.reveal-left {
  transform: none;
}

.reveal-right {
  transform: none;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .hero-shell,
  .overview-grid,
  .offerings-grid,
  .reasons-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 640px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.scrolled .mobile-nav {
    background: rgba(255, 255, 255, 0.98);
  }

  .mobile-nav {
    display: grid;
  }

  .overview-grid,
  .offerings-grid,
  .reasons-grid,
  .gallery-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .feature-card {
    min-height: 540px;
  }

  .hero-copy h1,
  .section-head h2,
  .final-cta-card h2 {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-card,
  .overview-card,
  .reason-card,
  .testimonial-card,
  .final-cta-card,
  .footer-grid {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    transition-delay: 0ms !important;
  }
}
