* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111111;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  padding: 18px 6vw;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.brand {
  justify-self: start;
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 14px;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 32px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 14px;
}

.nav a:hover {
  color: #111111;
}

.header-btn {
  justify-self: end;
  width: fit-content; 
	  white-space: nowrap;  
  background: #4dac63;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  transition: 0.25s ease;
}

.header-btn:hover {
  background: #3f8f52;
  transform: translateY(-1px);
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(77, 172, 99, 0.13), transparent 28%),
    radial-gradient(circle at 70% 50%, rgba(237, 11, 8, 0.10), transparent 25%),
    #ffffff;
}

.hero-inner {
  max-width: 900px;
}

.main-logo {
  width: 260px;
  max-width: 70vw;
  margin-bottom: 18px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: #4dac63;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 14px;
  transition: 0.25s ease;
}

.btn-green {
  background: #4dac63;
  color: #ffffff;
}

.btn-green:hover {
  background: #3f8f52;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.btn-outline:hover {
  border-color: #4dac63;
  color: #4dac63;
  transform: translateY(-2px);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 6vw;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: start;
}

.section-grid > div {
  min-width: 0;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section p {
  color: rgba(0, 0, 0, 0.58);
  font-size: 17px;
  line-height: 1.8;
}

.service-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.showreel-section {
  background: #fafafa;
  border-radius: 42px;
  margin-top: 30px;
}

.section-title-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 38px;
}

.video-card {
  overflow: hidden;
  border-radius: 34px;
  background: #111111;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
  aspect-ratio: 16 / 9;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-card {
  padding: 56px;
  border-radius: 42px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

.contact-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-item {
  min-height: 180px;
  padding: 28px;
  border-radius: 28px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.contact-icon {
  display: block;
  margin-bottom: 22px;
  color: #4dac63;
  font-size: 26px;
}

.contact-item small {
  display: block;
  color: rgba(0, 0, 0, 0.42);
  margin-bottom: 6px;
}

.contact-item strong {
  display: block;
  font-size: 16px;
}

.footer {
  padding: 36px 20px;
  text-align: center;
  color: rgba(0, 0, 0, 0.42);
  font-size: 13px;
}

@media (max-width: 800px) {
  .nav {
    display: none;
  }

  .site-header {
    padding: 16px 20px;
  }

  .header-btn {
    padding: 10px 16px;
  }

  .section-grid,
  .contact-grid,
  .map-card {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 34px 22px;
  }

  .section {
    padding: 80px 22px;
  }
}

/* MAP */
.map-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 50px;
  border-radius: 40px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 25px 80px rgba(0,0,0,0.08);
}

.map-text h2 {
  margin: 10px 0;
}

.map-text p {
  color: rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.map-box {
  border-radius: 25px;
  overflow: hidden;
  height: 350px;
}

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


.main-video-card {
  max-width: 960px;
  margin: 0 auto 50px;
  overflow: hidden;
  border-radius: 34px;
  background: #111;
  box-shadow: 0 30px 90px rgba(0,0,0,0.16);
  aspect-ratio: 16 / 9;
}

.main-video-card iframe,
.small-video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.small-video-card {
  overflow: hidden;
  border-radius: 26px;
  background: #111;
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
  aspect-ratio: 16 / 9;
}

.vimeo-link-wrap {
  margin-top: 46px;
  text-align: center;
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  text-align: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 30% 20%, rgba(77, 172, 99, 0.13), transparent 28%),
    radial-gradient(circle at 70% 50%, rgba(237, 11, 8, 0.10), transparent 25%),
    #ffffff;
}

.hero::before {
  background: url("../images/logo.png") center no-repeat;
  background-size: 500px;

  filter: blur(0px);   /* ? ??? blur */
  opacity: 1;          /* ? ??????? */
}

.hero-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.site-header .header-btn {
  display: inline-flex;
  width: auto;
  min-width: 0;
  max-width: none;
  flex: 0 0 auto;
  justify-self: end;
  white-space: nowrap;
  padding: 12px 22px;
}
