/* === VentSweep OK base styles === */
:root {
  --color-bg: #f5f6f8;
  --color-surface: #ffffff;
  --color-primary: #1f4e79;
  --color-accent: #1bafbf;
  --color-text-main: #222222;
  --color-text-muted: #555555;
  --color-border: #e0e4ea;

  --radius-card: 10px;
  --shadow-card: 0 8px 20px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: radial-gradient(
    circle at top left,
    #e7f3ff 0,
    #f5f6f8 45%,
    #f5f6f8 100%
  );
  color: var(--color-text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 248, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(224, 228, 234, 0.7);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
}

.logo-text-main {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.logo-text-sub {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background 0.18s ease-out,
    transform 0.1s ease-out;
}

.nav-cta:hover {
  background: #163858;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--color-text-main);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--color-text-main);
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.hero {
  padding: 2.5rem 0 2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(27, 175, 191, 0.1);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-title {
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(2rem, 3vw, 2.3rem);
  line-height: 1.1;
  color: var(--color-primary);
}

.hero-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-text-muted);
  max-width: 34rem;
}

.hero-tagline {
  margin: 1rem 0 0.75rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.hero-actions {
  margin: 1.25rem 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.btn-primary {
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary), #163858);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.28);
}

.btn-secondary {
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition:
    background 0.12s ease-out,
    border 0.12s ease-out;
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: var(--color-accent);
}

.hero-meta {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

.hero-meta span {
  margin-right: 0.75rem;
}

/* shrink image containers and images */
.hero-media,
.why-media,
.who-media {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 0.9rem;
  position: relative;
  overflow: hidden;
}

.why-media,
.who-media {
  max-width: 320px; /* constrain width */
}

.hero-media img,
.why-media img,
.who-media img {
  object-fit: contain;
  /* max-height: 200px; cap image height */
  width: 100%;
  border-radius: 12px;
}

.why-media img {
  justify-self: end;
}

.hero-photo {
  border-radius: 12px;
  background: linear-gradient(135deg, #c7e3ff, #f5f6f8);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.hero-photo::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 80%;
  background:
    radial-gradient(circle at 0 0, rgba(31, 78, 121, 0.32), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(27, 175, 191, 0.28), transparent 60%);
  top: -20%;
  left: -30%;
}

.hero-photo-inner {
  position: relative;
  z-index: 1;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.75rem;
  align-items: stretch;
  color: #0f172a;
  font-size: 0.8rem;
}

.hero-photo-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.hero-photo-card-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1f4e79;
}

.hero-photo-stat {
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-photo-note {
  font-size: 0.72rem;
  color: #6b7280;
}

.hero-photo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.72rem;
  color: #4b5563;
}

.hero-photo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

section {
  margin: 2.5rem 0 0;
}

.section-heading {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 34rem;
}

.services-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.packages:hover {
  background-color: rgba(31, 78, 121, 0.6);

  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1rem;
  border: 1px solid rgba(224, 228, 234, 0.9);
}

.card:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.card-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--color-text-main);
}

.card-body {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.pill-row {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.pill {
  font-size: 0.72rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
}

.photos-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.photo-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 0.75rem;
  border: 1px solid rgba(224, 228, 234, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.photo-placeholder {
  border-radius: 8px;
  background: repeating-linear-gradient(
    45deg,
    #e5e7eb,
    #e5e7eb 8px,
    #f3f4f6 8px,
    #f3f4f6 16px
  );
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.75rem;
}

.photo-caption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.testimonials-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(224, 228, 234, 0.9);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  position: relative;
}

.testimonial-quote {
  margin: 0 0 0.6rem;
}

.testimonial-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.testimonial-city {
  font-size: 0.78rem;
  color: #6b7280;
}

.testimonial-placeholder-note {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.why-grid,
.who-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.who-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.why-main,
.who-main {
  font-size: 0.94rem;
  color: var(--color-text-muted);
}

.why-audiences,
.who-audiences {
  display: grid;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.why-audiences {
  justify-content: end;
}

.why-audiences,
.who-audiences strong {
  color: var(--color-text-main);
}

.pill-list {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.pill-list span {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #e5f3f5;
  color: #0f3b4a;
}

.contact-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1rem;
  border: 1px solid rgba(224, 228, 234, 0.9);
  font-size: 0.9rem;
}

.contact-item {
  margin-bottom: 0.4rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.contact-value {
  font-size: 0.98rem;
  color: var(--color-text-main);
}

.contact-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.6rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.contact-form label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
}

.contact-form button {
  justify-self: flex-start;
}

footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(209, 213, 219, 0.7);
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-inner,
  .why-grid,
  .who-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .services-grid,
  .photos-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    inset: 52px 1.25rem auto 1.25rem;
    background: rgba(245, 246, 248, 0.97);
    border-radius: 12px;
    border: 1px solid rgba(224, 228, 234, 0.9);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem 0.8rem;
    gap: 0.6rem;
    transform: scaleY(0.3);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.14s ease-out,
      opacity 0.14s ease-out;
  }

  .nav-links.show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .services-grid,
  .photos-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
