/* Global */
:root {
  color-scheme: light;
  font-family: "Inter", Arial, sans-serif;
  background: linear-gradient(-45deg, #d4cfc9, #e8e3de, #d9d3cc, #e5dfd8);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  color: #3a3a3a;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
}

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

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

button,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #1f9c72, #24d194);
  color: #fff;
  box-shadow: 0 18px 30px rgba(36, 209, 148, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header {
  position: relative;
  padding: 3rem 1.5rem 4rem;
  background: linear-gradient(135deg, #6b6460 0%, #8b8378 45%, #a89f96 100%);
  color: #ffffff;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(180, 160, 140, 0.25), transparent 32%),
              radial-gradient(circle at top right, rgba(150, 130, 120, 0.18), transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.brand-bar {
  max-width: 1180px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger-menu {
  position: relative;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.18);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: 260px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 2;
}

.site-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-menu a {
  display: block;
  padding: 1rem 1.2rem;
  color: #0f172a;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-menu a:last-child {
  border-bottom: none;
}

.site-menu a:hover {
  background: #f6fbff;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.logo-frame {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.site-logo {
  width: 62px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.logo-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.nav-link {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-btn {
  padding: 0.9rem 1.4rem;
}

.hero-panel {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


.hero-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 3rem 2.2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25);
  text-align: left;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.hero-content h1 {
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  font-weight: 800;
}

.hero-copy,
.hero-contact {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-copy {
  margin: 1.5rem auto 2rem;
  max-width: 680px;
  color: #334155;
  font-size: 1.05rem;
}

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

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin: 0;
}

.section-heading p {
  margin: 0.9rem auto 0;
  max-width: 640px;
  color: #475569;
}

.cards-section {
  margin-bottom: 3rem;
}

.offerings-section {
  margin-bottom: 4rem;
}

.video-section {
  padding: 3rem 1.5rem;
  background: #f9fafb;
  border-radius: 32px;
  margin: 0 auto 3rem;
  max-width: 1180px;
}

.video-section .section-heading {
  margin-bottom: 2rem;
}

.video-section .section-heading h2 {
  color: #f8d949;
}

.video-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  background: #000;
}

.offerings-section {
  margin-bottom: 4rem;
}

.offerings-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.offering-card {
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offering-card:hover {
  border-color: #1f9c72;
  box-shadow: 0 30px 70px rgba(31, 156, 114, 0.15);
  transform: translateY(-6px);
}

.offering-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.3rem;
}

.offering-card p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
}

.offering-link {
  color: #1f9c72;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-top: auto;
}

.offering-card:hover .offering-link {
  color: #0f4e31;
}

.media-section {
  margin-bottom: 3rem;
}

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

.media-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

.media-video {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-placeholder {
  background: linear-gradient(135deg, #24d194 0%, #0f172a 100%);
  border-radius: 24px;
  height: 220px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Media Card Enhancements */
.media-card {
  position: relative;
  overflow: hidden;
}

.media-card.media-video {
  grid-column: 1 / -1;
}

/* Image Container */
.media-image-container {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: #f0f9ff;
}

.media-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  user-drag: none;
}

/* Video Container */
.video-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: #1a1a1a;
  position: relative;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

.video-container.interactive iframe {
  pointer-events: auto;
}

/* Prevent User Editing */
.media-card {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.media-card * {
  contenteditable: false !important;
}

/* Media Card Loading State */
.media-card.loading {
  opacity: 0.6;
  pointer-events: none;
}

.media-card.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-contact {
  margin: 0 auto 1.5rem;
  max-width: 680px;
  color: #1f3f24;
  font-size: 0.98rem;
}

.hero-contact a {
  color: #0f4e31;
  text-decoration: underline;
}

.contact-actions {
  margin-top: 1.5rem;
}

.contact-card p {
  color: #334155;
  margin: 0.55rem 0;
}

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

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.feature-card h3 {
  margin-top: 0;
  color: #0f172a;
}

.feature-card p {
  margin: 0.9rem 0 0;
  color: #475569;
}

.warning-note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: #fff9d9;
  border: 1px solid #f5e1a7;
  color: #7d5a0c;
  font-weight: 700;
  line-height: 1.5;
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  padding: 2.5rem;
  background: #0f172a;
  color: #ffffff;
  border-radius: 32px;
}

.testimonial-text h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.testimonial-text p {
  margin: 1rem 0 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.testimonial-meta span {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: #cdf2e2;
}

.contact-section {
  margin-top: 3rem;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #dff8ef 100%);
  border-radius: 28px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.contact-card h2 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.contact-card p {
  color: #334155;
  margin: 0 0 1.5rem;
}

.site-menu {
  position: fixed;
  top: 80px;
  right: 16px;
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.995);
  transition: opacity 0.22s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 9999;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.site-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@media (max-width: 520px) {
  .site-menu {
    right: 8px;
    left: 8px;
    width: auto;
    top: 72px;
    max-height: calc(100vh - 64px);
  }
}
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions {
    width: 100%;
  }

  a.btn {
    width: 100%;
  }
}
